
.hero-section{
    position:relative;
    min-height:550px;
    background:url('../images/hero.webp') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

.hero-tagline{
    color:#D4AF37;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
}

.hero-content h1{
    color:#fff;
    font-size:72px;
    line-height:1.1;
    margin:20px 0;
}

.hero-content p{
    color:#f5f5f5;
    font-size:22px;
    max-width:700px;
    margin:auto;
}

.hero-buttons{
    margin-top:35px;
}

.btn-primary{
    background:#D4AF37;
    color:#111;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    margin-right:15px;
    font-weight:600;
}

.btn-secondary{
    border:2px solid #D4AF37;
    color:#fff;
    padding:13px 35px;
    border-radius:40px;
    text-decoration:none;
}
.highlight{
    background: linear-gradient(to bottom, #F5C96A, #D89A3A, #A86420);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
/* ==========================================
   Feature Strip
========================================== */

.feature-strip{
    width:100%;
    background:#fff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
}

.feature-strip-inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.feature-item{
    flex:1;
    display:flex;
    align-items:center;
    gap:16px;
    padding:20px 28px;
}

.feature-item:not(:last-child){
    border-right:1px solid #ececec;
}

/* SVG Icon */

.feature-icon{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.feature-icon img{
    width:52px;
    height:52px;
    display:block;
    object-fit:contain;
}

/* Text */

.feature-text h4{
    margin:0 0 3px;
    font-size:20px;
    font-weight:700;
    line-height:1.2;
    color:#1F2937;
}

.feature-text p{
    margin:0;
    font-size:15px;
    font-weight:500;
    line-height:1.4;
    color:#C67A22;   /* IndiaZona style warm orange */
}
/* ==========================
CATEGORY SECTION
========================== */

.categories-section{
    padding:20px 40px;
    background:#F7F2E9;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#D4AF37;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    font-size:52px;
    color:#0F0F0F;
    margin-top:10px;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.category-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:380px;
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.category-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding:30px;
}

.category-overlay h3{
    color:#fff;
    font-size:24px;
    text-align:center;
}

.category-card:hover img{
    transform:scale(1.1);
}



/*==================================================
REFERENCE COLLECTION
==================================================*/

.home-highlights{
    padding:60px 0;
    background:#f8f6f2;
}

.home-highlights .container{
    max-width:1450px;
    margin:auto;
    padding:0 20px;
}

.collection-section{
    margin-bottom:70px;
}

.collection-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:25px;
}

.collection-heading h2{
    font-size:34px;
    margin:0;
    color:#222;
}

.collection-heading p{
    margin-top:8px;
    color:#666;
    font-size:15px;
}

.collection-link{
    color:#8B5E3C;
    text-decoration:none;
    font-weight:600;
}

.collection-body{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:24px;
    align-items:start;
}

.collection-banner img{
    width:100%;
    height:100%;
    border-radius:18px;
    display:block;
    object-fit:cover;
}

.collection-products{
    overflow:hidden;
}

/* CARD */

.product-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.35s;
    position:relative;

    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 35px rgba(0,0,0,.12);
}

.product-sale{
    position:absolute;
    left:12px;
    top:12px;
    background:#d63b3b;
    color:#fff;
    padding:6px 10px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    z-index:5;
}

.product-image{
    display:block;
    overflow:hidden;
    background:#fafafa;
}

.product-image img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-content{
    padding:16px;

    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content h3{
    font-size:16px;
    line-height:1.45;
    height:46px;
    margin:0 0 15px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.product-content h3 a{
    color:#222;
    text-decoration:none;
}

.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}

.product-footer .price{
    font-size:21px;
    font-weight:700;
}

.product-footer .button{
    background:#8B5E3C!important;
    color:#fff!important;
    border-radius:8px!important;
    padding:10px 16px!important;
}

/* ==========================
WHY CHOOSE US - DESKTOP
========================== */

.why-us{
    padding:120px 40px;
    background:#F8F4ED;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    display:block;
    color:#C17A3C;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:12px;
    font-weight:600;
}

.section-title h2{
    color:#3B2416;
    font-size:52px;
    margin-bottom:18px;
}

.section-subtitle{
    max-width:700px;
    margin:auto;
    color:#6D5A4A;
    line-height:1.8;
    font-size:17px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:35px;
}

.why-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    transition:all .35s ease;
    position:relative;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.why-image{
    width:100%;
    height:260px;
    overflow:hidden;
}

.why-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.why-card:hover .why-image img{
    transform:scale(1.08);
}

.why-content{
    padding:35px;
    text-align:center;
    position:relative;
}

.why-icon{
    width:70px;
    height:70px;
    margin:-70px auto 20px;
    border-radius:50%;
    background:#C17A3C;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    border:6px solid #fff;
    box-shadow:0 10px 25px rgba(193,122,60,.25);
    transition:all .35s ease;
    position:relative;
    z-index:2;
}

.why-card:hover .why-icon{
    transform:rotate(10deg) scale(1.08);
    background:#9E6230;
}

.why-content h3{
    color:#3B2416;
    font-size:30px;
    margin:0 0 15px;
    transition:color .3s ease;
}

.why-card:hover .why-content h3{
    color:#C17A3C;
}

.why-content p{
    color:#6D5A4A;
    font-size:16px;
    line-height:1.9;
    margin:0;
}

/* ==========================
NEWSLETTER
========================== */

.newsletter-section{
    text-align:center;
    padding:120px 40px;
    background:#D4AF37;
}

.newsletter-section h2{
    color:#111;
    font-size:54px;
    margin-bottom:20px;
}

.newsletter-section p{
    color:#333;
    font-size:18px;
}

.newsletter-btn{
    display:inline-block;
    margin-top:30px;
    background:#111;
    color:#fff;
    padding:15px 40px;
    text-decoration:none;
    border-radius:40px;
}


.hero-section,
.categories-section,
.artisan-story,
.featured-products,
.why-us,
.newsletter-section{
    width:100%;
    display:block;
}

.category-grid{
    display:grid;
}

.category-card{
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}




/* ===========================
   Promo Banner
=========================== */

.promo-banner{
    width:100%;
    max-width:1400px;
    height:430px;          /* 290–320px adjust kar sakte ho */
    margin:20px auto;
    overflow:hidden;
    border-radius:14px;
}

.promo-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    display:block;
}
/* ======================================================
   COLLECTION SECTION HEADING
   SVG Icon + Title
====================================================== */

.ff-section-title{
    display:flex;
    align-items:center;
    gap:12px;
    margin:0;
}

.ff-title-icon{
    width:60px;
    height:60px;
    flex-shrink:0;
}

/* ==========================================
   WHOLESALE SECTION
========================================== */

:root{
    --twc-dark:#2a1a0e;
    --twc-darker:#1a0f08;
    --twc-gold:#c9962b;
    --twc-gold-light:#e0b458;
    --twc-cream:#f5efe3;
    --twc-text-light:#e8dcc4;
}

.twc-wholesale-section{
    padding:40px 20px;
    background:#f7f4ee;
    font-family:'Inter',sans-serif;
}

.twc-wholesale-card{
    max-width:1400px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.4fr 1fr;
    border-radius:24px;
    overflow:hidden;
    background:var(--twc-dark);
    box-shadow:0 30px 80px rgba(42,26,14,.25);
}

/* ==========================================
   LEFT SIDE
========================================== */

.twc-left{
    position:relative;
    background-size:170%;
    background-position:center center;
    color:#fff;
}

.twc-left::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(28,18,10,.55),
        rgba(28,18,10,.35)
    );
}

