/* =========================================================
   SUJATHA WEAVES — PREMIUM HOMEPAGE STYLE
   Large • Elegant • Highly Visible • Mobile Responsive
   ========================================================= */

:root{
    --wine:#620d25;
    --wine-dark:#390716;
    --wine-deep:#26030d;
    --gold:#b88935;
    --gold-light:#e4c47a;
    --cream:#fffaf2;
    --ivory:#f7efe3;
    --paper:#fffdf9;
    --brown:#33231f;
    --muted:#75665e;
    --line:#dfd1bd;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',Arial,sans-serif;
    background:var(--cream);
    color:var(--brown);
    font-size:16px;
    line-height:1.65;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input{
    font-family:'Montserrat',Arial,sans-serif;
}

/* =========================================================
   WATERMARK
   ========================================================= */

.site-watermark{
    position:fixed;
    inset:0;
    z-index:-1;
    pointer-events:none;
    overflow:hidden;
    opacity:.025;
}

.site-watermark img{
    width:250px;
    height:auto;
    position:absolute;
    left:7%;
    top:18%;
    transform:rotate(-12deg);
    filter:grayscale(1);
}

.site-watermark:after{
    content:"";
    position:absolute;
    inset:0;
    background-image:url("../images/logo.png");
    background-repeat:repeat;
    background-size:280px auto;
    opacity:.55;
}

/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar{
    min-height:44px;
    padding:0 4.5%;
    background:var(--wine-dark);
    color:#f6dca6;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    align-items:center;
    gap:20px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.top-left{
    text-align:left;
}

.top-center{
    text-align:center;
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:18px;
    letter-spacing:2.2px;
    font-weight:600;
}

.top-right{
    display:flex;
    justify-content:flex-end;
    gap:22px;
}

.top-bar i{
    color:var(--gold-light);
    margin-right:6px;
}

/* =========================================================
   HEADER
   ========================================================= */

.main-header{
    min-height:116px;
    padding:0 4.5%;
    background:rgba(255,253,249,.98);
    border-bottom:1px solid var(--line);
    display:flex;
    align-items:center;
    gap:30px;
    position:sticky;
    top:0;
    z-index:100;
    box-shadow:0 5px 25px rgba(45,15,10,.07);
}

.brand{
    width:220px;
    flex-shrink:0;
}

.brand img{
    width:205px;
    height:95px;
    object-fit:contain;
}

.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    margin-left:auto;
}

.main-nav>a,
.nav-dropdown>a{
    position:relative;
    padding:16px 0;
    color:#3c2a25;
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
}

.main-nav>a:after,
.nav-dropdown>a:after{
    content:"";
    position:absolute;
    left:0;
    bottom:8px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.25s;
}

.main-nav>a:hover:after,
.main-nav>a.active:after,
.nav-dropdown>a:hover:after{
    width:100%;
}

.main-nav>a.active{
    color:var(--wine);
}

.nav-dropdown{
    position:relative;
}

.nav-dropdown>a i{
    margin-left:5px;
    font-size:10px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:-20px;
    width:220px;
    padding:12px;
    background:#fffdf9;
    border:1px solid var(--line);
    box-shadow:0 18px 40px rgba(45,15,10,.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.25s;
}

.nav-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:11px 12px;
    color:#4b3932;
    font-size:12px;
    font-weight:600;
}

.dropdown-menu a:hover{
    background:var(--ivory);
    color:var(--wine);
}

.header-actions{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:20px;
}

.search-box{
    width:240px;
    height:48px;
    border:1px solid #d8c9b7;
    background:white;
    display:flex;
    align-items:center;
}

.search-box input{
    flex:1;
    min-width:0;
    height:100%;
    border:0;
    outline:0;
    padding:0 14px;
    color:var(--brown);
    font-size:12px;
}

.search-box input::placeholder{
    color:#9a8d83;
}

.search-box button{
    width:45px;
    height:100%;
    border:0;
    background:transparent;
    color:var(--wine);
    font-size:18px;
    cursor:pointer;
}

.header-icon{
    width:42px;
    height:42px;
    position:relative;
    border:0;
    background:transparent;
    color:var(--wine);
    font-size:21px;
    cursor:pointer;
}

.header-icon:hover{
    color:var(--gold);
}

.count-badge{
    position:absolute;
    top:0;
    right:-1px;
    min-width:18px;
    height:18px;
    padding:0 4px;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--wine);
    color:#fff;
    font-size:9px;
    font-weight:700;
}

.mobile-menu-button{
    display:none;
    width:44px;
    height:44px;
    border:0;
    background:transparent;
    color:var(--wine);
    font-size:25px;
}

