:root {
    --bg-black: #050505;
    --bg-dark: #0c0c0c;
    --bg-card: rgba(18, 18, 18, 0.7);
    --border-gray: rgba(255, 255, 255, 0.05);
    --border-gold: rgba(220, 199, 163, 0.2);
    --accent-gold: #DCC7A3;
    --accent-gold-rgb: 220, 199, 163;
    --text-white: #FFFFFF;
    --text-gray: #8e8e8e;
    --sidebar-width: 260px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Global text overrides */
.text-muted {
    color: var(--text-white) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

body {
    background-color: var(--bg-black) !important;
    background: radial-gradient(circle at 50% 50%, #16120e 0%, #050505 100%) !important;
    color: var(--text-white) !important;
    font-family: var(--font-body) !important;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.glass-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(220, 199, 163, 0.08);
}

/* Dashboard Wrapper Layout */
.app-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.main-content {
    flex-grow: 1;
    margin-left: 0;
    padding: 2rem;
    min-width: 0;
    transition: margin-left 0.3s ease;
}

/* Sidebar Styling */
.sidebar-panel {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.sidebar-brand {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.sidebar-logo {
    height: 38px;
    width: auto;
    object-fit: cover;
}

.sidebar-menu {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    flex-grow: 1;
}

.sidebar-item {
    margin-bottom: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.8rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.sidebar-link i {
    width: 20px;
    font-size: 1rem;
    margin-right: 15px;
}

.sidebar-link:hover, .sidebar-link.active {
    color: var(--text-white);
    background: rgba(220, 199, 163, 0.05);
    border-left-color: var(--accent-gold);
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-gray);
}

/* Header & Search Bar */
.top-header {
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gray);
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
}

.search-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-gray) !important;
    color: var(--text-white) !important;
    border-radius: 30px;
    padding-left: 2.5rem;
}

.search-input:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 10px rgba(220, 199, 163, 0.15) !important;
}

/* Table Design */
.table-luxury {
    border-color: var(--border-gray) !important;
}

.table-luxury th {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    border-bottom: 2px solid var(--border-gray) !important;
    padding: 1.2rem 1rem;
    letter-spacing: 1px;
}

.table-luxury td {
    padding: 1rem 1rem;
    border-bottom: 1px solid var(--border-gray) !important;
    vertical-align: middle;
}

/* Buttons */
.btn-luxury {
    background: linear-gradient(135deg, #dcc7a3 0%, #b89f7a 100%);
    border: none;
    color: #000000 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    border-radius: 30px;
    padding: 0.7rem 1.6rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 199, 163, 0.2);
    background: var(--text-white);
}

.btn-outline-luxury {
    border: 1px solid var(--accent-gold) !important;
    color: var(--accent-gold) !important;
    background: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    border-radius: 30px;
    padding: 0.7rem 1.6rem;
    transition: all 0.3s ease;
}

.btn-outline-luxury:hover {
    background: var(--accent-gold);
    color: #000000 !important;
}

/* Form Controls */
.form-control, .form-select {
    background-color: rgba(10, 10, 10, 0.8) !important;
    border: 1px solid var(--border-gray) !important;
    color: var(--text-white) !important;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.15) !important;
}

/* Drag Drop Upload */
.drag-drop-zone {
    border: 2px dashed var(--border-gold);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(220, 199, 163, 0.02);
    cursor: pointer;
    transition: all 0.3s ease;
}

.drag-drop-zone.dragover {
    background: rgba(220, 199, 163, 0.08);
    border-color: var(--accent-gold);
}

.image-preview-item {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    background: #000;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.8);
    border: none;
    color: #ff3b30;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
}

.image-preview-remove:hover {
    background: #ff3b30;
    color: #fff;
}

/* Timeline Components */
.timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2.5rem 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background: #222;
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 15px;
    left: 0;
    height: 3px;
    background: var(--accent-gold);
    z-index: 2;
    transition: width 0.5s ease;
}

