/* ── Brand Variables ──────────────────────────────────────── */
:root {
    --burgundy: #6B1D2B;
    --rose:     #C4637A;
    --gold:     #C9A84C;
    --cream:    #F5ECD7;
    --dark:     #0D0607;
    --navy:     #0A2342;
    --ocean:    #00B4D8;
    --cyan:     #00E5FF;
    --bs-primary: #6B1D2B;
    --bs-primary-rgb: 107, 29, 43;
}

/* ── Base ─────────────────────────────────────────────────── */
body { font-family: 'Segoe UI', system-ui, sans-serif; font-size: 1.05rem; }

/* ── Override Bootstrap primary with burgundy ─────────────── */
.btn-primary       { background-color: var(--burgundy); border-color: var(--burgundy); }
.btn-primary:hover { background-color: #561624; border-color: #561624; }
.btn-outline-primary       { color: var(--burgundy); border-color: var(--burgundy); }
.btn-outline-primary:hover { background-color: var(--burgundy); border-color: var(--burgundy); color: #fff; }
.bg-primary { background-color: var(--burgundy) !important; }
.text-primary { color: var(--burgundy) !important; }
.border-primary { border-color: var(--gold) !important; }
.badge.bg-primary { background-color: var(--burgundy) !important; }

.btn-burgundy { background: var(--burgundy); color: #fff; border: none; transition: all .2s ease; }
.btn-burgundy:hover { background: #561624; color: #fff; transform: translateY(-1px); box-shadow: 0 5px 15px rgba(107,29,43,0.3); }

/* ── Gold accent button ───────────────────────────────────── */
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark) !important;
    font-weight: 700;
    transition: all .2s ease;
}
.btn-gold:hover {
    background-color: #d4b45c;
    border-color: #d4b45c;
    color: var(--dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,.35);
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar-scentora { background: rgba(13,6,7,.92) !important; box-shadow: 0 2px 16px rgba(0,0,0,.4); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,168,76,.12); }
.navbar-scentora .navbar-brand { font-size: 1.55rem; font-weight: 900; letter-spacing: -.5px; }
.navbar-scentora .navbar-brand span { color: var(--gold); }
.navbar-scentora .nav-link { font-weight: 500; transition: color .18s; }
.navbar-scentora .nav-link:hover,
.navbar-scentora .nav-link.active { color: var(--gold) !important; }
.navbar-scentora .navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-scentora .navbar-toggler-icon { filter: invert(1); }
.btn-nav-cta {
    background: var(--gold);
    color: var(--dark) !important;
    font-weight: 700;
    border-radius: 6px;
    padding: 7px 22px !important;
    transition: background .18s;
}
.btn-nav-cta:hover { background: #d4b45c !important; }

/* ── Cart badge in nav ────────────────────────────────────── */
.cart-nav-link { position: relative; }
.cart-nav-link .cart-count {
    position: absolute; top: -4px; right: -10px;
    background: var(--rose);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.animate-fade-up { animation: fadeInUp 0.6s ease-out forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    background: radial-gradient(circle at 10% 20%, #1a0810 0%, var(--dark) 90%);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.5px;
}
.hero h1 span { color: var(--gold); }
.hero-glass {
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
}
.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.45);
    color: var(--gold);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 22px;
}
.hero-stats { border-top: 1px solid rgba(255,255,255,.15); padding-top: 28px; margin-top: 42px; }
.hero-stat-num { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── Hero Slider tabs ─────────────────────────────────────── */
.slide-tab { transition: all .22s; }
.slide-tab.active-tab {
    background: rgba(201,168,76,.18) !important;
    border-color: rgba(201,168,76,.5) !important;
    color: var(--gold) !important;
}
#productCarousel .carousel-item { transition: opacity .6s ease; }
.carousel-control-prev, .carousel-control-next { width: 8%; opacity: 0.6; transition: opacity .3s, background .3s; }
.carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; background: rgba(0,0,0,0.1); }
@media (max-width: 768px) { .carousel-control-prev, .carousel-control-next { width: 12%; } }

/* ── Fragrance category cards ─────────────────────────────── */
.category-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: all .25s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.category-card:hover {
    background: rgba(201,168,76,.08);
    border-color: rgba(201,168,76,.45);
    transform: translateY(-5px);
    color: inherit;
    text-decoration: none;
}
.category-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}
.category-label { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: 1px; }

/* ── Product cards ────────────────────────────────────────── */
.product-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ede3d6;
    background: #fff;
    transition: transform .22s, box-shadow .22s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(107,29,43,.14) !important; }
.product-card .product-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream);
    position: relative;
}
.product-card .product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-card .product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--burgundy); color: #fff;
    font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}