/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-nav{
    display:none;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section{
    height:min(630px,calc(100vh - 160px));
    min-height:480px;
    position:relative;
    overflow:hidden;
    background:#2b090f;
}

.hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(
        90deg,
        rgba(30,5,9,.03) 0%,
        rgba(30,5,9,.02) 50%,
        rgba(30,5,9,.20) 100%
    );
}

.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:1px solid rgba(255,255,255,.7);
    border-radius:50%;
    background:rgba(40,5,12,.32);
    color:#fff;
    font-size:17px;
    cursor:pointer;
    z-index:3;
    transition:.25s;
}

.hero-arrow:hover{
    background:var(--wine);
    border-color:var(--gold-light);
}

.hero-prev{
    left:22px;
}

.hero-next{
    right:22px;
}

.hero-dots{
    position:absolute;
    bottom:22px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:9px;
    z-index:3;
}

.hero-dots span{
    width:9px;
    height:9px;
    border-radius:50%;
    border:1px solid white;
    background:transparent;
}

.hero-dots span.active{
    background:var(--gold-light);
    border-color:var(--gold-light);
}

/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-section{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    background:#fffdf8;
    border-bottom:1px solid var(--line);
    padding:0 4%;
}

.trust-item{
    min-height:95px;
    padding:15px 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    border-right:1px solid #e1d5c5;
}

.trust-item:last-child{
    border-right:0;
}

.trust-icon{
    width:45px;
    height:45px;
    display:grid;
    place-items:center;
    color:var(--gold);
    font-size:25px;
    flex-shrink:0;
}

.trust-item strong{
    display:block;
    color:var(--wine);
    font-size:12px;
    font-weight:700;
    letter-spacing:.7px;
}

.trust-item span{
    display:block;
    margin-top:2px;
    color:var(--muted);
    font-size:10px;
}

/* =========================================================
   SECTION HEADING
   ========================================================= */

.category-section,
.products-section{
    padding:95px 5%;
}

.products-section{
    background:#f3eadf;
}

.section-heading{
    max-width:800px;
    margin:0 auto 50px;
    text-align:center;
}

.heading-small{
    display:block;
    color:var(--gold);
    font-size:11px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:10px;
}

.section-heading h2{
    color:var(--wine);
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:62px;
    font-weight:600;
    line-height:1;
    text-transform:capitalize;
}

.heading-line{
    width:75px;
    height:2px;
    margin:18px auto;
    background:var(--gold);
}

.section-heading p{
    color:var(--muted);
    font-size:13px;
    line-height:1.8;
}

/* =========================================================
   CATEGORY CARDS
   ========================================================= */

.category-grid{
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.category-card{
    height:420px;
    position:relative;
    overflow:hidden;
    background-color:#63142b;
    background-size:cover;
    background-position:center;
    border:1px solid rgba(184,137,53,.25);
}

.category-card:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        145deg,
        rgba(91,12,34,.18),
        rgba(35,5,12,.20)
    );
    transition:.4s;
}

.category-card:hover:before{
    background:linear-gradient(
        145deg,
        rgba(91,12,34,.02),
        rgba(35,5,12,.55)
    );
}

.category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        0deg,
        rgba(27,4,10,.92) 0%,
        rgba(27,4,10,.10) 65%
    );
}

.category-silk{
    background-image:url("../images/category-silk.jpg");
}

.category-handloom{
    background-image:url("../images/category-handloom.jpg");
}

.category-cotton{
    background-image:url("../images/category-cotton.jpg");
}

.category-fancy{
    background-image:url("../images/category-fancy.jpg");
}

.category-content{
    position:absolute;
    z-index:2;
    left:28px;
    right:22px;
    bottom:28px;
    color:#fff;
}

.category-content span{
    color:var(--gold-light);
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
}

.category-content h3{
    margin:7px 0 4px;
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:38px;
    font-weight:600;
    line-height:1;
}

.category-content p{
    margin-bottom:17px;
    color:#f5e8dc;
    font-size:11px;
}

.category-content b{
    color:#f0ce85;
    font-size:10px;
    letter-spacing:1.3px;
}

.category-content b i{
    margin-left:8px;
}

/* =========================================================
   PRODUCT GRID
   ========================================================= */

.product-grid{
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.product-card{
    background:#fff;
    border:1px solid #dfd2c2;
    transition:.3s;
    overflow:hidden;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(59,18,12,.13);
}

.product-image{
    height:430px;
    position:relative;
    overflow:hidden;
    background:#e5d9ca;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover .product-image img{
    transform:scale(1.04);
}

.product-label{
    position:absolute;
    top:14px;
    left:14px;
    padding:7px 12px;
    background:var(--wine);
    color:#fff;
    font-size:9px;
    font-weight:700;
    letter-spacing:1.2px;
}

.product-wishlist{
    position:absolute;
    top:13px;
    right:13px;
    width:41px;
    height:41px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.96);
    color:var(--wine);
    font-size:18px;
    cursor:pointer;
}