.timeline-step {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.timeline-step.active .timeline-dot {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(220, 199, 163, 0.4);
}

.timeline-step.completed .timeline-dot {
    background: #111;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.timeline-label {
    margin-top: 0.8rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    font-weight: 600;
}

.timeline-step.active .timeline-label {
    color: var(--text-white);
}

/* Badge Status Styles */
.status-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}
.status-pending { background-color: rgba(255, 193, 7, 0.1); color: #ffc107; border: 1px solid rgba(255, 193, 7, 0.2); }
.status-approved, .status-live, .status-delivered { background-color: rgba(25, 135, 84, 0.1); color: #198754; border: 1px solid rgba(25, 135, 84, 0.2); }
.status-rejected, .status-out_of_stock { background-color: rgba(220, 53, 69, 0.1); color: #dc3545; border: 1px solid rgba(220, 53, 69, 0.2); }
.status-shipped { background-color: rgba(13, 202, 240, 0.1); color: #0dcaf0; border: 1px solid rgba(13, 202, 240, 0.2); }
.status-processing, .status-low_stock { background-color: rgba(253, 126, 20, 0.1); color: #fd7e14; border: 1px solid rgba(253, 126, 20, 0.2); }

/* Sidebar Toggle Header on Mobile */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1100;
    background: var(--bg-card);
    border: 1px solid var(--border-gray);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

/* Loading overlays */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#loading-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive queries */
@media (max-width: 991.98px) {
    .main-content {
        padding: 1.5rem;
    }
}

/* Top Navbar Styling */
.navbar {
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-gray);
    padding: 0.8rem 0;
    z-index: 1050;
}

.navbar-logo {
    height: 32px;
    width: auto;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
}

.navbar .nav-link {
    color: var(--text-gray) !important;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0 10px;
    padding-bottom: 4px !important;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--text-white) !important;
    border-bottom-color: var(--accent-gold);
}

/* --- Main Site Header Styles --- */

        .navbar-brand:hover {
            opacity: 0.9;
        }
        .navbar-logo {
            height: 60px;
            width: 60px;
            object-fit: contain;
        }
        .nav-desktop-link:hover {
            color: var(--accent-gold) !important;
            transition: color 0.3s ease;
        }
        .cart-badge {
            background-color: var(--accent-gold);
            color: #000;
            font-size: 0.6rem;
            padding: 3px 6px;
            font-weight: 700;
            border-radius: 50%;
        }
        .nav-icon-btn {
            color: var(--text-gray);
            transition: all 0.3s ease;
            font-size: 1rem;
            text-decoration: none;
            position: relative;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: transparent;
        }
        .nav-icon-btn:hover {
            color: var(--accent-gold);
            background: rgba(var(--accent-gold-rgb), 0.1);
            transform: scale(1.05);
        }
        .dropdown-menu {
            background-color: rgba(21, 21, 21, 0.98) !important;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }
        .dropdown-item {
            color: var(--text-white) !important;
            transition: all 0.2s ease;
        }
        .dropdown-item:hover {
            color: var(--accent-gold) !important;
            background-color: rgba(var(--accent-gold-rgb), 0.08) !important;
        }
        .dropdown-toggle::after {
            display: none !important;
        }

        /* ==================== */
        /* ANIMATED HAMBURGER   */
        /* ==================== */
        .hamburger-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            transition: all 0.3s ease;
        }
        .hamburger-btn:hover {
            transform: scale(1.1);
        }
        .hamburger-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--text-white);
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .hamburger-btn span:nth-child(2) {
            width: 16px;
        }
        .hamburger-btn:hover span {
            background-color: var(--accent-gold);
        }
        .hamburger-btn:hover span:nth-child(2) {
            width: 22px;
        }

        /* ==================== */
        /* MOBILE RESPONSIVE    */
        /* ==================== */
        @media (max-width: 768px) {
            .navbar {
                padding: 0.6rem 0.8rem !important;
            }
            .navbar-logo {
                height: 100px !important;
                width: 100px !important;
            }
            .nav-icon-btn {
                font-size: 0.9rem;
                width: 34px;
                height: 34px;
            }
            .brand-text-mobile {
                display: none !important;
            }
            .header-spacer {
                height: 70px !important;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.5rem 0.5rem !important;
            }
            .navbar-logo {
                height: 100px !important;
                width: 100px !important;
            }
            .nav-icon-btn {
                font-size: 0.85rem;
                width: 32px;
                height: 32px;
            }
            .hamburger-btn {
                padding: 6px;
            }
            .hamburger-btn span {
                width: 18px;
                height: 1.5px;
                gap: 4px;
            }
        }

        /* ======================== */
        /* OFFCANVAS LUXURY DRAWER  */
        /* ======================== */
        .offcanvas-luxury {
            background-color: rgba(10, 10, 10, 0.98) !important;
            backdrop-filter: blur(20px);
            border-right: 1px solid var(--border-gray) !important;
        }
        
        .drawer-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            color: var(--text-white);
            text-decoration: none;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .drawer-nav-link:hover {
            color: var(--accent-gold);
            padding-left: 8px;
        }
        
        .drawer-nav-link i.fa-chevron-right {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .drawer-nav-link:hover i.fa-chevron-right {
            color: var(--accent-gold);
            transform: translateX(4px);
        }

        /* ======================== */
        /* DRAWER CATEGORY CARDS    */
        /* ======================== */
        .drawer-cat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 12px;
        }
        .drawer-cat-card {
            background: rgba(var(--accent-brown-rgb), 0.2);
            border: 1px solid rgba(var(--accent-gold-rgb), 0.1);
            border-radius: 14px;
            padding: 16px 12px;
            text-align: center;
            text-decoration: none;
            color: var(--text-white);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .drawer-cat-card:hover {
            background: rgba(var(--accent-gold-rgb), 0.12);
            border-color: rgba(var(--accent-gold-rgb), 0.4);
            transform: translateY(-3px);
            color: var(--accent-gold);
        }
        .drawer-cat-card i {
            font-size: 1.3rem;
            color: var(--accent-gold);
            transition: all 0.3s ease;
        }
        .drawer-cat-card:hover i {
            transform: scale(1.15);
        }
        .drawer-cat-card span {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* ==================== */
        /* INLINE SEARCH        */
        /* ==================== */
        .header-search-form {
            display: none;
            position: absolute;
            top: 50%;
            right: calc(100% + 8px);
            transform: translateY(-50%);
            width: 220px;
        }
        .header-search-form.active {
            display: block;
        }
        .header-search-form input {
            width: 100%;
            padding: 8px 16px;
            font-size: 0.8rem;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(var(--accent-gold-rgb), 0.3);
            border-radius: 20px;
            color: #fff;
            outline: none;
        }
        .header-search-form input:focus {
            border-color: var(--accent-gold);
        }
        .header-search-form input::placeholder {
            color: rgba(255,255,255,0.4);
        }
        .search-icon-btn {
            position: relative;
        }
        @media (max-width: 768px) {
            .search-icon-btn {
                position: static;
            }
            .header-search-form {
                width: calc(100% - 20px);
                right: 10px;
                top: calc(100% - 5px);
                transform: none;
                z-index: 1050;
            }
            .header-search-form input {
                background: var(--bg-black, #0A111E);
                border: 1px solid var(--accent-gold);
                box-shadow: 0 4px 20px rgba(0,0,0,0.6);
            }
        }
    

/* --- Styles extracted from index.php --- */
/* Immersive Visual Backgrounds */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 75% 25%, rgba(var(--accent-blue-rgb), 0.2), transparent 55%),
                radial-gradient(circle at 25% 75%, rgba(var(--accent-brown-rgb), 0.3), transparent 60%),
                var(--bg-black);
    overflow: hidden;
    padding-top: 80px;
}

/* Luxury Overlapping Left Card */
.hero-card-left {
    background: linear-gradient(135deg, rgba(var(--accent-brown-rgb), 0.7), rgba(10, 17, 30, 0.85));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    border-radius: 28px;
    padding: 3.5rem;
    position: relative;
    z-index: 10;
    margin-right: -80px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-card-left:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 35px 75px rgba(var(--accent-gold-rgb), 0.12);
    transform: translateY(-5px);
}

/* Luxury Graphic Wireframe Frame */
.hero-right-container {
    width: 100%;
    max-width: 480px;
    height: 580px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-wireframe-bg {
    position: absolute;
    width: 420px;
    height: 530px;
    border: 1px solid var(--accent-gold);
    border-radius: 24px;
    top: 30px;
    left: 40px;
    z-index: 1;
    opacity: 0.4;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-glow-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-gold-rgb), 0.15) 0%, transparent 70%);
    top: -30px;
    left: -30px;
    z-index: 1;
    pointer-events: none;
}

