*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Montserrat;
}

body{
background:#f6f6f6;
color:#222;
}

/* HEADER */

.header{
position:fixed;
top:0;
width:100%;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
z-index:1000;
gap:20px;
}

.logo{
font-weight:900;
font-size:20px;
}

.header-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.header-buttons a{
padding:10px 18px;
text-decoration:none;
border-radius:6px;
font-weight:600;
transition:0.3s;
display:flex;
align-items:center;
gap:6px;
}

.header-buttons a:hover{
opacity:0.85;
}

.call-btn{
background:#333;
color:white;
}

.order-btn{
background:#ff6b00;
color:white;
}

.telegram-btn{
background:#229ED9;
color:white;
}

.telegram-btn:hover{
background:#1b8ac4;
transform:translateY(-2px);
box-shadow:0 4px 12px rgba(0,0,0,0.2);
}

/* HERO */

.hero{
margin-top:80px;
height:90vh;
position:relative;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
}

.hero-img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.35);
z-index:1;
}

.smoke{
position:absolute;
width:150%;
height:150%;
background:url('images/smoke.png') repeat;
animation:smokeMove 60s linear infinite, smokeDrift 20s ease-in-out infinite alternate;
opacity:0.15;
z-index:2;
}

@keyframes smokeMove{
0%{background-position:0 0;}
100%{background-position:0 2000px;}
}

@keyframes smokeDrift{
0%{transform:translateX(0);}
50%{transform:translateX(50px);}
100%{transform:translateX(-50px);}
}

.hero-text{
position:relative;
color:white;
text-align:center;
z-index:5;
padding:20px;
}

.hero-text h1{
font-size:50px;
margin-bottom:10px;
}

.hero-text p{
font-size:20px;
}

/* ADVANTAGES */

.advantages{
padding:80px 20px;
text-align:center;
background:white;
}

.adv-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.adv{
background:#fafafa;
padding:25px;
border-radius:10px;
font-weight:600;
}

/* PRODUCTS */

.products{
padding:80px 20px;
text-align:center;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
max-width:1100px;
margin:auto;
}

.product{
position:relative;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
cursor:pointer;
}

.product-link{
text-decoration:none;
color:inherit;
display:block;
}

.product:hover{
transform:translateY(-5px);
}

.product img{
width:100%;
height:200px;
object-fit:cover;
transition:transform 0.3s;
}

.product:hover img{
transform:scale(1.05);
}

.product p{
padding:15px;
font-weight:600;
}

.popup{
position:absolute;
bottom:0;
left:0;
right:0;
background:rgba(0,0,0,0.75);
color:white;
padding:10px;
font-size:14px;
opacity:0;
transition:0.3s;
border-bottom-left-radius:10px;
border-bottom-right-radius:10px;
}

.product:hover .popup{
opacity:1;
}

/* REVEAL ANIMATION */

.reveal{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* GALLERY FIX */

.gallery4 img{
height:180px;
object-fit:contain;
}

/* BERRIES */

.berries-grid .product img{
transition:transform 0.3s, box-shadow 0.3s;
}

.berries-grid .product:hover img{
transform:scale(1.08);
box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* FEEDBACK */

.feedbacks{
padding:60px 20px;
text-align:center;
background:#fafafa;
}

.feedbacks h2{
margin-bottom:40px;
}

.feedback-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
max-width:1000px;
margin:auto;
}

.feedback{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
font-style:italic;
}

.feedback span{
display:block;
margin-top:15px;
font-weight:700;
font-style:normal;
text-align:right;
}

.feedback:hover{
transform:translateY(-5px);
transition:0.3s;
}

/* FORM */

.request-form-section{
padding:80px 20px;
text-align:center;
background:white;
}

.form-subtitle{
margin-top:10px;
margin-bottom:30px;
color:#555;
}

.request-form{
max-width:900px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.request-form input,
.request-form textarea{
width:100%;
padding:14px 16px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
outline:none;
}

.request-form input:focus,
.request-form textarea:focus{
border-color:#ff6b00;
}

.submit-btn{
align-self:center;
background:#ff6b00;
color:white;
border:none;
padding:14px 28px;
border-radius:10px;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:0.3s;
}

.submit-btn:hover{
opacity:0.9;
transform:translateY(-2px);
}

.form-status{
margin-top:10px;
font-size:15px;
font-weight:600;
min-height:24px;
}

.form-status.success{
color:#1f8b4c;
}

.form-status.error{
color:#c0392b;
}

/* WHATSAPP BUTTON */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:14px 20px;
border-radius:40px;
text-decoration:none;
font-weight:700;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* MOBILE HERO FIX */

@media(max-width:768px){

.hero{
height:auto;
min-height:420px;
padding:40px 15px 30px;
align-items:flex-end;
}

.hero-img{
object-fit:contain;
object-position:center center;
background:#000;
}

.hero-overlay{
background:rgba(0,0,0,0.25);
}

.hero-text{
max-width:90%;
margin:auto;
}

.hero-text h1{
font-size:26px;
line-height:1.2;
margin-bottom:8px;
}

.hero-text p{
font-size:15px;
line-height:1.4;
}

.product-grid{
grid-template-columns:1fr;
}

.form-row{
grid-template-columns:1fr;
}

.header{
flex-direction:column;
align-items:center;
gap:10px;
}

.header-buttons{
display:grid;
grid-template-columns:1fr 1fr;
gap:8px;
width:100%;
}

.order-btn{
grid-column:1 / -1;
text-align:center;
}

.hero{
margin-top:130px;
}

}