/* ================================================================
   CELOSIA PERFUME STORE — UI EXPERIENCES
   ================================================================ */

/* ----------------------------------
   Top Bar
---------------------------------- */
.top-bar {
    background: #000;
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
    position: relative;
    z-index: 2001; /* Above nav */
}
.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-contact a { color: #fff; transition: color 0.3s; margin: 0 5px; }
.top-bar-contact a:hover { color: var(--gold); }
.top-bar-sep { color: #444; margin: 0 10px; }
.top-bar-links a { color: #fff; font-weight: 700; transition: color 0.3s; }
.top-bar-links a:hover { color: var(--gold); }

/* Promo Scroller */
.top-bar-promo {
    flex: 1;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    margin: 0 2rem;
    position: relative;
}
.promo-scroll {
    display: inline-block;
    animation: promoScroll 15s linear infinite;
}
.promo-scroll span {
    margin: 0 2rem;
    color: var(--gold-light);
}
@keyframes promoScroll {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .top-bar-contact, .top-bar-links { display: none; }
    .top-bar-inner { justify-content: center; }
    .top-bar-promo { margin: 0; }
}

/* ----------------------------------
   Nav Updates
---------------------------------- */
.premium-nav {
    top: 36px; /* Below top bar */
}
.premium-nav.scrolled {
    top: 0;
}
.brand-logo { flex-direction: column; align-items: flex-start; gap: 0; line-height: 1; }
.brand-celosia { font-family: 'Times New Roman', Times, serif; font-size: 1.55rem; font-weight: normal; letter-spacing: 2px; }
.brand-arabic { font-size: 0.72rem; color: var(--muted); margin-top: 1px; letter-spacing: 3px; }

/* Dropdown Navigation */
.nav-item.has-dropdown { position: relative; }
.nav-arrow { font-size: 0.7rem; margin-right: 4px; transition: transform 0.3s; }
.nav-item.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute;
    top: 100%; right: 0;
    min-width: 220px;
    background: var(--surface-s);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0; pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: var(--shadow-xl);
}
.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1; pointer-events: all;
    transform: translateY(0);
}
.dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 15px; border-radius: 8px;
    color: var(--text); font-weight: 700;
    transition: background 0.3s, color 0.3s;
}
.dropdown-item:hover {
    background: var(--bg2); color: var(--gold);
}
.dropdown-item i { width: 20px; text-align: center; color: var(--muted); }
.dropdown-item:hover i { color: var(--gold); }

