/* ============================================
   LUMINOIR - Premium Luxury E-Commerce
   Design System & Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-black: #0A0A0A;
    --color-black-light: #141414;
    --color-black-lighter: #1A1A1A;
    --color-white: #FFFFFF;
    --color-white-muted: rgba(255, 255, 255, 0.7);
    --color-white-subtle: rgba(255, 255, 255, 0.4);
    --color-silver: #D9D9D9;
    --color-silver-dark: #A0A0A0;
    --color-gold: #C8A96B;
    --color-gold-light: #D4B87A;
    --color-gold-dark: #B8985A;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--color-black) 0%, #1a1a2e 50%, var(--color-black) 100%);
    --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 0 40px rgba(200, 169, 107, 0.3);
    --shadow-glow: 0 0 60px rgba(200, 169, 107, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 700ms ease;
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-4);
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--color-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.section-title .title-accent {
    color: var(--color-gold);
    font-style: italic;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-white-muted);
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-4) var(--space-6);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-3) var(--space-6);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    letter-spacing: 0.1em;
}

.logo-icon {
    color: var(--color-gold);
    font-size: 1.2em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-white-muted);
    position: relative;
    padding: var(--space-2) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-base);
    position: relative;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--space-24) + 80px) var(--space-6) var(--space-16);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 169, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 169, 107, 0.05) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding-left: var(--space-8);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateY(20px);
}

.hero-badge.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.2s;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

.badge-text {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-5xl), 8vw, var(--text-8xl));
    font-weight: 500;
    line-height: 1;
    margin-bottom: var(--space-6);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.title-line.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease;
}

.title-line:nth-child(1).visible {
    transition-delay: 0.4s;
}

.title-line:nth-child(2).visible {
    transition-delay: 0.6s;
}

.title-accent {
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-white-muted);
    margin-bottom: var(--space-8);
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.8s;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 1s;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0;
}

.hero-visual.visible {
    opacity: 1;
    transition: opacity 1.5s ease 0.5s;
}

.hero-image-container {
    position: relative;
    width: 500px;
    height: 600px;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-4) var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -60px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -40px;
    animation-delay: 3s;
}

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

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    color: var(--color-black);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: var(--text-xs);
    color: var(--color-white-muted);
}

.card-value {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-white-muted);
    font-size: var(--text-xs);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   TRUST BANNER
   ============================================ */

.trust-banner {
    padding: var(--space-12) var(--space-6);
    background: var(--color-black-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-white-muted);
    transition: all var(--transition-base);
}

.trust-item:hover {
    color: var(--color-white);
}

.trust-icon {
    color: var(--color-gold);
    transition: transform var(--transition-base);
}

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

.trust-text {
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   BRAND STORY SECTION
   ============================================ */

.story-section {
    padding: var(--space-32) var(--space-6);
    position: relative;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.05);
}

.story-frame {
    position: absolute;
    inset: 20px;
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-xl);
    pointer-events: none;
    opacity: 0.5;
}

.story-content {
    padding-right: var(--space-8);
}

.story-text {
    font-size: var(--text-lg);
    color: var(--color-white-muted);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: var(--space-12);
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 500;
    color: var(--color-gold);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-white-muted);
}

/* ============================================
   COLLECTION SECTION
   ============================================ */

.collection-section {
    padding: var(--space-32) var(--space-6);
    background: var(--color-black-light);
}

.collection-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-16);
}

.collection-header .section-label {
    justify-content: center;
}

.collection-header .section-label::before {
    display: none;
}

.collection-header .section-title {
    margin-bottom: var(--space-4);
}

.collection-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.collection-card {
    position: relative;
    background: var(--color-black-lighter);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.collection-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 107, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.card-wide {
    grid-column: span 2;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.card-large .card-image-wrapper {
    aspect-ratio: 1/1;
}

.card-wide .card-image-wrapper {
    aspect-ratio: 16/9;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.collection-card:hover .card-image {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.collection-card:hover .card-overlay {
    opacity: 0.6;
}

.card-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--color-gold);
    color: var(--color-black);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
}

.card-content {
    padding: var(--space-6);
}

.card-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.card-description {
    font-size: var(--text-sm);
    color: var(--color-white-muted);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-price {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-gold);
}

.card-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-white);
    position: relative;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.card-link:hover::after {
    width: 100%;
}

/* ============================================
   WHY LUMINOIR SECTION
   ============================================ */

.why-section {
    padding: var(--space-32) var(--space-6);
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.why-header .section-label {
    justify-content: center;
}

.why-header .section-label::before {
    display: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.why-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    transition: all var(--transition-base);
}

.why-card:hover {
    border-color: rgba(200, 169, 107, 0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: rgba(200, 169, 107, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.why-card:hover .why-icon {
    background: var(--color-gold);
    color: var(--color-black);
    transform: scale(1.1);
}

.why-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-3);
}

.why-text {
    font-size: var(--text-sm);
    color: var(--color-white-muted);
    line-height: 1.7;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */

.social-proof-section {
    padding: var(--space-20) var(--space-6);
    background: var(--color-gold);
    position: relative;
    overflow: hidden;
}

.social-proof-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-12);
    position: relative;
    z-index: 1;
}

.social-proof-item {
    text-align: center;
    color: var(--color-black);
}

.social-number {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 500;
    line-height: 1;
}

.social-suffix {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 500;
}

.social-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: var(--space-2);
    opacity: 0.7;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: var(--space-32) var(--space-6);
    background: var(--color-black-light);
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.reviews-header .section-label {
    justify-content: center;
}

.reviews-header .section-label::before {
    display: none;
}

.reviews-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-4) 0;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 380px;
    background: var(--color-black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    scroll-snap-align: start;
    transition: all var(--transition-base);
}

.review-card:hover {
    border-color: rgba(200, 169, 107, 0.2);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--color-gold);
    font-size: var(--text-lg);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-4);
}