.hero-image-card {
    position: relative;
    width: 420px;
    height: 530px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    z-index: 2;
    background-color: var(--bg-card);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.02) contrast(1.02);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Micro-interactions */
.hero-right-container:hover .hero-image-card {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(var(--accent-gold-rgb), 0.15);
    border-color: rgba(var(--accent-gold-rgb), 0.3);
}

.hero-right-container:hover .hero-wireframe-bg {
    transform: translate(-15px, -15px) rotate(1.5deg);
    border-color: var(--text-white);
    opacity: 0.7;
}

.hero-right-container:hover .hero-image-card img {
    transform: scale(1.05);
}

/* Season floating tag style */
.hero-tag-season {
    position: absolute;
    top: 25px;
    left: -20px;
    z-index: 3;
    background: rgba(var(--accent-brown-rgb), 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.25);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.hero-tag-season::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold);
}

.hero-tag-info {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 3;
    background: rgba(10, 17, 30, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

/* Elegant Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.3s;
    z-index: 10;
}
.scroll-indicator:hover {
    opacity: 1;
}
.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    position: relative;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 8px); }
}

/* Categories Section Styling */
.category-section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}
.category-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.category-card {
    position: relative;
    height: 380px;
    border-radius: 200px 200px 24px 24px;
    overflow: hidden;
    border: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    background-color: rgba(var(--accent-brown-rgb), 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.category-card:hover::after {
    border-color: rgba(var(--accent-gold-rgb), 0.5);
    transform: scale(1.02);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.02);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.8) contrast(1.05);
}

/* Trust Badge Cards */
.trust-badge-card {
    background: rgba(var(--accent-brown-rgb), 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.08);
    border-radius: 24px;
    padding: 2.2rem 1.8rem;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-badge-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-gold-rgb), 0.3);
    background: rgba(var(--accent-brown-rgb), 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.trust-badge-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(var(--accent-gold-rgb), 0.05);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: all 0.4s ease;
}