.product-card .product-body { padding: 16px 18px 20px; }
.product-card .product-brand { font-size: .75rem; color: var(--rose); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
.product-card .product-name { font-size: 1rem; font-weight: 700; color: #2c1010; margin-bottom: 6px; }
.product-card .product-notes { font-size: .8rem; color: #7c6060; margin-bottom: 10px; }
.product-card .product-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.product-card .product-tag {
    background: #f5ecd7; color: #7a5a30;
    font-size: .72rem; font-weight: 600; padding: 2px 9px; border-radius: 50px;
    border: 1px solid #e0d0b0;
}
.product-card .product-price { font-size: 1.2rem; font-weight: 800; color: var(--burgundy); }
.product-card .product-price-old { font-size: .85rem; color: #aaa; text-decoration: line-through; margin-left: 6px; }
.product-card .btn-add-cart {
    width: 100%;
    background: var(--burgundy);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px;
    font-weight: 700;
    font-size: .9rem;
    transition: background .18s;
}
.product-card .btn-add-cart:hover { background: #561624; }

/* ── Home product cards ───────────────────────────────────── */
.home-product-card { transition: transform .22s, box-shadow .22s; }
.home-product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(107,29,43,.14) !important; }

/* ── Section headings ─────────────────────────────────────── */
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--burgundy); }
.section-sub   { color: #6c757d; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── Feature / info cards ─────────────────────────────────── */
.feature-card {
    border: 1px solid #ede3d6;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    background: #fff;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(107,29,43,.10); border-color: var(--gold); }
.feature-icon-wrap {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--burgundy), var(--rose));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.feature-card h5 { font-weight: 700; color: var(--burgundy); font-size: 1rem; }
.feature-card p  { color: #6c757d; font-size: .9rem; line-height: 1.65; margin: 0; }

/* ── How it works ─────────────────────────────────────────── */
.step-circle {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--burgundy), var(--rose));
    color: #fff; font-size: 1.15rem; font-weight: 900;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(107,29,43,.25);
}
.hiw-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    padding: 32px 20px 28px;
    transition: background .25s, border-color .25s, transform .25s;
}
.hiw-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(201,168,76,.35);
    transform: translateY(-4px);
}
.hiw-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 1rem; font-weight: 900;
    background: rgba(201,168,76,.06);
    color: var(--gold);
}
.hiw-icon { font-size: 1.9rem; margin-bottom: 14px; }

/* ── Badge styles ─────────────────────────────────────────── */
.badge-soft-gold {
    background: rgba(201,168,76,.12);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,.25);
    font-weight: 600;
    padding: 6px 14px;
}
.badge-soft-rose {
    background: rgba(196,99,122,.12);
    color: var(--rose);
    border: 1px solid rgba(196,99,122,.25);
    font-weight: 600;
    padding: 6px 14px;
}