/* ----------------------------------
   Side Cart Drawer
---------------------------------- */
.side-cart-overlay {
    position: fixed; inset: 0; z-index: 4000;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.side-cart-overlay.active { opacity: 1; pointer-events: all; }

/* ----------------------------------
   Multi-language Support (LTR/RTL)
---------------------------------- */
[dir="ltr"] {
    font-family: 'Playfair Display', 'Times New Roman', serif;
}
[dir="ltr"] .top-bar-contact i { margin-right: 5px; margin-left: 0; }
[dir="ltr"] .top-bar-links { text-align: right; }
[dir="ltr"] .lang-link i { margin-left: 5px; }

.lang-switcher { display: inline-block; }
.lang-link { 
    color: var(--gold-light) !important; font-size: 0.8rem; text-transform: uppercase; 
    letter-spacing: 1px; display: flex; align-items: center; gap: 5px;
}
.lang-link:hover { color: #fff !important; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

/* Dropdown Alignment */
[dir="ltr"] .nav-dropdown { right: auto; left: 0; }
[dir="ltr"] .nav-arrow { margin-left: 4px; margin-right: 0; }

/* Side Cart Side Swap */
.side-cart-drawer {
    position: fixed; top: 0; bottom: 0; width: 400px; max-width: 100%;
    background: var(--bg); z-index: 4001;
    display: flex; flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* RTL (Arabic): Sidebar on the LEFT */
[dir="rtl"] .side-cart-drawer { left: 0; transform: translateX(-100%); border-right: 1px solid var(--border); }
[dir="rtl"] .side-cart-drawer.active { transform: translateX(0); }

/* LTR (English): Sidebar on the RIGHT */
[dir="ltr"] .side-cart-drawer { right: 0; transform: translateX(100%); border-left: 1px solid var(--border); }
[dir="ltr"] .side-cart-drawer.active { transform: translateX(0); }

[dir="ltr"] .sci-remove { left: auto; right: 0; }
[dir="ltr"] .sci-price { text-align: left; }

.side-cart-header {
    padding: 1.5rem 2rem; border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.side-cart-header h3 { font-size: 1.2rem; font-weight: 800; display: flex; gap: 10px; align-items: center; }
.side-cart-close {
    width: 36px; height: 36px; border-radius: 50%; border: none;
    background: var(--surface-s); color: var(--text);
    display: flex; justify-content: center; align-items: center;
    cursor: pointer; transition: background 0.3s, color 0.3s;
}
.side-cart-close:hover { background: var(--bg2); color: #e74c3c; }

.side-cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.side-cart-empty { text-align: center; padding: 3rem 0; color: var(--muted); }
.side-cart-empty i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.3; }
.side-cart-empty p { font-size: 1.1rem; margin-bottom: 1.5rem; }

.side-cart-item {
    display: flex; gap: 1rem; padding-bottom: 1.5rem; margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border); position: relative;
}
.side-cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; }
.sci-details { flex: 1; }
.sci-name { font-weight: 800; font-size: 0.95rem; line-height: 1.4; margin-bottom: 4px; }
.sci-price { color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.sci-qty {
    display: inline-flex; align-items: center; border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden; background: var(--surface-s);
}
.sci-qty button { width: 30px; height: 30px; background: none; border: none; color: var(--text); }
.sci-qty span { width: 30px; text-align: center; font-weight: 700; font-size: 0.9rem; }
.sci-remove {
    position: absolute; left: 0; top: 0; background: none; border: none;
    color: var(--muted); cursor: pointer; transition: color 0.3s;
}
.sci-remove:hover { color: #e74c3c; }

.side-cart-footer { padding: 1.5rem 2rem; border-top: 1px solid var(--border); background: var(--surface-s); }
.side-cart-subtotal { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 900; margin-bottom: 10px; }
.side-cart-note { font-size: 0.8rem; color: var(--muted); text-align: center; margin-bottom: 1.5rem; }
.side-cart-btn-full { display: flex; width: 100%; justify-content: center; margin-bottom: 10px; }

/* ----------------------------------
   Flash Sale Product Showcase
---------------------------------- */
.flash-sale-section { 
    padding: 6rem 0; 
    background: #080808; 
    background-image: radial-gradient(circle at top right, rgba(212,175,55,0.05), transparent 40%);
    border-bottom: 1px solid var(--border);
}
.flash-sale-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
    position: relative;
    overflow: hidden;
}
/* Subte Golden Corner Accents */
.flash-sale-inner::before, .flash-sale-inner::after {
    content: ''; position: absolute; width: 40px; height: 40px;
    border: 2px solid var(--gold); pointer-events: none; opacity: 0.5;
}
.flash-sale-inner::before { top: 20px; right: 20px; border-bottom: 0; border-left: 0; border-radius: 0 15px 0 0; }
.flash-sale-inner::after { bottom: 20px; left: 20px; border-top: 0; border-right: 0; border-radius: 0 0 0 15px; }

.flash-sale-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
    padding: 0 1rem;
}
.flash-sale-title { display: flex; align-items: center; gap: 15px; }
.flash-indicator { 
    font-size: 2.2rem; color: #e74c3c; 
    animation: flashLightning 2s infinite; 
}
@keyframes flashLightning {
    0%, 100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 0px #e74c3c); }
    50% { opacity: 0.7; transform: scale(1.1); filter: drop-shadow(0 0 10px #e74c3c); }
}
.flash-sale-title h2 { font-size: 2rem; font-weight: 900; margin: 0; white-space: nowrap; letter-spacing: 1px; }
.flash-badge { 
    background: rgba(231, 76, 60, 0.15); color: #e74c3c; 
    padding: 6px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 800;
}

/* Redesigning Countdown to be horizontal and compact */
.countdown-timer { display: flex; gap: 10px; align-items: center; direction: ltr; }
.countdown-block { 
    background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.15); 
    padding: 6px 10px; border-radius: 10px; min-width: 65px; text-align: center;
}
.countdown-block span { 
    font-size: 1.5rem; font-weight: 900; color: var(--gold); display: block;
    line-height: 1; margin-bottom: 2px;
}
.countdown-block small { font-size: 0.65rem; color: var(--muted); font-weight: 800; text-transform: uppercase; }
.cd-sep { font-size: 1.5rem; font-weight: 300; opacity: 0.3; padding-bottom: 12px; }

.flash-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px; margin: 0 auto;
    justify-content: center;
}
@media (min-width: 1100px) {
    .flash-grid { grid-template-columns: repeat(3, 1fr); }
}
.flash-card { 
    border: 1.5px solid rgba(212,175,55,0.2) !important; 
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; 
}
.flash-card:hover { 
    transform: translateY(-12px) scale(1.02) !important; 
    border-color: var(--gold) !important; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212,175,55,0.1) !important; 
}

.flash-tag {
    position: absolute; top: 1rem; left: 1rem;
    background: #e74c3c; color: #fff; padding: 5px 12px;
    border-radius: 8px; font-weight: 900; font-size: 0.9rem; z-index: 10;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.flash-pricing { display: flex; align-items: baseline; gap: 12px; margin-top: 10px; }
.flash-price-new { font-size: 1.25rem; font-weight: 900; color: var(--gold); }
.flash-price-old { font-size: 1rem; color: var(--muted); text-decoration: line-through; opacity: 0.6; }

@media (max-width: 768px) {
    .flash-sale-header { justify-content: center; text-align: center; gap: 1.2rem; }
    .flash-sale-title { flex-direction: row; gap: 8px; justify-content: center; width: 100%; }
    .flash-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .countdown-timer { margin-top: 10px; }
}

/* ----------------------------------
   Unified Luxury Filter Bar
---------------------------------- */
.single-row-filter {
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin: 2.5rem auto 4rem;
    max-width: 1200px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 2rem; flex-wrap: wrap;
    backdrop-filter: blur(10px);
}
.filter-sub-group { display: flex; align-items: center; gap: 15px; }
.filter-sub-group label { font-weight: 800; color: var(--gold); font-size: 0.9rem; white-space: nowrap; }

.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    color: var(--muted); padding: 6px 18px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: all 0.3s;
    white-space: nowrap;
}
.chip:hover { border-color: var(--gold); color: var(--text); background: rgba(212,175,55,0.05); }
.chip.active { background: var(--gold); border-color: var(--gold); color: #000; box-shadow: 0 4px 12px rgba(212,175,55,0.2); }

.filter-select {
    background: transparent; border: 1px solid var(--border);
    color: var(--text); padding: 6px 12px; border-radius: 20px;
    font-size: 0.85rem; font-weight: 700; outline: none; cursor: pointer;
    min-width: 130px;
}
.filter-select:focus { border-color: var(--gold); }

@media (max-width: 900px) {
    .single-row-filter { border-radius: 20px; justify-content: center; text-align: center; gap: 1.5rem; }
}

/* ----------------------------------
   Collections Circles
---------------------------------- */
.collections-section { padding: 4rem 2.5rem; max-width: 1280px; margin: 0 auto; }
.collections-grid {
    display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
}
.collection-circle {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    text-decoration: none; cursor: pointer;
}
.cc-img-wrap {
    width: 140px; height: 140px; border-radius: 50%; border: 2px solid var(--border);
    padding: 5px; transition: border-color 0.4s, transform 0.4s; overflow: hidden;
}
.cc-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
    transition: transform 0.6s;
}
.collection-circle span { font-weight: 800; font-size: 1.1rem; color: var(--text); transition: color 0.3s; }
.collection-circle:hover .cc-img-wrap { border-color: var(--gold); transform: translateY(-5px); }
.collection-circle:hover .cc-img-wrap img { transform: scale(1.1); }
.collection-circle:hover span { color: var(--gold); }

/* ----------------------------------
   Gender Tabs
---------------------------------- */
.gender-tabs-section { padding: 1rem 2.5rem; text-align: center; margin-bottom: 2rem; }
.gender-tabs-container {
    display: inline-flex; background: var(--surface-s); border: 1px solid var(--border);
    border-radius: 50px; padding: 5px; gap: 5px;
}
.gender-tab {
    padding: 10px 24px; border-radius: 50px; background: transparent; border: none;
    color: var(--muted); font-weight: 800; font-size: 1rem; cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.gender-tab:hover { color: var(--text); }
.gender-tab.active { background: var(--text); color: var(--bg); }

/* Volume Badge */
.volume-badge {
    position: absolute; bottom: 1rem; left: 1rem;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    color: #fff; padding: 4px 10px; border-radius: 12px;
    font-size: 0.75rem; font-weight: 700;
}

/* ----------------------------------
   Live Purchase Notification
---------------------------------- */
.live-notif {
    position: fixed; bottom: 2rem; left: 2rem; z-index: 9999;
    background: var(--surface-s); border: 1px solid var(--border);
    border-radius: 16px; padding: 1rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    box-shadow: var(--shadow-xl);
    transform: translateY(50px); opacity: 0; pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
}
.live-notif.show { transform: translateY(0); opacity: 1; }
.live-notif-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.live-notif-text { font-size: 0.85rem; line-height: 1.5; }
.live-notif-text strong { color: var(--gold); }
.live-notif-text span { font-weight: 800; }
.live-notif-time { display: block; color: var(--muted); font-size: 0.75rem; margin-top: 4px; }
/* ----------------------------------
   LARGE PROMO BANNERS — Immersive Luxury
---------------------------------- */
.large-promo-banner {
    padding: 4rem 2.5rem;
    max-width: 1350px;
    margin: 0 auto 5rem;
}
.lpb-container {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, var(--surface-s), #050505);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 30px;
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0,0,0,0.5);
    position: relative;
}
.banner-reverse .lpb-container {
    flex-direction: row-reverse;
}
.lpb-image {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}
.lpb-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    filter: brightness(0.9);
}
.lpb-container:hover .lpb-image img {
    transform: scale(1.08);
}
/* Overlay for text readability on image side */
.lpb-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(13,13,18,0.7), transparent);
}
[dir="rtl"] .lpb-image::after {
    background: linear-gradient(to left, rgba(13,13,18,0.7), transparent);
}
.lpb-content {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}
.lpb-badge {
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    padding: 8px 20px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.lpb-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}
.lpb-content p {
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}
@media (max-width: 1000px) {
    .lpb-container, .banner-reverse .lpb-container { flex-direction: column; min-height: auto; }
    .lpb-image { width: 100%; min-height: 350px; }
    .lpb-content { padding: 3rem 2rem; align-items: center; text-align: center; }
    .lpb-content h2 { font-size: 2.2rem; }
    .lpb-content p { font-size: 1rem; }
}

