/* ============================================
   SCENTIFY — CINEMATIC DARK LUXURY
   Dark Theme | Gold · Black · Cinematic Motion
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@200;300;400;500;600&display=swap');

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-elevated: #222222;
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --gold-dark: #a8883e;
    --text-primary: #f0ece4;
    --text-secondary: #a09888;
    --text-muted: #6a6258;
    --border: rgba(201, 169, 110, 0.12);
    --border-light: rgba(201, 169, 110, 0.06);
    --shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 80px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 8px 40px rgba(201, 169, 110, 0.1);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== GLOBAL ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--text-primary);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(90deg, #0a0a0a, #1a1410, #0a0a0a);
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.6rem 0;
    text-align: center;
    font-weight: 300;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 1001;
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.announcement-bar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.announcement-bar .divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.1);
}

/* ===== NAVBAR ===== */
.navbar-main {
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(30px) saturate(1.2);
    -webkit-backdrop-filter: blur(30px) saturate(1.2);
    border-bottom: 1px solid var(--border-light);
    padding: 0.3rem 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar-main.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar-brand {
    padding: 0;
    margin: 0;
    line-height: 1;
}

.logo-img {
    height: 102px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.85;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: auto;
}

.navbar-main .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    width: 60%;
}

.navbar-main .nav-link:hover {
    color: var(--gold) !important;
}

.nav-icon-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-icon {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.nav-icon:hover {
    color: var(--gold);
    transform: translateY(-1px);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: #0a0a0a;
    font-size: 0.6rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
}

.dropdown-menu .dropdown-item {
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(201, 169, 110, 0.08);
    color: var(--gold);
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    overflow: hidden;
    padding: 8rem 0 2rem;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(3) { left: 40%; animation-delay: 3s; animation-duration: 6s; }
.particle:nth-child(4) { left: 55%; animation-delay: 2s; animation-duration: 8s; }
.particle:nth-child(5) { left: 70%; animation-delay: 4s; animation-duration: 7s; }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 9s; }
.particle:nth-child(7) { left: 15%; animation-delay: 6s; animation-duration: 6s; }
.particle:nth-child(8) { left: 60%; animation-delay: 0.5s; animation-duration: 8s; }
.particle:nth-child(9) { left: 90%; animation-delay: 3.5s; animation-duration: 7s; }
.particle:nth-child(10) { left: 45%; animation-delay: 2.5s; animation-duration: 9s; }
.particle:nth-child(11) { left: 5%; animation-delay: 1.5s; animation-duration: 6.5s; }
.particle:nth-child(12) { left: 75%; animation-delay: 4.5s; animation-duration: 8.5s; }

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.btn-luxury {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    border: none;
    padding: 0.9rem 2.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
    color: #0a0a0a;
}

.btn-luxury-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 0.9rem 2.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition);
}

.btn-luxury-outline:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    border: none;
    padding: 0.6rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 0;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
    color: #0a0a0a;
}

/* Hero Product */
.hero-product-display {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pedestal {
    position: relative;
    width: 80%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInScale 1.2s ease 0.6s forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.hero-pedestal::before {
    content: '';
    position: absolute;
    bottom: -10%;
    width: 70%;
    height: 30%;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-pedestal img {
    width: 65%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(201, 169, 110, 0.08));
    animation: floatProduct 7s ease-in-out infinite;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-18px) rotate(1deg); }
}

.hero-floating-tag {
    position: absolute;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(16px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-primary);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    animation: floatTag 6s ease-in-out infinite;
}

.hero-floating-tag.tag-1 { top: 8%; right: 8%; animation-delay: 0s; }
.hero-floating-tag.tag-2 { bottom: 18%; left: 5%; animation-delay: 2s; }

@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 2rem 0;
    position: relative;
}

.feature-item {
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
    display: block;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h6 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== SECTION STYLES ===== */
.section-padding {
    padding: 6rem 0;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.15;
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    max-width: 500px;
    line-height: 1.8;
}

/* ===== CATEGORY CARDS ===== */
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.7;
}

.category-card:hover img {
    transform: scale(1.08);
    opacity: 1;
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    transition: var(--transition);
}

.category-card-overlay h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.category-card-overlay p {
    font-size: 0.75rem;
    opacity: 0.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

/* ===== COLLECTION BANNER ===== */
.collection-banner {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #0d0b09 50%, var(--bg-primary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.collection-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
}

.collection-content {
    position: relative;
    z-index: 1;
}

.collection-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.collection-content .gold-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.collection-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.collection-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.collection-image-grid .main-img {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-card);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.collection-image-grid .main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.collection-image-grid .sub-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
}

