        :root {
            --primary: #0a0a0a;
            --secondary: #ff6b6b;
            --accent: #B85C38;
            /* Furniture Accent */
            --light: #f5f5f5;
            --dark: #1a1a1a;
            --text: #333;
            --white: #ffffff;
            --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

            --bg-body: #F4F3F0;
            /* Soft Warm Grey */
            --bg-card: #FFFFFF;
            --text-main: #1A1A1A;
            --text-light: #F4F3F0;
            --text-muted: #666666;
            --accent-dark: #2C1810;
            /* Deep Wood */

            --font-head: 'Clash Display', sans-serif;
            --font-body: 'Manrope', sans-serif;

            --radius-lg: 32px;
            --radius-md: 16px;


            /* GLOSSY EFFECT VARIABLES */
            --glass-bg: rgba(255, 255, 255, 0.623);
            --glass-border: 1px solid rgba(255, 255, 255, 0.3);
            --glass-blur: blur(16px);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-main);
            background-color: var(--bg-body);
            overflow-x: hidden;
        }



        /* --- HEADER & MEGA MENU --- */
        header {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 92%;
            max-width: 1400px;
            padding: 12px 40px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            transition: var(--transition);
        }

        header.scrolled {
            top: 0;
            width: 100%;
            border-radius: 0;
            background: rgba(255, 255, 255, 0.98);
            padding: 15px 50px;
        }

        .dac-logo {
            width: 130px;
            height: auto;
            transition: 0.3s;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            list-style: none;
        }

        .nav-item {
            position: static;
        }

        .nav-link {
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 0;
            text-decoration: none;
        }

        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            width: 95%;
            max-width: 1250px;
            background: var(--white);
            border-radius: 30px;
            padding: 40px;
            margin-top: 2px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1fr;
            gap: 40px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-feature {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            height: 100%;
            min-height: 250px;
        }

        .mega-feature img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mega-feature-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            color: white;
        }

        .mega-col-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--secondary);
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .mega-list li {
            margin-bottom: 10px;
            list-style: none;
        }

        .mega-list a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .mega-list a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, var(--primary), #2c2c2c);
            color: var(--white);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            cursor: pointer;
            border-radius: 24px;
            transition: var(--transition);
            border: none;
            text-decoration: none;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* --- FOOTER --- */
        footer {
            background: #121212;
            color: #E0E0E0;
            padding: 80px 5% 30px;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            margin-top: 50px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .f-brand h2 {
            color: white;
            font-size: 2rem;
            margin-bottom: 20px;
            font-family: var(--font-head);
        }

        .f-brand p {
            opacity: 0.7;
            line-height: 1.6;
            max-width: 300px;
        }


        .f-col h4 {
            color: white;
            margin-bottom: 25px;
            letter-spacing: 1px;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .f-links li {
            margin-bottom: 15px;
            list-style: none;
        }

        .f-links a {
            opacity: 0.7;
            transition: 0.3s;
            color: inherit;
            text-decoration: none;
        }

        .f-links a:hover {
            opacity: 1;
            color: var(--accent);
            padding-left: 5px;
        }

        .newsletter-form {
            position: relative;
            margin-top: 20px;
        }

        .newsletter-form input {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
        }

        .newsletter-form button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: var(--accent);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
        }

        .footer-bottom {
            padding-top: 40px;
            text-align: center;
        }

        .huge-text {
            font-size: clamp(3rem, 14vw, 20rem);
            font-family: var(--font-head);
            font-weight: 800;
            color: rgba(255, 255, 255, 0.03);
            text-align: center;
            line-height: 0.8;
            user-select: none;
            margin-top: 20px;
        }

        /* --- RESPONSIVE & MOBILE MENU --- */
        @media (max-width: 1100px) {
            header {
                top: 10px;
                width: 95%;
                padding: 10px 20px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                /* Start from top */
                padding-top: 120px;
                padding-bottom: 50px;
                /* Space for scrolling */
                /* Clear header */
                transition: 0.5s cubic-bezier(0.7, 0, 0.2, 1);
                z-index: 1999;
                gap: 0;
                overflow-y: auto;
                /* Enable scrolling */
                -webkit-overflow-scrolling: touch;
                /* Smooth scroll on iOS */
            }

            .nav-links.active {
                right: 0;
            }

            .mobile-toggle {
                display: block;
                z-index: 2001;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--light);
                border-radius: 50%;
                transition: 0.3s;
            }

            .mobile-toggle.active {
                background: var(--accent);
                color: white;
            }

            .mobile-toggle.active i {
                transform: rotate(180deg);
            }

            .nav-item {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            .nav-link {
                font-size: 1.5rem;
                padding: 20px 0;
                justify-content: center;
                width: 100%;
                cursor: pointer;
                /* Ensure tap target */
                user-select: none;
                /* Prevent text selection on tap */
            }

            .nav-link i {
                margin-left: 10px;
                transition: 0.3s;
            }

            .nav-item.open .nav-link i {
                transform: rotate(180deg);
                color: var(--accent);
            }

            /* Mobile Submenu */
            /* Mobile Submenu */
            .mega-menu {
                position: relative;
                /* Changed from static to relative for stability */
                left: 0 !important;
                top: 0;
                transform: none !important;
                width: 100%;
                box-shadow: none;
                padding: 10px 30px;
                /* Internal padding */
                background: #f8f8f8;
                display: none;
                opacity: 1;
                visibility: visible;
                margin: 0;
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: left;
                /* Align text left to avoid cut-off */
                border-left: 2px solid var(--accent);
                /* Visual cue */
            }

            .nav-item.open .mega-menu {
                display: block;
                animation: slideDown 0.3s ease-out;
            }

            /* Staggered Animation for Links */
            .nav-links.active .nav-item {
                animation: fadeInUp 0.5s ease forwards;
                opacity: 0;
                transform: translateY(20px);
            }

            .nav-links.active .nav-item:nth-child(1) {
                animation-delay: 0.1s;
            }

            .nav-links.active .nav-item:nth-child(2) {
                animation-delay: 0.2s;
            }

            .nav-links.active .nav-item:nth-child(3) {
                animation-delay: 0.3s;
            }

            .nav-links.active .nav-item:nth-child(4) {
                animation-delay: 0.4s;
            }

            .nav-links.active .nav-item:nth-child(5) {
                animation-delay: 0.5s;
            }

            .nav-links.active .nav-item:nth-child(6) {
                animation-delay: 0.6s;
            }

            .mega-col-title {
                margin: 20px 0 10px;
                font-size: 0.9rem;
                letter-spacing: 1px;
                color: var(--text-muted);
                border: none;
            }

            .mega-list {
                padding-bottom: 20px;
            }

            .mega-list li {
                margin-bottom: 12px;
            }

            .mega-list a {
                font-size: 1.1rem;
                font-weight: 500;
                color: var(--text-main);
            }

            .mega-feature {
                display: none;
            }

            /* Footer Mobile */
            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .newsletter-form button {
                position: relative;
                width: 100%;
                margin-top: 10px;
                right: 0;
                top: 0;
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- BUY ON PHONE WIDGET --- */
        .bop-widget {
            position: fixed;
            right: 0;
            top: 60%;
            transform: translateY(-50%);
            z-index: 2100;
            display: flex;
            align-items: center;
            font-family: var(--font-body);
        }

        .bop-btn {
            background: var(--text-main);
            color: white;
            padding: 12px 15px;
            border-radius: 8px 0 0 8px;
            cursor: pointer;
            box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            transition: 0.3s;
        }

        .bop-btn:hover {
            background: var(--accent);
            padding-right: 20px;
        }

        .bop-btn i {
            font-size: 1.2rem;
            animation: phonePulse 2s infinite;
        }

        .bop-btn span {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
            letter-spacing: 1px;
            margin-top: 5px;
        }

        @keyframes phonePulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        /* POPUP STYLES */
        .bop-popup {
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%) scale(0.9);
            width: 300px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .bop-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(-50%) scale(1);
            right: 70px;
            /* Slight slide out */
        }

        /* Arrow pointing to button */
        .bop-popup::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 8px 0 8px 8px;
            border-style: solid;
            border-color: transparent transparent transparent white;
        }

        .bop-option {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: 0.2s;
        }

        .bop-option:last-child {
            border-bottom: none;
        }

        .bop-option:hover {
            background: #f9f9f9;
        }

        .bop-icon {
            width: 40px;
            height: 40px;
            background: #fff0eb;
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .bop-text {
            display: flex;
            flex-direction: column;
        }

        .bop-text strong {
            font-size: 0.9rem;
            color: var(--text-main);
            margin-bottom: 2px;
        }

        .bop-text span {
            font-size: 0.75rem;
            color: #27ae60;
            /* Green for offers */
            font-weight: 600;
        }

        .bop-close {
            position: absolute;
            top: 5px;
            right: 10px;
            cursor: pointer;
            color: #999;
            font-size: 0.8rem;
            padding: 5px;
        }

        .bop-close:hover {
            color: #333;
        }

        /* --- SHARE MODAL (Global) --- */
        .share-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            backdrop-filter: blur(5px);
        }

        .share-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .share-card {
            background: white;
            width: 90%;
            max-width: 400px;
            padding: 25px;
            border-radius: 16px;
            position: relative;
            transform: translateY(20px);
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .share-modal-overlay.active .share-card {
            transform: translateY(0);
        }

        .close-share {
            position: absolute;
            top: 15px;
            right: 15px;
            cursor: pointer;
            color: #999;
            padding: 5px;
        }

        .share-head {
            font-family: var(--font-head);
            font-size: 1.2rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .product-preview-card {
            border: 1px solid #eee;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            background: #f9f9f9;
            text-align: center;
        }

        .product-preview-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .pp-info {
            padding: 15px;
            background: white;
            border-top: 1px solid #eee;
        }

        .pp-info h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--text-main);
        }

        .pp-info p {
            font-size: 0.8rem;
            color: #888;
            word-break: break-all;
        }

        .share-options {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
        }

        .so-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            transition: 0.2s;
            border: 1px solid transparent;
        }

        .so-btn i {
            font-size: 1.4rem;
        }

        .so-btn.whatsapp {
            background: #eefdf4;
            color: #25D366;
        }

        .so-btn.whatsapp:hover {
            background: #dcfce6;
        }

        .so-btn.instagram {
            background: #fff0f5;
            color: #E1306C;
        }

        .so-btn.instagram:hover {
            background: #ffe6f0;
        }

        .so-btn.copy {
            background: #f5f5f5;
            color: #555;
            cursor: pointer;
        }

        .so-btn.copy:hover {
            background: #ebebeb;
        }

        /* --- ENQUIRY MODAL --- */
        .enquiry-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            backdrop-filter: blur(5px);
        }

        .enquiry-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .enquiry-card {
            background: white;
            width: 90%;
            max-width: 500px;
            padding: 30px;
            border-radius: 16px;
            position: relative;
            transform: translateY(20px);
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .enquiry-modal-overlay.active .enquiry-card {
            transform: translateY(0);
        }

        .close-enquiry {
            position: absolute;
            top: 20px;
            right: 20px;
            cursor: pointer;
            color: #999;
            padding: 5px;
            font-size: 1.2rem;
        }

        .close-enquiry:hover {
            color: #333;
        }

        .enquiry-head {
            font-family: var(--font-head);
            font-size: 1.5rem;
            margin-bottom: 25px;
            text-align: center;
            color: var(--text-main);
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #555;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: var(--accent);
            outline: none;
            background: #fffcfa;
        }

        .form-control.readonly {
            background: #f5f5f5;
            color: #888;
            cursor: not-allowed;
        }

        .btn-submit-enquiry {
            width: 100%;
            padding: 14px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 10px;
            transition: 0.3s;
        }

        .btn-submit-enquiry:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(184, 92, 56, 0.3);
        }