/* Generated shared Luxury CSS bundle. Source order mirrors luxury.css. */

/* --- luxury/variables.css --- */

/* LUXURY THEME VARIABLES */
:root {
    /* Color Palette - Monochrome */
    --primary: #1a1a1a;
    --accent: #222222;
    --accent-hover: #000000;
    --text-color: #555;
    --bg-light: #f7f7f7;
    --border-color: #e0e0e0;
    --price-red: #d32f2f; /* Prominent red for current prices */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Unified Monochrome Theme */
:root {
    --primary: #1a1a1a;
    --secondary: #f5f5f5;
    /* Light gray background */
    --accent: #222222;
    /* Elegant dark */
    --accent-hover: #000000;
    --rose-gold: #555555;
    --text-color: #333333;
    --text-light: #777777;
    --bg-body: #ffffff;
    --bg-light: #f7f7f7;
    /* Subtle gray tint */
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.04);
    /* Neutral shadow */
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
}

html {
    font-size: 14px;
}

/* --- luxury/base.css --- */

/* LUXURY THEME BASE STYLES */

/* Google Fonts are loaded via <link> in header.php for better performance */

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding-top: 80px;
    /* Space for fixed header only */
    background-color: var(--bg-body);
}

body.is-home {
    padding-top: 120px;
}

/* Body Padding Adjustments for Marquee */
body.has-marquee {
    padding-top: 120px;
    /* 80px header + 40px marquee */
}

body.has-marquee.is-home {
    padding-top: 160px;
    /* 120px original + 40px marquee */
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Link Styles */
a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* Utility Classes */
.text-end {
    text-align: right;
}

/* Shared storefront components must inherit the luxury palette. */
html body .qa-icon,
html body .empty-state .empty-icon i,
html body .section-icon {
    color: var(--accent);
}

html body .section-icon {
    background: var(--bg-light);
}

html body .empty-state.qa-empty {
    background: var(--bg-light);
    color: var(--text-color);
}

html body .filter-btn:hover,
html body .filter-btn.active {
    border-color: var(--accent);
    background: var(--primary);
    color: #fff;
}

html body .form-control:focus,
html body .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(34, 34, 34, 0.1);
}

html body .notification-item.unread {
    background: var(--bg-light);
    border-left-color: var(--accent);
}

html body .profile-nav .nav-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

html body .profile-nav .nav-item.active {
    background: var(--primary);
    color: #fff;
}

html body .shop-layout .filter-list a:hover,
html body .shop-layout .filter-list a.active {
    background: var(--bg-light);
    color: var(--primary);
}

html body .shop-layout .filter-list a.active {
    background: var(--primary);
    color: #fff;
}


/* --- luxury/utilities.css --- */