.product-info{
    padding:21px 20px 23px;
}

.product-category{
    color:var(--gold);
    font-size:9px;
    font-weight:700;
    letter-spacing:1.8px;
}

.product-info h3{
    min-height:56px;
    margin:7px 0;
    color:#35231f;
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:25px;
    line-height:1.1;
    font-weight:600;
}

.product-price{
    display:flex;
    align-items:center;
    gap:9px;
}

.product-price strong{
    color:var(--wine);
    font-size:17px;
    font-weight:700;
}

.product-price del{
    color:#999;
    font-size:11px;
}

.add-cart{
    width:100%;
    height:45px;
    margin-top:16px;
    border:1px solid var(--wine);
    background:#fff;
    color:var(--wine);
    font-size:10px;
    font-weight:700;
    letter-spacing:1.4px;
    cursor:pointer;
    transition:.25s;
}

.add-cart:hover{
    background:var(--wine);
    color:white;
}

.center-button{
    display:flex;
    justify-content:center;
    margin-top:45px;
}

.gold-button{
    min-height:52px;
    padding:0 28px;
    display:inline-flex;
    align-items:center;
    gap:18px;
    background:var(--gold-light);
    color:#35120d;
    font-size:10px;
    font-weight:700;
    letter-spacing:1.5px;
    transition:.25s;
}

.gold-button:hover{
    background:var(--gold);
    color:#fff;
    transform:translateY(-2px);
}

/* =========================================================
   STORY
   ========================================================= */

.story-section{
    min-height:620px;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:var(--wine-dark);
    color:white;
}

.story-image{
    min-height:620px;
    overflow:hidden;
}

.story-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.story-content{
    padding:90px 12%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.story-content>span{
    color:var(--gold-light);
    font-size:11px;
    font-weight:700;
    letter-spacing:3px;
}

.story-content h2{
    margin:20px 0 22px;
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:72px;
    line-height:.9;
    font-weight:600;
}

.story-content h2 em{
    color:var(--gold-light);
    font-style:italic;
}

.story-line{
    width:75px;
    height:2px;
    margin-bottom:22px;
    background:var(--gold);
}

.story-content p{
    max-width:500px;
    margin-bottom:13px;
    color:#e4d6cb;
    font-size:13px;
    line-height:1.9;
}

.outline-button{
    width:max-content;
    margin-top:17px;
    padding:14px 22px;
    border:1px solid var(--gold);
    color:var(--gold-light);
    font-size:10px;
    font-weight:700;
    letter-spacing:1.4px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-section{
    padding:90px 5%;
    background:#eadcca;
}

.contact-heading{
    max-width:800px;
    margin:0 auto 50px;
    text-align:center;
}

.contact-heading>span{
    color:var(--gold);
    font-size:11px;
    font-weight:700;
    letter-spacing:3px;
}

.contact-heading h2{
    margin-top:14px;
    color:var(--wine);
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:65px;
    line-height:1;
    font-weight:600;
}

.contact-heading h2 em{
    color:var(--gold);
    font-style:italic;
}

.contact-grid{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.contact-card{
    min-height:220px;
    padding:35px 28px;
    text-align:center;
    background:#fffaf3;
    border:1px solid var(--line);
}

.contact-icon{
    width:55px;
    height:55px;
    margin:0 auto 15px;
    display:grid;
    place-items:center;
    border:1px solid var(--gold);
    border-radius:50%;
    color:var(--wine);
    font-size:21px;
}

.contact-card h3{
    margin-bottom:8px;
    color:var(--wine);
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:29px;
    font-weight:600;
}

.contact-card p,
.contact-card a{
    color:#65564e;
    font-size:11px;
    line-height:1.8;
}

.contact-card a{
    font-weight:600;
}

.contact-card a:hover{
    color:var(--wine);
}

/* =========================================================
   FOOTER
   ========================================================= */

.main-footer{
    padding:65px 5% 20px;
    background:var(--wine-deep);
    color:#d9cbc0;
}

.footer-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1.45fr 1fr 1fr 1.45fr;
    gap:50px;
}

.footer-brand img{
    width:200px;
    height:90px;
    object-fit:contain;
}

.footer-brand p{
    margin:13px 0 4px;
    color:var(--gold-light);
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:22px;
    font-weight:600;
}

.footer-brand span{
    color:#bba9a0;
    font-size:10px;
}

.footer-column h4{
    margin-bottom:17px;
    color:var(--gold-light);
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:25px;
    font-weight:600;
}

.footer-column a{
    display:block;
    margin:8px 0;
    color:#cbbcb2;
    font-size:11px;
}

.footer-column a:hover{
    color:var(--gold-light);
}

.footer-contact p,
.footer-contact a{
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin:9px 0;
}

.footer-contact i{
    width:15px;
    color:var(--gold-light);
    margin-top:4px;
}

.footer-bottom{
    max-width:1300px;
    margin:45px auto 0;
    padding-top:17px;
    border-top:1px solid #54202f;
    display:flex;
    justify-content:space-between;
    gap:20px;
    color:#9e898e;
    font-size:9px;
    letter-spacing:1px;
}

/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:150;
    width:62px;
    height:62px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#16b957;
    color:#fff;
    font-size:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.22);
    transition:.25s;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}