.twc-left-inner{
    position:relative;
    padding:60px 50px;
}

.twc-eyebrow{
    margin:0 0 20px;
    color:var(--twc-gold-light);
    font-size:12px;
    font-weight:600;
    letter-spacing:.2em;
    text-transform:uppercase;
}

.twc-title{
    margin:0 0 24px;
    font-family:'Playfair Display',serif;
    color:#fff;
    font-size:52px;
    line-height:1.1;
    font-weight:500;
}

.twc-title-accent{
    color:#e7b04b;
    font-style:italic;
}

.twc-lede{
    max-width:420px;
    margin:0 0 30px;
    color:var(--twc-text-light);
    font-size:16px;
    line-height:1.7;
}

.twc-btn-ghost{
    display:inline-block;
    padding:14px 28px;
    border:1px solid var(--twc-gold);
    border-radius:6px;
    color:var(--twc-gold-light);
    text-decoration:none;
    text-transform:uppercase;
    font-size:12px;
    font-weight:600;
    letter-spacing:.15em;
    transition:.3s;
}

.twc-btn-ghost:hover{
    background:var(--twc-gold);
    color:#fff;
}

/* ==========================================
   FEATURES
========================================== */

.twc-feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:40px;
}

.twc-feature{
    padding:20px;
    border:1px solid rgba(201,150,43,.2);
    border-radius:12px;
    background:rgba(255,255,255,.06);
backdrop-filter:blur(8px);
-webkit-backdrop-filter:blur(8px);
}

.twc-feature .twc-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    margin-bottom:12px;
    border:1px solid var(--twc-gold);
    border-radius:50%;
    color:var(--twc-gold-light);
}

.twc-feature h4{
    margin:0 0 6px;
    color:#fff;
    font-size:15px;
}

.twc-feature p{
    margin:0;
    color:var(--twc-text-light);
    font-size:12px;
    line-height:1.5;
}

