/* ============================================
   BY FIORENZA — Luxury Fashion Landing Page
   CSS3 Pure — Mobile First — Editorial Aesthetic
   ============================================ */

/* ----- Custom Fonts ----- */
@font-face {
    font-family: 'Editorial';
    src: url('../fonts/editorial.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Editorial';
    src: url('../fonts/editorial-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Editorial';
    src: url('../fonts/editorial-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

/* ----- CSS Variables (Design Tokens) ----- */
:root {
    /* Brand Colors */
    --color-primary: #A00014;
    --color-primary-dark: #6B000C;
    --color-primary-light: #D40A24;
    --color-bg: #0A0A0A;
    --color-bg-alt: #141414;
    --color-surface: #1A1A1A;
    --color-text: #F5F0EB;
    --color-text-muted: rgba(245, 240, 235, 0.55);
    --color-text-dim: rgba(245, 240, 235, 0.3);
    --color-border: rgba(245, 240, 235, 0.08);
    --color-border-light: rgba(245, 240, 235, 0.15);
    --color-gold: #C9A96E;
    --color-gold-light: rgba(201, 169, 110, 0.2);

    /* Typography */
    --font-display: 'Editorial', 'Didot', 'Playfair Display', Georgia, serif;
    --font-body: 'Editorial', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'JetBrains Mono', monospace;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 960px;
    --header-height: 72px;

    /* Effects */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(160, 0, 20, 0.15);
    --blur-glass: blur(20px);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

ul { list-style: none; }

/* ----- Utilities ----- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-label {
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 520px;
    line-height: 1.7;
    font-weight: 300;
}

/* ----- Glassmorphism Panel ----- */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--color-border);
}

/* ----- Header ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-text);
    transition: var(--transition);
}

.header-logo:hover {
    color: var(--color-gold);
}

.header-nav {
    display: none;
    gap: var(--space-xl);
    align-items: center;
}

.header-nav a {
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    position: relative;
    padding: 4px 0;
}

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

.header-nav a:hover {
    color: var(--color-text);
}

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

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

.header-actions button,
.header-actions a {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: var(--space-sm);
    transition: var(--transition);
    position: relative;
}

.header-actions button:hover,
.header-actions a:hover {
    color: var(--color-text);
}

.header-actions .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header-mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
    border-radius: 1px;
    transition: var(--transition);
}

/* ----- Hero Section ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg);
    padding-top: var(--header-height);
    padding-bottom: var(--space-3xl);
}

.hero-bg-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 0, 20, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    border: 1px solid var(--color-gold-light);
    border-radius: 100px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
    background: rgba(201, 169, 110, 0.05);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.hero-title em {
    font-style: italic;
    color: var(--color-primary-light);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--color-text-muted);
    max-width: 480px;
    margin: 0 auto var(--space-2xl);
    font-weight: 300;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    padding: 16px 40px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(160, 0, 20, 0.3);
}

.hero-cta i {
    font-size: 0.85rem;
    transition: var(--transition);
}

.hero-cta:hover i {
    transform: translateX(4px);
}

/* ----- Phone Mockup Showcase ----- */
.phone-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(245, 240, 235, 0.06);
    flex-shrink: 0;
    transition: var(--transition-slow);
    background: var(--color-bg-alt);
}

.phone-mockup:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 169, 110, 0.15);
}

.phone-mockup .phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-mockup .phone-notch::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.phone-mockup .phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Phone 1 — Editorial Model */
.phone-editorial .phone-screen {
    display: flex;
    align-items: flex-end;
}

.phone-editorial .phone-screen-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #1A1A1A 0%, var(--color-primary-dark) 100%);
}

.phone-editorial .phone-model-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    mix-blend-mode: luminosity;
}

.phone-editorial .phone-overlay-text {
    position: relative;
    z-index: 2;
    padding: var(--space-lg);
    text-align: left;
    width: 100%;
}

.phone-editorial .phone-overlay-text .season {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    display: block;
}

.phone-editorial .phone-overlay-text .collection-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
}

.phone-editorial .phone-overlay-text .collection-name em {
    color: var(--color-primary-light);
    font-style: italic;
}

.phone-editorial .phone-decorative-line {
    position: absolute;
    top: 20%;
    right: -20px;
    width: 120px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.3;
    transform: rotate(45deg);
}

/* Phone 2 — Product Grid */
.phone-products .phone-screen {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
}

.phone-products .phone-screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-top: 32px;
}

.phone-products .phone-screen-header span {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
}

.phone-products .phone-screen-header a {
    font-size: 0.5rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    overflow-y: auto;
    flex: 1;
    padding-bottom: var(--space-md);
}

.phone-product-grid::-webkit-scrollbar {
    width: 2px;
}

