/* ===========================
   GOOGLE FONTS
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===========================
   ROOT VARIABLES
=========================== */

:root{

    --primary:#5c0d16;
    --secondary:#c79b3b;
    --white:#ffffff;
    --cream:#faf6ef;
    --dark:#222;
    --gray:#666;

    --heading:'Cinzel', serif;
    --body:'Poppins', sans-serif;

}

/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--body);
    background:var(--cream);
    color:var(--dark);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.top-header{

    background:var(--primary);
    color:white;
    font-size:14px;
    padding:10px 0;

}

.top-header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.top-left,
.top-center,
.top-right{

    display:flex;
    align-items:center;
    gap:8px;

}

.divider{

    margin:0 8px;

}

.top-header i{

    color:var(--secondary);

}

header{

    background:white;

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    box-shadow:0 3px 12px rgba(0,0,0,.08);

}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;

}

.logo{
    display: flex;
    align-items: center;
}

.logo a{
    display: flex;
    align-items: center;
}

.logo img{
    width:190px;              /* 180 nundi 190 ki increase */
    height:auto;
    display:block;
    object-fit:contain;
    cursor:pointer;
    transition:all .3s ease;
}

.logo img:hover{
    transform:scale(1.02);    /* 1.03 badulu subtle effect */
}

nav ul{

    display:flex;
    gap:35px;

}

nav a{

    color:#333;
    font-weight:500;
    transition:.3s;

}

nav a:hover{

    color:var(--secondary);

}

.nav-icons{

    display:flex;
    align-items:center;
    gap:25px;

}

.nav-icons i{

    font-size:22px;
    cursor:pointer;
}

.cart-icon{

    position:relative;

}

#cart-count{

    position:absolute;
    top:-10px;
    right:-10px;

    background:#b30000;
    color:white;

    width:20px;
    height:20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;

}

.whatsapp-btn{

    background:var(--primary);
    color:white;

    padding:14px 22px;

    border-radius:8px;

    transition:.3s;

}

.whatsapp-btn:hover{

    background:#400710;

}

.hero{

    position:relative;

    margin-top:90px;

    min-height:700px;

    padding-top:90px;

    background:url("../images/background/hero-bg.jpg") center center/cover;

}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(30,10,10,.45);
    pointer-events:none;
}

.hero-content{

    position:relative;

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:700px;

    z-index:5;

}

.hero-left{

    width:48%;
    color:white;

}

.hero-left h1{

    font-family:var(--heading);

    font-size:72px;
    line-height:1.1;

}

.hero-left span{

    color:var(--secondary);

}

.hero-left h2{

    margin-top:30px;

    color:#f6d98d;

    font-size:38px;

    font-family:var(--heading);

}

.hero-left p{

    margin:30px 0;

    font-size:23px;
    line-height:1.8;

}

.hero-buttons{

    display:flex;
    gap:20px;

}

.shop-btn{

    background:var(--secondary);
    color:#111;

    padding:18px 35px;

    border-radius:8px;

    font-weight:600;

}

.chat-btn{

    border:2px solid white;

    color:white;

    padding:18px 35px;

    border-radius:8px;

}

.chat-btn:hover{

    background:white;
    color:#111;

}

.hero-right{

    width:45%;

}

.hero-right img{

    animation:float 5s ease-in-out infinite;

}

.features{

    background:white;

    padding:40px 0;

}

.features .container{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;

}

.feature{

    display:flex;
    align-items:center;
    gap:15px;

}

.feature i{

    color:var(--secondary);

    font-size:35px;

}

.feature h4{

    margin-bottom:6px;

    font-family:var(--heading);

}

.feature p{

    color:gray;
    font-size:14px;

}

.shop-btn,
.chat-btn,
.whatsapp-btn{

    transition:.35s;

}

.shop-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 25px rgba(0,0,0,.2);

}

.chat-btn:hover{

    transform:translateY(-4px);

}

.whatsapp-btn:hover{

    transform:translateY(-4px);

}

/*====================================
            ABOUT US
====================================*/

.about{

    padding:100px 0;
    background:var(--cream);

}

.about-container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

}

.about-image{

    flex:1;
    overflow:hidden;
    border-radius:20px;

}

.about-image img{

    width:100%;
    border-radius:20px;
    transition:.5s;
    box-shadow:0 15px 40px rgba(0,0,0,.18);

}

.about-image:hover img{

    transform:scale(1.05);

}

.about-content{

    flex:1;

}

