:root{
    --primary:#D97706;
    --secondary:#3F6212;
    --dark:#1F2937;
    --light:#F8FAFC;
    --container:1280px;
    --radius:12px;
}
body{


    font-family:Arial, Helvetica, sans-serif;


    background:#f8f8f8;


    padding-top:0;
    

    color:#222;

}

.container{
    width:100%;
    max-width:var(--container);
    margin:0 auto;
    padding:0 20px;
}

header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    height:90px;
    background:#ffffff;
    z-index:9999;
    display:flex;
    align-items:center;
    border-bottom:1px solid #ececec;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo{
    font-size:35px;
    font-weight:800;
    color:#df7c00;
    text-decoration:none;
    transition:.3s;
}

.logo:hover{
    color:#ff9800;
}

nav{

    display:flex;

    gap:45px;

    align-items:center;

}

nav a{
    position:relative;
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:600;
    padding:8px 0;
    transition:all .3s ease;
}
nav a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-8px;
    width:0;
    height:3px;
    background:var(--primary);
    border-radius:50px;
    transition:all .3s ease;
    transform:translateX(-50%);
}
nav a:hover{
    color:var(--primary);
}

nav a:hover::after{
    width:100%;
}

main{
    padding:0;
    margin:0;
}

footer{
    
    background:#222;


    color:white;


    padding:30px;


    text-align:center;

}
/* HERO */

.hero{
    position: relative;
    height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:url("../images/peletsepeti.webp");
    background-size:cover;
    background-position:right center;
    background-repeat:no-repeat;

    z-index:1;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.72) 30%,
        rgba(0,0,0,.40) 55%,
        rgba(0,0,0,0) 80%
    );

    z-index:2;
}

.hero-overlay{
    position:relative;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    z-index:3;

    background:none;
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    min-height:620px;
    position:relative;
    z-index:5;
}

.hero-content{


    flex:1;
    max-width:560px;

}

.hero-top{


    display:inline-block;


    color:#8CC63F;


    font-size:15px;


    font-weight:700;


    letter-spacing:1px;


    margin-bottom:20px;

}

.hero h1{


    font-size:64px;


    line-height:1.1;


    margin-bottom:15px;


    color:rgb(255, 255, 255);

}

.hero h2{


    font-size:38px;


    font-weight:500;


    margin-bottom:20px;


    color:rgb(255, 255, 255);

}

.hero p{


    font-size:20px;


    line-height:1.8;


    color:#f1f1f1;


    margin-bottom:35px;


    max-width:600px;

}

.hero-buttons{


    display:flex;


    gap:20px;

}

.btn{


    display:inline-block;


    padding:18px 36px;


    border-radius:12px;


    text-decoration:none;


    font-weight:700;


    transition:.3s;

}

.btn-primary{


    background:var(--primary);


    color:white;

}

.btn-primary:hover{


    transform:translateY(-3px);

}

.btn-secondary{


    background:var(--secondary);


    color:white;

}

.btn-secondary:hover{


    transform:translateY(-3px);

}

.hero-image{


    flex:1;


    text-align:right;

}

.hero-image img{


    width:100%;

max-width:620px;

}
header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.phone-btn,
.cart-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    height:42px;

    padding:0 18px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.30s;
}

.phone-btn{

    background:#ffffff;

    color:#222;

    border:2px solid var(--primary);

}

.phone-btn:hover{

    background:var(--primary);

    color:#fff;

}

.cart-btn{

    background:var(--primary);

    color:#fff;

}

.cart-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(0,0,0,.18);

}
/* FEATURES */

.features{

    background:#ffffff;

    padding:70px 0;

}

.features .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-item{

    background:#fff;

    border-radius:15px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.30s;

}

.feature-item:hover{

    transform:translateY(-8px);

}

.feature-icon{

    font-size:42px;

    margin-bottom:20px;

}

.feature-item h3{

    font-size:22px;

    margin-bottom:15px;

}

.feature-item p{

    color:#666;

    line-height:1.7;

}
/* FEATURED PRODUCT */

.featured-product{

    padding:100px 0;

    background:#ffffff;

}

.product-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.product-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.product-image img{

    width:100%;

    max-width:650px;

    height:auto;

    transition:.35s;

    filter:drop-shadow(0 20px 45px rgba(0,0,0,.18));

}
.product-image img{

    width:100%;

    max-width:650px;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.18));

    transition:.35s;

}

.product-image img:hover{

    transform:scale(1.04);

}

.product-badge{

    display:inline-block;

    padding:10px 22px;

    background:#4c7a12;

    color:#fff;

    border-radius:30px;

    font-size:13px;

    letter-spacing:1px;

    font-weight:700;

    margin-bottom:25px;

}

.product-info h2{

    font-size:48px;

    margin-bottom:20px;

}