/* ----------------------------------
   FEATURES PREMIUM — Redesigned Experience
---------------------------------- */
.features-premium {
    padding: 6rem 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}
.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.feature-card-premium {
    background: var(--surface-s);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.feature-card-premium::before {
    content: ''; position: absolute; top: -100px; right: -100px; 
    width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
    transition: 0.5s;
}
.feature-card-premium:hover {
    transform: translateY(-15px);
    border-color: rgba(201,168,76,0.5);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.1);
}
.feature-card-premium:hover::before { transform: translate(-20px, 20px) scale(1.5); }

.feature-icon-premium {
    width: 80px; height: 80px; margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000; font-size: 2rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(201,168,76,0.3);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card-premium:hover .feature-icon-premium {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(201,168,76,0.5);
}

.feature-card-premium h3 {
    font-size: 1.4rem; font-weight: 900; margin-bottom: 1rem;
    color: var(--text); letter-spacing: -0.5px;
}
.feature-card-premium p {
    font-size: 1.05rem; color: var(--muted);
    line-height: 1.7; margin: 0;
}

@media (max-width: 950px) {
    .features-grid-premium { grid-template-columns: 1fr; gap: 2rem; }
    .feature-card-premium { padding: 3rem 2rem; }
}

/* ----------------------------------
   PREMIUM AESTHETICS & UPSELLING
---------------------------------- */

/* Glassmorphism utility */
.glass-panel {
    background: rgba(18, 18, 18, 0.7) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Gleam effect for primary buttons */
.btn-gold {
    position: relative;
    overflow: hidden;
}
.btn-gold::after {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg) translateX(-100%);
    transition: transform 0.8s ease-in-out;
}
.btn-gold:hover::after { transform: rotate(30deg) translateX(100%); }

/* Subtle Golden Glow on Hover */
.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15) !important;
    border-color: rgba(201, 168, 76, 0.4) !important;
}

