@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #B8860B;
    --primary-dark: #8B6914;
    --secondary-color: #DAA520;
    --accent-color: #CD853F;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-cream: #FAF7F2;
    --bg-light: #FFF8E7;
    --white: #ffffff;
    --border-color: #e4e4e4;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}
/* Products Carousel Styles */
.products-carousel-wrapper {
    position: relative;
    padding: 0 70px;
    margin-top: 20px;
}

.products-carousel {
    overflow: hidden;
    width: 100%;
}
/* Wrapper */
.explore-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ARROWS (Shown only if more than 4) */
.explore-arrow {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px 14px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
    display: none;
}

.explore-arrow.left { left: -10px; }
.explore-arrow.right { right: -10px; }

/* DESKTOP — Shows 4 cards */
.explore-scroll {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.explore-card:hover img {
    transform: scale(1.05);
}
.explore-card {
    position: relative;
    min-width: 260px;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    flex: 0 0 auto;
    cursor: pointer;
}

.explore-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Permanent overlay — always visible */
.explore-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.45); /* Dark shadow */
    padding: 14px 18px;
    text-align: left;
}

.explore-overlay span {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* Darker on hover */
.explore-card:hover .explore-overlay {
    background: rgba(0,0,0,0.62);
}


/* MOBILE — Swipe carousel */
@media (max-width: 640px) {
    .explore-scroll {
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .explore-card {
        width: 75%;
        scroll-snap-align: center;
    }

    .explore-scroll::-webkit-scrollbar {
        display: none;
    }
}


.products-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.products-track .product-card {
    flex: 0 0 calc(25% - 22.5px);
    max-width: calc(25% - 22.5px);
    min-width: 280px;
}

/* Product Card Additional Styles */
.product-info {
    display: flex;
    flex-direction: column;
    height: 36%;
}

.product-info h3 {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.product-desc {
    flex-grow: 1;
    min-height: 48px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-size {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.product-info .btn-shop-now {
    width: 100%;
    margin-top: auto;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 35px rgba(184, 134, 11, 0.35);
}

.carousel-btn:hover:not(:disabled) svg {
    stroke: var(--white);
}

.carousel-btn svg {
    width: 26px;
    height: 26px;
    stroke: var(--text-dark);
    transition: stroke 0.3s ease;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background: var(--bg-cream);
}

.carousel-btn:disabled:hover {
    background: var(--bg-cream);
    border-color: var(--border-color);
    transform: translateY(-50%);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.carousel-btn:disabled svg {
    stroke: var(--text-light);
}

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .products-track .product-card {
        flex: 0 0 calc(20% - 24px);
        max-width: calc(20% - 24px);
    }
    
    .products-carousel-wrapper {
        padding: 0 80px;
    }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .products-track .product-card {
        flex: 0 0 calc(25% - 22.5px);
        max-width: calc(25% - 22.5px);
    }
}

/* Laptop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .products-track .product-card {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
    
    .products-carousel-wrapper {
        padding: 0 65px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .products-track .product-card {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
        min-width: 260px;
    }
    
    .products-carousel-wrapper {
        padding: 0 60px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
    }
    
    .carousel-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .products-track .product-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
        min-width: 300px;
    }
    
    .products-track {
        gap: 30px;
    }
    
    .products-carousel-wrapper {
        padding: 0 55px;
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
    }
    
    .carousel-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .products-track .product-card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
        min-width: 250px;
    }
    
    .products-track {
        gap: 30px;
    }
    
    .products-carousel-wrapper {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .products-track .product-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .products-track {
        gap: 20px;
    }
    
    .products-carousel-wrapper {
        padding: 0 45px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-btn-prev {
        left: 0;
    }
    
    .carousel-btn-next {
        right: 0;
    }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .products-carousel-wrapper {
        padding: 0 38px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
}
img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-top {
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    left: 0;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-logo img {
    height: 87px;
    object-fit: contain;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    right: 0;
}

.nav-link {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
}
/* Navigation Icon Styles */
.nav-left-icons,
.nav-right-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding:30px;
}

.nav-left-icons {
    left: 0;
}

.nav-right-icons {
    right: 0;
}

.nav-icon-btn {
    width: 50px;  /* Increased width */
    height: 50px; /* Increased height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 50%;
}

.nav-icon-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-icon-btn svg {
    width: 30px; /* Increased icon size */
    height: 30px; /* Increased icon size */
}

/* Notification Badge */
.notification-badge,
.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #E53E3E;
    color: white;
    font-size: 12px; /* Increased font size */
    font-weight: 700;
    width: 22px; /* Increased badge size */
    height: 22px; /* Increased badge size */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-cream);
}

.cart-badge {
    background: var(--primary-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px; /* Increased gap */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px; /* Increased padding */
    border-radius: 6px; /* Increased border radius */
    transition: background 0.3s ease;
}

.mobile-toggle:hover {
    background: var(--bg-light);
}

.mobile-toggle span {
    width: 28px; /* Increased span width */
    height: 3px; /* Increased span height */
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px; /* Increased border radius */
}

/* Desktop Only Class */
.desktop-only {
    display: flex;
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .nav-left-icons,
    .nav-right-icons {
        gap: 25px; /* Adjusted gap */
    }
    
    .nav-icon-btn {
        width: 48px; /* Adjusted size */
        height: 48px; /* Adjusted size */
    }
    
    .nav-icon-btn svg {
        width: 28px; /* Adjusted size */
        height: 28px; /* Adjusted size */
    }
}

@media (max-width: 992px) {
    .nav-left-icons,
    .nav-right-icons {
        gap: 20px; /* Adjusted gap */
    }
    
    .desktop-only {
        display: none !important;
    } 
    
    .nav-icon-btn {
        width: 46px; /* Adjusted size */
        height: 46px; /* Adjusted size */
    }
    
    .nav-icon-btn svg {
        width: 26px; /* Adjusted size */
        height: 26px; /* Adjusted size */
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-left-icons,
    .nav-right-icons {
        gap: 12px; /* Adjusted gap */
    }
    
    .nav-icon-btn {
        width: 42px; /* Adjusted size */
        height: 42px; /* Adjusted size */
    }
    
    .notification-badge,
    .cart-badge {
        width: 20px; /* Adjusted badge size */
        height: 20px; /* Adjusted badge size */
        font-size: 11px; /* Adjusted font size */
    }

    /* Hide icons on mobile */
    .desktop-only {
        display: none;
    }
}

@media (max-width: 576px) {
    .icon-line {
        gap: 10px; /* Further reduce gap for smaller screens */
    }
    .nav-icon-btn {
        width: 36px;  /* Adjusted size */
        height: 36px; /* Adjusted size */
    }
    .nav-icon-btn svg {
        width: 22px; /* Adjusted size */
        height: 22px; /* Adjusted size */
    }
}


.btn-order {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.nav-categories {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 30px;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: var(--text-dark);
    line-height: 1;
    z-index: 10000;
}

.mobile-nav-list {
    list-style: none;
    margin-top: 60px;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: block;
    padding: 10px 0;
}
/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

/* Slides */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Dark overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 80px;
    color: white;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Buttons */
.btn-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.4);
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(5px);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 35px;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-content { margin-left: 20px; }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Category Scroll */
.category-scroll {
    padding: 60px 0;
    background: var(--white);
}

.scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 280px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

/* Section Styles */
.section-header {
    text-align: center;
    padding-top: 40px;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    padding: 10px 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-cream));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.2);
}

.product-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-shop-now {
    background: var(--text-dark);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-shop-now:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.section-footer {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    background: var(--text-dark);
    color: var(--white);
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}


.explore-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.explore-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Icons in One Line Container */
.icon-line {
    display: flex;
    justify-content: center;  /* Center the icons horizontally */
    align-items: center;  /* Vertically align the icons */
    gap: 20px; /* Adjust the space between icons */
    margin-top: 20px; /* Add some spacing above the icon line */
}

/* Icon Button Styles */
.nav-icon-btn {
    width: 50px;  /* Increased width */
    height: 50px; /* Increased height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 50%;
}

/* Hover Effect */
.nav-icon-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-icon-btn svg {
    width: 30px; /* Increased icon size */
    height: 30px; /* Increased icon size */
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #E53E3E;
    color: white;
    font-size: 12px; /* Increased font size */
    font-weight: 700;
    width: 22px; /* Increased badge size */
    height: 22px; /* Increased badge size */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-cream);
}

/* Responsive Adjustments for Mobile View */
@media (max-width: 768px) {
    .icon-line {
        gap: 15px; /* Adjusted gap for smaller screens */
    }
    .nav-icon-btn {
        width: 40px;  /* Adjusted size */
        height: 40px; /* Adjusted size */
    }
    .nav-icon-btn svg {
        width: 24px; /* Adjusted size */
        height: 24px; /* Adjusted size */
    }
}

@media (max-width: 576px) {
    .icon-line {
        gap: 10px; /* Further reduce gap for smaller screens */
    }
    .nav-icon-btn {
        width: 36px;  /* Adjusted size */
        height: 36px; /* Adjusted size */
    }
    .nav-icon-btn svg {
        width: 22px; /* Adjusted size */
        height: 22px; /* Adjusted size */
    }
}

/* Rituals Section */
.rituals-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.rituals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.ritual-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.ritual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.ritual-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ritual-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ritual-info {
    padding: 40px;
    text-align: center;
}

.ritual-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.ritual-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-ritual {
    background: var(--text-dark);
    color: var(--white);
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ritual:hover {
    background: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 50px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-card h3 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.category-feature {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.category-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.category-feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-feature p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 20px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
padding: 40px;
border-radius: 20px;
border-left: 4px solid var(--primary-color);
box-shadow: 0 10px 40px rgba(0,0,0,0.06);
transition: all 0.4s ease;
}
.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(184, 134, 11, 0.2);
}
.testimonial-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}
.testimonial-header img {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
}
.testimonial-header h4 {
font-size: 18px;
margin-bottom: 5px;
color: var(--text-dark);
}
.testimonial-header p {
font-size: 13px;
color: var(--text-light);
}
.testimonial-rating {
color: var(--secondary-color);
font-size: 20px;
margin-bottom: 15px;
}
.testimonial-text {
font-size: 15px;
color: var(--text-light);
line-height: 1.7;
font-style: italic;
}
/* FAQ Section */
.faq-section {
padding: 50px 0;
background: var(--bg-cream);
}
.faq-container {
max-width: 900px;
margin: 0 auto;
}
.faq-item {
background: var(--white);
margin-bottom: 15px;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.05);
transition: all 0.3s ease;
}
.faq-item:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.faq-question {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 25px 30px;
background: none;
border: none;
cursor: pointer;
text-align: left;
font-size: 17px;
font-weight: 600;
color: var(--text-dark);
transition: all 0.3s ease;
}
.faq-question:hover {
background: var(--bg-light);
}
.faq-icon {
width: 24px;
height: 24px;
stroke: var(--primary-color);
transition: transform 0.3s ease;
flex-shrink: 0;
}
.faq-item.active .faq-icon {
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
max-height: 300px;
padding: 0 30px 25px;
}
.faq-answer p {
font-size: 15px;
color: var(--text-light);
line-height: 1.7;
}
/* Contact Section */
.contact-section {
padding: 30px 0;
background: linear-gradient(to bottom, var(--bg-light), var(--bg-cream));
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}
.contact-info {
background: var(--white);
padding: 50px;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.contact-info h3 {
font-size: 32px;
margin-bottom: 20px;
color: var(--text-dark);
}
.contact-info > p {
font-size: 16px;
color: var(--text-light);
margin-bottom: 40px;
line-height: 1.7;
}
.contact-details {
display: flex;
flex-direction: column;
gap: 30px;
}
.contact-item {
display: flex;
gap: 20px;
}
.contact-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.contact-icon svg {
width: 24px;
height: 24px;
stroke: var(--white);
}
.contact-item h4 {
font-size: 16px;
margin-bottom: 5px;
color: var(--text-dark);
}
.contact-item p {
font-size: 14px;
color: var(--text-light);
}
.contact-form {
background: var(--white);
padding: 50px;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 20px;
}
.form-group {
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
.form-group label {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.5px;
text-transform: uppercase;
color: var(--text-dark);
margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
padding: 15px;
border: 1px solid var(--border-color);
border-radius: 10px;
font-size: 15px;
font-family: 'Montserrat', sans-serif;
transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}
.btn-submit {
width: 100%;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
padding: 18px;
border: none;
border-radius: 50px;
font-size: 15px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-submit:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}
/* Footer */
.footer {
background: linear-gradient(135deg, #8B4513, #A0522D);
color: var(--white);
padding: 80px 0 30px;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 50px;
margin-bottom: 50px;
}
.footer-logo {
height: 100px;
margin-bottom: 20px;
filter: brightness(0) invert(1);
}
.footer-col p {
font-size: 14px;
line-height: 1.7;
color: rgba(255,255,255,0.8);
margin-bottom: 25px;
}
.newsletter-form {
display: flex;
gap: 10px;
}
.newsletter-form input {
flex: 1;
padding: 12px 20px;
border: none;
border-radius: 30px;
background: rgba(255,255,255,0.2);
color: var(--white);
font-size: 14px;
}
.newsletter-form input::placeholder {
color: rgba(255,255,255,0.6);
}
.newsletter-form button {
width: 45px;
height: 45px;
background: var(--primary-color);
border: none;
border-radius: 50%;
color: var(--white);
font-size: 20px;
cursor: pointer;
transition: all 0.3s ease;
}
.newsletter-form button:hover {
background: var(--secondary-color);
transform: translateX(5px);
}
.footer-col h4 {
font-size: 18px;
margin-bottom: 25px;
font-family: 'Montserrat', sans-serif;
}
.footer-col ul {
list-style: none;
}
.footer-col ul li {
margin-bottom: 12px;
}
.footer-col ul li a {
font-size: 14px;
color: rgba(255,255,255,0.8);
transition: all 0.3s ease;
}
.footer-col ul li a:hover {
color: var(--secondary-color);
padding-left: 5px;
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.2);
}
.footer-bottom p {
font-size: 13px;
color: rgba(255,255,255,0.7);
}
.social-links {
display: flex;
gap: 15px;
}
.social-links a {
width: 40px;
height: 40px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.social-links a:hover {
background: var(--primary-color);
transform: translateY(-3px);
}
.social-links svg {
width: 18px;
height: 18px;
}
/* Scroll to Top */
.scroll-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border: none;
border-radius: 50%;
color: var(--white);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: all 0.3s ease;
z-index: 999;
box-shadow: 0 5px 20px rgba(184, 134, 11, 0.3);
}
.scroll-top.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.scroll-top:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(184, 134, 11, 0.5);
}
.scroll-top svg {
width: 24px;
height: 24px;
}
/* Animations */
.animate-on-scroll {
opacity: 0;
transform: translateY(40px);
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
opacity: 1;
transform: translateY(0);
}
/* Responsive Design */
@media (max-width: 1200px) {
.hero-title {
font-size: 48px;
}
.section-title {
    font-size: 40px;
}
}
@media (max-width: 992px) {
.nav-icons {
gap: 20px;
}
.nav-menu {
    gap: 25px;
}

.hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 42px;
}

.about-grid,
.contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

.rituals-grid {
    grid-template-columns: 1fr;
}

.footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
}
@media (max-width: 768px) {
.mobile-toggle {
display: flex;
}
.nav-categories {
    display: none;
}

.nav-icons .nav-link {
    display: none;
}

.hero-title {
    font-size: 36px;
}

.hero-subtitle {
    font-size: 16px;
}

.hero-image img {
    height: 400px;
}

.section-title {
    font-size: 32px;
}

.section-subtitle {
    font-size: 16px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.products-grid,
.categories-grid,
.testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.form-row {
    grid-template-columns: 1fr;
}

.contact-info,
.contact-form {
    padding: 30px;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
}
@media (max-width: 576px) {
.container {
padding: 0 15px;
}
.hero-title {
    font-size: 28px;
}

.section-title {
    font-size: 28px;
}

.hero-container {
    padding: 40px 15px;
}

.products-section,
.explore-shop,
.rituals-section,
.about-section,
.categories-section,
.testimonials-section,
.faq-section,
.contact-section {
    padding: 20px 0;
}

.category-card {
    flex: 0 0 220px;
}

.category-image {
    height: 280px;
}



.scroll-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
}
}
/* Notification Panel */
.notification-panel {
    position: fixed;
    top: 60px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.20);
    padding: 15px;

    /* Visibility animation */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.25s ease;

    /* 🔥 FORCE ON TOP 🔥 */
    z-index: 999999 !important;
}

.notification-panel.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.panel-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.notifications-list {
    max-height: 350px;
    overflow-y: auto;
}

.notification-item {
    padding: 10px 5px;
}

.notification-item h4 {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: bold;
}

.notification-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: red;
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
}
/* Badge */
.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: red;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 50%;
}