.trust-badge-card:hover .trust-badge-icon {
    background-color: var(--accent-gold);
    color: var(--bg-black);
    transform: rotateY(180deg);
}

/* Refined Product Cards */
.product-card {
    background: rgba(var(--accent-brown-rgb), 0.12);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    padding: 14px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
    border-color: rgba(var(--accent-gold-rgb), 0.25);
    background: rgba(var(--accent-brown-rgb), 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.product-img-wrapper {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

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

.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}

.badge-new {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-gold);
    color: var(--bg-black);
    padding: 5px 14px;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 17, 30, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.wishlist-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-black);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.product-details {
    padding: 1.2rem 0.6rem 0.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-name-price-wrap {
    flex-grow: 1;
    padding-right: 10px;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.product-name a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--accent-gold);
}

.product-price {
    font-size: 1.05rem;
    color: var(--accent-gold);
    font-weight: 700;
    font-family: var(--font-heading);
}

.cart-icon-btn {
    background-color: var(--text-white);
    color: var(--bg-black);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-icon-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-black);
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 5px 15px rgba(var(--accent-gold-rgb), 0.3);
}

/* Glassmorphic Testimonial Layout */
.testimonial-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-black) 100%);
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--accent-gold-rgb), 0.04) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    pointer-events: none;
    z-index: 1;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--accent-blue-rgb), 0.05) 0%, transparent 70%);
    bottom: -10%;
    right: 5%;
    pointer-events: none;
    z-index: 1;
}