.product-description{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:35px;

}

.product-specs{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:35px;

}

.product-specs div{

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:12px;

    padding:22px;

    transition:.30s;

}

.product-specs div:hover{

    transform:translateY(-5px);

    border-color:var(--primary);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.product-specs strong{

    display:block;

    margin-bottom:8px;

    color:#222;

}

.product-price{
    display:flex;
    align-items:flex-end;
    gap:12px;
    margin:30px 0;
}

.product-price span{
    font-size:18px;
    color:#666;
    font-weight:500;
}

.product-price strong{
    font-size:42px;
    font-weight:700;
    color:#df7c00;
    line-height:1;
}
.product-price strong small{
    font-size:28px;
    vertical-align:top;
    margin-right:4px;
}

.product-price small{

    font-size:18px;

    color:#666;

}

.product-price h3{

    font-size:64px;

    color:var(--primary);

    font-weight:800;

}

.product-buttons{

    display:flex;

    gap:20px;

}
.why-us{

    padding:100px 0;

    background:#fafafa;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#4d7b13;

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}

.section-title h2{

    font-size:44px;

    margin:15px 0;

    color:#202020;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    border-radius:18px;

    padding:45px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 40px rgba(0,0,0,.07);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.icon{

    font-size:48px;

    margin-bottom:25px;

}

.why-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}
.shipping-calculator{

    background:#2f2f2f;

    padding:100px 0;

}

.shipping-calculator .section-title{

    color:#fff;

}

.shipping-calculator h2{

    color:#fff;

}

.shipping-calculator p{

    color:#d8d8d8;

}

.calculator-box{

    background:#fff;

    border-radius:20px;

    padding:45px;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:30px;

    margin-top:60px;

}

.calc-group{

    display:flex;

    flex-direction:column;

}

.calc-group label{

    font-weight:700;

    margin-bottom:10px;

}

.calc-group select,
.calc-group input{

    height:58px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 18px;

    font-size:17px;

}

.calc-group button{

    height:58px;

    border:none;

    border-radius:10px;

    background:#df7c00;

    color:#fff;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.calc-group button:hover{

    background:#4d7b13;

}
.categories{

    padding:110px 0;

    background:#ffffff;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.category-card{
    position:relative;
    overflow:hidden;
    height:420px;
    border-radius:20px;
    transition:.35s ease;
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.25);
}

.category-card:hover img{
    transform:scale(1.08);
}
.category-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,0) 100%
    );
    z-index:1;
}


.category-content{
    position:absolute;
    left:30px;
    right:30px;
    bottom:35px;
    z-index:2;
}

