:root {
    --luxe-ink: #1a1814;
    --luxe-ink-soft: #2a2620;
    --luxe-gold: #c8a951;
    --luxe-gold-deep: #a88a3a;
    --luxe-cream: #f9f7f2;
    --luxe-muted: #8a8580;
    --luxe-border: #e5e0d8;
    --luxe-foreground: #2d2a26;
}

body {
    background-color: var(--luxe-cream) !important;
    color: var(--luxe-foreground);
}

.luxe-menu-link {
    color: rgba(249, 247, 242, 0.9) !important;
}
.luxe-menu-link:hover,
.luxe-menu-link.active { color: var(--luxe-gold) !important; }

.luxe-footer-link { color: rgba(249, 247, 242, 0.7) !important; }
.luxe-footer-link:hover { color: var(--luxe-gold) !important; }

.hp-nav-link.active::after { background: var(--luxe-gold); }

/* Hero — unified ink shell like homepagedesign */
.hp-hero-shell { background-color: var(--luxe-ink); }

.hp-hero-bg {
    background:
        radial-gradient(ellipse 80% 60% at 75% 45%, rgba(200, 169, 81, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 169, 81, 0.05) 0%, transparent 50%),
        linear-gradient(165deg, #1a1814 0%, #141210 50%, #1a1814 100%);
}

.hp-hero-grain {
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hp-hero-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(212, 167, 75, 0.55), rgba(212, 167, 75, 0.15) 45%, transparent 70%);
    filter: blur(48px);
    opacity: 0.6;
    pointer-events: none;
}

.hp-hero-watch {
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 60px rgba(212, 167, 75, 0.25));
}

.hp-hero-watch-wrap { position: relative; }

.luxe-nav-shell { background-color: var(--luxe-ink); }

.luxe-footer { background-color: var(--luxe-ink) !important; }

.luxe-logo-crown { display: block; }

/* Product page premium */
.luxe-product {
    background: var(--luxe-cream) !important;
    color: var(--luxe-foreground);
}

.luxe-product .text-primary { color: #2563eb !important; }
.luxe-product .bg-primary {
    background-color: #2563eb !important;
    color: #fff !important;
}

.luxe-breadcrumb { color: var(--luxe-muted); }
.luxe-breadcrumb a { color: var(--luxe-muted); }
.luxe-breadcrumb a:hover { color: var(--luxe-gold); }

.luxe-product-card {
    border-radius: 14px !important;
    border: 1px solid #eef0f2 !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.06) !important;
    position: relative;
}

.luxe-product-image-box {
    background: #ffffff !important;
    border-radius: 14px !important;
    border: 1px solid #eef0f2 !important;
    aspect-ratio: 1 / 1 !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.06) !important;
}

.luxe-product-image-box::before {
    display: none !important;
}

.luxe-product-card::before {
    display: none;
}

.luxe-price-box {
    background: #fff !important;
    border: 1px solid #eef0f2 !important;
    border-radius: 12px !important;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.luxe-price-current { color: var(--luxe-ink) !important; font-size: 2.25rem !important; }
.luxe-price-original { color: var(--luxe-muted) !important; }

.luxe-save-badge {
    background: var(--luxe-ink) !important;
    color: var(--luxe-gold) !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.6875rem;
}

/* Tabs card — rich white panel */
.luxe-tabs-card {
    background: #fff;
    border: 1px solid #eef0f2 !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.luxe-tabs-card > .p-6 {
    padding: 1.5rem !important;
}

@media (min-width: 768px) {
    .luxe-tabs-card > .p-6 {
        padding: 1.75rem 2rem !important;
    }
}

/* Tab navigation — light with blue active */
.luxe-tab-nav {
    background: #fff;
    border-bottom: 1px solid #eef0f2;
    padding: 0 0.5rem;
    border-radius: 0;
    overflow: visible;
}

.luxe-tab-nav nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.luxe-tab-nav .tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #6b7280;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    margin-bottom: -1px;
}

.luxe-tab-nav .tab-button:hover {
    color: #2563eb;
    background: transparent;
}

.luxe-tab-nav .tab-button.active {
    color: #2563eb !important;
    border-bottom-color: #2563eb !important;
    background: transparent;
}