.review-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-white-muted);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-black);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-white);
}

.author-title {
    font-size: var(--text-sm);
    color: var(--color-white-muted);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.review-nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-base);
}

.review-nav-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
    padding: var(--space-32) var(--space-6);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(200, 169, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(200, 169, 107, 0.05) 0%, transparent 40%);
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-content {
    padding-right: var(--space-8);
}

.newsletter-text {
    font-size: var(--text-lg);
    color: var(--color-white-muted);
    margin-bottom: var(--space-8);
    line-height: 1.8;
}

.newsletter-form {
    max-width: 500px;
}

.form-group {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.newsletter-input {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: var(--color-white-subtle);
}

.form-note {
    font-size: var(--text-xs);
    color: var(--color-white-muted);
}

.newsletter-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.2) 0%, transparent 70%);
    filter: blur(60px);
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    max-width: 360px;
    position: relative;
    z-index: 1;
}

.card-header {
    margin-bottom: var(--space-6);
}

.card-badge-gold {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--color-black);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
}

.newsletter-card .card-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
}

.card-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.card-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: var(--color-white-muted);
}

.card-benefits li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: 700;
}

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

.footer {
    padding: var(--space-20) var(--space-6) var(--space-8);
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-16);
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--color-white-muted);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white-muted);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.footer-heading {
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
    color: var(--color-white);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-list a {
    font-size: var(--text-sm);
    color: var(--color-white-muted);
    transition: color var(--transition-base);
}

.footer-list a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--color-white-muted);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--color-gold);
}

.footer-payment {
    display: flex;
    gap: var(--space-2);
}

.payment-icon {
    width: 40px;
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-white-muted);
}

/* ============================================
   CART DRAWER
   ============================================ */

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.cart-drawer.open {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.cart-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: var(--color-black);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open .cart-panel {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
}

.cart-close {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white-muted);
    transition: all var(--transition-base);
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-6);
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    gap: var(--space-4);
}

.empty-icon {
    color: var(--color-white-subtle);
}

.empty-text {
    font-size: var(--text-lg);
    color: var(--color-white-muted);
}

.cart-footer {
    padding: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-progress {
    margin-bottom: var(--space-6);
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-2);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
    width: 0%;
}

.progress-text {
    font-size: var(--text-sm);
    color: var(--color-white-muted);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
    font-size: var(--text-lg);
    font-weight: 600;
}

.subtotal-amount {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-gold);
}

.cart-note {
    font-size: var(--text-sm);
    color: var(--color-white-muted);
    margin-bottom: var(--space-4);
}

.cart-trust {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-trust .trust-item {
    justify-content: center;
    font-size: var(--text-sm);
}

/* ============================================
   SOCIAL NOTIFICATION
   ============================================ */

.social-notification {
    position: fixed;
    bottom: var(--space-6);
    left: var(--space-6);
    background: var(--color-black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    z-index: var(--z-tooltip);
    transform: translateX(-120%);
    transition: transform var(--transition-slow);
    max-width: 360px;
}

.social-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.notification-image {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

.notification-text {
    display: flex;
    flex-direction: column;
}

.notification-message {
    font-size: var(--text-sm);
    color: var(--color-white);
    line-height: 1.5;
}

.notification-message strong {
    color: var(--color-gold);
}

.notification-time {
    font-size: var(--text-xs);
    color: var(--color-white-muted);
}

.notification-close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white-muted);
    font-size: var(--text-xl);
    line-height: 1;
    transition: color var(--transition-base);
}

.notification-close:hover {
    color: var(--color-white);
}

/* ============================================
   FLOATING BUY BUTTON (MOBILE)
   ============================================ */

.floating-buy {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-4) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    z-index: var(--z-fixed);
    backdrop-filter: blur(20px);
}

.floating-info {
    display: flex;
    flex-direction: column;
}

.floating-price {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--color-gold);
}

.floating-note {
    font-size: var(--text-xs);
    color: var(--color-white-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .card-large .card-image-wrapper {
        aspect-ratio: 16/9;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--space-20) + 80px);
    }
    
    .hero-content {
        padding-left: 0;
        max-width: 100%;
    }
    
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: var(--space-12);
    }
    
    .hero-image-container {
        width: 100%;
        max-width: 400px;
        height: 500px;
        margin: 0 auto;
    }
    
    .floating-card {
        display: none;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .story-content {
        padding-right: 0;
        text-align: center;
    }
    
    .story-stats {
        justify-content: center;
    }
    
    .newsletter-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-content {
        padding-right: 0;
    }
    
    .newsletter-form {
        margin: 0 auto;
    }
    
    .newsletter-visual {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --text-4xl: 1.875rem;
        --text-5xl: 2.25rem;
        --text-6xl: 3rem;
        --text-7xl: 3.75rem;
        --text-8xl: 4.5rem;
    }
    
    .trust-container {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .trust-divider {
        width: 60px;
        height: 1px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .card-large,
    .card-wide {
        grid-column: span 1;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .social-proof-container {
        flex-direction: column;
        gap: var(--space-8);
    }
    
    .review-card {
        flex: 0 0 300px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cart-panel {
        max-width: 100%;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}