        :root {
            --primary-gold: #D4AF37;
            --dark-gold: #B8860B;
            --light-gold: #F5E8AA;
            --dark-bg: #0F0F0F;
            --light-bg: #F9F5F0;
            --text-dark: #333333;
            --text-light: #777777;
            --white: #FFFFFF;
            --gray-border: #E5E5E5;
            --brand-red: #8b0000;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* ====================
           TOP BAR STYLES
        ==================== */
        .top-bar {
            background-color: var(--dark-bg);
            color: var(--white);
            font-size: 0.8rem;
            letter-spacing: 1px;
            padding: 6px 0;
        }
        
        /* ====================
           FIRST HEADER (LOGO, SEARCH, ICONS)
        ==================== */
        .first-header {
            background-color: var(--white);
            border-bottom: 1px solid var(--gray-border);
            padding: 15px 0;
        }
        
        .logo {
            font-family: 'Cinzel', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: 2px;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--primary-gold);
        }
        
        /* Search Bar Styles */
        .search-container {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .search-box {
            background-color: var(--light-bg) !important;
            border-radius: 25px;
            padding: 10px 20px;
            border: 1px solid var(--gray-border);
            transition: all 0.3s ease;
        }
        
        .search-box:focus-within {
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        .search-box input {
            background-color: transparent !important;
            border: none !important;
            font-size: 15px;
            padding-left: 10px;
        }
        
        .search-box input:focus {
            box-shadow: none !important;
        }
        
        .search-box i {
            color: var(--text-light);
            transition: color 0.3s;
        }
        
        .search-box:focus-within i {
            color: var(--primary-gold);
        }
        
        /* Mobile Search Bar */
        .mobile-search-container {
            display: none;
            padding: 15px 0;
            background: var(--white);
            border-bottom: 1px solid var(--gray-border);
        }
        
        .mobile-search-box {
            background-color: var(--light-bg) !important;
            border-radius: 25px;
            padding: 10px 20px;
            border: 1px solid var(--gray-border);
            transition: all 0.3s ease;
        }
        
        .mobile-search-box:focus-within {
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        .mobile-search-box input {
            background-color: transparent !important;
            border: none !important;
            font-size: 15px;
            width: 100%;
        }
        
        .mobile-search-box input:focus {
            box-shadow: none !important;
        }
        
        /* Header Icons */
        .header-icons {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 20px;
        }
        
        .header-icon {
            position: relative;
            color: var(--text-dark);
            font-size: 18px;
            transition: color 0.3s;
            cursor: pointer;
            text-decoration: none;
        }
        
        .header-icon:hover {
            color: var(--primary-gold);
        }
        
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--brand-red);
            color: white;
            font-size: 10px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Mobile Header Layout */
        .mobile-header-layout {
            display: flex;
            align-items: center;
            width: 100%;
        }
        
        .mobile-menu-toggle {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-dark);
            padding: 10px 15px 10px 0;
            cursor: pointer;
            display: none;
        }
        
        /* ====================
           SECOND HEADER (NAVIGATION MENU)
        ==================== */
        .second-header {
            background-color: var(--white);
            border-bottom: 1px solid var(--gray-border);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1030;
        }
        
        /* Navigation Styles */
        .main-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 5px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 15px 20px !important;
            font-weight: 500;
            color: var(--text-dark) !important;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 5px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-gold) !important;
            background-color: var(--light-bg);
        }
        
        .nav-link i {
            font-size: 14px;
        }
        
        /* Dropdown Menu Styles */
        .dropdown-menu {
            border: none;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 20px;
            min-width: 250px;
            margin-top: 5px !important;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            display: block;
            visibility: hidden;
        }
        
        .nav-item:hover .dropdown-menu {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }
        
        .dropdown-item {
            padding: 10px 15px;
            border-radius: 5px;
            color: var(--text-dark);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .dropdown-item:hover {
            background-color: var(--light-bg);
            color: var(--primary-gold);
            transform: translateX(5px);
        }
        
        .dropdown-item i {
            color: var(--primary-gold);
            width: 20px;
            font-size: 14px;
        }
        
        /* Mega Menu Styles */
        .mega-dropdown {
            position: static !important;
        }
        
        .mega-menu {
            position: absolute;
            left: 0;
            width: 100%;
            background: var(--white);
            border-radius: 0 0 10px 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            padding: 30px;
            opacity: 0;
            transform: translateY(10px);
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .mega-dropdown:hover .mega-menu {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }
        
        .mega-menu-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
        }
        
        .mega-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .mega-section {
            margin-bottom: 20px;
        }
        
        .mega-section h6 {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 1px solid var(--light-gold);
        }
        
        .mega-section a {
            display: block;
            padding: 8px 0;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .mega-section a:hover {
            color: var(--primary-gold);
            transform: translateX(5px);
        }
        
        .mega-image {
            border-radius: 10px;
            overflow: hidden;
        }
        
        .mega-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .mega-image:hover img {
            transform: scale(1.05);
        }
        
        /* ====================
           MOBILE CATEGORIES SCROLL
        ==================== */
        .mobile-categories-container {
            display: none;
            background: var(--white);
            border-bottom: 1px solid var(--gray-border);
            overflow-x: auto;
            padding: 10px 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            position: relative;
        }
        
        .mobile-categories-container::-webkit-scrollbar {
            display: none;
        }
        
        .mobile-categories-scroll {
            display: flex;
            gap: 10px;
            padding: 0 15px;
            min-width: max-content;
        }
        
        .mobile-category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 80px;
            padding: 10px 5px;
            border-radius: 10px;
            background: var(--light-bg);
            border: 1px solid transparent;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--text-dark);
            white-space: nowrap;
        }
        
        .mobile-category-item.active, .mobile-category-item:hover {
            background: var(--primary-gold);
            color: var(--white);
            border-color: var(--primary-gold);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .mobile-category-item i {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--primary-gold);
        }
        
        .mobile-category-item.active i, .mobile-category-item:hover i {
            color: var(--white);
        }
        
        .mobile-category-item span {
            font-size: 12px;
            font-weight: 500;
            text-align: center;
            line-height: 1.2;
        }
        
        /* ====================
           MOBILE MENU STYLES
        ==================== */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100vh;
            background: var(--white);
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1050;
            transition: left 0.3s ease;
            overflow-y: auto;
            padding: 20px;
        }
        
        .mobile-menu.active {
            left: 0;
        }
        
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--gray-border);
        }
        
        .mobile-menu-logo {
            font-family: 'Cinzel', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            text-decoration: none;
        }
        
        .mobile-menu-logo span {
            color: var(--primary-gold);
        }
        
        .close-mobile-menu {
            background: none;
            border: none;
            font-size: 20px;
            color: var(--text-dark);
            cursor: pointer;
        }
        
        .mobile-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-nav-item {
            border-bottom: 1px solid var(--gray-border);
            position: relative;
        }
        
        .mobile-nav-item.has-submenu {
            display: flex;
            flex-wrap: wrap;
        }
        
        .mobile-nav-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            flex: 1;
        }
        
        .mobile-nav-link i {
            color: var(--primary-gold);
            font-size: 14px;
        }
        
        .mobile-dropdown-toggle {
            background: none;
            border: none;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            cursor: pointer;
            transition: transform 0.3s ease;
            position: absolute;
            right: 0;
            top: 0;
        }
        
        .mobile-dropdown-toggle.active {
            transform: rotate(180deg);
        }
        
        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: var(--light-bg);
            border-radius: 5px;
            margin: 10px 0;
            width: 100%;
        }
        
        .mobile-submenu.active {
            max-height: 500px;
            padding: 10px;
        }
        
        /* NEW: Grid layout for submenu items */
        .mobile-submenu-grid {
            display: none;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .mobile-submenu-grid.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .submenu-category {
            margin-bottom: 15px;
            padding: 10px;
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .submenu-category:last-child {
            margin-bottom: 0;
        }
        
        .submenu-category h6 {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--light-gold);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .submenu-items-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        .submenu-item {
            background: var(--light-bg);
            border-radius: 8px;
            padding: 12px 8px;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--text-dark);
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 60px;
        }
        
        .submenu-item:hover {
            background: var(--primary-gold);
            color: var(--white);
            border-color: var(--primary-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
        }
        
        .submenu-item i {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--primary-gold);
        }
        
        .submenu-item:hover i {
            color: var(--white);
        }
        
        .submenu-item span {
            font-size: 12px;
            font-weight: 500;
            line-height: 1.2;
        }
        
        /* Simple list submenu for other categories */
        .mobile-submenu-list {
            display: none;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .mobile-submenu-list.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .mobile-submenu-list-item {
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 5px;
            margin-bottom: 5px;
        }
        
        .mobile-submenu-list-item:last-child {
            margin-bottom: 0;
        }
        
        .mobile-submenu-list-item:hover {
            background: var(--primary-gold);
            color: var(--white);
        }
        
        .mobile-submenu-list-item i {
            width: 20px;
            text-align: center;
            color: var(--primary-gold);
        }
        
        .mobile-submenu-list-item:hover i {
            color: var(--white);
        }
        
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1049;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* ====================
           SLIDER STYLES
        ==================== */
        .slider-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: var(--dark-bg);
            height: 500px;
            margin-top: 20px;
        }
        
        .slider-container .carousel-inner,
        .slider-container .carousel-item {
            height: 100%;
        }
        
        .slide-inner {
            display: flex;
            height: 100%;
        }
        
        .slide-image {
            flex: 0 0 60%;
            height: 100%;
            overflow: hidden;
        }
        
        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .carousel-item.active .slide-image img {
            transform: scale(1.05);
        }
        
        .slide-content {
            flex: 0 0 40%;
            background: var(--dark-bg);
            color: var(--white);
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }
        
        .tata-badge {
            position: absolute;
            top: 40px;
            left: 60px;
            font-size: 12px;
            color: #999999;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        .tata-badge::before {
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            background-color: var(--primary-gold);
            margin-right: 8px;
            vertical-align: middle;
        }
        
        .slide-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            margin-bottom: 15px;
            color: var(--white);
        }
        
        .slide-content p {
            font-size: 18px;
            color: var(--light-gold);
            margin-bottom: 30px;
        }
        
        .shop-btn {
            background: var(--primary-gold) !important;
            color: var(--dark-bg) !important;
            border: none;
            padding: 14px 36px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s;
            letter-spacing: 1px;
            width: max-content;
        }
        
        .shop-btn:hover {
            background-color: var(--dark-gold) !important;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
        }
        
        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }
        
        .carousel-control-prev {
            left: 20px;
        }
        
        .carousel-control-next {
            right: 20px;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: rgba(212, 175, 55, 0.8);
            transform: translateY(-50%) scale(1.1);
        }
        
        /* Carousel Indicators */
        .carousel-indicators {
            bottom: 20px;
        }
        
        .carousel-indicators button {
            width: 12px !important;
            height: 12px !important;
            border-radius: 50% !important;
            background-color: rgba(255, 255, 255, 0.4) !important;
            border: none !important;
            margin: 0 5px !important;
        }
        
        .carousel-indicators button.active {
            background-color: var(--primary-gold) !important;
            transform: scale(1.2);
        }
        
        /* Chat Widget */
        .chat-widget {
            position: absolute;
            bottom: 40px;
            left: 60px;
            background-color: var(--white);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: 320px;
            z-index: 10;
        }
        
        .chat-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--gray-border);
        }
        
        .chat-title {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 16px;
        }
        
        .close-chat {
            background: none;
            border: none;
            font-size: 18px;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close-chat:hover {
            color: var(--primary-gold);
        }
        
        .chat-input-container {
            display: flex;
            align-items: center;
            background-color: var(--light-bg);
            border-radius: 25px;
            padding: 12px 20px;
        }
        
        .chat-input {
            border: none;
            background: transparent;
            outline: none;
            width: 100%;
            font-size: 14px;
        }
        
        .chat-input::placeholder {
            color: var(--text-light);
        }
        
        .chat-send {
            background: none;
            border: none;
            color: var(--primary-gold);
            cursor: pointer;
            font-size: 18px;
        }
        
        /* ====================
           RESPONSIVE STYLES
        ==================== */
        
        /* Large devices (desktops, 1200px and up) */
        @media (min-width: 1200px) {
            .mega-menu-content {
                grid-template-columns: 3fr 1fr;
            }
        }
        
        /* Large devices (desktops, less than 1200px) */
        @media (max-width: 1199.98px) {
            .slide-content {
                padding: 40px;
            }
            
            .slide-content h1 {
                font-size: 36px;
            }
            
            .mega-menu-content {
                grid-template-columns: 2fr 1fr;
                padding: 25px;
            }
            
            .mega-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Medium devices (tablets, 992px and down) */
        @media (max-width: 991.98px) {
            /* Show mobile menu toggle */
            .mobile-menu-toggle {
                display: block;
            }
            
            /* Hide desktop menu */
            .main-nav {
                display: none;
            }
            
            /* Adjust second header */
            .second-header {
                padding: 0;
            }
            
            /* Show mobile search bar */
            .mobile-search-container {
                display: block;
            }
            
            /* Show mobile categories */
            .mobile-categories-container {
                display: block;
            }
            
            /* Adjust first header */
            .first-header .header-icons {
                gap: 15px;
            }
            
            /* Adjust logo and menu icon layout */
            .mobile-header-layout {
                justify-content: space-between;
            }
            
            /* Adjust slider */
            .slider-container {
                height: auto;
                border-radius: 15px;
                margin-top: 15px;
            }
            
            .slide-inner {
                flex-direction: column;
            }
            
            .slide-image {
                flex: 0 0 100%;
                height: 300px;
            }
            
            .slide-content {
                flex: 0 0 100%;
                padding: 30px;
            }
            
            .slide-content h1 {
                font-size: 28px;
            }
            
            .tata-badge {
                top: 20px;
                left: 30px;
            }
            
            .chat-widget {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: 30px;
                width: 100%;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
            }
            
            .carousel-control-prev {
                left: 10px;
            }
            
            .carousel-control-next {
                right: 10px;
            }
        }
        
        /* Small devices (landscape phones, 768px and down) */
        @media (max-width: 767.98px) {
            .logo {
                font-size: 24px;
            }
            
            .top-bar {
                font-size: 0.7rem;
                padding: 6px 0;
            }
            
            .slider-container {
                border-radius: 0;
                margin: 10px -15px 0 -15px;
                width: calc(100% + 30px);
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .slide-content h1 {
                font-size: 24px;
            }
            
            .slide-content p {
                font-size: 16px;
            }
            
            .shop-btn {
                padding: 12px 30px;
                font-size: 14px;
            }
            
            .slide-image {
                height: 250px;
            }
            
            /* Hide carousel controls on mobile */
            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }
            
            .carousel-indicators {
                bottom: 10px;
            }
            
            /* Adjust first header */
            .first-header {
                padding: 10px 0;
            }
            
            .search-container {
                margin: 10px 0;
                max-width: 100%;
            }
            
            .header-icons {
                justify-content: flex-end;
                gap: 20px;
            }
            
            /* Mobile categories */
            .mobile-category-item {
                min-width: 70px;
                padding: 8px 5px;
            }
            
            .mobile-category-item i {
                font-size: 18px;
            }
            
            .mobile-category-item span {
                font-size: 11px;
            }
            
            /* Submenu grid adjustments */
            .submenu-items-grid {
                gap: 8px;
            }
            
            .submenu-item {
                padding: 10px 6px;
                min-height: 55px;
            }
            
            .submenu-item span {
                font-size: 11px;
            }
        }
        
        /* Extra small devices (phones, 576px and down) */
        @media (max-width: 575.98px) {
            .slide-content h1 {
                font-size: 22px;
            }
            
            .slide-content p {
                font-size: 14px;
            }
            
            .shop-btn {
                padding: 10px 25px;
                font-size: 13px;
            }
            
            .slide-image {
                height: 200px;
            }
            
            .mobile-menu {
                width: 100%;
            }
            
            .header-icon {
                font-size: 16px;
            }
            
            .tata-badge {
                top: 15px;
                left: 20px;
                font-size: 10px;
            }
            
            .tata-badge::before {
                width: 12px;
                height: 12px;
                margin-right: 5px;
            }
            
            .mega-menu-content {
                grid-template-columns: 1fr;
                padding: 15px;
            }
            
            .mega-grid {
                grid-template-columns: 1fr;
            }
            
            /* Mobile categories */
            .mobile-categories-scroll {
                gap: 8px;
                padding: 0 10px;
            }
            
            .mobile-category-item {
                min-width: 65px;
                padding: 8px 4px;
            }
            
            .mobile-category-item i {
                font-size: 16px;
            }
            
            .mobile-category-item span {
                font-size: 10px;
            }
            
            .header-icons {
                gap: 15px;
            }
            
            .mobile-menu-toggle {
                padding: 10px 10px 10px 0;
                font-size: 22px;
            }
            
            /* Submenu grid adjustments */
            .submenu-category {
                padding: 8px;
            }
            
            .submenu-items-grid {
                gap: 6px;
            }
            
            .submenu-item {
                padding: 8px 4px;
                min-height: 50px;
            }
            
            .submenu-item i {
                font-size: 16px;
            }
            
            .submenu-item span {
                font-size: 10px;
            }
        }
        
        /* Custom breakpoint for very small screens */
        @media (max-width: 380px) {
            .logo {
                font-size: 20px;
            }
            
            .slide-content h1 {
                font-size: 20px;
            }
            
            .header-icon {
                font-size: 14px;
            }
            
            .mobile-category-item {
                min-width: 60px;
            }
            
            .mobile-category-item span {
                font-size: 9px;
            }
            
            .submenu-items-grid {
                grid-template-columns: 1fr;
            }
            
            .submenu-item {
                min-height: 45px;
            }
        }
        
        /* ====================
           UTILITY CLASSES
        ==================== */
        .btn-shadow {
            box-shadow: 0 4px 9px -4px rgba(0, 0, 0, 0.35);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .text-gold {
            color: var(--primary-gold) !important;
        }
        
        /* Smooth transitions */
        .carousel-item {
            transition: transform 0.6s ease-in-out;
        }
        
        /* Form control styling */
        .form-control:focus {
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        /* Material Design enhancements */
        .mdb-card {
            border-radius: 12px;
            overflow: hidden;
        }
        
        .mdb-btn {
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ====================
   PROMO IMAGE GRID
==================== */
.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-card:hover img {
    transform: scale(1.05);
}

/* Heights */
.promo-large {
    height: 520px;
}

.promo-small {
    height: 250px;
}

/* Text Overlay */
.promo-text {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.promo-text h3 {
    font-size: 42px;
    font-weight: 500;
}

.promo-text h4 {
    font-size: 30px;
    font-weight: 500;
}

.promo-text span {
    color: var(--brand-red);
}

/* Positions */
.bottom-left {
    bottom: 30px;
    left: 30px;
}

.center-right {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.center-right.light h4 {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .promo-large {
        height: 350px;
    }

    .promo-small {
        height: 220px;
    }

    .promo-text h3 {
        font-size: 32px;
    }

    .promo-text h4 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .promo-large,
    .promo-small {
        height: 220px;
        border-radius: 15px;
    }

    .promo-text {
        left: 20px;
        right: auto;
    }

    .promo-text h3,
    .promo-text h4 {
        font-size: 22px;
    }
}

/* ====================
   SHOP BY CATEGORIES
==================== */
.category-section {
    padding: 0px 0;
    background: #fff;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
}

.category-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #777;
}

/* Card */
.category-card {
    text-align: center;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 22px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.category-card h5 {
    margin-top: 18px;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Hover */
.category-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Count Card */
.count-card {
    height: 360px;
    border-radius: 22px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.count-card h2 {
    font-size: 48px;
    color: var(--brand-red);
    font-family: 'Playfair Display', serif;
}

.count-card p {
    text-align: center;
    font-size: 16px;
    color: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .category-card img,
    .count-card {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .category-title {
        font-size: 30px;
    }

    .category-card img,
    .count-card {
        height: 240px;
        border-radius: 16px;
    }
}


/* ====================
   TRENDING NOW
==================== */
.trending-section {
    padding: 90px 0;
    background: #fff;
}

.trending-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
}

.trending-subtitle {
    font-size: 18px;
    color: #777;
    font-family: 'Inter', sans-serif;
}

/* Card */
.trending-card {
    text-align: center;
    cursor: pointer;
}

.trending-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.trending-card h5 {
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
}

/* Hover Effect */
.trending-card:hover img {
    transform: scale(1.04);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 991px) {
    .trending-card img {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .trending-title {
        font-size: 30px;
    }

    .trending-card img {
        height: 260px;
        border-radius: 16px;
    }

    .trending-card h5 {
        font-size: 18px;
    }
}

/* ====================
   TANISHQ WORLD
==================== */
.tanishq-world {
    padding: 0px 0;
    background: #fff;
}

.world-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
}

.world-subtitle {
    font-size: 18px;
    color: #777;
    font-family: 'Inter', sans-serif;
}

/* Card */
.world-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
}

.world-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Overlay gradient */
.world-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(139, 0, 0, 0.65),
        rgba(139, 0, 0, 0.15),
        transparent
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.world-overlay h4 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
}

/* Hover */
.world-card:hover img {
    transform: scale(1.06);
}

/* Responsive */
@media (max-width: 991px) {
    .world-card img {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .world-title {
        font-size: 30px;
    }

    .world-card img {
        height: 260px;
        border-radius: 16px;
    }

    .world-overlay h4 {
        font-size: 22px;
    }
}


/* ====================
   TANISHQ FOOTER
==================== */
.tanishq-footer {
    background: radial-gradient(circle at top, #4a0d0d, #2a0000);
    color: #fff;
    padding: 90px 0 40px;
    border-radius: 80px 80px 0 0;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    margin-bottom: 15px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-qr {
    width: 160px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
}

.app-buttons img {
    height: 40px;
    margin-right: 10px;
}

.tanishq-footer h6 {
    font-size: 18px;
    margin-bottom: 15px;
}

.tanishq-footer ul {
    list-style: none;
    padding: 0;
}

.tanishq-footer ul li {
    margin-bottom: 10px;
}

.tanishq-footer ul li a {
    color: #f1f1f1;
    text-decoration: none;
    font-size: 14px;
}

.tanishq-footer ul li a:hover {
    text-decoration: underline;
}

.footer-icons a {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
}

.footer-divider {
    margin: 40px 0 25px;
    border-color: rgba(255,255,255,0.2);
}

/* Social */
.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-social span {
    font-weight: 600;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
}

/* Payments */
.footer-payments img {
    height: 28px;
    margin-right: 15px;
    filter: brightness(0) invert(1);
}

/* Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    margin-top: 25px;
}

.footer-bottom a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 767px) {
    .tanishq-footer {
        border-radius: 40px 40px 0 0;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
