: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-img-wrapper {
        height: 250px;
    }
}
