@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --noir: #0a0a0a;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --gold: #C9A84C;
    --gold-light: #d4b86a;
    --cream: #f5f0e8;
    --white: #ffffff;
    --danger: #c0392b;
    --success: #27ae60;
    --info: #2980b9;
    --warning: #f39c12;
    --purple: #8e44ad;
    --sidebar-width: 260px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--noir);
    color: var(--cream);
    font-weight: 300;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold) !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar-nav a {
    color: var(--cream);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--gold);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
    width: 100%;
}

.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -14px;
    background-color: var(--gold);
    color: var(--noir);
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-content .tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 0.08em;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.8);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 32px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--noir);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--noir);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--noir);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.7rem;
}

.btn-lg {
    padding: 18px 56px;
    font-size: 0.85rem;
}

.btn-danger {
    background-color: var(--danger);
    color: var(--white);
    border: 1px solid var(--danger);
}

.btn-danger:hover {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-heading .divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 16px;
}

.section-heading p {
    color: rgba(245, 240, 232, 0.6);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.section-dark {
    background-color: var(--charcoal);
}

.section-darker {
    background-color: var(--noir);
}

.gender-divider {
    text-align: center;
    margin: 48px 0 32px;
    position: relative;
}

.gender-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.gender-divider span {
    position: relative;
    background: var(--noir);
    padding: 0 24px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-dark .gender-divider span {
    background: var(--charcoal);
}

/* ========================================
   PRODUCT GRID & CARDS
   ======================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--dark-gray);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.product-card-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal), var(--dark-gray));
    padding: 24px;
}

.product-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 20px;
    text-align: center;
}

.product-card-body h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.product-card .product-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 4px;
}

.product-card .product-size {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 12px;
}

.product-card .product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.product-card-actions {
    display: flex;
    gap: 8px;
    padding: 0 20px 20px;
}

.product-card-actions .btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.65rem;
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    border-radius: 2px;
}

.badge-women {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.badge-men {
    background: rgba(245, 240, 232, 0.1);
    color: var(--cream);
}

/* ========================================
   SPOKESPERSON SECTION
   ======================================== */

.spokesperson {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    overflow: hidden;
}

.spokesperson-image {
    position: relative;
    overflow: hidden;
}

.spokesperson-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spokesperson-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--charcoal);
}

.spokesperson-content .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 16px;
}

.spokesperson-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.3;
}

.spokesperson-content p {
    color: rgba(245, 240, 232, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ========================================
   ABOUT / BRAND STORY
   ======================================== */

.brand-story {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.brand-story h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.brand-story .gold-text {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.brand-story p {
    color: rgba(245, 240, 232, 0.65);
    margin-bottom: 20px;
    line-height: 1.9;
}

.fragrance-notes {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.fragrance-note {
    text-align: center;
}

.fragrance-note .note-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 8px;
}

.fragrance-note .note-value {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--cream);
    font-size: 1rem;
}

/* ========================================
   BREADCRUMB
   ======================================== */

.breadcrumb {
    padding: 120px 0 24px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
}

.breadcrumb li {
    color: rgba(245, 240, 232, 0.5);
}

.breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(245, 240, 232, 0.3);
}

.breadcrumb li a {
    color: rgba(245, 240, 232, 0.5);
}

.breadcrumb li a:hover {
    color: var(--gold);
}

.breadcrumb li.active {
    color: var(--cream);
}

/* ========================================
   FILTER BAR
   ======================================== */

.filter-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.filter-bar a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.5);
    transition: color 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
}

.filter-bar a:hover,
.filter-bar a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ========================================
   PRODUCT DETAIL
   ======================================== */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 40px 0 80px;
}