/* LUXURY THEME UTILITIES & ANIMATIONS */

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes floatIcon {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Helper Classes */
body .d-none {
    display: none;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

body .text-danger {
    color: #dc3545;
}

body .text-muted {
    color: #6c757d;
}

.font-bold {
    font-weight: 700;
}

.icon-lg {
    font-size: 2rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1001;
    /* Below WhatsApp widget if necessary, but high enough to appear above content */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* --- luxury/header.css --- */

/* LUXURY THEME HEADER & MARQUEE */

/* Marquee Bar */
.marquee-bar {
    background: var(--marquee-bg, #000);
    color: var(--marquee-color, #fff);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    font-size: var(--marquee-size, 0.85rem);
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: none;
}

.marquee-content a {
    text-decoration: none;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee var(--marquee-speed, 20s) linear infinite;
    gap: 100px;
    padding-left: 100%;
}

.marquee-content span {
    display: inline-block;
    padding-right: 50px;
    font-size: var(--marquee-size, inherit);
    color: var(--marquee-color, inherit);
}

.marquee-content a {
    color: var(--marquee-color, inherit);
    text-decoration: none;
}

.marquee-text,
.marquee-label,
.marquee-link {
    color: var(--marquee-color, inherit);
    font-size: var(--marquee-size, inherit);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee-scroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Header Base */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

body.is-home .main-header {
    top: 40px;
}

body.has-marquee .main-header {
    top: 40px;
}

body.is-home .main-header {
    top: 0;
    /* Reset */
}

body.is-home.has-marquee .main-header {
    top: 40px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-dot {
    color: var(--accent);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.05);
    /* Luxury Override */
    border-radius: 4px;
}

/* User Actions */
.user-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    transition: 0.2s;
}

.icon-btn:hover {
    color: var(--accent);
}

.badge-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu & Helpers */
.mobile-only,
.mobile-menu-close,
.mobile-auth-links {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Search Trigger */
.header-inner .user-actions .search-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    transition: all 0.2s ease;
    border-radius: 50%;
}

.search-trigger:hover {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.03);
}

/* Search Dropdown */
.search-dropdown-wrapper {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    right: -10px;
    width: 400px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 22px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.search-input-group {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
}

.search-input-group input {
    border: none;
    background: transparent;
    padding: 5px;
    width: 100%;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.search-input-group i {
    color: #999;
    margin-right: 10px;
}

.search-submit {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    padding: 5px;
}

.search-quick-links {
    font-size: 0.9rem;
}

.search-quick-links .quick-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-quick-links a {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-light);
    color: var(--text-color);
    border-radius: 15px;
    margin-right: 5px;
    margin-bottom: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.search-quick-links a:hover {
    background: var(--accent);
    color: white;
}

/* Recently Viewed in Dropdown */
.recently-viewed-section {
    margin-top: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.recently-viewed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.recently-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}

.recently-viewed-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
}

.recently-viewed-carousel::-webkit-scrollbar {
    height: 4px;
}

.recently-viewed-carousel::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.rv-product-card {
    min-width: 120px;
    width: 120px;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px;
    transition: all 0.2s;
}

.rv-product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.rv-image {
    width: 100%;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.rv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rv-rating-row {
    font-size: 0.7rem;
    color: #f39c12;
    margin-bottom: 3px;
}

.rv-review-count {
    color: var(--text-light);
    margin-left: 2px;
}

.rv-price {
    font-size: 0.85rem;
    font-weight: 600;
}

.scroll-buttons button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 0 5px;
}

.scroll-buttons button:hover {
    color: var(--accent);
}

/* Mobile Header & Responsive */
@media (max-width: 900px) {
    .main-header {
        height: 70px;
        padding: 0 15px;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1002;
        color: #000;
        font-size: 1.5rem;
        order: -1;
        margin-right: 10px;
        margin-left: -10px;
    }

    body.menu-open .mobile-menu-btn {
        visibility: hidden;
    }


    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 10px 20px 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease-in-out;
        z-index: 1001;
        gap: 0;
        overflow-y: auto;
    }

    .nav-links::after {
        content: '';
        display: block;
        min-height: 120px;
        flex-shrink: 0;
        width: 100%;
    }

    .mobile-icon-spacing {
        width: 20px;
        text-align: center;
        margin-right: 10px;
        color: var(--accent);
    }

    .nav-links.active {
        left: 0;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        animation: fadeIn 0.3s;
    }

    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        background: transparent;
        border: none;
        width: 100%;
        height: auto;
        box-shadow: none;
        border-radius: 0;
        z-index: 1002;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--accent);
        color: var(--primary);
        font-size: 1.8rem;
        order: -3;
    }

    .mobile-auth-links {
        display: flex;
        gap: 10px;
        margin-bottom: 5px;
        order: -2;
    }

    .mobile-auth-links a {
        flex: 1;
        text-align: center;
        background: #f5f5f5;
        padding: 10px 5px;
        border-radius: 4px;
        color: #000;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 0.85rem;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 0 12px 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.95rem;
        text-align: left;
    }

    /* Mobile Search Dropdown */
    .search-dropdown {
        position: fixed;
        top: 55px;
        left: 0;
        width: 100%;
        border-radius: 0;
        padding: 5px 8px;
        display: none;
    }

    .search-dropdown.active {
        display: block;
    }

    .search-dropdown::before {
        display: none;
    }
}

/* User Dropdown */
.user-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid var(--border-color);
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}

.user-dropdown-menu .dropdown-header {
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 5px;
}

.user-dropdown-menu .dropdown-header span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.user-dropdown-menu a i {
    width: 16px;
    font-size: 1rem;
    color: var(--text-light);
}

.user-dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.user-dropdown-menu a:hover i {
    color: var(--accent);
}

.user-dropdown-menu .dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 5px 0;
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-left: 5px solid #2ecc71;
    /* Default success */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 300px;
    z-index: 9999;
    transform: translateX(120%);
    animation: slideIn 0.5s forwards;
}