.testimonial-card {
    background: rgba(var(--accent-brown-rgb), 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--accent-gold-rgb), 0.15);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-gold-rgb), 0.4);
    box-shadow: 0 30px 60px rgba(var(--accent-gold-rgb), 0.08);
}

.avatar-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.8rem;
    position: relative;
}

.avatar-container::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(var(--accent-gold-rgb), 0.4);
    animation: rotateDashed 25s linear infinite;
}

@keyframes rotateDashed {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.client-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--bg-card);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(var(--accent-gold-rgb), 0.5);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-weight: 400;
}

.client-role {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

/* Responsive fixes */
@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .hero-card-left {
        margin-right: 0 !important;
        padding: 2.2rem !important;
        margin-bottom: 20px;
        text-align: center;
    }
    .hero-title {
        font-size: 2.4rem !important;
        line-height: 1.25;
    }
    .hero-desc {
        font-size: 0.85rem !important;
        margin-bottom: 1.8rem !important;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-right-container {
        margin-top: 30px;
        max-width: 320px !important;
        height: 420px !important;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image-card, .hero-wireframe-bg {
        width: 280px !important;
        height: 380px !important;
    }
    .hero-wireframe-bg {
        top: 20px !important;
        left: 25px !important;
    }
    .hero-tag-season {
        left: -10px !important;
        padding: 6px 14px !important;
        font-size: 0.6rem !important;
    }
    .lookbook-play {
        bottom: 30px !important;
        right: -10px !important;
        padding: 6px 14px !important;
    }
    .scroll-indicator {
        display: none;
    }
}
@media (max-width: 768px) {
    .category-card {
        height: 280px;
        border-radius: 120px 120px 18px 18px;
    }
    .product-card {
        padding: 10px;
        border-radius: 18px;
    }
    .product-img-wrapper {
        height: 220px;
        border-radius: 14px;
    }
    .product-details {
        display: block;
        position: relative;
        padding: 0.8rem 0.2rem 0;
    }
    .product-name-price-wrap {
        padding-right: 40px;
    }
    .product-name {
        font-size: 0.8rem;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .product-price {
        font-size: 0.9rem;
    }
    .cart-icon-btn {
        position: absolute;
        right: 0.2rem;
        bottom: 0;
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .badge-new {
        top: 10px;
        left: 10px;
        padding: 3px 8px;
        font-size: 0.55rem;
    }
    .wishlist-btn {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }
}

/* ==========================================================================
   MARTLUX EXACT DESIGN REPLICATION (PIXEL-PERFECT FROM MOCKUP)
   ========================================================================== */

/* Top Utility Bar */
.martlux-topbar {
    background-color: #0b0b0d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    color: #b0b0b5;
    padding: 7px 0;
    line-height: 1;
}
.martlux-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cfcfd4;
    text-decoration: none;
    font-weight: 500;
}
.martlux-topbar-item i {
    color: #dfa135;
    font-size: 0.8rem;
}
.martlux-topbar-link {
    color: #cfcfd4;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.72rem;
}
.martlux-topbar-link:hover {
    color: #dfa135;
}

/* Main Header */
.martlux-header {
    background-color: #050507;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    position: relative;
    z-index: 1030;
}
.martlux-header-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}
.martlux-brand-mark {
    font-size: 2.2rem;
    font-weight: 900;
    color: #dfa135;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}
.martlux-brand-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1.1;
}
.martlux-brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    color: #dfa135;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Categories Button */
.btn-martlux-categories {
    background-color: #dfa135;
    color: #000000 !important;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 18px;
    border-radius: 6px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
    cursor: pointer;
}
.btn-martlux-categories:hover {
    background-color: #c98e29;
    color: #000000 !important;
}

/* Search Box */
.martlux-search-form {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    max-width: 580px;
    height: 40px;
}
.martlux-search-input {
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 0.82rem;
    width: 100%;
    color: #222222;
    background: transparent;
}
.martlux-search-input::placeholder {
    color: #888890;
    font-size: 0.8rem;
}
.martlux-search-btn {
    background-color: #dfa135;
    border: none;
    color: #000000;
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.martlux-search-btn:hover {
    background-color: #c98e29;
}

/* Header User Actions */
.martlux-user-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.78rem;
    position: relative;
    padding: 4px 6px;
    transition: opacity 0.2s ease;
}
.martlux-user-action:hover {
    opacity: 0.85;
}
.martlux-user-action i {
    font-size: 1.25rem;
    color: #ffffff;
}
.martlux-badge-count {
    position: absolute;
    top: -2px;
    left: 18px;
    background-color: #dfa135;
    color: #000000;
    font-size: 0.6rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Exact Hero Section */
.martlux-hero-section {
    background: linear-gradient(135deg, #09090b 0%, #111115 50%, #08080a 100%);
    position: relative;
    padding: 55px 0 65px;
    overflow: hidden;
}
.martlux-hero-kicker {
    color: #dfa135;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.martlux-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
}
.martlux-hero-desc {
    color: #a0a0a8;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 28px;
}
.btn-martlux-gold {
    background-color: #dfa135;
    color: #000000 !important;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1px;
    padding: 12px 32px;
    border-radius: 6px;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}
.btn-martlux-gold:hover {
    background-color: #c98e29;
    color: #000000 !important;
    transform: translateY(-1px);
}
.btn-martlux-outline {
    background-color: transparent;
    border: 1.5px solid #dfa135;
    color: #dfa135 !important;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}
.btn-martlux-outline:hover {
    background-color: #dfa135;
    color: #000000 !important;
}
.martlux-hero-microbar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 36px;
    font-size: 0.75rem;
    color: #c8c8cf;
}
.martlux-hero-microbar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.martlux-hero-microbar i {
    color: #dfa135;
    font-size: 0.85rem;
}
.martlux-hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.martlux-hero-image-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

/* Floating Stats Bar */
.martlux-stats-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    padding: 18px 25px;
    margin-top: -35px;
    position: relative;
    z-index: 20;
}
.martlux-stat-col {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
}
.martlux-stat-col:not(:last-child) {
    border-right: 1px solid #f0f0f2;
}
.martlux-stat-col i {
    color: #dfa135;
    font-size: 1.8rem;
}
.martlux-stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.1;
}
.martlux-stat-label {
    font-size: 0.75rem;
    color: #666670;
    font-weight: 500;
}

/* White Body Main Container */
.martlux-main-body {
    background-color: #ffffff;
    padding: 35px 0 50px;
    color: #111111;
}
.martlux-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}
.martlux-block-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #111111;
    letter-spacing: 0.5px;
    margin: 0;
}
.martlux-view-link {
    font-size: 0.72rem;
    color: #666670;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.martlux-view-link:hover {
    color: #dfa135;
}