.luxe-tab-nav .tab-icon {
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f3f4f6;
    font-size: 0.75rem;
    color: #9ca3af;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.luxe-tab-nav .tab-button:hover .tab-icon {
    background: #eff6ff;
    color: #2563eb;
}

.luxe-tab-nav .tab-button.active .tab-icon {
    background: #eff6ff;
    color: #2563eb;
}

@media (max-width: 480px) {
    .luxe-tab-nav .tab-button {
        padding: 0.85rem 0.65rem;
        font-size: 0.75rem;
        gap: 0.35rem;
    }
    .luxe-tab-nav .tab-label {
        display: none;
    }
    .luxe-tab-nav .tab-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.85rem;
    }
}

/* Stat cards — colored metrics */
.luxe-stat-card {
    text-align: center;
    padding: 1.25rem 1rem;
    border: none !important;
    border-radius: 10px !important;
}

.luxe-stat-card .stat-value {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.luxe-stat-card .stat-label {
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.6875rem;
    font-weight: 600;
}

.luxe-stat-card--current { background: #eff6ff !important; }
.luxe-stat-card--current .stat-value { color: #2563eb !important; }

.luxe-stat-card--lowest { background: #f0fdf4 !important; }
.luxe-stat-card--lowest .stat-value { color: #16a34a !important; }

.luxe-stat-card--highest { background: #fef2f2 !important; }
.luxe-stat-card--highest .stat-value { color: #dc2626 !important; }

.luxe-stat-card--trend { background: #faf5ff !important; }
.luxe-stat-card--trend .stat-value { color: #9333ea !important; }

/* Inner panels (chart, table) */
.luxe-tab-panel-box {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 1rem;
}

.luxe-tab-panel-box--table {
    padding: 0;
    overflow: hidden;
}

.luxe-tab-panel-box .relative {
    background: #fafafa;
    border-radius: 8px;
    padding: 0.5rem;
}

.luxe-tab-panel-box--table > .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Chart period toggles */
.luxe-product .chart-period-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background: #f3f4f6;
    color: #4b5563;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.luxe-product .chart-period-btn:hover {
    background: #e5e7eb;
}

.luxe-product .chart-period-btn.active {
    background-color: #2563eb !important;
    color: #fff !important;
}

/* Share / Wishlist / Compare action buttons */
.luxe-product-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
}

.btn-luxe-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.75rem 0.4rem;
    min-height: 56px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
}

.btn-luxe-action i {
    font-size: 1.125rem;
}

@media (min-width: 640px) {
    .btn-luxe-action {
        flex-direction: row;
        min-height: 48px;
        padding: 0.75rem 0.75rem;
        font-size: 0.8125rem;
        gap: 0.45rem;
    }
    .btn-luxe-action i {
        font-size: 1rem;
    }
}

.btn-luxe-action--share {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
    border-color: #bfdbfe;
}
.btn-luxe-action--share:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.btn-luxe-action--wishlist {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    color: #be185d;
    border-color: #fbcfe8;
}
.btn-luxe-action--wishlist:hover,
.btn-luxe-action--wishlist:has(.text-danger) {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #be185d;
    border-color: #f9a8d4;
    box-shadow: 0 4px 14px rgba(190, 24, 93, 0.2);
}
.btn-luxe-action--wishlist:has(.text-danger) {
    background: #ec4899;
    color: #fff;
    border-color: #ec4899;
}

.btn-luxe-action--compare {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    color: #6d28d9;
    border-color: #ddd6fe;
}
.btn-luxe-action--compare:hover,
.btn-luxe-action--compare:has(.text-primary) {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
    transform: translateY(-1px);
}

.deal-card-horizontal {
    border-radius: 4px !important;
    border-color: var(--luxe-border) !important;
}

.deal-card-horizontal h3 a { color: var(--luxe-ink) !important; }
.deal-card-horizontal h3 a:hover { color: var(--luxe-gold) !important; }

.scroll-btn:hover {
    background: var(--luxe-gold) !important;
    color: var(--luxe-ink) !important;
    border-color: var(--luxe-gold) !important;
}

.btn-primary {
    background: var(--luxe-ink) !important;
    color: var(--luxe-cream) !important;
    border-radius: 0 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.6875rem;
}

.btn-primary:hover {
    background: var(--luxe-gold) !important;
    color: var(--luxe-ink) !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Base typography */
* { font-family: 'Inter', sans-serif; box-sizing: border-box; }
body, html { overflow-x: hidden; max-width: 100vw; margin: 0; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* Scrolling announcement */
.luxe-marquee-wrap { width: 100%; }
.luxe-marquee-track {
    display: flex;
    width: max-content;
    animation: luxe-marquee 35s linear infinite;
}
.luxe-marquee-wrap:hover .luxe-marquee-track { animation-play-state: paused; }
.luxe-marquee-item {
    flex-shrink: 0;
    padding: 0 3rem;
    white-space: nowrap;
    color: rgba(249, 247, 242, 0.95);
    letter-spacing: 0.04em;
}
@keyframes luxe-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero background image */
.luxe-hero-bg-section {
    background-image: url('/images/homepage/hero-bg.jpg');
}

.luxe-social-btn {
    width: 32px; height: 32px;
    border-radius: 9999px;
    border: 1px solid rgba(253, 251, 247, 0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(253, 251, 247, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
}
.luxe-social-btn:hover {
    background: var(--luxe-gold);
    border-color: var(--luxe-gold);
    color: var(--luxe-ink);
}

.luxe-icon-btn {
    background: transparent;
    border: none;
    color: inherit;
    padding: 0;
    cursor: pointer;
}

.hp-nav-link { position: relative; }
.hp-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0; right: 0;
    margin: 0 auto;
    height: 2px;
    width: 24px;
}

.hp-category-card { border-radius: 6px; }
.hp-category-card img { transition: transform 0.7s ease; }
.hp-category-card:hover img { transform: scale(1.05); }

.hp-feature-card { border: 1px solid var(--luxe-gold); border-radius: 4px; }
.hp-feature-card img { transition: transform 0.7s ease; }
.hp-feature-card:hover img { transform: scale(1.05); }

.hp-search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 24, 20, 0.94);
    z-index: 9999;
    align-items: flex-start;
    justify-content: center;
    padding: max(80px, env(safe-area-inset-top, 0px) + 64px) 1rem 1.5rem;
}
.hp-search-overlay.open { display: flex; }

@media (max-width: 1023px) {
    .hp-desktop-nav { display: none; }
}
@media (min-width: 1024px) {
    .hp-mobile-menu-btn { display: none; }
}

/* Luxe deal cards */
.deal-card-wrapper {
    position: relative;
}

.deal-card-wrapper--ranked .luxe-deal-card__actions {
    left: 2.1rem;
}

.deal-card-wrapper .deal-card,
.deal-card-wrapper .deal-card.luxe-deal-card {
    border-radius: 4px !important;
    box-shadow: 0 2px 12px rgba(26, 24, 20, 0.06) !important;
    border: 1px solid var(--luxe-border) !important;
    background: #ffffff !important;
    transition: all 0.3s ease;
    overflow: hidden;
}
.deal-card-wrapper .deal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 24, 20, 0.1) !important;
    border-color: rgba(200, 169, 81, 0.4) !important;
}

/* Product image area */
.luxe-deal-card__media {
    position: relative;
    background: #ffffff;
    border-bottom: 1px solid var(--luxe-border);
}

.luxe-deal-card__actions {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.luxe-deal-card__icon-btn {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 1px solid var(--luxe-border);
    background: #fff;
    box-shadow: 0 1px 4px rgba(26, 24, 20, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.luxe-deal-card__icon-btn:hover {
    border-color: var(--luxe-gold);
    box-shadow: 0 2px 8px rgba(200, 169, 81, 0.2);
}

.luxe-deal-card__icon-btn i {
    font-size: 0.65rem;
}

.luxe-deal-card__image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    padding: 0.75rem 1rem;
    background: #ffffff;
}

.luxe-deal-card__image {
    max-height: 150px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Brand + premium label row */
.luxe-deal-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    min-height: 1.125rem;
}

.deal-card-wrapper .luxe-deal-brand {
    flex: 1;
    min-width: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: var(--luxe-gold) !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.luxe-deal-brand--empty {
    flex: 1;
}

.deal-card-wrapper .luxe-offer-tag,
.deal-card-wrapper .savings-tag {
    display: inline-block;
    flex-shrink: 0;
    background: var(--luxe-ink) !important;
    color: var(--luxe-gold) !important;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.25;
    padding: 0.28rem 0.45rem;
    border: 1px solid rgba(200, 169, 81, 0.35);
    border-radius: 2px;
    box-shadow: none;
    text-align: center;
    max-width: 5.5rem;
    white-space: normal;
    word-break: break-word;
    animation: none;
}

.luxe-offer-tag {
    display: inline-block;
    background: var(--luxe-ink) !important;
    color: var(--luxe-gold) !important;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.35;
    padding: 0.35rem 0.5rem;
    border: 1px solid rgba(200, 169, 81, 0.35);
    border-radius: 2px;
    animation: none;
}

.luxe-deal-card__status {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.45rem;
    border-radius: 2px;
}

.luxe-deal-card__status--expired {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.deal-card-wrapper .deal-card .text-primary,
.deal-card-wrapper .luxe-deal-brand {
    color: var(--luxe-gold) !important;
}

.deal-card-wrapper .luxe-deal-price {
    color: var(--luxe-gold) !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.deal-card-wrapper .luxe-deal-price-box {
    background: var(--luxe-cream) !important;
    border: 1px solid var(--luxe-border) !important;
}

.deal-card-wrapper .category-badge {
    background: var(--luxe-cream) !important;
    color: var(--luxe-muted) !important;
    border-color: var(--luxe-border) !important;
}

.deal-card-wrapper .btn-luxe-amazon-mini {
    background: var(--luxe-ink) !important;
    color: var(--luxe-cream) !important;
    font-size: 11px;
    border-radius: 0;
    border: none;
}
.deal-card-wrapper .btn-luxe-amazon-mini:hover {
    background: var(--luxe-gold) !important;
    color: var(--luxe-ink) !important;
}

/* Category filters sidebar */
.luxe-filter-panel {
    background: var(--luxe-cream);
    border: 1px solid var(--luxe-border);
    padding: 1.25rem;
}
.luxe-filter-group {
    border-bottom: 1px solid var(--luxe-border);
    padding: 1.25rem 0;
}
.luxe-filter-group:last-of-type { border-bottom: none; }
.luxe-filter-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--luxe-ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0.75rem;
}
.luxe-filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(26, 24, 20, 0.8);
    cursor: pointer;
    margin-bottom: 0.5rem;
}
.luxe-filter-option:hover { color: var(--luxe-gold); }
.luxe-filter-option input { accent-color: var(--luxe-gold); }
.luxe-filter-range { width: 100%; accent-color: var(--luxe-gold); }
.luxe-filter-link { transition: color 0.2s ease; }
.luxe-expandable-item.is-hidden { display: none !important; }
.luxe-show-more-btn {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.45rem 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--luxe-gold);
    background: transparent;
    border: 1px solid rgba(200, 169, 81, 0.35);
    cursor: pointer;
    transition: all 0.2s ease;
}
.luxe-show-more-btn:hover {
    background: rgba(200, 169, 81, 0.1);
    border-color: var(--luxe-gold);
}
@media (min-width: 992px) {
    .luxe-filter-layout {
        align-items: flex-start;
    }
    .luxe-filters-sticky-wrap {
        position: sticky;
        top: 5.5rem;
        align-self: flex-start;
        flex: 0 0 16rem;
        width: 16rem;
        max-height: calc(100vh - 6rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(200, 169, 81, 0.5) transparent;
    }
    .luxe-filters-sticky-wrap::-webkit-scrollbar {
        width: 5px;
    }
    .luxe-filters-sticky-wrap::-webkit-scrollbar-thumb {
        background: rgba(200, 169, 81, 0.45);
        border-radius: 999px;
    }
    .luxe-products-panel {
        flex: 1 1 auto;
        min-width: 0;
    }
}
.luxe-filter-promo {
    margin-top: 1.25rem;
    padding: 1.25rem;
    color: var(--luxe-cream);
    background-size: cover;
    background-position: center;
}
.luxe-filter-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(26, 24, 20, 0.6);
}
.luxe-filter-drawer {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20rem;
    max-width: 85%;
    background: #fff;
    overflow-y: auto;
    padding: 1rem;
}

.luxe-sort-select {
    appearance: none;
    border: 1px solid var(--luxe-border);
    background: var(--luxe-cream);
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--luxe-ink);
    cursor: pointer;
}
.luxe-sort-select:hover { border-color: var(--luxe-gold); }

/* Blog */
.luxe-blog-card {
    border: 1px solid var(--luxe-border);
    background: #fff;
    transition: border-color 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.luxe-blog-card:hover { border-color: rgba(200, 169, 81, 0.6); }
.luxe-blog-card h3 { font-family: 'Playfair Display', serif; }
.luxe-blog-card:hover h3 { color: var(--luxe-gold); }

/* Product page extras */
.btn-luxe-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--luxe-gold);
    color: var(--luxe-ink);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    padding: 0.875rem 1.5rem;
    border: none;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}
.btn-luxe-gold:hover { background: var(--luxe-gold-deep); color: var(--luxe-ink); }

.btn-luxe-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--luxe-ink);
    color: var(--luxe-cream);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.25rem;
    border: none;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}
.btn-luxe-dark:hover { background: var(--luxe-ink-soft); color: var(--luxe-cream); }

.btn-luxe-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    color: var(--luxe-ink);
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--luxe-border);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-luxe-outline:hover {
    border-color: var(--luxe-gold);
    color: var(--luxe-gold);
}

.btn-luxe-amazon {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #ff9500 0%, #e8860a 100%);
    color: #fff;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border: none;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-luxe-amazon:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.35);
}

.luxe-breadcrumb { font-size: 0.8125rem; color: var(--luxe-muted); }
.luxe-breadcrumb a {
    color: var(--luxe-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.luxe-breadcrumb a:hover { color: var(--luxe-gold); }

.luxe-price-box {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.luxe-price-current {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxe-ink);
    line-height: 1.1;
}
.luxe-price-original { color: var(--luxe-muted); text-decoration: line-through; font-size: 1.125rem; }

.luxe-product .tab-button {
    color: var(--luxe-muted);
    border-bottom: 2px solid transparent;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}
.luxe-product .tab-button.active {
    color: var(--luxe-ink) !important;
    border-bottom-color: var(--luxe-gold) !important;
}
.luxe-product .tab-button:hover { color: var(--luxe-gold); }

.luxe-product .chart-period-btn {
    background: var(--luxe-cream);
    color: var(--luxe-muted);
    border: 1px solid var(--luxe-border);
}
.luxe-product .chart-period-btn:hover { background: var(--luxe-border); }

.luxe-product .savings-tag {
    background: var(--luxe-ink);
    color: var(--luxe-gold);
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 0;
    font-size: 13px;
    border: 1px solid var(--luxe-gold);
    animation: none;
}

.btn-amazon {
    background: linear-gradient(135deg, #ff9500 0%, #e8860a 100%);
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 0;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-amazon:hover { color: white; opacity: 0.92; }

/* Global links — no underline (Tailwind preflight disabled) */
body a { text-decoration: none; }
.luxe-page-prose a,
.luxe-blog-article a { color: var(--luxe-gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.luxe-page-prose a:hover { color: var(--luxe-gold); }

.luxe-nav-shell { border-bottom: 1px solid rgba(249, 247, 242, 0.06); }
.luxe-hero-bg-section header { border-bottom: 1px solid rgba(249, 247, 242, 0.06) !important; }

/* Product save pill */
.luxe-price-note,
.luxe-save-pill {
    display: inline-block;
    background: rgba(26, 24, 20, 0.04);
    color: var(--luxe-muted);
    border: 1px solid rgba(26, 24, 20, 0.08);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
}

/* Product tabs panel content */
.luxe-tabs-panel .tab-content { color: var(--luxe-foreground); min-height: 320px; }
.luxe-tabs-panel .tab-content h3,
.luxe-tabs-panel .tab-content h4 { font-family: inherit; color: #111827; font-weight: 700; }
.luxe-tabs-panel .text-gray-900 { color: #111827 !important; }
.luxe-tabs-panel .text-gray-600,
.luxe-tabs-panel .text-gray-500,
.luxe-tabs-panel .text-gray-700 { color: #6b7280 !important; }
.luxe-tabs-panel .text-gray-400 { color: #9ca3af !important; }
.luxe-tabs-panel .border-gray-100,
.luxe-tabs-panel .border-gray-200,
.luxe-tabs-panel .border-b { border-color: #eef0f2 !important; }
.luxe-tabs-panel .bg-white { background: #fff !important; }
.luxe-tabs-panel .bg-gray-50 { background: #f9fafb !important; }
.luxe-tabs-panel .bg-gradient-to-r.from-blue-50 {
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%) !important;
    border: 1px solid #dbeafe;
    border-radius: 12px;
}
.luxe-tabs-panel .from-blue-50.to-purple-50 { background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%) !important; }
.luxe-tabs-panel .rounded-lg { border-radius: 12px !important; }
.luxe-tabs-panel table { width: 100%; border-collapse: collapse; }
.luxe-tabs-panel table thead { background: #f9fafb; }
.luxe-tabs-panel table th {
    padding: 0.75rem 1.5rem;
    text-align: left;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    border-bottom: 1px solid #eef0f2;
    font-weight: 600;
}
.luxe-tabs-panel table td {
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid #eef0f2;
    font-size: 0.875rem;
    color: #111827;
}
.luxe-tabs-panel table tbody tr:hover { background: #f9fafb; }
.luxe-tabs-panel .text-green-600 { color: #16a34a !important; }
.luxe-tabs-panel .text-red-600 { color: #dc2626 !important; }
.luxe-tabs-panel .bg-red-100 {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border-radius: 9999px;
    padding: 0.2rem 0.65rem;
}
.luxe-tabs-panel .text-red-800 { color: #dc2626 !important; }
.luxe-tabs-panel .bg-primary,
.luxe-tabs-panel button.bg-primary {
    background: #2563eb !important;
    color: #fff !important;
    border-radius: 8px !important;
}
.luxe-tabs-panel .bg-primary:hover,
.luxe-tabs-panel button.bg-primary:hover { background: #1d4ed8 !important; }
.luxe-tabs-panel input,
.luxe-tabs-panel select,
.luxe-tabs-panel textarea {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
}
.luxe-tabs-panel input:focus {
    outline: none;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

/* Info sections inside tabs */
.luxe-tabs-panel .luxe-info-section {
    border: 1px solid #eef0f2;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.luxe-tabs-panel .luxe-info-section-header {
    background: #f9fafb;
    color: #111827;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    border-bottom: 1px solid #eef0f2;
}

.luxe-tabs-panel .luxe-info-section-header i {
    color: #2563eb;
    opacity: 1;
}

.luxe-tabs-panel .luxe-info-row:hover {
    background: #f9fafb;
}

.luxe-tabs-panel .luxe-info-badge--discount {
    background: rgba(26, 24, 20, 0.06);
    color: var(--luxe-muted);
    border-radius: 9999px;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.luxe-tabs-panel .luxe-info-badge--save {
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 9999px;
}

/* Static pages prose */
.luxe-page-prose { color: var(--luxe-foreground); line-height: 1.75; font-size: 0.9375rem; }
.luxe-page-prose h1, .luxe-page-prose h2, .luxe-page-prose h3 {
    font-family: 'Playfair Display', serif;
    color: var(--luxe-ink);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}
.luxe-page-prose h2 { font-size: 1.5rem; }
.luxe-page-prose h3 { font-size: 1.125rem; }
.luxe-page-prose p { margin-bottom: 1rem; }
.luxe-page-prose ul, .luxe-page-prose ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.luxe-page-prose li { margin-bottom: 0.5rem; }
.luxe-page-prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.luxe-page-prose th, .luxe-page-prose td { border: 1px solid var(--luxe-border); padding: 0.75rem; text-align: left; }
.luxe-page-prose th { background: var(--luxe-cream); font-weight: 600; }
.luxe-page-prose blockquote {
    border-left: 3px solid var(--luxe-gold);
    padding-left: 1rem;
    color: var(--luxe-muted);
    font-style: italic;
    margin: 1.5rem 0;
}
.luxe-page-prose .luxe-callout {
    background: var(--luxe-cream);
    border: 1px solid var(--luxe-border);
    padding: 1.25rem;
    margin: 1.5rem 0;
}
.luxe-page-prose details {
    border: 1px solid var(--luxe-border);
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--luxe-cream);
}
.luxe-page-prose summary { font-weight: 600; cursor: pointer; color: var(--luxe-ink); }
.luxe-page-prose input, .luxe-page-prose select, .luxe-page-prose textarea {
    border: 1px solid var(--luxe-border);
    padding: 0.625rem 0.875rem;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}
.luxe-page-prose button[type="submit"] {
    background: var(--luxe-ink);
    color: var(--luxe-cream);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
}
.luxe-page-prose button[type="submit"]:hover { background: var(--luxe-gold); color: var(--luxe-ink); }

/* Search overlay close button */
.hp-search-close {
    color: var(--luxe-cream) !important;
    background: rgba(200, 169, 81, 0.2) !important;
    border: 1px solid var(--luxe-gold) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.hp-search-close:hover {
    color: var(--luxe-ink) !important;
    border-color: var(--luxe-gold) !important;
    background: var(--luxe-gold) !important;
}

/* Blog content wider prose */
.luxe-blog-content {
    font-size: 1rem;
    line-height: 1.8;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}
.luxe-blog-content img { max-width: 100%; height: auto; margin: 1.5rem 0; }
.luxe-blog-content h2 { font-size: 1.625rem; margin-top: 2rem; }
.luxe-blog-content h3 { font-size: 1.25rem; margin-top: 1.5rem; }
.luxe-blog-content iframe,
.luxe-blog-content video,
.luxe-blog-content embed { max-width: 100%; }

.luxe-blog-article {
    background: #fff;
    border: 1px solid var(--luxe-border);
    box-sizing: border-box;
}

.luxe-blog-single {
    overflow-x: clip;
    max-width: 100%;
}

.luxe-blog-single-container {
    box-sizing: border-box;
    width: 100%;
}

/* Single blog post */
.luxe-blog-single-article {
    padding: 1.25rem 1.125rem;
}

@media (min-width: 640px) {
    .luxe-blog-single-article {
        padding: 2rem 1.75rem;
        border-radius: 2px;
    }
}

@media (min-width: 768px) {
    .luxe-blog-single-article {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .luxe-blog-single-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .luxe-blog-single-grid {
        gap: 1.25rem;
    }

    .luxe-blog-single-article {
        border-radius: 2px;
        padding: 1.125rem 1rem;
    }

    .luxe-blog-content {
        font-size: 1rem;
        line-height: 1.75;
    }

    .luxe-blog-content h2 {
        font-size: 1.3125rem;
        line-height: 1.35;
    }

    .luxe-blog-content h3 {
        font-size: 1.0625rem;
    }

    .luxe-blog-content p,
    .luxe-blog-content li {
        font-size: 1rem;
    }

    .luxe-blog-content table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .luxe-blog-content pre {
        max-width: 100%;
        overflow-x: auto;
        font-size: 0.875rem;
    }

    .luxe-blog-content img,
    .luxe-blog-content figure,
    .luxe-blog-content iframe,
    .luxe-blog-content video {
        max-width: 100% !important;
        height: auto;
    }
}

/* Mobile navigation drawer */
.hp-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;
    background: rgba(26, 24, 20, 0.7);
    backdrop-filter: blur(2px);
}
.hp-mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    z-index: 9991;
    background: var(--luxe-ink);
    color: var(--luxe-cream);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

/* Mobile header */
@media (max-width: 639px) {
    .luxe-logo .font-display { font-size: 0.875rem !important; }
    .luxe-logo-crown { width: 14px !important; height: 14px !important; }
    .luxe-logo .text-\[10px\] { font-size: 7px !important; letter-spacing: 0.12em !important; }
    .luxe-nav { gap: 0.375rem !important; padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
    .luxe-icon-btn { min-width: 2.25rem; min-height: 2.25rem; display: inline-flex; align-items: center; justify-content: center; }
    .hp-mobile-menu-btn { min-width: 2.5rem; }
}
@media (max-width: 380px) {
    .luxe-logo .font-display { font-size: 0.75rem !important; }
    .luxe-logo .text-\[10px\] { display: none; }
    .luxe-logo .h-px { display: none; }
}

/* Footer — no white button bar on desktop */
.luxe-footer-toggle {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: inherit;
    padding-left: 0;
    padding-right: 0;
}
.luxe-footer-heading {
    color: var(--luxe-gold);
}

/* Hero tagline readability on mobile */
@media (max-width: 767px) {
    .luxe-hero-tagline {
        background: rgba(26, 24, 20, 0.55);
        padding: 0.75rem 1rem;
        border-radius: 2px;
        display: inline-block;
        backdrop-filter: blur(4px);
    }
}

/* Brands horizontal scroll */
.brands-scroll-strip {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Top deals rank badge */
.luxe-rank-badge {
    position: absolute;
    top: 0.35rem;
    left: 0.35rem;
    z-index: 25;
    background: var(--luxe-gold);
    color: var(--luxe-ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    font-family: Inter, sans-serif;
}

/* Featured watch price box */
.featured-watch-card .luxe-deal-price-box {
    background: var(--luxe-cream);
    border: 1px solid var(--luxe-border);
}

/* Footer mobile accordion */
@media (max-width: 639px) {
    .luxe-footer { padding-top: 2rem !important; }
    .luxe-footer-col.open .luxe-footer-links { display: block !important; }
    .luxe-footer-col.open .luxe-footer-chevron { transform: rotate(180deg); }
    .luxe-footer-toggle {
        background: transparent;
        border: none;
        cursor: pointer;
        color: inherit;
        min-height: 3rem;
    }
    .luxe-footer-link { display: block; padding: 0.35rem 0; }
    .luxe-social-btn { min-width: 2.5rem; min-height: 2.5rem; }
}

@media (min-width: 640px) {
    .luxe-footer-links { display: block !important; }
}

/* Home mobile product stacks — single column only */
@media (max-width: 767px) {
    .home-mobile-products .deal-card-wrapper {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .home-best-sellers .home-mobile-products .luxe-deal-card__image-link {
        height: 180px !important;
    }
    .home-best-sellers .home-mobile-products .luxe-deal-card__image {
        max-height: 155px !important;
    }
}

/* Home / carousel card sizing */
@media (min-width: 768px) {
    .home-best-sellers-desktop .luxe-deal-card__image-link {
        height: 155px !important;
        padding: 0.75rem !important;
    }
    .home-best-sellers-desktop .luxe-deal-card__image {
        max-height: 135px !important;
    }
    .home-best-sellers-desktop .luxe-offer-tag {
        font-size: 0.4375rem !important;
        max-width: 4.75rem !important;
        padding: 0.22rem 0.35rem !important;
    }
}

/* Luxe pagination */
.luxe-pagination-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 0 8px;
}

.luxe-pag-info {
    font-size: 12px;
    color: var(--luxe-muted);
    letter-spacing: 0.04em;
}

.luxe-pag {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.luxe-pag li { display: list-item; }
.luxe-pag li.d-none { display: none !important; }

.luxe-pag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--luxe-border);
    background: #fff;
    color: var(--luxe-ink);
    transition: all 0.2s;
    cursor: pointer;
    user-select: none;
    font-family: Inter, sans-serif;
}

.luxe-pag-btn:hover {
    background: var(--luxe-cream);
    border-color: var(--luxe-gold);
    color: var(--luxe-ink);
    text-decoration: none;
}

.luxe-pag-active {
    background: var(--luxe-ink) !important;
    border-color: var(--luxe-ink) !important;
    color: var(--luxe-cream) !important;
    cursor: default;
    box-shadow: 0 2px 8px rgba(26, 24, 20, 0.12);
}

.luxe-pag-dots {
    border-color: transparent !important;
    background: transparent !important;
    color: var(--luxe-muted) !important;
    cursor: default;
    min-width: 28px;
}

.luxe-pag-disabled .luxe-pag-btn {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 575px) {
    .luxe-pag-btn { min-width: 36px; height: 36px; font-size: 12px; }
    .d-none.d-sm-list-item { display: none !important; }
}

@media (min-width: 576px) {
    .d-none.d-sm-list-item { display: list-item !important; }
}