/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1250px){

    .main-nav{
        gap:19px;
    }

    .search-box{
        width:190px;
    }

    .brand{
        width:180px;
    }

    .brand img{
        width:175px;
    }

    .category-grid,
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .trust-section{
        grid-template-columns:repeat(3,1fr);
    }

    .trust-item:nth-child(3){
        border-right:0;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:900px){

    .top-bar{
        grid-template-columns:1fr;
        min-height:38px;
        padding:7px 4%;
    }

    .top-left,
    .top-right{
        display:none;
    }

    .top-center{
        font-size:15px;
    }

    .main-header{
        min-height:86px;
        padding:0 5%;
    }

    .brand{
        width:170px;
    }

    .brand img{
        width:160px;
        height:72px;
    }

    .main-nav{
        display:none;
    }

    .header-actions{
        margin-left:auto;
    }

    .search-box,
    .header-icon:first-of-type{
        display:none;
    }

    .mobile-menu-button{
        display:block;
    }

    .mobile-nav{
        position:fixed;
        top:86px;
        left:0;
        right:0;
        z-index:90;
        padding:20px 7%;
        background:#fffaf3;
        border-bottom:1px solid var(--line);
        box-shadow:0 15px 35px rgba(40,10,8,.12);
    }

    .mobile-nav.show{
        display:block;
    }

    .mobile-nav a{
        display:block;
        padding:13px 0;
        border-bottom:1px solid #eadfd0;
        color:var(--wine);
        font-size:14px;
        font-weight:600;
    }

    .hero-section{
        height:520px;
        min-height:0;
    }

    .hero-image{
        object-position:center;
    }

    .hero-arrow{
        width:42px;
        height:42px;
    }

    .hero-prev{
        left:12px;
    }

    .hero-next{
        right:12px;
    }

    .trust-section{
        grid-template-columns:1fr;
        padding:10px 6%;
    }

    .trust-item{
        justify-content:flex-start;
        min-height:70px;
        border-right:0;
        border-bottom:1px solid #e5dacc;
    }

    .trust-item:last-child{
        border-bottom:0;
    }

    .category-section,
    .products-section{
        padding:70px 5%;
    }

    .section-heading h2{
        font-size:52px;
    }

    .category-grid,
    .product-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .category-card{
        height:360px;
    }

    .product-image{
        height:390px;
    }

    .story-section{
        grid-template-columns:1fr;
    }

    .story-image{
        min-height:450px;
    }

    .story-content{
        padding:70px 8%;
    }

    .story-content h2{
        font-size:61px;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-heading h2{
        font-size:54px;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:560px){

    body{
        font-size:14px;
    }

    .top-center{
        font-size:13px;
        letter-spacing:1.2px;
    }

    .brand{
        width:145px;
    }

    .brand img{
        width:140px;
    }

    .header-actions{
        gap:2px;
    }

    .header-icon{
        width:38px;
        font-size:19px;
    }

    .hero-section{
        height:420px;
    }

    .hero-dots{
        bottom:13px;
    }

    .category-grid,
    .product-grid{
        grid-template-columns:1fr;
    }

    .category-card{
        height:410px;
    }

    .product-image{
        height:460px;
    }

    .section-heading{
        margin-bottom:35px;
    }

    .section-heading h2{
        font-size:45px;
    }

    .section-heading p{
        font-size:11px;
    }

    .story-image{
        min-height:360px;
    }

    .story-content h2{
        font-size:53px;
    }

    .contact-heading h2{
        font-size:46px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-brand img{
        width:180px;
    }

    .whatsapp-float{
        width:55px;
        height:55px;
        right:18px;
        bottom:18px;
        font-size:26px;
    }
}