.section-subtitle{

    color:var(--secondary);
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;

}

.about-content h2{

    font-family:var(--heading);
    font-size:48px;
    margin:18px 0 25px;
    line-height:1.2;
    color:var(--primary);

}

.about-content h2 span{

    color:var(--secondary);

}

.about-content p{

    color:#555;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;

}

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;

}

.about-item{

    display:flex;
    align-items:center;
    gap:12px;
    font-size:17px;
    font-weight:500;

}

.about-item i{

    color:var(--secondary);
    font-size:22px;

}

.about-btn{

    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:16px 35px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;

}

.about-btn:hover{

    background:var(--secondary);
    color:#222;
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.20);

}

/*====================================
          WHY CHOOSE US
====================================*/

.why-choose{

    padding:100px 0;
    background:#ffffff;

}

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:var(--secondary);
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;

}

.section-title h2{

    font-family:var(--heading);
    font-size:48px;
    margin:18px 0;
    color:var(--primary);

}

.section-title h2 span{

    color:var(--secondary);

}

.section-title p{

    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.why-card{

    background:white;
    padding:45px 35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.4s;

}

.why-card:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.why-icon{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#5c0d16,#8a1b27);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

}

.why-icon i{

    color:gold;
    font-size:36px;

}

.why-card h3{

    font-family:var(--heading);
    margin-bottom:15px;
    color:var(--primary);

}

.why-card p{

    color:#666;
    line-height:1.8;
    font-size:15px;

}

/* ===========================
   SHIPPING SECTION
=========================== */

.shipping{

    padding:100px 0;
    background:#fff;

}

.shipping .section-title{

    text-align:center;
    margin-bottom:60px;

}

.shipping .section-title h2{

    font-family:var(--heading);
    font-size:46px;
    color:var(--primary);
    margin-bottom:15px;

}

.shipping .section-title p{

    width:65%;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;

}

.shipping-wrapper{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.shipping-card{

    background:var(--cream);
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(0,0,0,.08);

}

.ship-icon{

    width:85px;
    height:85px;

    margin:auto;
    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#6b0f1a,#c79b3b);

    display:flex;
    justify-content:center;
    align-items:center;

}

.ship-icon i{

    color:#fff;
    font-size:34px;

}

.shipping-card h3{

    font-family:var(--heading);
    color:var(--primary);
    margin-bottom:15px;
    font-size:25px;

}

.shipping-card p{

    color:#666;
    line-height:1.8;
    font-size:15px;

}

.shipping-card:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.shipping-card:hover .ship-icon{

    transform:rotate(8deg) scale(1.08);
    transition:.4s;

}

/*====================================
          CONTACT US
====================================*/

.contact{

    padding:100px 0;
    background:var(--cream);

}

.contact-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:60px;

}

.contact-info{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.contact-box{

    display:flex;
    gap:20px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;

}

.contact-box:hover{

    transform:translateY(-8px);

}

.contact-box i{

    width:65px;
    height:65px;
    flex-shrink:0;
aspect-ratio:1/1;

    border-radius:50%;

    background:linear-gradient(135deg,#5c0d16,#c79b3b);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:26px;

}

.contact-box h3{

    color:var(--primary);
    margin-bottom:10px;
    font-family:var(--heading);

}

.contact-box p{
    color:#666;
    line-height:1.8;
    overflow-wrap:anywhere;
    word-break:break-word;
}

.contact-form{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
    font-size:16px;
    font-family:var(--body);

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:var(--secondary);

}

.contact-form button{

    background:var(--primary);
    color:#fff;
    border:none;
    padding:16px;
    border-radius:8px;
    font-size:17px;
    cursor:pointer;
    transition:.3s;

}

.contact-form button:hover{

    background:var(--secondary);
    color:#222;

}

/*==================================
      FEATURED COLLECTIONS
===================================*/

.collections{

    padding:100px 0;

    background:#faf8f5;

}

.featured-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.featured-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.featured-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.featured-card img{

    width:100%;

    height:380px;

    object-fit:cover;

    display:block;

}

.featured-content{

    padding:25px;

    text-align:center;

}

.featured-content h3{

    font-size:20px;

    margin-bottom:10px;

}

.featured-content h4{

    color:var(--secondary);

    font-size:22px;

}

.collection-btn{

    text-align:center;

    margin-top:50px;

}

/*==================================
        COLLECTIONS PAGE
===================================*/

.collections-banner{

    padding:170px 0 80px;

    background:#faf8f5;

    text-align:center;

}

.collections-banner span{

    color:var(--secondary);

    letter-spacing:3px;

    font-weight:600;

}

.collections-banner h1{

    font-size:52px;

    margin:20px 0;

    color:var(--primary);

}

.collections-banner p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

/* PRODUCTS */

.products{

    padding:80px 0;

    background:#fff;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*==================================
        PRODUCT CARD
===================================*/

.product-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

    border:1px solid #eee;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.product-card img{

    width:100%;

    height:330px;

    object-fit:cover;

    display:block;

    background:#f5f5f5;

}

.product-info{

    padding:20px;

}

.product-info h3{

    font-size:20px;

    line-height:1.5;

    min-height:65px;

    margin-bottom:10px;

    color:var(--primary);

}

.product-info h4{

    font-size:24px;

    color:var(--secondary);

    margin-bottom:20px;

}

.add-cart-btn{

    width:100%;

    padding:14px;

    border:none;

    border-radius:10px;

    background:var(--primary);

    color:#fff;

    font-size:17px;

    cursor:pointer;

    transition:.3s;

}

.add-cart-btn:hover{

    background:var(--secondary);

}


/*====================================
            FOOTER
====================================*/

.footer{

    background:#4b0913;
    border-top:4px solid #D4AF37;
    color:#fff;
    padding:60px 0 20px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2.3fr 1fr 1.4fr 1.3fr;
    gap:40px;
    align-items:flex-start;

}

.footer-logo{

    width:150px;
    margin-bottom:18px;

}

.footer-col h3{

    color:#D4AF37;
    font-size:24px;
    margin-bottom:20px;
    font-family:var(--heading);

}

.footer-col p{

    color:#ddd;
    line-height:1.8;
    margin-bottom:10px;
    font-size:15px;

}

.footer-col ul{

    list-style:none;

}

.footer-col ul li{

    margin-bottom:12px;

}

.footer-col ul li a{

    color:#ddd;
    transition:.3s;
    font-size:15px;

}

.footer-col ul li a:hover{

    color:#D4AF37;
    padding-left:6px;

}

.footer-col i{

    color:#D4AF37;
    width:20px;

}

.social-icons{

    display:flex;
    gap:12px;
    margin-top:20px;

}

.social-icons a{

    width:38px;
    height:38px;

    border:1px solid #D4AF37;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#D4AF37;
    background:transparent;

    transition:.3s;

}

.social-icons a:hover{

    background:#D4AF37;
    color:#4b0913;
    transform:translateY(-3px);

}

.footer-bottom{

    margin-top:45px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

}

.footer-bottom p{

    color:#cfcfcf;
    font-size:14px;
    letter-spacing:.3px;

}

.menu-toggle{

    display:none;

    font-size:30px;

    color:var(--primary);

    cursor:pointer;

}

/*==================================
      LENIN COLLECTION CARDS
==================================*/

.lenin-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:40px;

}

.lenin-grid .product-card{

    width:100%;

}

/*==================================
      ENQUIRY BUTTON
==================================*/

.enquiry-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    width:100%;

    margin-top:18px;

    padding:14px;

    background:#25D366;

    color:#ffffff;

    text-decoration:none;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    transition:0.3s;

}

.enquiry-btn:hover{

    background:#1ebe5d;

    transform:translateY(-2px);

}

.enquiry-btn i{

    font-size:18px;

}

/*==================================
      LENIN CARD IMAGE
==================================*/

.lenin-card img{

    width:100%;

    height:450px;

    object-fit:contain;

    object-position:center top;

    background:#ffffff;

    padding:10px;

}

/*==================================
        SEARCH POPUP
==================================*/

.search-overlay{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.6);

    display:none;

    justify-content:center;

    align-items:flex-start;

    padding-top:120px;

    z-index:9999;

}

.search-overlay.active{

    display:flex;

}

.search-box{

    width:90%;

    max-width:600px;

    background:#ffffff;

    border-radius:15px;

    padding:20px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.search-box input{

    flex:1;

    border:none;

    outline:none;

    font-size:18px;

    font-family:"Poppins",sans-serif;

}

.search-box button{

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#6b0f1a;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    transition:.3s;

}

.search-box button:hover{

    background:#8b1323;

}

#searchIcon{

    cursor:pointer;

}

#searchBtn{

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}

#searchBtn:hover{

    background:#1ebe5d;

}


