@charset "utf-8";
/* CSS Document */


        /* ==================== GLOBAL STYLES ==================== */
        :root {
            --primary-color: #304a32;
            --primary-dark: #4f7745;
            --accent-color: #c2a68c;
			--black-heading: #000000;
			--black-light: #333333;
            --text-main: #333333;
            --text-muted: #666666;
            --bg-light: #f9f8f6;
            --bg-card: #ffffff;
            --border-color: #e5e5e5;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Form controls site-wide are set to 14px by many individual .foo input rules
           further down; iOS Safari auto-zooms the page on focus for any input under
           16px. This one rule fixes that everywhere without touching each of them. */
        @media (max-width: 768px) {
            input, textarea, select { font-size: 16px !important; }
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--text-main);
            background-color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
			    }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        button {
            cursor: pointer;
            border: none;
            outline: none;
            background: none;
            font-family: inherit;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-family: var(--font-heading);
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-main);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: "✦";
            display: block;
            font-size: 14px;
            color: var(--accent-color);
            margin-top: 5px;
        }

        .slider-container {
            position: relative;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .slider-arrow:hover {
            background: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
        }

        .slider-arrow.prev { left: -15px; }
        .slider-arrow.next { right: -15px; }

        /* ==================== TOP BAR ==================== */
        .top-bar {
            background-color: var(--primary-color);
            color: #ffffff;
            font-size: 13px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-top-line {
            display: none;
            height: 5px;
            background-color: var(--primary-color);
            width: 100%;
        }

        /* ==================== HEADER & CART FLYOUT ==================== */
        .header {
            background: #ffffff;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 100;
        }

        .header-main {
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .logo a {
            font-family: var(--font-heading);
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: 1px;
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo span {
            font-size: 10px;
            letter-spacing: 4px;
            color: var(--text-muted);
            margin-top: 4px;
            font-family: var(--font-body);
            text-transform: uppercase;
        }

        .search-box {
            flex: 1;
            max-width: 600px;
            display: flex;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            overflow: hidden;
        }

        .search-box select {
            padding: 0 15px;
            border: none;
            border-right: 1px solid var(--border-color);
            background-color: #fcfcfc;
            font-size: 14px;
            color: var(--text-muted);
            outline: none;
            cursor: pointer;
        }

        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            outline: none;
            font-size: 14px;
        }

        .search-box button {
            background-color: var(--primary-dark);
            color: #ffffff;
            padding: 0 22px;
            font-size: 16px;
            transition: background 0.3s;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .action-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--text-main);
            position: relative;
            cursor: pointer;
        }

        .action-item i {
            font-size: 20px;
            margin-bottom: 3px;
            color: var(--primary-color);
        }

        .action-item .badge {
            position: absolute;
            top: -5px;
            right: 0px;
            background: var(--primary-dark);
            color: white;
            font-size: 10px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Cart Shutter Drawer */
        .cart-wrapper {
            position: relative;
        }

        .cart-shutter {
            position: absolute;
            top: 100%;
            right: 0;
            width: 340px;
            background: #ffffff;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
            border-radius: 6px;
            padding: 20px;
            display: none;
            z-index: 1000;
        }

        .cart-wrapper:hover .cart-shutter,
        .cart-shutter.active {
            display: block;
        }

        .cart-shutter-header {
            font-weight: 600;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
        }

        .cart-item {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
            align-items: center;
        }

        .cart-item img {
            width: 50px;
            height: 50px;
            border-radius: 4px;
        }

        .cart-item-details {
            flex: 1;
            font-size: 13px;
        }

        .cart-item-title {
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }

        .cart-item-price {
            color: var(--primary-color);
            font-weight: 600;
        }

        .cart-total {
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 15px;
        }

        .btn-checkout {
            display: block;
            width: 100%;
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 10px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
        }

        .btn-checkout:hover {
            background: var(--primary-dark);
        }

        /* ==================== DESKTOP NAV & MEGAMENU ==================== */
        .navbar {
            background: #ffffff;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            height: 50px;
        }

        .all-categories-btn {
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            font-size: 15px;
            cursor: pointer;
            position: relative;
            width: 260px;
            justify-content: space-between;
        }

        .categories-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 260px;
            background: #ffffff;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            display: none;
            z-index: 1000;
            text-align: left;
        }

        .all-categories-btn:hover .categories-dropdown,
        .categories-dropdown.active {
            display: block;
        }

        .categories-dropdown > li {
            position: relative;
            border-bottom: 1px solid #f5f5f5;
        }

        .categories-dropdown a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 18px;
            font-size: 14px;
            color: var(--text-main);
            text-align: left;
        }

        .categories-dropdown a .cat-left {
            display: flex;
            align-items: center;
            gap: 12px;
            text-align: left;
        }

        .categories-dropdown a i {
            width: 18px;
            color: var(--primary-dark);
            text-align: center;
        }

        .categories-dropdown > li:hover {
            background-color: var(--bg-light);
        }

        .sub-categories-menu {
            position: absolute;
            top: 0;
            left: 100%;
            width: 240px;
            background: #ffffff;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
            display: none;
            z-index: 1001;
            text-align: left;
        }

        .categories-dropdown > li:hover .sub-categories-menu {
            display: block;
        }

        .sub-categories-menu li a {
            padding: 11px 18px;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            text-align: left;
        }

        .sub-categories-menu li a i {
            color: var(--primary-color);
            width: 18px;
        }

        /* Deeper levels (grandchild categories, etc.) cascade further right,
           reusing the same .sub-categories-menu flyout at every depth. */
        .sub-categories-menu li {
            position: relative;
        }
        .sub-categories-menu li:hover > .sub-categories-menu {
            display: block;
        }

        .nav-links {
            display: flex;
            align-items: center;
            height: 100%;
            margin-left: 20px;
            flex: 1;
            justify-content: space-between;
        }

        .nav-links li a {
            padding: 0 15px;
            font-weight: 500;
            font-size: 15px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            height: 100%;
        }

        .nav-links li a:hover {
            color: var(--primary-color);
        }

        .mobile-hamburger-btn {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
            background: none;
            border: none;
        }

        #mobileMenuClose {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-main);
        }

        /* ==================== FULL WIDTH HERO SLIDER ==================== */
        .hero-slider-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            background-color: var(--bg-light);
        }

        .hero-slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .hero-slide {
            min-width: 100%;
            height: 600px;
            position: relative;
            display: flex;
            align-items: center;
        }

        .hero-slide img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay-content {
            position: relative;
            z-index: 2;
            max-width: 550px;
            padding: 40px 50px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(8px);
            margin-left: 8%;
            border-radius: 6px;
            box-shadow: var(--shadow-md);
        }

        .hero-subtitle {
            font-family: var(--font-heading);
            font-style: italic;
            color: var(--accent-color);
            font-size: 22px;
            margin-bottom: 8px;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 42px;
            line-height: 1.2;
            color: var(--text-main);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .hero-desc {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 25px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--primary-color);
            z-index: 10;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
        }

        .hero-arrow:hover {
            background: var(--primary-color);
            color: #ffffff;
        }

        .hero-arrow.prev { left: 20px; }
        .hero-arrow.next { right: 20px; }

        /* ==================== SHOP BY CATEGORY ==================== */
        .shop-by-category {
            padding: 60px 0;
        }

        .category-banners {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .cat-banner-card {
            position: relative;
            height: 220px;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .cat-banner-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .cat-banner-card:hover img {
            transform: scale(1.05);
        }

        .cat-banner-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.4), transparent);
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #ffffff;
        }

        .cat-banner-overlay h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            margin-bottom: 5px;
        }

        .cat-banner-overlay p {
            font-size: 13px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .cat-banner-overlay a {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: underline;
        }

        .category-icons-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 18px;
        }

        .icon-cat-item {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 22px 10px;
            text-align: center;
            background: #ffffff;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .icon-cat-item:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-sm);
            transform: translateY(-4px);
        }

        .icon-cat-item i {
            font-size: 26px;
            color: var(--primary-dark);
        }

        .icon-cat-item span {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-main);
        }

        /* ==================== HOT DEALS SLIDER (10 PRODUCTS WITH ARROWS) ==================== */
        .deals-section {
            padding: 50px 0;
            background-color: #fdfaf6;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .deals-slider-wrapper {
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .deals-slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .deal-slide-item {
            min-width: 100%;
            box-sizing: border-box;
        }

        .deal-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 40px;
            box-shadow: var(--shadow-sm);
        }

        .deal-img-wrapper {
            flex: 1;
            max-width: 450px;
            position: relative;
            border-radius: 6px;
            overflow: hidden;
        }

        .deal-img-wrapper img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        .deal-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #e74c3c;
            color: #ffffff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .deal-info {
            flex: 1;
        }

        .deal-info h3 {
            font-family: var(--font-heading);
            font-size: 28px;
            color: var(--text-main);
            margin-bottom: 10px;
        }

        .deal-info p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .deal-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .deal-price span.old-price {
            font-size: 16px;
            color: #999;
            text-decoration: line-through;
            font-weight: 400;
        }

        .countdown-timer {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .timer-box {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            padding: 10px 15px;
            border-radius: 6px;
            text-align: center;
            min-width: 70px;
        }

        .timer-box .time {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }

        .timer-box .label {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            margin-top: 4px;
        }

        /* ==================== FANCY TABBING & PRODUCTS ==================== */
        .products-section {
            padding: 50px 0;
        }

        .fancy-tabs-wrapper {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }

        .fancy-tab-btn {
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .fancy-tab-btn i {
            color: var(--primary-color);
        }

        .fancy-tab-btn.active, .fancy-tab-btn:hover {
            background-color: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
            box-shadow: var(--shadow-sm);
        }

        .fancy-tab-btn.active i, .fancy-tab-btn:hover i {
            color: #ffffff;
        }

        .tab-content-panel {
            display: none;
        }

        .tab-content-panel.active {
            display: block;
        }

        .products-slider-wrapper {
            overflow: hidden;
            position: relative;
        }

        .products-slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.4s ease-in-out;
        }

        .products-slider-track .product-card {
            flex: 0 0 calc(20% - 16px);
            min-width: calc(20% - 16px);
        }

        .product-card {
            border: 1px solid var(--border-color);
            border-radius: 6px;
            background: #ffffff;
            overflow: hidden;
            transition: all 0.3s;
            position: relative;
        }

        .product-card:hover {
            box-shadow: var(--shadow-md);
        }

        .product-thumb {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: var(--bg-light);
        }

        .product-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .wishlist-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ffffff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            box-shadow: var(--shadow-sm);
        }

        .product-details {
            padding: 15px;
        }

        .product-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-price {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 15px;
        }

        /* Mobile Accordion replacing Tabbing */
        .mobile-accordion-wrapper {
            display: none;
        }

        .accordion-item {
            border: 1px solid var(--border-color);
            border-radius: 6px;
            margin-bottom: 10px;
            overflow: hidden;
        }

        .accordion-header {
            width: 100%;
            padding: 15px;
            background: var(--bg-light);
            font-weight: 600;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
        }

        .accordion-content {
            padding: 15px;
            display: none;
            background: #ffffff;
        }

        .accordion-item.active .accordion-content {
            display: block;
        }

        .accordion-item.active .accordion-header {
            background: var(--primary-color);
            color: white;
        }

        /* ==================== ROOM SLIDER ==================== */
        .room-slider-wrapper {
            overflow: hidden;
            position: relative;
        }

        .room-slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.4s ease-in-out;
        }

        .room-card {
            flex: 0 0 calc(25% - 15px);
            min-width: calc(25% - 15px);
            position: relative;
            height: 220px;
            border-radius: 6px;
            overflow: hidden;
        }

        .room-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .room-title-overlay {
            position: absolute;
            bottom: 15px;
            left: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            padding: 10px;
            text-align: center;
            border-radius: 4px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 16px;
        }

        /* ==================== NEWSLETTER & FOOTER ==================== */
        .newsletter-section {
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 35px 0;
        }

        .newsletter-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .newsletter-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .newsletter-info i {
            font-size: 36px;
        }

        .newsletter-info h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            line-height: 1.2;
        }

        .newsletter-form {
            display: flex;
            width: 450px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            outline: none;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
        }

        .newsletter-form button {
            background-color: var(--accent-color);
            color: #ffffff;
            padding: 0 25px;
            font-weight: 600;
            border-radius: 0 4px 4px 0;
            text-transform: uppercase;
            font-size: 13px;
        }

        .footer {
            background: #ffffff;
            padding: 60px 0 20px;
            border-top: 1px solid var(--border-color);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-col p, .footer-col ul li a {
            font-size: 14px;
            color: var(--text-muted);
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
        }

        .payment-icons {
            display: flex;
            gap: 10px;
            font-size: 22px;
        }

        /* Mobile Drawer */
        .mobile-drawer-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            display: none;
        }

        .mobile-drawer {
            position: fixed;
            top: 0; left: -300px; width: 300px; height: 100%;
            background: #ffffff;
            z-index: 2001;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-drawer.open { left: 0; }
        .mobile-drawer-overlay.open { display: block; }

        .drawer-header {
            padding: 20px;
            background: var(--bg-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
        }

        .drawer-categories-list a {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 20px;
            font-size: 15px;
            border-bottom: 1px solid #f0f0f0;
            text-align: left;
        }

        .drawer-categories-list a i {
            color: var(--primary-color);
            width: 20px;
        }

        /* ==================== RESPONSIVE BREAKPOINTS ==================== */
        @media (max-width: 1024px) {
            .products-slider-track .product-card {
                flex: 0 0 calc(33.333% - 14px);
                min-width: calc(33.333% - 14px);
            }
            .room-card {
                flex: 0 0 calc(33.333% - 14px);
                min-width: calc(33.333% - 14px);
            }
            .category-icons-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .deal-card {
                flex-direction: column;
            }
            .deal-img-wrapper {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .top-bar { display: none; }
            .mobile-top-line { display: block; }
            .navbar { display: none; }

            .header-main {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .mobile-header-top {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .mobile-hamburger-btn { display: flex; order: 1; }
            .logo { order: 2; margin: 0 auto; text-align: center; }
            .search-box { width: 100%; order: 3; }

            .header-actions {
                order: 4;
                width: 100%;
                justify-content: center;
                gap: 30px;
                border-top: 1px dashed var(--border-color);
                padding-top: 10px;
            }

            .hero-slide { height: 420px; }
            .hero-overlay-content {
                margin: 0 20px;
                padding: 25px;
            }
            .hero-title { font-size: 26px; }

            .fancy-tabs-wrapper { display: none; }
            .desktop-products-slider { display: none; }
            .mobile-accordion-wrapper { display: block; }

            .category-banners { grid-template-columns: 1fr; }
            .category-icons-grid { grid-template-columns: repeat(2, 1fr); }

            .newsletter-container {
                flex-direction: column;
                text-align: center;
            }
            .newsletter-form { width: 100%; }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .cart-shutter {
                right: -50px;
                width: 300px;
            }
        }
 /* ==================== BREADCRUMB ==================== */
        .breadcrumb-section {
            background-color: var(--bg-light);
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 14px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

        .breadcrumb i {
            font-size: 11px;
        }

        .breadcrumb span {
            color: var(--text-main);
            font-weight: 500;
        }

        /* ==================== PRODUCT DETAIL TOP SECTION (50/50 division) ==================== */
        .product-detail-section {
            padding: 50px 0;
        }

        .product-detail-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 40px;
            align-items: start;
            position: relative;
            width: 100%;
        }

        /* Gallery - 50% Width & Image Zoom Engine */
        .product-gallery {
            display: flex;
            flex-direction: column;
            gap: 15px;
            position: relative;
            width: 100%;
            min-width: 0;
        }

        .main-image-container {
            width: 100%;
            height: 500px;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            background: #ffffff;
            cursor: crosshair;
        }

        .main-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Lens overlay on main image */
        .zoom-lens {
            position: absolute;
            border: 1px solid #333;
            width: 140px;
            height: 140px;
            background-color: rgba(255, 255, 255, 0.4);
            display: none;
            pointer-events: none;
            border-radius: 4px;
            box-shadow: 0 0 5px rgba(0,0,0,0.2);
        }

        /* Zoomed Result Window */
        .zoom-result-window {
            position: absolute;
            left: calc(100% + 20px);
            top: 0;
            width: 100%;
            height: 500px;
            border: 1px solid var(--border-color);
            background-repeat: no-repeat;
            background-color: #ffffff;
            box-shadow: var(--shadow-md);
            border-radius: 12px;
            z-index: 500;
            display: none;
        }

        /* Horizontal Carousel Controls & Slider */
        .thumbnail-carousel-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
        }

        .thumb-nav-btn {
            width: 36px;
            height: 36px;
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            cursor: pointer;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
            transition: all 0.2s ease;
        }

        .thumb-nav-btn:hover {
            background: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
        }

        .thumbnail-slider-container {
            overflow-x: auto;
            scroll-behavior: smooth;
            width: 100%;
            scrollbar-width: none;
        }

        .thumbnail-slider-container::-webkit-scrollbar {
            display: none;
        }

        .thumbnail-list {
            display: flex;
            flex-direction: row;
            gap: 12px;
            align-items: center;
            padding: 4px 2px;
        }

        .thumb-item {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            background: #ffffff;
        }

        .thumb-item.active {
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 0 1px var(--primary-color);
        }

        .thumb-item:hover {
            border-color: var(--primary-color);
        }

        .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Info Container */
        .product-info-container {
            display: flex;
            flex-direction: column;
            width: 100%;
            min-width: 0;
        }

        .product-category-tag {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .product-main-title {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
            line-height: 1.3;
            word-break: break-word;
        }

        .product-rating-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .stars {
            color: #f39c12;
            font-size: 14px;
        }

        .review-count {
            font-size: 13px;
            color: var(--text-muted);
        }

        .product-price-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .current-price {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .old-price {
            font-size: 18px;
            color: #999;
            text-decoration: line-through;
        }

        .discount-badge {
            background: #e74c3c;
            color: #fff;
            font-size: 12px;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
        }

        .product-short-desc {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 25px;
            border-bottom: 1px dashed var(--border-color);
            padding-bottom: 20px;
            word-break: break-word;
        }

        .product-action-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            overflow: hidden;
            width: 120px;
            height: 48px;
            flex-shrink: 0;
        }

        .quantity-control button {
            width: 36px;
            height: 100%;
            background: var(--bg-light);
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            transition: background 0.2s;
        }

        .quantity-control button:hover {
            background: #e5e5e5;
        }

        .quantity-control input {
            width: 48px;
            height: 100%;
            border: none;
            text-align: center;
            font-size: 15px;
            font-weight: 600;
            outline: none;
        }

        .btn-add-cart {
            flex: 1;
            min-width: 180px;
            height: 48px;
            background-color: var(--primary-color);
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background 0.3s;
            white-space: nowrap;
        }

        .btn-add-cart:hover {
            background-color: var(--primary-dark);
        }

        .btn-wishlist-icon {
            width: 48px;
            height: 48px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-main);
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .btn-wishlist-icon:hover {
            color: #e74c3c;
            border-color: #e74c3c;
        }

        .product-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            gap: 8px;
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
        }

        .product-meta span strong {
            color: var(--text-main);
        }

        /* ==================== TABBING & ACCORDION SECTION ==================== */
        .product-tabs-section {
            padding: 40px 0;
            background-color: #ffffff;
            border-top: 1px solid var(--border-color);
        }

        .tabs-header {
            display: flex;
            justify-content: center;
            gap: 15px;
            border-bottom: 2px solid var(--border-color);
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .tab-nav-btn {
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-muted);
            position: relative;
            bottom: -2px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .tab-nav-btn.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

        .tab-pane {
            display: none;
            max-width: 900px;
            margin: 0 auto;
        }

        .tab-pane.active {
            display: block;
        }

        /* Mobile Accordion Headings (Hidden on Desktop) */
        .accordion-header {
            display: none;
            width: 100%;
            padding: 15px 20px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            text-align: left;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            cursor: pointer;
        }

        .accordion-header i {
            transition: transform 0.3s ease;
        }

        .accordion-header.active {
            background: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
        }

        .accordion-header.active i {
            transform: rotate(180deg);
        }

        .description-content h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            margin-bottom: 15px;
        }

        .description-content p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .description-specs {
            margin-top: 25px;
            width: 100%;
            border-collapse: collapse;
        }

        .description-specs td {
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            font-size: 14px;
        }

        .description-specs td:first-child {
            font-weight: 600;
            background: var(--bg-light);
            width: 30%;
        }

        .reviews-summary {
            display: flex;
            align-items: center;
            gap: 30px;
            background: var(--bg-light);
            padding: 20px;
            border-radius: 6px;
            margin-bottom: 30px;
        }

        .avg-rating {
            text-align: center;
        }

        .avg-rating-number {
            font-size: 42px;
            color: var(--primary-color);
            line-height: 1;
        }

        .review-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        .review-card {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
        }

        .review-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .reviewer-name {
            font-weight: 600;
            font-size: 15px;
        }

        .review-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        .review-card p {
            font-size: 14px;
            color: var(--text-muted);
        }

        .form-box {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .form-box h4 {
            font-family: var(--font-heading);
            font-size: 20px;
            margin-bottom: 20px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group.full {
            grid-column: span 2;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            outline: none;
            font-family: inherit;
            font-size: 14px;
            background: #ffffff;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        /* Async form submission (review, contact, and any future [data-async-form]) */
        .form-async-message {
            padding: 10px 14px;
            border-radius: 6px;
            margin-bottom: 14px;
            font-size: 13.5px;
        }
        .form-async-message[data-type="success"] { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
        .form-async-message[data-type="error"] { background: #fdecea; color: #b3261e; border: 1px solid #f5c6cb; }
        [data-async-submit-btn][disabled] { opacity: 0.75; cursor: not-allowed; }
        .btn-spinner {
            display: inline-block;
            width: 13px;
            height: 13px;
            border: 2px solid rgba(255,255,255,0.4);
            border-top-color: #fff;
            border-radius: 50%;
            margin-right: 8px;
            vertical-align: -2px;
            animation: btnSpin 0.7s linear infinite;
        }
        @keyframes btnSpin { to { transform: rotate(360deg); } }

        .btn-submit {
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
            text-transform: uppercase;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background: var(--primary-dark);
        }

        /* ==================== RELATED PRODUCTS SLIDER ==================== */
        .related-products-section {
            padding: 60px 0;
            background-color: var(--bg-light);
            border-top: 1px solid var(--border-color);
        }

        .slider-container {
            position: relative;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .slider-arrow:hover {
            background: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
        }

        .slider-arrow.prev { left: -15px; }
        .slider-arrow.next { right: -15px; }

        .products-slider-wrapper {
            overflow: hidden;
            position: relative;
        }

        .products-slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.4s ease-in-out;
        }

        .products-slider-track .product-card {
            flex: 0 0 calc(20% - 16px);
            min-width: calc(20% - 16px);
        }

        .product-card {
            border: 1px solid var(--border-color);
            border-radius: 6px;
            background: #ffffff;
            overflow: hidden;
            transition: all 0.3s;
            position: relative;
        }

        .product-card:hover {
            box-shadow: var(--shadow-md);
        }

        .product-thumb {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: var(--bg-light);
        }

        .product-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .wishlist-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ffffff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            box-shadow: var(--shadow-sm);
        }

        .product-details {
            padding: 15px;
        }

        .product-title {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .product-price {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 15px;
        }


 /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .zoom-result-window { display: none !important; }
            .products-slider-track .product-card {
                flex: 0 0 calc(33.333% - 14px);
                min-width: calc(33.333% - 14px);
            }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .top-bar { display: none; }
            .mobile-top-line { display: block; }
            .navbar { display: none; }

            .header-main {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .mobile-header-top {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .mobile-hamburger-btn { display: flex; order: 1; }
            .logo { order: 2; margin: 0 auto; text-align: center; }
            .search-box { width: 100%; order: 3; }

            .header-actions {
                order: 4;
                width: 100%;
                justify-content: center;
                gap: 30px;
                border-top: 1px dashed var(--border-color);
                padding-top: 10px;
            }

            /* Responsive Product Detail Stack */
            .product-detail-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .main-image-container {
                height: 380px;
            }

            .product-main-title {
                font-size: 24px;
            }

            .current-price {
                font-size: 24px;
            }

            /* Mobile Tabs to Accordion Conversion */
            .tabs-header {
                display: none;
            }

            .accordion-header {
                display: flex;
            }

            .tab-pane {
                display: none;
                padding: 20px;
                background: #ffffff;
                border: 1px solid var(--border-color);
                border-top: none;
                border-radius: 0 0 6px 6px;
                margin-bottom: 10px;
                width: 100%;
            }

            .tab-pane.active-accordion {
                display: block;
            }

            .reviews-summary {
                flex-direction: column;
                text-align: center;
            }

            .form-box {
                padding: 20px;
            }

            .products-slider-track .product-card {
                flex: 0 0 calc(50% - 10px);
                min-width: calc(50% - 10px);
            }

            .form-grid { grid-template-columns: 1fr; }
            .form-group.full { grid-column: span 1; }
            .newsletter-container { flex-direction: column; text-align: center; }
            .newsletter-form { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .social-links { justify-content: center; }
            .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
        }

        @media (max-width: 480px) {
            .main-image-container {
                height: 300px;
            }
            .product-action-row {
                flex-direction: column;
                align-items: stretch;
            }
            .quantity-control {
                width: 100%;
                justify-content: space-between;
            }
            .btn-add-cart {
                width: 100%;
            }
            .btn-wishlist-icon {
                width: 100%;
            }
        }

.category-header-section {
            background-color: #ffffff;
            padding: 30px 0 10px;
            border-bottom: 1px solid #f0f0f0;
        }

        .category-header-title {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: 0.5px;
        }

        /* ==================== CATALOGUE LAYOUT ==================== */
        .catalogue-section {
            padding: 30px 0 60px;
        }

        .catalogue-grid {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 30px;
            align-items: start;
        }

        /* SIDEBAR FILTERS */
        .filter-sidebar {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            box-shadow: var(--shadow-sm);
        }

        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--bg-light);
        }

        .filter-header h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            color: var(--text-main);
        }

        .mobile-filter-close {
            display: none;
            font-size: 18px;
            color: var(--text-main);
            cursor: pointer;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--bg-light);
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
        }

        .btn-reset-filters {
            font-size: 12px;
            color: var(--accent-color);
            font-weight: 600;
            text-transform: uppercase;
        }

        .btn-reset-filters:hover {
            color: var(--primary-color);
        }

        .filter-group {
            margin-bottom: 25px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 20px;
        }

        .filter-group:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .filter-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .filter-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Custom Checkbox */
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-muted);
            cursor: pointer;
            user-select: none;
            justify-content: space-between;
        }

        .checkbox-label span.text-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .checkbox-label input {
            accent-color: var(--primary-color);
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        .checkbox-label:hover {
            color: var(--primary-color);
        }

        .count-badge {
            font-size: 12px;
            color: #999;
        }

        /* Price Slider */
        .price-inputs {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .price-inputs input {
            width: 100%;
            padding: 8px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 13px;
            text-align: center;
        }

        .price-range-slider {
            width: 100%;
            accent-color: var(--primary-color);
        }

        /* Color Attributes Swatches */
        .color-swatches {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .swatch {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
        }

        .swatch.active, .swatch:hover {
            box-shadow: 0 0 0 2px var(--primary-color);
        }

        .swatch-beige { background: #e3d5ca; }
        .swatch-emerald { background: #3b5249; }
        .swatch-black { background: #222222; }
        .swatch-gold { background: #d4af37; }
        .swatch-grey { background: #a8a8a8; }

        .btn-apply-filters {
            width: 100%;
            background: var(--primary-color);
            color: #ffffff;
            padding: 12px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            margin-top: 10px;
        }

        .btn-apply-filters:hover {
            background: var(--primary-dark);
        }

        /* MAIN PRODUCTS DISPLAY */
        .catalogue-main {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* Top Control Bar */
        .listing-control-bar {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .result-count {
            font-size: 14px;
            color: var(--text-muted);
        }

        .control-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .sort-select-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .sort-select-wrapper select {
            padding: 8px 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            outline: none;
            font-size: 14px;
            color: var(--text-main);
            background: #ffffff;
            cursor: pointer;
        }

        /* View Toggler Styling */
        .view-toggler {
            display: flex;
            gap: 4px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 3px;
            background: #ffffff;
        }

        .view-btn {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            border-radius: 4px;
            font-size: 16px;
            transition: all 0.2s ease;
        }

        .view-btn.active {
            background: var(--primary-color);
            color: #ffffff;
        }

        .mobile-filter-trigger {
            display: none;
            background: var(--primary-color);
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
        }

        /* Active Filter Chips */
        .active-filter-chips {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .chip {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-main);
        }

        .chip i {
            cursor: pointer;
            color: #999;
        }

        .chip i:hover {
            color: #e74c3c;
        }

        /* Products Grid Mode */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* Products List Mode Styles */
        .products-grid.list-view {
            grid-template-columns: 1fr;
        }

        .products-grid.list-view .product-card {
            flex-direction: row;
            align-items: center;
        }

        .products-grid.list-view .product-thumb {
            width: 250px;
            height: 200px;
            flex-shrink: 0;
        }

        .products-grid.list-view .product-details {
            padding: 20px;
        }

        .products-grid.list-view .product-title {
            font-size: 18px;
            height: auto;
            margin-bottom: 10px;
        }

        .product-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: #ffffff;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .product-thumb {
            position: relative;
            height: 220px;
            overflow: hidden;
            background: var(--bg-light);
        }

        .product-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-thumb img {
            transform: scale(1.05);
        }

        .product-tag-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--primary-color);
            color: white;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 3px;
            text-transform: uppercase;
            z-index: 2;
        }

        .product-tag-badge.sale { background: #e74c3c; }
        .product-tag-badge.hot { background: #e67e22; }

        .wishlist-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ffffff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            box-shadow: var(--shadow-sm);
            z-index: 2;
            transition: all 0.2s;
        }

        .wishlist-btn:hover {
            color: #e74c3c;
        }

        .product-details {
            padding: 15px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .product-cat {
            font-size: 11px;
            text-transform: uppercase;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .product-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-main);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.3;
            height: 36px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: #f39c12;
            margin-bottom: 10px;
        }

        .product-rating span {
            color: var(--text-muted);
            font-size: 11px;
        }

        .product-bottom-row {
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 10px;
            border-top: 1px dashed #f0f0f0;
        }

        .price-box {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .product-price {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 16px;
        }

        .product-old-price {
            font-size: 12px;
            color: #999;
            text-decoration: line-through;
        }

        .btn-cart-icon {
            width: 34px;
            height: 34px;
            background: var(--bg-light);
            color: var(--primary-color);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .product-card:hover .btn-cart-icon {
            background: var(--primary-color);
            color: white;
        }

        /* PAGINATION */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .page-item {
            width: 40px;
            height: 40px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            transition: all 0.2s;
        }

        .page-item.active, .page-item:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        /* Mobile Drawer Base Overlay */
        .mobile-drawer-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            display: none;
        }

        .mobile-drawer {
            position: fixed;
            top: 0; left: -300px; width: 300px; height: 100%;
            background: #ffffff;
            z-index: 2001;
            transition: left 0.3s ease;
            overflow-y: auto;
        }

        .mobile-drawer.open { left: 0; }
        .mobile-drawer-overlay.open { display: block; }

        .drawer-header {
            padding: 20px;
            background: var(--bg-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
        }

        .drawer-categories-list a {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 20px;
            font-size: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .drawer-categories-list a i {
            color: var(--primary-color);
            width: 20px;
        }

        /* RESPONSIVE BREAKPOINTS */
        @media (max-width: 1024px) {
            .products-grid { grid-template-columns: repeat(3, 1fr); }
            .catalogue-grid { grid-template-columns: 240px 1fr; gap: 20px; }
        }

        @media (max-width: 768px) {
            .catalogue-grid {
                grid-template-columns: 1fr;
            }

            .filter-sidebar {
                display: none;
            }

            .filter-sidebar.mobile-open {
                display: block;
                position: fixed;
                top: 0;
                left: 0;
                width: 300px;
                max-width: 85%;
                height: 100%;
                z-index: 2500;
                overflow-y: auto;
                border-radius: 0;
                box-shadow: 4px 0 15px rgba(0,0,0,0.2);
            }

            .mobile-filter-close {
                display: flex;
            }

            .mobile-filter-trigger {
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .products-grid.list-view .product-card {
                flex-direction: column;
            }

            .products-grid.list-view .product-thumb {
                width: 100%;
                height: 200px;
            }

            .category-header-title { font-size: 24px; text-align: center; }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
        }

/* ==================== SHOPPING CART PAGE STYLES ==================== */
        .cart-page-section {
            padding: 60px 0 80px;
            background-color: #ffffff;
        }

        .page-title {
            font-family: var(--font-heading);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .page-title span {
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 400;
            color: var(--text-muted);
        }

        .cart-layout {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 30px;
            align-items: start;
        }

        /* Cart Table Area */
        .cart-table-wrapper {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: var(--shadow-sm);
        }

        .cart-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .cart-table th {
            background-color: var(--bg-light);
            padding: 18px 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-main);
            border-bottom: 1px solid var(--border-color);
        }

        .cart-table td {
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            vertical-align: middle;
        }

        .cart-table tr:last-child td {
            border-bottom: none;
        }

        .cart-product {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cart-product img {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            object-fit: cover;
            flex-shrink: 0;
        }

        .cart-product-info h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-main);
        }

        .cart-product-info p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .product-price-col {
            font-weight: 600;
            color: var(--text-main);
            font-size: 15px;
        }

        /* Quantity Control */
        .quantity-control {
            display: flex;
            align-items: center;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            overflow: hidden;
            width: 100px;
            height: 38px;
            background: #ffffff;
        }

        .quantity-control button {
            width: 30px;
            height: 100%;
            background: var(--bg-light);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            transition: background 0.2s;
        }

        .quantity-control button:hover {
            background: #e5e5e5;
        }

        .quantity-control input {
            width: 40px;
            height: 100%;
            border: none;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            outline: none;
        }

        .product-subtotal-col {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 16px;
        }

        .remove-btn {
            color: #999;
            font-size: 16px;
            transition: color 0.2s ease;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .remove-btn:hover {
            color: #e74c3c;
            background: #fdf2f2;
        }

        /* Cart Actions Row below Table */
        .cart-actions-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: var(--bg-light);
            border-top: 1px solid var(--border-color);
            flex-wrap: wrap;
            gap: 15px;
        }

        .coupon-box {
            display: flex;
            gap: 10px;
            max-width: 380px;
            width: 100%;
        }

        .coupon-box input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            outline: none;
            font-size: 14px;
            background: #ffffff;
        }

        .btn-apply {
            background: var(--primary-color);
            color: #ffffff;
            padding: 0 20px;
            font-weight: 600;
            font-size: 13px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: background 0.3s;
        }

        .btn-apply:hover {
            background: var(--primary-dark);
        }

        .btn-outline {
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 20px;
            font-weight: 600;
            font-size: 13px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            background: #ffffff;
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: #ffffff;
        }

        /* Cart Summary Sidebar */
        .cart-summary-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px;
            background: #ffffff;
            box-shadow: var(--shadow-sm);
        }

        .cart-summary-card h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-main);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .summary-row.bold {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            border-top: 1px dashed var(--border-color);
            padding-top: 15px;
            margin-top: 15px;
        }

        .summary-row.bold span:last-child {
            color: var(--primary-color);
        }

        .free-shipping-progress {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 20px;
            font-size: 13px;
        }

        .progress-text {
            margin-bottom: 8px;
            color: var(--text-main);
            font-weight: 500;
        }

        .progress-bar {
            height: 6px;
            background: #e0e0e0;
            border-radius: 3px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--primary-color);
            width: 100%; /* Free shipping achieved */
        }

        .btn-checkout-main {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            background: var(--primary-color);
            color: #ffffff;
            padding: 15px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s;
            box-shadow: var(--shadow-sm);
        }

        .btn-checkout-main:hover {
            background: var(--primary-dark);
        }

        .trust-badges {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .trust-item i {
            color: var(--primary-color);
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        /* Empty Cart State (Hidden by default, used via JS) */
        .empty-cart-msg {
            text-align: center;
            padding: 50px 20px;
            display: none;
        }

        .empty-cart-msg i {
            font-size: 60px;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .empty-cart-msg h3 {
            font-family: var(--font-heading);
            font-size: 26px;
            margin-bottom: 10px;
        }

        .empty-cart-msg p {
            color: var(--text-muted);
            margin-bottom: 25px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .cart-layout {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            /* Responsive Cart Table */
            .cart-table thead {
                display: none; /* Hide header on mobile */
            }

            .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
                display: block;
                width: 100%;
            }

            .cart-table tr {
                margin-bottom: 15px;
                border-bottom: 2px solid var(--border-color);
                position: relative;
                padding-bottom: 15px;
            }

            .cart-table td {
                padding: 10px 15px;
                border: none;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .cart-table td::before {
                content: attr(data-label);
                font-weight: 600;
                font-size: 13px;
                text-transform: uppercase;
                color: var(--text-muted);
            }

            .cart-table td.cart-product-cell {
                display: block;
            }

            .cart-table td.cart-product-cell::before {
                display: none;
            }

            .cart-actions-row {
                flex-direction: column;
                align-items: stretch;
            }

            .coupon-box {
                max-width: 100%;
            }
        }

 /* ==================== CHECKOUT SECTION ==================== */
        .checkout-section {
            padding: 50px 0;
        }

        .checkout-grid {
            display: grid;
            grid-template-columns: 1.8fr 1.2fr;
            gap: 40px;
            align-items: start;
        }

        .checkout-box {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: var(--shadow-sm);
        }

        .checkout-box h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 12px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group.full {
            grid-column: span 2;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-main);
        }

        .form-group input, 
        .form-group select, 
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            outline: none;
            font-family: inherit;
            font-size: 14px;
            background: #ffffff;
            transition: border-color 0.3s;
        }

        .form-group input:focus, 
        .form-group select:focus, 
        .form-group textarea:focus {
            border-color: var(--primary-color);
        }

        .form-group textarea {
            height: 90px;
            resize: vertical;
        }

        /* Payment Options */
        .payment-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .payment-option {
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 15px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .payment-option.active {
            border-color: var(--primary-color);
            background-color: var(--bg-light);
        }

        .payment-option input[type="radio"] {
            margin-top: 4px;
            accent-color: var(--primary-color);
        }

        .payment-option-info h4 {
            font-size: 15px;
            font-weight: 600;
        }

        .payment-option-info p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Order Summary Card */
        .order-summary-box {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 30px;
            position: sticky;
            top: 20px;
        }

        .order-summary-box h3 {
            font-family: var(--font-heading);
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--primary-color);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 12px;
        }

        .summary-items-list {
            margin-bottom: 20px;
            max-height: 280px;
            overflow-y: auto;
            padding-right: 5px;
        }

        .summary-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--border-color);
        }

        .summary-item img {
            width: 60px;
            height: 60px;
            border-radius: 6px;
            border: 1px solid var(--border-color);
        }

        .summary-item-details {
            flex: 1;
        }

        .summary-item-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
        }

        .summary-item-qty {
            font-size: 13px;
            color: var(--text-muted);
        }

        .summary-item-price {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            margin-bottom: 10px;
            color: var(--text-muted);
        }

        .summary-row.total {
            border-top: 2px solid var(--border-color);
            padding-top: 15px;
            margin-top: 15px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
        }

        .btn-place-order {
            width: 100%;
            background: var(--primary-color);
            color: #ffffff;
            padding: 15px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
            transition: background 0.3s;
        }

        .btn-place-order:hover {
            background: var(--primary-dark);
        }

        /* Promo Code Box */
        .promo-code-box {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .promo-code-box input {
            flex: 1;
            padding: 10px 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 13px;
            outline: none;
        }

        .promo-code-box button {
            background: var(--accent-color);
            color: #ffffff;
            padding: 0 18px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .checkout-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .form-grid { grid-template-columns: 1fr; }
            .form-group.full { grid-column: span 1; }
            .checkout-box { padding: 20px; }
            .order-summary-box { padding: 20px; }
        }
/* ==================== FULL WIDTH BANNER ==================== */
        .contact-hero-banner {
            width: 100%;
            height: 300px;
            background: linear-gradient(rgba(42, 59, 52, 0.75), rgba(42, 59, 52, 0.75)), 
                        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #ffffff;
        }

        .banner-content h1 {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .banner-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            color: #e0e0e0;
        }

        .banner-breadcrumb a {
            color: #ffffff;
        }

        .banner-breadcrumb a:hover {
            color: var(--accent-color);
        }

        .banner-breadcrumb i {
            font-size: 11px;
        }

        /* ==================== CONTACT INFO CARDS ==================== */
        .contact-info-section {
            padding: 60px 0 30px;
        }

        .info-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .info-card {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 22px;
        }

        .info-card h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .info-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .info-card a {
            color: var(--text-muted);
        }

        .info-card a:hover {
            color: var(--primary-color);
        }

        /* ==================== FORM & MAP SECTION ==================== */
        .contact-main-section {
            padding: 40px 0 70px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        /* Form Box */
        .contact-form-wrapper {
            background: #ffffff;
            padding: 35px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .form-header-text {
            margin-bottom: 25px;
        }

        .form-header-text h3 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .form-header-text p {
            font-size: 14px;
            color: var(--text-muted);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full {
            grid-column: span 2;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-main);
        }

        .form-group input, 
        .form-group textarea, 
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            outline: none;
            font-family: inherit;
            font-size: 14px;
            background: #ffffff;
            transition: border-color 0.3s;
        }

        .form-group input:focus, 
        .form-group textarea:focus, 
        .form-group select:focus {
            border-color: var(--primary-color);
        }

        .form-group textarea {
            height: 140px;
            resize: vertical;
        }

        .btn-submit-contact {
            background: var(--primary-color);
            color: #ffffff;
            padding: 14px 30px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s;
            margin-top: 10px;
            width: 100%;
        }

        .btn-submit-contact:hover {
            background: var(--primary-dark);
        }

        /* Map Wrapper */
        .map-wrapper {
            height: 100%;
            min-height: 480px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            min-height: 480px;
            border: 0;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .contact-hero-banner { height: 220px; }
            .banner-content h1 { font-size: 30px; }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .map-wrapper {
                min-height: 350px;
            }

            .form-grid { grid-template-columns: 1fr; }
            .form-group.full { grid-column: span 1; }
        }

        @media (max-width: 480px) {
            .info-cards-grid { grid-template-columns: 1fr; }
            .contact-form-wrapper { padding: 20px; }
        }
 /* ==================== FULL WIDTH HERO BANNER ==================== */
        .about-hero-banner {
            width: 100%;
            height: 380px;
            background: linear-gradient(rgba(42, 59, 52, 0.75), rgba(42, 59, 52, 0.75)), 
                        url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #ffffff;
        }

        .banner-content h1 {
            font-family: var(--font-heading);
            font-size: 46px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .banner-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            color: #e0e0e0;
        }

        .banner-breadcrumb a {
            color: #ffffff;
        }

        .banner-breadcrumb a:hover {
            color: var(--accent-color);
        }

        .banner-breadcrumb i {
            font-size: 11px;
        }

        /* ==================== ABOUT US STORY SECTION ==================== */
        .about-story-section {
            padding: 80px 0;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .story-images {
            position: relative;
        }

        .main-story-img {
            border-radius: 8px;
            box-shadow: var(--shadow-md);
            width: 88%;
        }

        .overlay-story-img {
            position: absolute;
            bottom: -30px;
            right: 0;
            width: 50%;
            border-radius: 8px;
            border: 6px solid #ffffff;
            box-shadow: var(--shadow-md);
        }

        .story-content h3 {
            font-family: var(--font-heading);
            font-size: 30px;
            color: var(--text-main);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .story-content p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 18px;
            line-height: 1.8;
        }

        .story-badge {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: var(--bg-light);
            padding: 15px 25px;
            border-left: 4px solid var(--primary-color);
            border-radius: 0 8px 8px 0;
            margin-top: 10px;
        }

        .story-badge h4 {
            font-family: var(--font-heading);
            font-size: 26px;
            color: var(--primary-color);
        }

        .story-badge p {
            margin: 0;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-main);
            text-transform: uppercase;
        }

        /* ==================== STATS COUNTER SECTION ==================== */
        .stats-section {
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-item h2 {
            font-family: var(--font-heading);
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--accent-color);
        }

        .stat-item p {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #e0e0e0;
        }

        /* ==================== WHY CHOOSE US ==================== */
        .why-us-section {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: #ffffff;
            padding: 35px 25px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--bg-light);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: var(--primary-color);
            color: #ffffff;
        }

        .feature-card h3 {
            font-family: var(--font-heading);
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ==================== TEAM SECTION ==================== */
        .team-section {
            padding: 80px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .team-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
        }

        .team-card:hover {
            box-shadow: var(--shadow-md);
        }

        .team-img {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-img img {
            transform: scale(1.05);
        }

        .team-info {
            padding: 20px 15px;
        }

        .team-info h4 {
            font-family: var(--font-heading);
            font-size: 18px;
            color: var(--text-main);
            margin-bottom: 4px;
        }

        .team-info span {
            font-size: 13px;
            color: var(--accent-color);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .story-grid { grid-template-columns: 1fr; }
            .story-images { margin-bottom: 40px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }

        @media (max-width: 768px) {
            .about-hero-banner { height: 260px; }
            .banner-content h1 { font-size: 32px; }
        }

        @media (max-width: 480px) {
            .features-grid, .team-grid, .stats-grid { grid-template-columns: 1fr; }
            .main-story-img { width: 100%; }
            .overlay-story-img { display: none; }
        }


  /* ==================== BREADCRUMB & PAGE TITLE ==================== */
        .compare-hero {
            background: #ffffff;
            padding: 30px 0 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .breadcrumb a:hover { color: var(--primary-color); }

        .page-header-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 20px;
        }

        .page-title h1 {
            font-family: var(--font-heading);
            font-size: 32px;
            color: var(--primary-dark);
            line-height: 1.2;
        }

        .page-title p {
            color: var(--text-muted);
            font-size: 14px;
            margin-top: 5px;
        }


 /* ==================== UX TOOLBAR / CONTROLS ==================== */
        .compare-controls-bar {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 15px 20px;
            margin: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            box-shadow: var(--shadow-sm);
        }

        .control-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .toggle-switch-label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
            user-select: none;
        }

        .toggle-switch {
            position: relative;
            width: 44px;
            height: 24px;
            background-color: #ccc;
            border-radius: 20px;
            transition: 0.3s;
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: white;
            top: 3px;
            left: 3px;
            transition: 0.3s;
        }

        input[type="checkbox"]:checked + .toggle-switch {
            background-color: var(--primary-color);
        }

        input[type="checkbox"]:checked + .toggle-switch::after {
            transform: translateX(20px);
        }

        .btn-clear-all {
            color: #e74c3c;
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: opacity 0.2s;
        }

        .btn-clear-all:hover { opacity: 0.8; }

        /* ==================== COMPARISON TABLE CONTAINER ==================== */
        .comparison-wrapper {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            margin-bottom: 60px;
            position: relative;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed;
        }

        /* Fixed Left Features Label Column */
        .comparison-table th.feature-label-col {
            width: 220px;
            background: var(--bg-light);
            text-align: left;
            padding: 20px;
            font-weight: 600;
            font-size: 15px;
            color: var(--black-light);
            border-bottom: 1px solid var(--border-color);
            border-right: 1px solid var(--border-color);
            vertical-align: top;
        }

        .comparison-table td.feature-cell {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-color);
            border-right: 1px solid var(--border-color);
            vertical-align: middle;
            text-align: center;
            font-size: 14px;
            color: var(--text-main);
            transition: background 0.3s ease;
        }

        .comparison-table td.feature-cell.highlight-diff {
            background-color: var(--highlight-bg) !important;
            font-weight: 600;
        }

        /* Sticky Table Header for Products */
        .sticky-product-header {
            position: sticky;
            top: 0;
            background: #ffffff;
            z-index: 90;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .product-card-compare {
            padding: 20px;
            text-align: center;
            position: relative;
            background: #ffffff;
        }

        .btn-remove-item {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: #f0f0f0;
            color: #777;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            transition: all 0.2s;
        }

        .btn-remove-item:hover {
            background: #e74c3c;
            color: #ffffff;
        }

        .product-badge {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .badge-best-value { background: #e8f5e9; color: #2e7d32; }
        .badge-top-rated { background: #fff3e0; color: #e65100; }

        .product-img-box {
            width: 140px;
            height: 140px;
            margin: 0 auto 15px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .product-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .product-img-box:hover img {
            transform: scale(1.05);
        }

        .product-title {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
            height: 42px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .product-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
        }

        .btn-add-cart-sm {
            width: 100%;
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 10px 12px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.3s;
        }

        .btn-add-cart-sm:hover {
            background-color: var(--primary-dark);
        }

        /* Add Product Slot Empty Card */
        .add-product-slot {
            border: 2px dashed var(--border-color);
            border-radius: 8px;
            padding: 40px 20px;
            text-align: center;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: #fafafa;
            transition: all 0.3s;
        }

        .add-product-slot:hover {
            border-color: var(--primary-color);
            background: var(--accent-light);
        }

        .add-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 12px;
        }

        /* Section Separator Rows */
        .section-header-row th {
            background-color: #f1ede8 !important;
            color: var(--black-heading);
            text-align: left;
            padding: 12px 20px;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
            border-bottom: 1px solid var(--border-color);
        }

        /* Color Swatches UI */
        .color-swatches {
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .color-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid #ffffff;
            box-shadow: 0 0 0 1px #ccc;
            cursor: pointer;
        }

        .rating-stars {
            color: #f39c12;
            font-size: 13px;
        }

        /* ==================== MODAL SEARCH FOR ADDING PRODUCT ==================== */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-overlay.active { display: flex; }

        .modal-card {
            background: white;
            border-radius: 12px;
            width: 100%;
            max-width: 600px;
            padding: 25px;
            box-shadow: var(--shadow-md);
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .modal-header h3 {
            font-family: var(--font-heading);
            font-size: 22px;
        }

        .search-input-box {
            position: relative;
            margin-bottom: 20px;
        }

        .search-input-box input {
            width: 100%;
            padding: 12px 15px 12px 40px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            outline: none;
            font-size: 14px;
        }

        .search-input-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
        }

        .modal-product-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .modal-product-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            transition: background 0.2s;
        }

        .modal-product-item:hover { background: var(--bg-light); }

        .modal-prod-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .modal-prod-info img {
            width: 50px;
            height: 50px;
            border-radius: 4px;
            object-fit: cover;
        }

        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 992px) {
            .comparison-wrapper { overflow-x: auto; }
            .comparison-table { min-width: 800px; }
            .comparison-table th.feature-label-col { width: 160px; }
        }

        @media (max-width: 600px) {
            .page-header-flex { flex-direction: column; align-items: flex-start; }
            .compare-controls-bar { flex-direction: column; align-items: flex-start; }
            .product-img-box { width: 100px; height: 100px; }
            .product-title { font-size: 14px; }
        }