.product-detail-image {
    background: linear-gradient(135deg, var(--charcoal), var(--dark-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    min-height: 500px;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.product-detail-image img {
    max-height: 400px;
    object-fit: contain;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.product-detail-info .product-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.product-detail-info .product-type-label {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
}

.product-detail-info .product-price-large {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.product-detail-info .product-size-label {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 24px;
}

.product-detail-info .product-description {
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.9;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
}

.quantity-selector button {
    width: 44px;
    height: 44px;
    background: var(--dark-gray);
    border: 1px solid rgba(245, 240, 232, 0.15);
    color: var(--cream);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector button:hover {
    background: var(--gold);
    color: var(--noir);
    border-color: var(--gold);
}

.quantity-selector input {
    width: 60px;
    height: 44px;
    text-align: center;
    background: var(--charcoal);
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-left: none;
    border-right: none;
    color: var(--cream);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.quantity-selector input:focus {
    outline: none;
    border-color: var(--gold);
}

.add-to-cart-form {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.add-to-cart-form .btn {
    flex: 1;
}

/* ========================================
   RELATED PRODUCTS
   ======================================== */

.related-products {
    padding: 80px 0;
    border-top: 1px solid rgba(245, 240, 232, 0.05);
}

.related-products h2 {
    font-size: 1.8rem;
    text-align: center;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

/* ========================================
   CART PAGE
   ======================================== */

.cart-page {
    padding: 120px 0 80px;
    min-height: 70vh;
}

.cart-page h1 {
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-table thead th {
    text-align: left;
    padding: 16px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 240, 232, 0.5);
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.cart-table tbody td {
    padding: 20px 12px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(245, 240, 232, 0.05);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.cart-item-image img {
    max-height: 100%;
    object-fit: contain;
}

.cart-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
}

.cart-item-size {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 2px;
}

.cart-item-price,
.cart-item-total {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(245, 240, 232, 0.3);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 4px 8px;
}

.cart-item-remove:hover {
    color: var(--danger);
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    background: var(--charcoal);
    padding: 32px;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.95rem;
}

.cart-summary-row.total {
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 1.2rem;
}

.cart-summary-row.total .amount {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.4rem;
}

.cart-summary .shipping-note {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    font-style: italic;
    margin: 8px 0 16px;
}

.cart-empty {
    text-align: center;
    padding: 80px 0;
}

.cart-empty h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cart-empty p {
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 32px;
}

/* ========================================
   ORDER SUCCESS
   ======================================== */

.success-page {
    text-align: center;
    padding: 140px 0 80px;
    min-height: 70vh;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 24px;
}

.success-page h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.success-page .order-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 32px;
}

.order-summary-card {
    max-width: 600px;
    margin: 0 auto 40px;
    background: var(--charcoal);
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 32px;
    text-align: left;
}

.order-summary-card h3 {
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.order-summary-item .item-name {
    color: var(--cream);
}

.order-summary-item .item-price {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.success-email-note {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.success-address {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background-color: var(--charcoal);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-newsletter p {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--dark-gray);
    border: 1px solid rgba(245, 240, 232, 0.15);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.newsletter-form input::placeholder {
    color: rgba(245, 240, 232, 0.3);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--noir);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    color: rgba(245, 240, 232, 0.4);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom .copyright {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.3);
}

.footer-bottom .spokesperson-credit {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.3);
    font-style: italic;
}

.footer-bottom .spokesperson-credit span {
    color: var(--gold);
}

/* ========================================
   FLASH MESSAGES
   ======================================== */

.flash-message {
    padding: 16px 24px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: flashIn 0.3s ease;
}

.flash-message.flash-success {
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #2ecc71;
}

.flash-message.flash-error {
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.3);
    color: #e74c3c;
}

.flash-message.flash-info {
    background: rgba(41, 128, 185, 0.15);
    border: 1px solid rgba(41, 128, 185, 0.3);
    color: #3498db;
}

.flash-message.flash-warning {
    background: rgba(243, 156, 18, 0.15);
    border: 1px solid rgba(243, 156, 18, 0.3);
    color: #f39c12;
}

.flash-dismiss {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    padding: 0 4px;
}

.flash-dismiss:hover {
    opacity: 1;
}

@keyframes flashIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   AUTH / LOGIN PAGE
   ======================================== */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--noir);
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--charcoal);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 48px 40px;
}

.auth-card .auth-brand {
    text-align: center;
    margin-bottom: 40px;
}

.auth-card .auth-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.auth-card .auth-brand p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.4);
    margin-top: 4px;
}

.auth-card h2 {
    font-size: 1.3rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-gray);
    border: 1px solid rgba(245, 240, 232, 0.12);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

.form-control::placeholder {
    color: rgba(245, 240, 232, 0.25);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

.form-check label {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
    cursor: pointer;
}

/* ========================================
   ADMIN LAYOUT
   ======================================== */

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--charcoal);
    border-right: 1px solid rgba(245, 240, 232, 0.08);
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar-brand {
    padding: 24px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.admin-sidebar-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.admin-sidebar-nav {
    padding: 16px 0;
    list-style: none;
}

.admin-sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.admin-sidebar-nav li a:hover {
    color: var(--cream);
    background: rgba(245, 240, 232, 0.03);
}

.admin-sidebar-nav li a.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    border-left-color: var(--gold);
}

.admin-sidebar-nav li a .nav-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.admin-sidebar-nav .nav-separator {
    height: 1px;
    background: rgba(245, 240, 232, 0.08);
    margin: 12px 24px;
}

.admin-main {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
}

.admin-topbar {
    padding: 20px 32px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--noir);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-topbar h1 {
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.admin-topbar .admin-user {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
}

.admin-topbar .admin-user span {
    color: var(--gold);
}

.admin-content {
    padding: 32px;
}

/* ========================================
   ADMIN STAT CARDS
   ======================================== */

.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--charcoal);
    border: 1px solid rgba(245, 240, 232, 0.08);
    padding: 24px;
    transition: border-color 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.stat-card .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-card .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1.2;
}

.stat-card .stat-change {
    font-size: 0.75rem;
    margin-top: 8px;
}

.stat-card .stat-change.positive {
    color: var(--success);
}

.stat-card .stat-change.negative {
    color: var(--danger);
}

/* ========================================
   ADMIN TABLES
   ======================================== */

.admin-table-wrapper {
    background: var(--charcoal);
    border: 1px solid rgba(245, 240, 232, 0.08);
    overflow-x: auto;
}

.admin-table-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-table-header h2 {
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead th {
    text-align: left;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.4);
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    white-space: nowrap;
}

.admin-table tbody tr {
    border-bottom: 1px solid rgba(245, 240, 232, 0.04);
    transition: background-color 0.2s ease;
}

.admin-table tbody tr:nth-child(even) {
    background: rgba(245, 240, 232, 0.015);
}

.admin-table tbody tr:hover {
    background: rgba(201, 168, 76, 0.04);
}

.admin-table tbody td {
    padding: 14px 20px;
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.75);
    white-space: nowrap;
}

.admin-table tbody td a {
    color: var(--gold);
}

.admin-table tbody td a:hover {
    text-decoration: underline;
}

/* ========================================
   STATUS BADGES
   ======================================== */

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
}

.status-pending {
    background: rgba(243, 156, 18, 0.15);
    color: #f1c40f;
}

.status-paid {
    background: rgba(41, 128, 185, 0.15);
    color: #3498db;
}

.status-processing {
    background: rgba(243, 156, 18, 0.15);
    color: #e67e22;
}

.status-shipped {
    background: rgba(142, 68, 173, 0.15);
    color: #9b59b6;
}

.status-delivered {
    background: rgba(39, 174, 96, 0.15);
    color: #2ecc71;
}

.status-cancelled {
    background: rgba(192, 57, 43, 0.15);
    color: #e74c3c;
}

.status-refunded {
    background: rgba(149, 165, 166, 0.15);
    color: #95a5a6;
}

/* Action badges */
.action-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 2px;
}

.action-login {
    background: rgba(39, 174, 96, 0.15);
    color: #2ecc71;
}

.action-logout {
    background: rgba(149, 165, 166, 0.15);
    color: #95a5a6;
}

.action-order_status_change {
    background: rgba(41, 128, 185, 0.15);
    color: #3498db;
}

.action-tracking_update {
    background: rgba(142, 68, 173, 0.15);
    color: #9b59b6;
}

/* ========================================
   ADMIN FILTERS & FORMS
   ======================================== */

.admin-filters {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.admin-filters .form-control {
    max-width: 200px;
    padding: 10px 14px;
    font-size: 0.85rem;
}

.admin-filters select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.admin-form-group {
    margin-bottom: 16px;
}

.admin-form-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 6px;
    font-weight: 500;
}

.admin-inline-form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.admin-inline-form .form-control {
    max-width: 200px;
}

/* ========================================
   ADMIN CARDS / DETAIL PAGES
   ======================================== */

.admin-card {
    background: var(--charcoal);
    border: 1px solid rgba(245, 240, 232, 0.08);
    padding: 24px;
    margin-bottom: 24px;
}

.admin-card h3 {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.admin-card .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.85rem;
}

.admin-card .detail-row .label {
    color: rgba(245, 240, 232, 0.5);
}

.admin-card .detail-row .value {
    color: var(--cream);
}

.admin-card .detail-row .value.gold {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}

.admin-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.admin-back-link:hover {
    color: var(--gold);
}

.admin-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.admin-heading h1 {
    font-size: 1.5rem;
    color: var(--white);
}

.tracking-info {
    background: rgba(142, 68, 173, 0.1);
    border: 1px solid rgba(142, 68, 173, 0.25);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tracking-info .tracking-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9b59b6;
    font-weight: 500;
}

.tracking-info .tracking-number {
    font-family: monospace;
    font-size: 1rem;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.tracking-info .tracking-carrier {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
}

/* ========================================
   ADMIN STATS ROW (Customer Detail)
   ======================================== */

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stats-row .stat-item {
    text-align: center;
    padding: 20px;
    background: var(--charcoal);
    border: 1px solid rgba(245, 240, 232, 0.08);
}

.stats-row .stat-item .stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.4);
    margin-bottom: 6px;
}