/* Upsell Box (Product Page) */
.upsell-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--surface-s);
    transition: all 0.3s ease;
    cursor: pointer;
}
.upsell-box:hover, .upsell-box.selected {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}
.upsell-icon { font-size: 1.5rem; color: var(--gold); }
.upsell-content { flex: 1; }
.upsell-title { font-weight: 800; font-size: 0.95rem; margin-bottom: 2px; }
.upsell-desc { font-size: 0.8rem; color: var(--muted); }
.upsell-price { font-weight: 900; color: var(--gold); font-size: 1.1rem; }

/* Cross-Selling Box (Frequently Bought Together) */
.cross-sell-section { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.cross-sell-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }
.cross-sell-bundle {
    display: flex; align-items: center; gap: 15px; padding: 20px;
    border: 1px dashed var(--gold); border-radius: 16px; background: rgba(201, 168, 76, 0.03);
    flex-wrap: wrap; justify-content: center;
}
.bundle-item { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 120px; }
.bundle-item img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; margin-bottom: 10px; }
.bundle-item span { font-size: 0.85rem; font-weight: 700; }
.bundle-plus { font-size: 1.5rem; color: var(--muted); }
.bundle-action { margin-right: auto; text-align: left; }
@media (max-width: 768px) {
    .bundle-action { margin: 15px auto 0; text-align: center; width: 100%; }
}
.bundle-price-strike { text-decoration: line-through; color: var(--muted); font-size: 0.9rem; margin-right: 10px; }
.bundle-price-new { font-weight: 900; color: var(--gold); font-size: 1.3rem; margin-bottom: 10px; display: block; }