/* Category Circular Cards */
.martlux-category-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f3;
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
    text-decoration: none !important;
    display: block;
    transition: all 0.25s ease;
    height: 100%;
}
.martlux-category-card:hover {
    border-color: #dfa135;
    box-shadow: 0 6px 18px rgba(223, 161, 53, 0.12);
    transform: translateY(-2px);
}
.martlux-cat-img-wrap {
    width: 68px;
    height: 68px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.martlux-cat-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.martlux-cat-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.25;
    margin: 0;
}

/* Featured Deals Row & Cards */
.martlux-deal-card {
    background-color: #ffffff;
    border: 1px solid #efeff2;
    border-radius: 10px;
    padding: 12px 10px;
    position: relative;
    text-decoration: none !important;
    display: block;
    height: 100%;
    transition: all 0.25s ease;
}
.martlux-deal-card:hover {
    border-color: #dfa135;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.martlux-deal-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 3px;
    line-height: 1.1;
    z-index: 2;
}
.martlux-deal-badge.badge-red {
    background-color: #e53935;
    color: #ffffff;
}
.martlux-deal-badge.badge-green {
    background-color: #2e7d32;
    color: #ffffff;
}
.martlux-deal-img-wrap {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.martlux-deal-img-wrap img {
    max-height: 90px;
    max-width: 95%;
    object-fit: contain;
}
.martlux-deal-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}
.martlux-deal-rating {
    font-size: 0.62rem;
    color: #dfa135;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.martlux-deal-rating span {
    color: #888890;
    font-size: 0.6rem;
}
.martlux-deal-price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}
.martlux-deal-price {
    font-size: 0.78rem;
    font-weight: 800;
    color: #111111;
}
.martlux-deal-strike {
    font-size: 0.65rem;
    color: #9999a0;
    text-decoration: line-through;
}