.stats-row .stat-item .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    transition: all 0.3s ease;
}

.pagination a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.pagination .active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    font-weight: 500;
}

.pagination .disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ========================================
   QUICK LINKS
   ======================================== */

.quick-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

/* ========================================
   REVENUE TABLE (Dashboard)
   ======================================== */

.revenue-table {
    width: 100%;
    border-collapse: collapse;
}

.revenue-table th {
    text-align: left;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.4);
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.revenue-table td {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--cream);
    border-bottom: 1px solid rgba(245, 240, 232, 0.04);
}

.revenue-table td:last-child {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

/* ========================================
   EMPTY STATES
   ======================================== */

.empty-state {
    text-align: center;
    padding: 80px 24px;
}

.empty-state .empty-icon {
    font-size: 3rem;
    color: rgba(245, 240, 232, 0.15);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.empty-state p {
    color: rgba(245, 240, 232, 0.4);
    margin-bottom: 24px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-white { color: var(--white); }
.text-muted { color: rgba(245, 240, 232, 0.5); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ========================================
   RESPONSIVE - TABLET (1024px)
   ======================================== */

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spokesperson {
        grid-template-columns: 1fr;
    }

    .spokesperson-image {
        max-height: 400px;
    }

    .spokesperson-content {
        padding: 48px 32px;
    }

    .product-detail {
        gap: 40px;
    }

    .admin-detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .fragrance-notes {
        gap: 32px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */

@media (max-width: 768px) {
    .navbar-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(201, 168, 76, 0.1);
    }

    .navbar-nav.open {
        right: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
    }

    .mobile-overlay.open {
        display: block;
    }

    .product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        min-height: 300px;
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 0.12em;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .stat-cards {
        grid-template-columns: 1fr 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody td {
        display: block;
        padding: 6px 12px;
        text-align: right;
    }

    .cart-table tbody td::before {
        content: attr(data-label);
        float: left;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(245, 240, 232, 0.4);
    }

    .cart-table tbody tr {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    }

    .cart-summary {
        margin-left: 0;
    }

    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-filters .form-control {
        max-width: 100%;
    }

    .add-to-cart-form {
        flex-direction: column;
    }

    .spokesperson-content h2 {
        font-size: 1.6rem;
    }

    .brand-story h2 {
        font-size: 1.8rem;
    }

    .fragrance-notes {
        flex-direction: column;
        gap: 24px;
    }

    .admin-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .navbar, .site-footer, .admin-sidebar, .admin-topbar {
        display: none;
    }

    body {
        background: white;
        color: #333;
    }

    .admin-main {
        margin-left: 0;
    }
}