.category-content h3{
    font-size:42px;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

.category-content span{

    font-weight:700;

}


.category-card:hover img{

    transform:scale(1.08);

}

.category-card:hover{

    transform:translateY(-8px);

    transition:.35s;

}
.category-content a{
    color:#fff;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}

.category-content a:hover{
    color:#E57E00;
}
/* ========================= */
/* Stats */
/* ========================= */

.stats{
    background:#2d2d2d;
    padding:120px 0;
    margin-top:100px;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stats-box{
    text-align:center;
    color:#fff;
}

.stats-box h3{
    font-size:72px;
    color:#E57E00;
    font-weight:800;
    line-height:1;
    margin-bottom:20px;
}

.stats-box p{
    font-size:20px;
    color:#ffffff;
    font-weight:500;
}
/*==========================
GOOGLE REVIEWS
===========================*/

.reviews{

    padding:120px 0;

    background:#f8f8f8;

}

.reviews h2{

    text-align:center;

    font-size:52px;

    margin:20px 0;

}

.reviews .section-tag{

    display:block;

    text-align:center;

    color:#4F7D12;

    font-weight:700;

    letter-spacing:3px;

}

.section-desc{

    text-align:center;

    color:#666;

    max-width:700px;

    margin:0 auto 70px;

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.review-card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.stars{

    color:#f4b400;

    font-size:28px;

    margin-bottom:20px;

}

.review-card p{

    line-height:1.8;

    color:#555;

    margin-bottom:35px;

}

.review-user strong{

    display:block;

    font-size:18px;

}

.review-user span{

    color:#999;

    font-size:14px;

}
/*==========================
DELIVERY MAP
===========================*/

.delivery-map{

    padding:120px 0;

    background:#ffffff;

}

.delivery-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

.delivery-left h2{

    font-size:48px;

    margin:20px 0;

}

.delivery-left p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.delivery-list{

    list-style:none;

    padding:0;

    margin:0 0 40px;

}

.delivery-list li{

    margin:18px 0;

    font-size:18px;

    font-weight:600;

}

.delivery-right img{

    width:100%;

    display:block;

}
.delivery-area{
    padding:120px 0;
    background:#fff;
}

.delivery-wrapper{
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:70px;
    align-items:center;
}

.delivery-map img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.delivery-content h3{
    font-size:34px;
    margin-bottom:25px;
    color:#1d2433;
}

.delivery-content ul{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.delivery-content li{
    padding:10px 0;
    font-size:18px;
    color:#555;
    border-bottom:1px solid #eee;
}

.delivery-content .btn{
    margin-top:20px;
}
/*==========================
FOOTER
===========================*/

footer{
    background:#1f2937;
    color:#fff;
    margin-top:120px;

    border-top:5px solid #df7c00;
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding:100px 80px;

}

.footer-about h2{
    color:#df7c00;
    font-size:40px;
    font-weight:800;
    margin-bottom:20px;
}

.footer-about h2:hover{

    color:#ff9d00;

}

.footer-about p{

    color:#c9c9c9;

    line-height:1.9;

    margin-bottom:30px;

}

.footer-badges{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-badges span{

    display:inline-flex;

    align-items:center;

    gap:10px;

    width:max-content;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.05);

    transition:.35s ease;

}

.footer-badges span:hover{

    background:#df7c00;

    transform:translateX(8px);

}

footer h3{

    font-size:20px;

    font-weight:700;

    margin-bottom:25px;

    color:#fff;

}

footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

footer li{

    margin:15px 0;

    color:#d7d7d7;

    line-height:1.8;
    transition:.30s;

}
footer li:hover{
    transform:translateX(5px);
}

footer a{

    color:#d7d7d7;

    text-decoration:none;

    transition:.35s ease;

}

footer a:hover{

    color:#df7c00;

    padding-left:8px;

}

.footer-bottom{

    background:#18212e;

    border-top:1px solid rgba(255,255,255,.08);

    padding:28px 0;

}

.footer-bottom-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

}
.footer-grid>div{

    min-width:0;

}

.payment-icons{

    display:flex;

    align-items:center;

    gap:22px;

    color:#fff;

    font-weight:600;

}
/*==============================
PRODUCTS PAGE
==============================*/

.page-banner{

    padding:90px 0;

    background:#f7f7f7;

    text-align:center;

}

.page-banner h1{

    font-size:52px;

    margin-bottom:15px;

}

.page-banner p{

    color:#666;

    font-size:18px;

}

.products-page{

    padding:80px 0;

}

.products-page .container{

    display:grid;

    grid-template-columns:280px 1fr;

    gap:50px;

}

.sidebar{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:max-content;

}

.sidebar h3{

    margin-bottom:25px;

}

.sidebar label{

    display:block;

    margin-bottom:18px;

    cursor:pointer;

}

.products-top{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin-bottom:40px;

}

.products-top input{

    flex:1;

    height:55px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 20px;

}

.products-top select{

    width:250px;

    border-radius:12px;

    border:1px solid #ddd;

    padding:0 20px;

}

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:30px;
}


.product-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.18);

}

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.product-card h3{

    font-size:24px;

    margin:20px;

}

.product-card p{

    margin:0 20px;

    color:#666;

    line-height:1.6;

}

.product-price{

    color:#df7c00;

    font-size:34px;

    font-weight:800;

    margin:20px;

}

.product-buttons{

    display:flex;

    gap:15px;

    margin:25px 20px;

}

.product-buttons a{

    flex:1;

    text-align:center;

    padding:14px;

    border-radius:10px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

}

.btn-orange{


    min-width:170px;


    height:58px;


    display:flex;


    align-items:center;


    justify-content:center;

}

.btn-green{

    background:#4b7513;

}

.btn-orange:hover{

    background:#f08b00;

}

.btn-green:hover{

    background:#5d8d18;

}
.products-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(300px,1fr));
    gap:30px;
}

.product-card{
    width:100%;
}
/*=========================================
PRODUCT DETAIL
=========================================*/

.product-detail{
    padding:80px 0;
    background:#fff;
}

.product-detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:start;
}

.product-gallery img{
    width:100%;
    display:block;
    border-radius:18px;
}