.collection-image-grid .sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.5s ease;
    opacity: 0.8;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
    opacity: 1;
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    padding: 0.2rem 0.8rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
}

.product-card-actions {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-card-actions {
    opacity: 1;
}

.product-card-actions .btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.product-card-actions .btn:hover {
    background: var(--gold);
    color: #0a0a0a;
    transform: scale(1.05);
    border-color: var(--gold);
}

.product-card-body {
    padding: 1.2rem 1rem 1.4rem;
}

.product-card-body .product-category {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
}

.product-card-body h6 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.3rem 0;
    color: var(--text-primary);
}

.product-card-body h6 a:hover {
    color: var(--gold);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.4rem;
}

.product-rating i {
    color: var(--gold);
    font-size: 0.7rem;
}

.product-rating span {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: 0.3rem;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price-row .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.product-price-row .price .old {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.5rem;
}

.btn-add-cart {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 0.85rem;
}

.btn-add-cart:hover {
    background: var(--gold);
    color: #0a0a0a;
    border-color: var(--gold);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    background: var(--bg-secondary);
}

.why-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
}

.why-card h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
    background: var(--bg-primary);
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-author .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial-author .info h6 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 500;
    color: var(--text-primary);
}

.testimonial-author .info span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, #0d0b09 0%, var(--bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.newsletter-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 0;
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 1rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    color: var(--gold-light);
    letter-spacing: 4px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 0;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-brand span { color: var(--gold); }

.footer-brand::after {
    content: 'LUXURY FRAGRANCES';
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.45rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    font-weight: 300;
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer h6 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.6rem;
}

.footer ul li a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: #0a0a0a;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-payment {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
    align-items: center;
}

.footer-payment i {
    font-size: 1.4rem;
    color: var(--text-muted);
    opacity: 0.3;
}

/* ===== SHOP / DETAIL PAGES ===== */
.shop-header {
    background: var(--bg-secondary);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-custom {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.breadcrumb-custom a { color: var(--text-muted); }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom span { color: var(--gold); }

.category-filter-sidebar {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.category-filter-sidebar h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-light);
}

.category-filter-sidebar .nav-link {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border-light);
}

.category-filter-sidebar .nav-link.active,
.category-filter-sidebar .nav-link:hover {
    color: var(--gold);
    background: transparent;
}

.product-detail-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.product-detail-wrapper .product-images {
    background: var(--bg-secondary);
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 2rem;
}

/* Cart & Checkout */
.cart-page .cart-item {
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    background: var(--bg-card);
}

.order-summary-card {
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    background: var(--bg-card);
}

/* Form controls dark */
.form-control, .form-select {
    background: var(--bg-elevated) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-primary) !important;
    border-radius: 0 !important;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.1) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

/* Table dark */
.table {
    color: var(--text-secondary);
}

.table > :not(caption) > * > * {
    background: transparent !important;
    border-bottom-color: var(--border-light) !important;
}

.table-hover tbody tr:hover {
    background: rgba(201, 169, 110, 0.03) !important;
}

/* Card dark */
.card {
    background: var(--bg-card);
    border-color: var(--border-light);
}

.card-header {
    background: var(--bg-elevated) !important;
    border-bottom-color: var(--border-light) !important;
}

/* Alert dark */
.alert {
    border-radius: 0;
    border: none;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

body.hide-preloader { overflow: auto; }

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 2rem;
}

.preloader-logo img {
    height: 60px;
    width: auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--bg-elevated);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: preloaderFill 1.8s ease-in-out infinite;
}

@keyframes preloaderFill {
    0% { width: 0%; margin-left: 0; }
    50% { width: 60%; margin-left: 20%; }
    100% { width: 0%; margin-left: 100%; }
}

.preloader-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: preloaderText 2s ease-in-out infinite;
}

@keyframes preloaderText {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 3.2rem; }
    .section-heading { font-size: 2.4rem; }
    .hero-section { min-height: auto; padding: 8rem 0 4rem; }
    .hero-pedestal { width: 70%; margin: 2rem auto; }
    .collection-content h2 { font-size: 2.4rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.4rem; }
    .announcement-bar .container { flex-direction: column; gap: 0.3rem; }
    .announcement-bar .divider { display: none; }
    .section-heading { font-size: 1.8rem; }
    .feature-item { padding: 0.5rem; }
    .footer-payment { justify-content: center; margin-top: 1rem; }
    .newsletter-content h2 { font-size: 2.2rem; }
    .hero-product-display { margin-top: 2rem; }
}