/* ── Section depth shadows ────────────────────────────────── */
.section-card { position: relative; z-index: 1; box-shadow: 0 16px 48px rgba(0,0,0,.22); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
    background: #fff;
    border: 1px solid #ede3d6;
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    transition: transform .22s, box-shadow .22s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(107,29,43,.10); }
.testimonial-quote { font-size: 3.5rem; line-height: .9; color: var(--gold); opacity: .4; font-family: Georgia, serif; }
.testimonial-text  { color: #444; font-size: .95rem; line-height: 1.7; font-style: italic; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--burgundy), var(--rose));
    color: #fff; font-weight: 700; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ── Pricing cards ────────────────────────────────────────── */
.pricing-card { border-radius: 18px; padding: 40px 34px; height: 100%; position: relative; }
.pricing-card.card-free { border: 2px solid #ede3d6; background: #fdf9f5; }
.pricing-card.card-paid { border: 2px solid var(--gold); background: var(--burgundy); color: #fff; }
.pricing-card.card-paid .text-muted { color: rgba(255,255,255,.6) !important; }
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--dark);
    font-size: .75rem; font-weight: 700; padding: 4px 18px; border-radius: 50px;
    white-space: nowrap; letter-spacing: .5px;
}
.pricing-price { font-size: 3.2rem; font-weight: 900; line-height: 1; }
.pricing-price sup { font-size: 1.3rem; vertical-align: top; margin-top: 10px; font-weight: 700; }
.pricing-price .cents { font-size: 1.1rem; font-weight: 400; opacity: .7; }
.pricing-feature { padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,.06); font-size: .93rem; display: flex; align-items: center; gap: 8px; }
.pricing-card.card-paid .pricing-feature { border-bottom-color: rgba(255,255,255,.1); }
.check-icon { color: #22c55e; }
.pricing-card.card-paid .check-icon { color: var(--gold); }
.cross-icon { color: #d1d5db; }

/* ── CTA banner ───────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--burgundy), #8B2638); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    font-size: 1rem;
}
footer .footer-brand { font-size: 1.45rem; font-weight: 900; color: #fff; }
footer .footer-brand span { color: var(--gold); }
footer a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .18s; }
footer a:hover { color: var(--gold); }
footer hr { border-color: rgba(255,255,255,.1); }

/* ── Auth split layout ────────────────────────────────────── */
.login-split { min-height: calc(100vh - 130px); display: flex; align-items: stretch; }
.login-brand-col {
    background: linear-gradient(160deg, var(--burgundy) 0%, #8B2638 100%);
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 60px 56px; color: #fff;
}
.login-brand-col .brand-logo { font-size: 2rem; font-weight: 900; letter-spacing: -.5px; margin-bottom: 28px; }
.login-brand-col .brand-logo span { color: var(--gold); }
.login-brand-col h2 { font-size: 1.75rem; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.login-brand-col p { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 340px; }
.login-brand-col .brand-features { list-style: none; padding: 0; margin: 32px 0 0; }
.login-brand-col .brand-features li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: .95rem; margin-bottom: 14px; }
.login-brand-col .brand-features li i { color: var(--gold); font-size: 1.1rem; }
.login-form-col { background: #fdf9f5; display: flex; flex-direction: column; justify-content: center; padding: 60px 56px; }
.login-form-col .form-box { width: 100%; max-width: 420px; margin: 0 auto; }
.login-form-col .form-control { background: #fff; border-color: #ddd3c4; border-radius: 8px; padding: .65rem .9rem; }
.login-form-col .form-control:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(196,99,122,.15); }
.login-form-col .input-group-text { background: #fff; border-color: #ddd3c4; color: var(--rose); }
@media (max-width: 767px) {
    .login-brand-col { display: none; }
    .login-form-col { padding: 40px 24px; min-height: calc(100vh - 130px); }
}

/* ── Auth card (legacy) ───────────────────────────────────── */
.auth-wrap { min-height: calc(100vh - 130px); background: #fdf9f5; display: flex; align-items: center; padding: 60px 0; }
.auth-card { background: #fff; border-radius: 18px; padding: 48px 44px; box-shadow: 0 4px 24px rgba(107,29,43,.10); max-width: 460px; width: 100%; margin: 0 auto; }
@media (max-width: 500px) { .auth-card { padding: 32px 24px; } }

/* ── Legal pages ──────────────────────────────────────────── */
.legal-body p, .legal-body li { color: #4a5568; line-height: 1.75; }
.legal-body a { color: var(--rose); }
.legal-body ul { padding-left: 1.4rem; }
.legal-body ul li { margin-bottom: .4rem; }

/* ── Dashboard sidebar ────────────────────────────────────── */
.dash-sidebar { background: var(--dark); min-height: calc(100vh - 62px); padding: 24px 0; transition: all .3s; }
.dash-sidebar .nav-link {
    color: rgba(255,255,255,.55); padding: 10px 20px; font-weight: 500;
    margin: 4px 14px; border-radius: 10px; display: flex; align-items: center;
    gap: 12px; transition: all .2s; font-size: .95rem;
}
.dash-sidebar .nav-link i { font-size: 1.1rem; width: 22px; text-align: center; opacity: .8; }
.dash-sidebar .nav-link:hover { color: #fff; background: rgba(255,255,255,.05); }
.dash-sidebar .nav-link.active { color: #fff; background: var(--rose); box-shadow: 0 4px 12px rgba(196,99,122,.3); }
.dash-sidebar .nav-link.active i { opacity: 1; }
.dash-sidebar hr { border-color: rgba(255,255,255,.08); margin: 12px 14px; }

/* ── Dashboard content & cards ────────────────────────────── */
.dash-content { background: #fdf9f5; min-height: calc(100vh - 62px); padding: 2rem; }
.stat-card {
    background: #fff; border-radius: 16px; padding: 24px;
    border: 1px solid rgba(220, 200, 180, 0.6);
    box-shadow: 0 4px 6px -1px rgba(107,29,43,.04), 0 2px 4px -1px rgba(0,0,0,.03);
    height: 100%; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 10px 15px -3px rgba(107,29,43,.1); }
.stat-card .stat-icon { position: absolute; right: -10px; bottom: -10px; font-size: 4.5rem; opacity: 0.04; transform: rotate(-15deg); pointer-events: none; }
.stat-card .stat-num { font-size: 1.85rem; font-weight: 800; color: var(--burgundy); line-height: 1.2; margin-bottom: 4px; }
.stat-card .stat-label { font-size: .82rem; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; }

.dash-card { background: #fff; border-radius: 16px; border: 1px solid rgba(220,200,180,.6); box-shadow: 0 4px 6px -1px rgba(107,29,43,.04); overflow: hidden; }
.dash-card-header { padding: 18px 24px; border-bottom: 1px solid rgba(220,200,180,.6); background: #fff; }

/* ── Tables ───────────────────────────────────────────────── */
.table-modern thead th { background: #fdf9f5; color: #64748b; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .8px; padding: 14px 24px; border-bottom: 2px solid #ede3d6; }
.table-modern tbody td { padding: 16px 24px; vertical-align: middle; color: #475569; font-size: .92rem; border-bottom: 1px solid #f5ecd7; }
.table-modern tbody tr:last-child td { border-bottom: none; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-dash { border-radius: 10px; font-weight: 600; padding: 8px 18px; transition: all .2s; }
.btn-dash-primary { background: var(--burgundy); color: #fff; box-shadow: 0 4px 12px rgba(107,29,43,.15); }
.btn-dash-primary:hover { background: #561624; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(107,29,43,.2); }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
    background: var(--dark);
    background: linear-gradient(135deg, var(--dark) 0%, #1a0810 100%);
    padding: 56px 0 44px;
    min-height: 140px;
}

/* ── Card modernization ───────────────────────────────────── */
.card-modern {
    background: #fff;
    border: 1px solid #ede3d6;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-modern:hover { transform: translateY(-8px); box-shadow: 0 20px 40px -12px rgba(107,29,43,.12); border-color: var(--gold); }

/* ── Utility ──────────────────────────────────────────────── */
.text-gold    { color: var(--gold) !important; }
.text-rose    { color: var(--rose) !important; }
.text-burgundy { color: var(--burgundy) !important; }
.bg-cream     { background-color: var(--cream) !important; }
.bg-dark-warm { background-color: var(--dark) !important; }
.rounded-xl   { border-radius: 14px !important; }
.shadow-soft  { box-shadow: 0 4px 20px rgba(107,29,43,.08) !important; }

/* ── Hybrid Redesign Enhancements (Seraphina & Cosmecos) ── */

/* Typography */
.font-serif { font-family: 'Playfair Display', serif; }
.font-sans { font-family: 'Montserrat', sans-serif; }
.ls-1 { letter-spacing: 0.1em; }
.ls-2 { letter-spacing: 0.15em; }

/* Product Grid System */
.product-grid-hybrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px 30px;
}
@media (min-width: 992px) {
    .product-grid-hybrid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Enhanced Product Card */
.card-hybrid {
    border: none;
    background: transparent;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}
.card-hybrid .img-container {
    position: relative;
    aspect-ratio: 5/6;
    overflow: hidden;
    background: #f9f7f4;
    margin-bottom: 25px;
}
.card-hybrid .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.card-hybrid:hover .img-container img {
    transform: scale(1.05);
}
.card-hybrid .badge-overlay {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.card-hybrid .action-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 12px;
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.card-hybrid:hover .action-overlay {
    transform: translateY(0);
}

.card-hybrid .product-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 8px;
    display: block;
}
.card-hybrid .product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
    line-height: 1.3;
}
.card-hybrid .product-title:hover {
    color: var(--burgundy);
}
.card-hybrid .product-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--burgundy);
    font-family: 'Montserrat', sans-serif;
}
.card-hybrid .rating {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

/* Category Editorial Tiles */
.category-tile {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.category-tile:hover img {
    transform: scale(1.1);
}
.category-tile .tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px;
    color: #fff;
    transition: background 0.4s ease;
}
.category-tile:hover .tile-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.category-tile .tile-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.category-tile span {
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}

/* Tabbed Sections */
.nav-tabs-hybrid {
    border: none;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}
.nav-tabs-hybrid .nav-item {
    margin: 0;
}
.nav-tabs-hybrid .nav-link {
    border: none;
    background: transparent;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    padding: 15px 0;
    position: relative;
    transition: color 0.3s ease;
}
.nav-tabs-hybrid .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}
.nav-tabs-hybrid .nav-link.active {
    color: var(--dark);
    font-weight: 600;
}
.nav-tabs-hybrid .nav-link.active::after {
    width: 40px;
}

/* Sidebar Filters */
.filter-widget {
    margin-bottom: 50px;
}
.filter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: var(--dark);
}
.filter-list {
    list-style: none;
    padding: 0;
}
.filter-list li {
    margin-bottom: 15px;
}
.filter-list a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filter-list a:hover, .filter-list a.active {
    color: var(--burgundy);
    padding-left: 5px;
}
.filter-count {
    font-size: 0.75rem;
    color: #bbb;
    background: #f9f9f9;
    padding: 2px 8px;
    border-radius: 10px;
}

/* Price Range Slider Styling */
.price-range-wrap {
    padding: 0 10px;
}
.form-range::-webkit-slider-thumb {
    background: var(--burgundy);
}
.form-range::-moz-range-thumb {
    background: var(--burgundy);
}
.form-range::-ms-thumb {
    background: var(--burgundy);
}

/* Attribute Swatches */
.swatch-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}
.swatch-item {
    border: 1px solid #e0e0e0;
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}
.swatch-item.active, .swatch-item:hover {
    border-color: var(--burgundy);
    background: var(--burgundy);
    color: #fff;
}

/* Mini Product Grid (Sidebar) */
.mini-product-list {
    list-style: none;
    padding: 0;
}
.mini-product-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}
.mini-product-img {
    width: 70px;
    height: 85px;
    object-fit: cover;
    background: #f9f7f4;
}
.mini-product-info h6 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 5px;
}
.mini-product-info a {
    text-decoration: none;
    color: var(--dark);
}
.mini-product-info .price {
    font-size: 0.9rem;
    color: var(--burgundy);
    font-weight: 600;
}

/* Detail Page Tabs */
.nav-tabs-detail {
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}
.nav-tabs-detail .nav-link {
    border: none;
    color: #999;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    padding: 15px 30px;
    position: relative;
}
.nav-tabs-detail .nav-link.active {
    color: var(--dark);
    background: transparent;
}
.nav-tabs-detail .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--burgundy);
}