/* Right Side: Why Shop With Martlux */
.martlux-why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.martlux-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.martlux-why-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfa135;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.martlux-why-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 2px;
}
.martlux-why-desc {
    font-size: 0.72rem;
    color: #666670;
    line-height: 1.35;
    margin: 0;
}

/* Right Side: Customer Reviews */
.martlux-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.martlux-review-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px solid #f2f2f5;
}
.martlux-review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.martlux-review-content {
    flex-grow: 1;
}
.martlux-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.martlux-reviewer-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #111111;
    display: flex;
    flex-direction: column;
}
.martlux-reviewer-badge {
    font-size: 0.62rem;
    color: #2e7d32;
    font-weight: 600;
}
.martlux-review-stars {
    color: #dfa135;
    font-size: 0.68rem;
}
.martlux-review-quote {
    font-size: 0.72rem;
    color: #555560;
    line-height: 1.4;
    margin: 0;
}

/* Partners Strip */
.martlux-partners-strip {
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 16px 0;
}
.martlux-partners-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #222225;
    letter-spacing: 0.5px;
    line-height: 1.25;
    text-transform: uppercase;
}
.martlux-partner-logo-pill {
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: #ffffff;
}

/* Footer Value Propositions Bar */
.martlux-value-bar {
    background-color: #08080a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    color: #ffffff;
}
.martlux-value-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.martlux-value-item i {
    color: #dfa135;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.martlux-value-text {
    line-height: 1.2;
}
.martlux-value-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
}
.martlux-value-subtitle {
    font-size: 0.68rem;
    color: #8e8e95;
}

/* Main 4-Column Footer */
.martlux-site-footer {
    background-color: #0c0c0e;
    padding: 45px 0 25px;
    color: #a0a0a8;
    font-size: 0.78rem;
}
.martlux-footer-col-title {
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.martlux-newsletter-form {
    display: flex;
    background-color: #18181c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
    max-width: 320px;
}
.martlux-newsletter-input {
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 0.75rem;
    width: 100%;
}
.martlux-newsletter-btn {
    background-color: #dfa135;
    border: none;
    color: #000000;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0 14px;
    cursor: pointer;
    text-transform: uppercase;
}
.martlux-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 14px;
}
.martlux-footer-links a {
    color: #888890;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.2s ease;
}
.martlux-footer-links a:hover {
    color: #dfa135;
}
.martlux-app-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}
.martlux-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #18181c;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 6px 12px;
    color: #ffffff;
    text-decoration: none !important;
    font-size: 0.7rem;
    transition: all 0.2s ease;
}
.martlux-app-badge:hover {
    border-color: #dfa135;
    background-color: #222228;
    color: #ffffff;
}
.martlux-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.martlux-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #18181c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}
.martlux-social-icon:hover {
    background-color: #dfa135;
    color: #000000;
    transform: translateY(-2px);
}
.martlux-be-seller-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.martlux-seller-icon {
    font-size: 2.8rem;
    color: #dfa135;
    line-height: 1;
}