/* ==========================================
   RIGHT SIDE
========================================== */

.twc-right{
    background:linear-gradient(
        160deg,
        #3a2416,
        #1a0f08
    );
    color:#fff;
}

.twc-form-inner{
    padding:60px 45px;
}

.twc-sun{
    margin-bottom:10px;
    text-align:center;
    color:var(--twc-gold-light);
    font-size:32px;
}

.twc-form-title{
    margin:0 0 8px;
    color:#fff;
    text-align:center;
    font-family:'Playfair Display',serif;
    font-size:28px;
    letter-spacing:.1em;
}

.twc-form-sub{
    margin:0 0 30px;
    text-align:center;
    color:var(--twc-gold-light);
    font-size:13px;
    font-style:italic;
}
/* ==========================================
   FORM
========================================== */

.twc-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.twc-field{
    position:relative;
    width:100%;
    margin-bottom:0;
}

.twc-field-icon{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:var(--twc-gold);
    font-size:18px;
    line-height:1;
    z-index:2;
    pointer-events:none;
}

.twc-field input,
.twc-field textarea{
    display:block;
    width:100%;
    box-sizing:border-box;
    background:var(--twc-cream);
    border:none;
    border-radius:10px;
    padding:16px 18px 16px 56px;
    color:#2a1a0e;
    font-size:14px;
    font-family:inherit;
    line-height:1.5;
    transition:.3s;
}

.twc-field textarea{
    min-height:95px;
    resize:vertical;
    padding-top:16px;
}

.twc-field-textarea .twc-field-icon{
    top:20px;
    transform:none;
}

.twc-field input::placeholder,
.twc-field textarea::placeholder{
    color:#7b6b5d;
    opacity:1;
}

.twc-field input:focus,
.twc-field textarea:focus{
    outline:none;
    box-shadow:0 0 0 2px rgba(201,150,43,.35);
}

/* Input Text form internal colors */
.twc-field input,
.twc-field textarea{
    color:#ffffff !important;
    caret-color:#ffffff;
}

/* Placeholder Color */
.twc-field input::placeholder,
.twc-field textarea::placeholder{
    color:rgba(255,255,255,.65) !important;
}

/* Autofill Fix (Chrome) */
.twc-field input:-webkit-autofill,
.twc-field input:-webkit-autofill:hover,
.twc-field input:-webkit-autofill:focus,
.twc-field textarea:-webkit-autofill{
    -webkit-text-fill-color:#ffffff !important;
    -webkit-box-shadow:0 0 0px 1000px #f5efe3 inset;
}

/* Force Autofill Text Color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-text-fill-color:#2a1a0e !important;
    -webkit-box-shadow:0 0 0 1000px #ffffff inset !important;
    box-shadow:0 0 0 1000px #ffffff inset !important;
    transition: background-color 5000s ease-in-out 0s;
}
/* ==========================================
   BUTTON
========================================== */

.twc-submit{
    width:100%;
    margin-top:10px;
    padding:18px;
    border:none;
    border-radius:10px;
    background:linear-gradient(
        135deg,
        var(--twc-gold-light),
        var(--twc-gold)
    );
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:.15em;
    cursor:pointer;
    transition:.3s;
}

.twc-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(201,150,43,.4);
}

/* ==========================================
   BADGES
========================================== */

.twc-badges{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:24px;
}

.twc-badges div{
    display:flex;
    flex-direction:column;
    color:var(--twc-text-light);
    font-size:11px;
}

.twc-badges strong{
    color:#fff;
    font-size:12px;
    margin-bottom:3px;
}

/* ==========================================
   ALERTS
========================================== */

.twc-alert{
    padding:12px 16px;
    margin-bottom:16px;
    border-radius:8px;
    font-size:13px;
}

.twc-alert-success{
    background:rgba(46,160,67,.15);
    border:1px solid #2ea043;
    color:#7ee08a;
}

.twc-alert-error{
    background:rgba(220,53,69,.15);
    border:1px solid #dc3545;
    color:#ff9aa5;
}
/* ==========================================
   Blocksy override
========================================== */

.twc-field input,
.twc-field textarea{
    text-indent:0 !important;
    padding-left:60px !important;
}

.twc-field-icon{
    left:20px !important;
}
/* ==========================================
   tiger icon
========================================== */

.twc-brand-icon{
    text-align:center;
    margin-top:25px;
}

.twc-brand-icon img{
    width:80px;
    height:auto;
    opacity:1;
    display:block;
    margin:0 auto;
}

.twc-brand-location{
    margin-top:14px;
    text-align:center;
    font-family:'Playfair Display', serif;
    font-size:14px;
    font-style:italic;
    font-weight:500;
    letter-spacing:.5px;
    color:#d9b46a;
}