.xkqz-hero {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.xkqz-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensures proper scaling */
}

.btyr-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.btyr-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.fmpq-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
}
#searchBoxContainer {
    position: absolute;   /* make it float */
    top: 100%;            /* just below the navbar */
    left: 0;              /* align to left */
    display: none;        /* hidden by default */
    background: white;
    border: 1px solid #ccc;
    padding: 0.5rem;
    z-index: 1000;
    width: 250px;         /* adjust width as needed */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#searchInput {
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
}
.mobile-icons {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    justify-content: center;
}
/* Hide on desktop */
.mobile-only {
    display: none;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .desktop-only {
        display: none !important;
    }

    /* Left, Logo, Right FIXED alignment */
    .nav-left-icons,
    .nav-right-icons,
    .nav-logo {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .nav-left-icons {
        justify-content: flex-start;
    }

    .nav-logo {
        justify-content: center;
    }

    .nav-right-icons {
        justify-content: flex-end;
    }

    /* Show mobile icon */
    .mobile-only {
        display: flex !important;
    }
}

.mobile-icons svg {
    width: 28px;
    height: 28px;
    color: #444;
}

.mobile-icons button,
.mobile-icons a {
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-search-box {
    margin: 20px 0;
    padding: 0 10px;
}

.mobile-search-container {
    position: relative;
    z-index: 9999; /* fix click blocking */
}

.mobile-search-input {
    width: 100%;
    border: 2px solid #F59E0B;
    border-radius: 25px;
    padding: 12px 45px 12px 20px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
}

.mobile-search-input:focus {
    border-color: #D97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.mobile-search-input:not(:focus) {
    border-color: #F59E0B;
    box-shadow: none;
}

.mobile-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
     z-index: 10000;
}

.mobile-search-icon {
    width: 24px;
    height: 24px;
}