@media (max-width: 991px) {
    .martlux-stat-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #f0f0f2;
    }
    .martlux-hero-title {
        font-size: 2.2rem;
    }
    .martlux-stats-card {
        margin-top: 0;
    }
}

/* ==========================================================================
   MARTLUX INNER PAGES (ABOUT & CONTACT)
   ========================================================================== */

/* Page Hero Banner */
.martlux-inner-hero {
    background: linear-gradient(135deg, #070709 0%, #111116 50%, #070709 100%);
    position: relative;
    padding: 60px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.martlux-inner-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(223, 161, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.martlux-inner-kicker {
    color: #dfa135;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}
.martlux-inner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.martlux-inner-subtitle {
    color: #a0a0a8;
    font-size: 0.95rem;
    max-width: 650px;
    line-height: 1.6;
    margin: 0 auto;
}
.martlux-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #888890;
    margin-top: 18px;
}
.martlux-breadcrumb a {
    color: #c0c0c8;
    text-decoration: none;
    transition: color 0.2s;
}
.martlux-breadcrumb a:hover {
    color: #dfa135;
}
.martlux-breadcrumb i {
    font-size: 0.65rem;
    color: #666670;
}
.martlux-breadcrumb .active {
    color: #dfa135;
    font-weight: 600;
}

/* Luxury Cards */
.martlux-card-luxury {
    background-color: #0e0e12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}
.martlux-card-luxury:hover {
    border-color: rgba(223, 161, 53, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(223, 161, 53, 0.08);
}

/* Pillar Card with Icon */
.martlux-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(223, 161, 53, 0.12);
    border: 1px solid rgba(223, 161, 53, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfa135;
    font-size: 1.35rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.martlux-card-luxury:hover .martlux-pillar-icon {
    background: #dfa135;
    color: #000000;
    transform: scale(1.05);
}
.martlux-pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.martlux-pillar-desc {
    color: #92929c;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

/* Corporate Credential Box */
.martlux-corp-box {
    background: linear-gradient(135deg, #121218 0%, #1a1a24 100%);
    border: 1px solid rgba(223, 161, 53, 0.25);
    border-radius: 12px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.martlux-corp-seal {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(223, 161, 53, 0.15);
    border: 1.5px solid #dfa135;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfa135;
    font-size: 1.6rem;
    flex-shrink: 0;
}

/* Dark Form Controls */
.martlux-form-group {
    margin-bottom: 20px;
}
.martlux-form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #c0c0c8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 7px;
}
.martlux-input {
    width: 100%;
    background-color: #14141a !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    transition: all 0.25s ease !important;
}
.martlux-input::placeholder {
    color: #666672 !important;
}
.martlux-input:focus {
    outline: none !important;
    border-color: #dfa135 !important;
    box-shadow: 0 0 15px rgba(223, 161, 53, 0.2) !important;
    background-color: #171720 !important;
}
.martlux-select {
    width: 100%;
    background-color: #14141a !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
}
.martlux-select:focus {
    outline: none !important;
    border-color: #dfa135 !important;
    box-shadow: 0 0 15px rgba(223, 161, 53, 0.2) !important;
}
.martlux-select option {
    background-color: #14141a;
    color: #ffffff;
}

/* Contact Info Item */
.martlux-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background-color: #0e0e12;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.2s ease;
}
.martlux-contact-item:hover {
    border-color: rgba(223, 161, 53, 0.3);
    background-color: #121217;
}
.martlux-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(223, 161, 53, 0.12);
    color: #dfa135;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* FAQ Accordion */
.martlux-faq-card {
    background-color: #0e0e12;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.martlux-faq-card:hover {
    border-color: rgba(223, 161, 53, 0.25);
}
.martlux-faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    text-align: left;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.martlux-faq-btn:focus {
    outline: none;
}
.martlux-faq-body {
    padding: 0 20px 18px;
    color: #9898a2;
    font-size: 0.82rem;
    line-height: 1.6;
}