.toast-notification.type-error {
    border-left-color: #e74c3c;
}

.toast-notification.type-info {
    border-left-color: var(--accent, #222222);
}

.toast-icon i {
    font-size: 1.5rem;
    color: #2ecc71;
}

.type-error .toast-icon i {
    color: #e74c3c;
}

.toast-content h4 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #333;
}

.toast-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}


/* --- luxury/footer.css --- */

/* LUXURY THEME FOOTER */

.main-footer {
    background-color: #f9f9f9;
    background-image: linear-gradient(to bottom, #f9f9f9, #fff);
    color: #333333;
    padding: 100px 0 40px;
    font-family: var(--font-body);
    margin-top: 100px;
    border-top: 1px solid #e0e0e0;
    text-align: left;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 70px;
}

.footer-col h3 {
    color: #1a1a1a;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.footer-brand p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    margin: 0;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-5px);
    transition: 0.3s;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.5;
}

.contact-info i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.newsletter-footer .input-group {
    position: relative;
    display: flex;
    margin-top: 20px;
}

.newsletter-footer input {
    width: 100%;
    padding: 18px 20px;
    padding-right: 60px;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.newsletter-footer input:focus {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-consent {
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.newsletter-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
    /* Avoid shrinking on small containers */
    padding: 0;
    /* Reset padding for checkbox */
    box-shadow: none;
    /* Reset luxury input shadow */
}

.newsletter-consent label {
    cursor: pointer;
    user-select: none;
}

.newsletter-footer button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-footer button:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-credit {
    font-size: 0.8rem;
    opacity: 0.7;
    width: 100%;
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: #444;
}

.payment-methods i:hover {
    color: var(--accent);
}

.payment-methods-img {
    height: 30px;
    object-fit: contain;
}

.whatsapp-widget {
    position: fixed;
    bottom: 90px;
    left: 20px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

.working-hours-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wh-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.wh-day {
    min-width: 85px;
    font-weight: 600;
    color: #444;
}

.wh-time {
    color: #666;
}

.wh-sep {
    display: none;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .working-hours-list {
        margin-top: 8px;
    }

    .wh-row {
        padding: 5px 0;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    }

    .wh-row:last-child {
        border-bottom: none;
    }

    .mobile-break {
        display: block;
        margin-top: 2px;
    }
}

/* --- LUXURY LOGO STRIP --- */
.brand-strip-luxury {
    padding: 0 0 50px 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 50px;
}

.brand-strip-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 600;
}

.brand-strip-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent);
}

.brand-grid-luxury {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.brand-link {
    display: block;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.4s ease;
    background: transparent;
}

.brand-link img {
    height: 35px;
    transition: all 0.4s ease;
    filter: grayscale(100%) opacity(0.5);
}

.brand-link:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.brand-link:hover img {
    filter: grayscale(0%) opacity(1);
}

@media(max-width: 600px) {
    .brand-grid-luxury {
        gap: 15px;
    }

    .brand-link {
        padding: 5px 10px;
    }

    .brand-link img {
        height: 25px;
    }
}

/* --- MARKETPLACES BAR --- */
.marketplaces-bar {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 60px 0 40px;
    margin-top: 0;
    text-align: center;
    position: relative;
    z-index: 99;
    clear: both;
}

.marketplaces-bar > .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.marketplaces-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.marketplace-item {
    display: block;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.marketplace-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.marketplace-item img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .marketplaces-grid {
        gap: 30px;
    }

    .marketplace-item img {
        height: 25px;
    }
}

/* --- SCROLL TO TOP --- */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border: 1.5px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* --- RELATED TAGS SECTION --- */
.related-tags-container {
    padding: 30px 0 40px;
    background: #fdfdfd;
    border-top: 1px solid #f8f8f8;
    text-align: center;
}

.related-tags-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
}

.related-tags-title i {
    color: var(--accent);
    font-size: 0.9rem;
}

.related-tags-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.related-tag-item {
    display: inline-block;
    padding: 10px 24px;
    background: #fff;
    border: 1px solid #eeeeee;
    color: #444;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    text-transform: capitalize;
}

.related-tag-item:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .related-tags-container {
        padding: 25px 15px;
    }

    .related-tag-item {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}


/* --- luxury/components/buttons.css --- */

/* LUXURY THEME BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

.btn:active {
    transform: scale(0.98);
}

/* Gold Button (Primary) */
.btn-gold {
    background: linear-gradient(135deg, #222222 0%, #555555 100%);
    /* Luxury Override */
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #000000 0%, #222222 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Shine Effect */
.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-gold:hover::after {
    left: 100%;
}

/* Dark Button */
.btn-dark {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Body Primary Button Override */
body .btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

body .btn-primary:hover,
.wishlist-grid .btn-primary:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

/* Sizes */
.btn-lg {
    padding: 18px 45px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.8rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Checkout Action Button */
.btn-checkout-action {
    font-size: 1.5rem;
    letter-spacing: 2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #222222 0%, #111111 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 25px;
    width: 100%;
    display: block;
}

.btn-checkout-action:hover {
    background: linear-gradient(135deg, #333333 0%, #222222 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Button Detail */
.btn-detail {
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-detail:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.btn-detail-card {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: #fff;
    color: #444;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-detail-card:hover {
    background-color: #000;
    color: #fff !important;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 30px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.btn-primary-profile:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* --- luxury/components/forms.css --- */

/* LUXURY THEME FORMS */

/* General Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
    outline: none;
    box-shadow: none;
    background-color: var(--input-bg);
    /* Variable override */
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox & Radio */
input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Quantity Input */
.qty-input {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: fit-content;
    overflow: hidden;
}

.qty-input button {
    background: #f9f9f9;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--primary);
    transition: 0.2s;
}

.qty-input button:hover {
    background: #f0f0f0;
}

.qty-input input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    height: 40px;
    padding: 0;
    font-weight: 600;
}

/* Floating Labels */
.form-group.floating {
    position: relative;
    margin-bottom: 25px;
}

.form-group.floating input {
    width: 100%;
    padding: 15px 15px 15px 0;
    /* No left padding for minimal look default */
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 1rem;
    background: transparent;
    transition: 0.3s;
}

.form-group.floating input:focus {
    border-bottom-color: var(--accent);
    box-shadow: 0 1px 0 0 var(--accent);
}

.form-group.floating label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #999;
    transition: 0.3s ease;
    pointer-events: none;
}

.form-group.floating.with-icon input {
    padding-left: 35px;
}

.form-group.floating.with-icon label {
    left: 35px;
}

.input-icon {
    position: absolute;
    left: 0;
    top: 15px;
    color: #ccc;
    font-size: 1.1rem;
    transition: 0.3s;
}

.form-group.floating input:focus~.input-icon {
    color: var(--accent);
}

.form-group.floating input:focus+label,
.form-group.floating input:not(:placeholder-shown)+label {
    top: -5px;
    font-size: 0.8rem;
    color: var(--accent);
}

/* --- luxury/components/cards.css --- */

/* LUXURY THEME CARDS */

/* Product Card */
.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:not(.out-of-stock):hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #f8f8f8;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:not(.out-of-stock):hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:not(.out-of-stock):hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    padding: 0;
}



.action-btn:hover {
    background: var(--accent);
    color: #fff;
}

.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #222222;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 1;
}

.product-info {
    padding: 20px;
    text-align: left;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.product-category {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.product-info h3 {
    font-size: 1.05rem;
    margin: 5px 0 10px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em; /* 2 lines * 1.4 line-height */
}

.product-info h3 a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.2s;
}

.product-info h3 a:hover {
    color: var(--accent);
}

.price-box {
    margin-top: auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #545b62;
    font-size: 0.85rem;
    margin-right: 4px;
}

.current-price {
    color: var(--price-red, #d32f2f);
    font-weight: 700;
    font-size: 1.15rem;
}

.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    min-height: 65px;
    flex-shrink: 0;
    padding: 0;
    background: #eeeeee;
    color: #000;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    margin-top: auto;
    letter-spacing: 1px;
}

.btn-add-cart:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-add-cart.disabled,
.btn-add-cart:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}

/* Category Card */
.category-card {
    position: relative;
    overflow: hidden;
    height: 450px;
    border-radius: 2px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.category-content h3 {
    color: #fff;
    margin: 0 0 10px;
}

/* User Card (Profile Sidebar) */
.user-card {
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.user-card h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.user-card p {
    margin: 4px 0 0;
    color: #999;
    font-size: 0.9rem;
}

/* Order Card */
.order-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.order-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #ddd;
}

/* Stat Box */
.stat-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-box .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fdf2f4;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-box h3,
.stat-box .info h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-box span,
.stat-box .info span {
    color: #888;
    font-size: 0.9rem;
}

/* --- PRODUCT GRID SYSTEM --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/* --- luxury/components/tables.css --- */

/* LUXURY THEME TABLES */

.orders-table-wrapper {
    border: 1px solid #eee;
    border-radius: 8px;
    /* overflow: hidden; Removed to allow responsive scroll override */
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
}

.premium-table th {
    background: #fcfcfc;
    color: #888;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 25px;
    border-bottom: 2px solid #eee;
    text-align: left;
    white-space: nowrap;
}

.premium-table td {
    padding: 20px 25px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
    color: #444;
    transition: background 0.2s;
    white-space: nowrap;
}

.premium-table tbody tr:hover td {
    background: #fdfdfd;
}

.premium-table tbody tr:last-child td {
    border-bottom: none;
}

/* Response Tables */
@media (max-width: 768px) {

    .orders-table-wrapper table.premium-table,
    .orders-table-wrapper table.premium-table tbody,
    .orders-table-wrapper table.premium-table tr,
    .orders-table-wrapper table.premium-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .orders-table-wrapper table.premium-table thead {
        display: none;
    }

    .orders-table-wrapper table.premium-table tr {
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 10px;
    }

    .orders-table-wrapper table.premium-table tbody tr td {
        padding: 6px 0;
        font-size: 0.95rem;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        border: none;
    }

    .orders-table-wrapper table.premium-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #777;
        font-size: 0.9rem;
        min-width: 100px;
    }

    .orders-table-wrapper table.premium-table td:last-child {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #f5f5f5;
        justify-content: flex-end;
    }
}

/* --- luxury/components/badges.css --- */

/* LUXURY THEME BADGES */

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    gap: 8px;
}

.status-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.status-badge.badge-warning {
    background: #fff8e1;
    color: #f57c00;
}

.status-badge.badge-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.badge-info {
    background: var(--bg-light);
    color: var(--primary);
}

.status-badge.badge-danger {
    background: #ffebee;
    color: #c62828;
}

.status-badge.badge-secondary {
    background: #f5f5f5;
    color: #616161;
}

.status-badge.badge-primary {
    background: var(--bg-light);
    color: var(--primary);
}

/* Status Text Colors only (using specific selectors instead of !important) */
.status-pending {
    color: #f57f17;
}

.status-processing {
    color: var(--primary);
}

.status-shipped {
    color: #2e7d32;
}

.status-delivered {
    color: #00695c;
}

.status-cancelled {
    color: #c62828;
}

.status-returned {
    color: #6a1b9a;
}

.status-default {
    color: #777;
}

/* Sale Badge */
.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Accessibility contrast fix for badges */
.badge.bg-danger {
    background-color: #c82333;
    color: #ffffff;
}

/* Premium Flash Sale Tag (Renamed to avoid conflicts) */
.luxury-fs-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.luxury-fs-tag i {
    color: #fff;
    font-size: 0.8rem;
    animation: flash-pulse 2s infinite;
}

@keyframes flash-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.product-card:hover .luxury-fs-tag {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* --- luxury/components/modals.css --- */

/* LUXURY MODAL COMPONENT */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    padding: 5px;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.modal-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-modal-primary {
    background: var(--primary);
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.btn-modal-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.btn-modal-secondary {
    background: transparent;
    color: var(--primary);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.btn-modal-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }
}


/* --- luxury/responsive.css --- */

/* LUXURY THEME RESPONSIVE OVERRIDES & UTILITIES */

/* Global Responsive Utilities */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 40px 0;
    }

    body .d-none-mobile {
        display: none;
    }

    body .d-block-mobile {
        display: block;
    }

    body .text-center-mobile {
        text-align: center;
    }
}

/* Mobile Filter Modal (Bottom Sheet) */
.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    transition: all 0.3s;
}

.filter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.3s;
}

.filter-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 85vh;
    background: #fff;
    border-radius: 20px 20px 0 0;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.filter-modal.active {
    visibility: visible;
}

.filter-modal.active .filter-overlay {
    opacity: 1;
}

.filter-modal.active .filter-content {
    bottom: 0;
}

.filter-header-modal {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-header-modal h3 {
    margin: 0;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.close-filter {
    background: none;
    border: none;
    font-size: 1.5rem;
    padding: 5px;
    cursor: pointer;
}

.filter-body-modal {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.filter-footer-modal {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
    background: #fff;
}

.filter-footer-modal .btn {
    flex: 1;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    /* Adjustments for inputs on mobile to prevent zoom */
    body input[type="text"],
    body input[type="number"],
    body input[type="email"],
    body input[type="tel"],
    body input[type="password"],
    body select,
    body textarea {
        font-size: 16px;
    }

    body {
        padding-bottom: 70px; /* Space for the bottom nav */
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        z-index: 1050;
        justify-content: space-around;
        align-items: center;
        height: 65px;
        padding: 0 5px;
        border-top: 1px solid #f0f0f0;
    }

    .mobile-bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #666;
        text-decoration: none;
        flex: 1;
        height: 100%;
        transition: color 0.2s ease;
    }

    .mobile-bottom-nav-item:hover,
    .mobile-bottom-nav-item.active {
        color: var(--accent); /* Usually gold/primary color */
    }

    .mobile-bottom-nav-item .icon-wrapper {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3px;
    }

    .mobile-bottom-nav-item .icon-wrapper i {
        font-size: 1.2rem;
    }

    .mobile-bottom-nav-item span.nav-label {
        font-size: 0.75rem;
        font-weight: 500;
        white-space: nowrap;
    }

    .mobile-bottom-nav-item .badge-count {
        position: absolute;
        top: -8px;
        right: -14px;
        background-color: #e74c3c;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        border: 1.5px solid #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.15);
        pointer-events: none;
    }
}