.phone-product-grid::-webkit-scrollbar-thumb {
    background: var(--color-border-light);
    border-radius: 1px;
}

.phone-product-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-surface);
    transition: var(--transition);
}

.phone-product-item:hover {
    transform: scale(1.02);
}

.phone-product-item .phone-product-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dim);
    font-size: 1.2rem;
}

.phone-product-item .phone-product-info {
    padding: 6px 8px 8px;
}

.phone-product-item .phone-product-name {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-product-item .phone-product-price {
    font-size: 0.55rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* Phone 3 — Editorial Red */
.phone-editorial-red .phone-screen {
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-editorial-red .phone-red-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, #fff 1px, transparent 1px);
    background-size: 40px 40px;
}

.phone-editorial-red .phone-red-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-lg);
}

.phone-editorial-red .phone-red-content .big-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.phone-editorial-red .phone-red-content .red-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
}

.phone-editorial-red .phone-red-content .red-divider {
    width: 30px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto var(--space-lg);
}

.phone-editorial-red .phone-red-content .red-quote {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.phone-editorial-red .phone-model-cutout {
    position: absolute;
    bottom: 0;
    right: -20%;
    width: 140%;
    height: 60%;
    opacity: 0.2;
    object-fit: cover;
    object-position: top;
}

/* ----- New Arrivals Grid ----- */
.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.arrival-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    transition: var(--transition);
    cursor: pointer;
}

.arrival-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.arrival-card .arrival-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dim);
    font-size: 2rem;
    transition: var(--transition-slow);
}

.arrival-card:hover .arrival-image {
    transform: scale(1.03);
}

.arrival-card .arrival-info {
    padding: var(--space-md) var(--space-md) var(--space-lg);
}

.arrival-card .arrival-category {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.arrival-card .arrival-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

.arrival-card .arrival-price {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

.arrival-card .arrival-price .compare-at {
    text-decoration: line-through;
    color: var(--color-text-dim);
    margin-right: var(--space-sm);
    font-size: 0.8rem;
}

/* ----- Featured Collection ----- */
.featured-collection {
    background: var(--color-bg-alt);
    overflow: hidden;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.featured-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background: var(--color-surface);
}

.featured-showcase .featured-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    mix-blend-mode: luminosity;
    background: linear-gradient(135deg, var(--color-primary-dark), #1A1A1A);
}

.featured-showcase .featured-overlay {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl);
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.featured-showcase .featured-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: var(--space-md);
}

.featured-showcase .featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    max-width: 400px;
}

.featured-showcase .featured-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    border-bottom: 1px solid var(--color-gold-light);
    padding-bottom: 4px;
    transition: var(--transition);
}

.featured-showcase .featured-link:hover {
    gap: var(--space-md);
    border-bottom-color: var(--color-gold);
}

.featured-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.featured-list-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-surface);
    transition: var(--transition);
    cursor: pointer;
}

.featured-list-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.featured-list-item .fl-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dim);
    font-size: 1.5rem;
    transition: var(--transition-slow);
}

.featured-list-item:hover .fl-image {
    transform: scale(1.05);
}

.featured-list-item .fl-info {
    padding: var(--space-md);
}

.featured-list-item .fl-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 2px;
}

.featured-list-item .fl-price {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ----- Newsletter ----- */
.newsletter {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

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

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: #fff;
}

.newsletter-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
    padding: 16px 36px;
    background: #fff;
    color: var(--color-primary);
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-md);
}

/* ----- Footer ----- */
.footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.footer-brand .footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    display: block;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    max-width: 300px;
    line-height: 1.7;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

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

.footer-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

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

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

.footer-bottom {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: var(--color-text-dim);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 0.72rem;
    color: var(--color-text-dim);
}

.footer-bottom-links a:hover {
    color: var(--color-text-muted);
}

/* ----- Animations ----- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ----- Desktop (min-width: 768px) ----- */
@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }

    .header-mobile-toggle {
        display: none;
    }

    .phone-showcase {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-lg);
    }

    .phone-mockup {
        width: 220px;
        height: 450px;
        border-radius: 28px;
    }

    .arrivals-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        min-width: 280px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ----- Tablet (min-width: 1024px) ----- */
@media (min-width: 1024px) {
    .phone-showcase {
        gap: var(--space-xl);
    }

    .phone-mockup {
        width: 260px;
        height: 530px;
        border-radius: 32px;
    }

    .arrivals-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .featured-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* ----- Desktop Wide (min-width: 1280px) ----- */
@media (min-width: 1280px) {
    .phone-mockup {
        width: 290px;
        height: 580px;
    }

    .hero-title {
        font-size: 5rem;
    }
}

/* ----- Reduced Motion ----- */
@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;
    }
}