.main-image{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.main-image img{
    transition:.4s;
}

.main-image:hover img{
    transform:scale(1.04);
}

.thumb-images{
    display:flex;
    gap:15px;
    margin-top:18px;
}

.thumb-images img{
    width:95px;
    height:95px;
    object-fit:cover;
    cursor:pointer;
    border:2px solid #eee;
    transition:.3s;
}

.thumb-images img:hover{
    border-color:#df7c00;
}

.product-label{
    display:inline-block;
    padding:8px 18px;
    background:#4d7c0f;
    color:#fff;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.product-info-detail h1{
    font-size:52px;
    line-height:1.1;
    margin-bottom:18px;
    color:#222;
}

.product-rating{
    color:#ffb400;
    font-size:22px;
    margin-bottom:18px;
}

.product-rating span{
    color:#666;
    font-size:15px;
    margin-left:10px;
}

.product-price-detail{
    font-size:54px;
    color:#df7c00;
    font-weight:800;
    margin:25px 0;
}

.product-description{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.product-features{
    list-style:none;
    padding:0;
    margin:35px 0;
}

.product-features li{
    margin-bottom:14px;
    font-size:17px;
}

.product-actions{
    display:flex;
    gap:18px;
    align-items:center;
}

.qty{
    display:flex;
    border:2px solid #ddd;
    border-radius:10px;
    overflow:hidden;
}

.qty button{
    width:50px;
    border:none;
    background:#f3f3f3;
    font-size:22px;
    cursor:pointer;
}

.qty input{
    width:70px;
    border:none;
    text-align:center;
    font-size:18px;
    outline:none;
}

.btn-orange{
    background:#df7c00;
    color:#fff;
    padding:16px 34px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-orange:hover{
    background:#c96f00;
}

@media(max-width:992px){

.product-detail-grid{
    grid-template-columns:1fr;
}

.product-info-detail h1{
    font-size:38px;
}

.product-price-detail{
    font-size:42px;
}

.product-actions{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:40px;
}

.product-actions .btn-orange{
    min-width:220px;
    text-align:center;
}

.btn-orange{
    text-align:center;
}

}
.btn-whatsapp{
    display:inline-block;
    margin-top:15px;
    background:#25D366;
    color:#fff;
    padding:16px 30px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.btn-whatsapp:hover{
    background:#1faa52;
}
.trust-box{

    background:#fafafa;

    border:1px solid #ececec;

    border-radius:16px;

    padding:22px;

    margin:30px 0;

}

.trust-item{

    display:flex;

    align-items:flex-start;

    gap:15px;

    padding:14px 0;

}

.trust-item:not(:last-child){

    border-bottom:1px solid #ececec;

}

.trust-item span{

    font-size:26px;

}

.trust-item strong{

    display:block;

    font-size:16px;

    color:#222;

    margin-bottom:4px;

}

.trust-item small{

    color:#777;

    font-size:14px;

}
.btn-whatsapp{

display:flex;

justify-content:center;

align-items:center;

gap:10px;

height:58px;

background:#25D366;

color:#fff;

font-size:17px;

font-weight:700;

text-decoration:none;

border-radius:12px;

transition:.35s;

box-shadow:0 10px 25px rgba(37,211,102,.25);

}

.btn-whatsapp:hover{

background:#1ea851;

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(37,211,102,.35);

}
/* ===========================
   WHOLESALE PAGE
=========================== */

.wholesale-hero{
    padding:60px 0 90px;
    background:#f8f9fb;
}

.wholesale-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.wholesale-content h1{
    font-size:54px;
    line-height:1.15;
    margin:20px 0;
    font-weight:800;
}

.wholesale-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.wholesale-image img{

    width:110%;

    max-width:700px;

}

.wholesale-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;
}

.wholesale-features div{
    background:#fff;
    padding:18px;
    border-radius:14px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.06);

}
.wholesale-features div:hover{

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:30px;
}

.btn-orange{
    background:#df7c00;
    color:#fff;
    padding:16px 34px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-orange:hover{
    background:#bf6800;
    transform:translateY(-3px);
}

.btn-whatsapp{


    min-width:170px;


    height:58px;


    display:flex;


    align-items:center;


    justify-content:center;

}
.btn-whatsapp:hover{
    background:#1faa4b;
    transform:translateY(-3px);
}

/* ===========================
   BENEFITS
=========================== */

.wholesale-benefits{
    padding:80px 0;
}

.wholesale-benefits .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.benefit-card{
    background:#fff;
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-8px);
}

.benefit-card h3{
    margin:20px 0 10px;
}

.benefit-card p{
    color:#666;
}

/* ===========================
   OFFER FORM
=========================== */

.offer-section{
    background:#f8f9fb;
    padding:90px 0;
}

.offer-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
}

.offer-section p{
    text-align:center;
    color:#666;
    margin-bottom:45px;
}

.offer-form{
    max-width:900px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.offer-form input,
.offer-form textarea{

    padding:18px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

}

.offer-form textarea{

    grid-column:1/3;

    height:180px;

    resize:none;

}

.offer-form button{

    grid-column:1/3;

    border:none;

    cursor:pointer;

}
/*==========================
TOPTAN İSTATİSTİK
==========================*/

.wholesale-stats{

    padding:70px 0;

    background:#fff;

}

.wholesale-stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    background:#fff;

    border-radius:20px;

    padding:45px 20px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box h2{

    font-size:58px;

    color:#df7c00;

    margin-bottom:15px;

    font-weight:800;

}

.stat-box span{

    color:#555;

    font-size:18px;

    font-weight:600;

}