/* Free Shipping Progress Bar */
.shipping-progress-container {
    padding: 15px 20px; background: rgba(201, 168, 76, 0.05); border-bottom: 1px solid var(--border);
}
.shipping-msg { font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; text-align: center; color: var(--text); }
.shipping-msg strong { color: var(--gold); font-size: 0.95rem; }
.progress-bar-bg { width: 100%; height: 6px; background: var(--bg2); border-radius: 3px; overflow: hidden; position: relative; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-light), var(--gold)); width: 0%; transition: width 0.5s ease-out; }
.shipping-success-msg { color: #28a745; text-align: center; font-size: 0.9rem; font-weight: 800; display: none; }
.shipping-success-msg i { margin-left: 5px; }

/* ----------------------------------
   PHASE 2 LUXURY ENHANCEMENTS
---------------------------------- */

/* ── PAGE LOADER ──────────────────────────────────────────── */
.luxury-loader {
    position: fixed; inset: 0; z-index: 999999;
    background: #060609;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 0;
    transition: opacity 0.7s ease, visibility 0.7s;
}
.luxury-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content {
    display: flex; flex-direction: column;
    align-items: center; gap: 0;
    animation: loaderFadeIn 0.5s ease both;
}
@keyframes loaderFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Logo */
.loader-logo {
    margin-bottom: 2rem;
    animation: loaderPulse 2s ease-in-out infinite !important;
}
.loader-logo img {
    height: 90px; width: auto;
    filter: drop-shadow(0 0 24px rgba(255,78,0,0.45));
}
@keyframes loaderPulse {
    0%,100% { filter: drop-shadow(0 0 16px rgba(255,78,0,0.35)); transform: scale(1); }
    50%      { filter: drop-shadow(0 0 36px rgba(255,78,0,0.7));  transform: scale(1.04); }
}

/* Spinner dots */
.loader-dots {
    display: flex; gap: 8px; margin-bottom: 1.5rem;
}
.loader-dots span {
    width: 8px; height: 8px; border-radius: 50%;
    background: #ff4e00; opacity: 0.2;
    animation: dotBounce 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
    0%,80%,100% { opacity: 0.2; transform: scale(0.8); }
    40%          { opacity: 1;   transform: scale(1.3); }
}

/* Progress bar */
.loader-line {
    width: 160px; height: 2px;
    background: rgba(255,78,0,0.12);
    border-radius: 99px; overflow: hidden;
    margin: 0 auto;
}
.loader-line::after {
    content: ''; display: block;
    height: 100%; width: 40%;
    background: linear-gradient(90deg, transparent, #ff4e00, transparent);
    border-radius: 99px;
    animation: loaderSlide 1.4s ease-in-out infinite;
}
@keyframes loaderSlide {
    0%   { transform: translateX(-160px); }
    100% { transform: translateX(400px); }
}

/* Sticky Add-to-Cart Bar */
.sticky-cart-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(10, 10, 10, 0.9); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 15px 20px; z-index: 3500;
    display: flex; justify-content: space-between; align-items: center;
    transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
}
.sticky-cart-bar.visible { transform: translateY(0); }
.sticky-cart-info { display: flex; align-items: center; gap: 15px; }
.sticky-cart-info img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.sticky-cart-details h4 { margin: 0; font-size: 1rem; color: var(--text); }
.sticky-cart-details p { margin: 0; font-size: 0.9rem; color: var(--gold); font-weight: bold; }
.sticky-cart-action { display: flex; gap: 15px; align-items: center; }
@media (max-width: 768px) {
    .sticky-cart-info { display: none; }
    .sticky-cart-action { width: 100%; justify-content: space-between; gap: 10px; }
    .sticky-cart-action .btn { flex: 1; padding: 12px; font-size: 1rem; }
}

/* Interactive Fragrance Notes */
.fragrance-notes { margin: 2rem 0; padding: 2rem; background: rgba(255,255,255,0.02); border-radius: 16px; border: 1px solid var(--border); }
.note-tier { margin-bottom: 1.5rem; }
.note-tier:last-child { margin-bottom: 0; }
.note-title { font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.note-items { display: flex; gap: 15px; flex-wrap: wrap; }
.note-item {
    display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
    background: var(--surface-s); border: 1px solid var(--border); border-radius: 30px;
    transition: all 0.3s; cursor: pointer; position: relative;
}
.note-item:hover { border-color: var(--gold); background: rgba(201, 168, 76, 0.1); transform: translateY(-3px); }
.note-item i { color: var(--gold); }
.note-item span { font-size: 0.95rem; font-weight: 700; }

/* Pulse animation for cart badge */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); background-color: var(--gold-light); }
    100% { transform: scale(1); }
}
.pulse {
    animation: pulse 0.5s ease-in-out;
}
