/* ============================================
   WAKEYBAKEY — Premium Culture Wear
   Highly Designed.
   ============================================ */

:root {
    --bg: #f7f5f0;
    --bg-alt: #efece5;
    --bg-card: #ffffff;
    --text: #1a1a1a;
    --text-muted: #7a7570;
    --text-light: #a09a94;
    --accent: #2d5a27;
    --accent-hover: #1e3d1a;
    --accent-light: #e8f0e6;
    --border: #e5e0d8;
    --border-light: #f0ece5;
    --black: #1a1a1a;
    --white: #ffffff;
    --beige: #d4c5a9;
    --stone: #a89f91;
    --forest: #2d5016;
    --red: #c0392b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --radius: 2px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --max-width: 1280px;
}

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

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

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

/* Page load overlay */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease 0.2s, visibility 0.6s ease 0.2s;
}

.page-loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-brand {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    animation: loaderIn 0.6s var(--ease-out) 0.1s forwards;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.display-font {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
}

.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; letter-spacing: 0.12em; }
.text-sm { font-size: 12px; }
.text-xs { font-size: 11px; letter-spacing: 0.08em; }
.fw-300 { font-weight: 300; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }

/* ============================================
   Announcement Bar
   ============================================ */

.announcement-bar {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.announcement-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

/* ============================================
   Header / Navigation
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: all 0.5s var(--ease-out);
    transform: translateY(36px); /* account for announcement bar */
}

.site-header.scrolled {
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    transform: translateY(0);
}

.site-header.scrolled .logo,
.site-header.scrolled .nav-main a,
.site-header.scrolled .nav-icons a,
.site-header.scrolled .menu-toggle {
    color: var(--text);
}

.site-header.scrolled .logo span {
    color: var(--text-muted);
}

/* On hero page, header text is white */
.page-home .site-header:not(.scrolled) .logo,
.page-home .site-header:not(.scrolled) .nav-main a,
.page-home .site-header:not(.scrolled) .nav-icons a,
.page-home .site-header:not(.scrolled) .menu-toggle {
    color: var(--white);
}

.page-home .site-header:not(.scrolled) .logo span {
    color: rgba(255,255,255,0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text);
    transition: color var(--transition);
}

.logo span {
    display: block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0;
    transition: color var(--transition);
}

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

.nav-main a {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition), left var(--transition);
}

.nav-main a:hover,
.nav-main a.active {
    color: var(--text);
}

.nav-main a:hover::after,
.nav-main a.active::after {
    width: 100%;
    left: 0;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons a {
    color: var(--text-muted);
    transition: all var(--transition);
    position: relative;
}

.nav-icons a:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 4px;
    color: var(--text);
    transition: color var(--transition);
}

/* Mobile nav — slide from right */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    visibility: hidden;
}

.mobile-nav.open { visibility: visible; }

.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.5s ease;
}

.mobile-nav.open .mobile-nav-overlay {
    background: rgba(0,0,0,0.4);
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--bg);
    padding: 80px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.mobile-nav.open .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    padding: 4px;
    transition: transform var(--transition);
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
}

.mobile-nav-panel a {
    display: block;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.06em;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out), color var(--transition);
}

.mobile-nav.open .mobile-nav-panel a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.open .mobile-nav-panel a:nth-child(1) { transition-delay: 0.15s; }
.mobile-nav.open .mobile-nav-panel a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.open .mobile-nav-panel a:nth-child(3) { transition-delay: 0.25s; }
.mobile-nav.open .mobile-nav-panel a:nth-child(4) { transition-delay: 0.3s; }

.mobile-nav-panel a:hover {
    color: var(--accent);
}

.mobile-nav-motto {
    margin-top: auto;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
}

.mobile-nav.open .mobile-nav-motto {
    opacity: 1;
}

/* ============================================
   Hero Section
   ============================================ */

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

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(45,90,39,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(45,80,22,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(212,197,169,0.08) 0%, transparent 50%);
    animation: heroGradient 12s ease-in-out infinite alternate;
}

@keyframes heroGradient {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    100% { transform: scale(1.1) rotate(2deg); opacity: 1; }
}

/* Grain texture overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    color: var(--white);
}

/* Animated horizontal lines */
.hero-line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto 40px;
    transform: scaleX(0);
    animation: lineExpand 1s var(--ease-out) 1.2s forwards;
}

@keyframes lineExpand {
    to { transform: scaleX(1); }
}

/* Split text animation */
.hero-brand {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 8px;
    overflow: hidden;
}

.hero-brand .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: charReveal 0.8s var(--ease-out) forwards;
}

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

.hero-motto {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 28px);
    letter-spacing: 0.08em;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

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

.hero-tagline {
    font-size: clamp(12px, 1.4vw, 14px);
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    letter-spacing: 0.06em;
    max-width: 400px;
    margin: 0 auto 56px;
    line-height: 1.9;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.35);
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.6s var(--ease-out) 1.6s forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    50.01% { top: -100%; }
    100% { top: -100%; }
}

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

.hero-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* ============================================
   Buttons — with sweep fill animation
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color var(--transition), border-color var(--transition), transform var(--transition-fast);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: transform 0.5s var(--ease-out);
}

.btn:active {
    transform: scale(0.97);
}

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

.btn-primary::before {
    background: var(--accent);
    transform: translateX(-101%);
}

.btn-primary:hover {
    border-color: var(--accent);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

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

.btn-outline::before {
    background: var(--text);
    transform: translateX(-101%);
}

.btn-outline:hover {
    color: var(--white);
}

.btn-outline:hover::before {
    transform: translateX(0);
}

/* White variant for dark backgrounds */
.btn-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-white::before {
    background: var(--white);
    transform: translateX(-101%);
}

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

.btn-white:hover::before {
    transform: translateX(0);
}

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

.btn-accent::before {
    background: var(--accent-hover);
    transform: translateX(-101%);
}

.btn-accent:hover::before {
    transform: translateX(0);
}

.btn-lg {
    padding: 20px 56px;
    font-size: 11px;
}

.btn-sm {
    padding: 12px 28px;
    font-size: 10px;
}

.btn-full { width: 100%; }

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn:disabled::before { display: none; }

/* Button arrow animation */
.btn .btn-arrow {
    display: inline-block;
    transition: transform var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   Section Layouts
   ============================================ */

.section {
    padding: 120px 0;
    position: relative;
}

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

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

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: 16px;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 16px;
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Decorative section divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 24px 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--border);
}

.section-divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

/* ============================================
   Product Grid
   ============================================ */

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

.product-card {
    position: relative;
    background: var(--bg-card);
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card-image {
    aspect-ratio: 3/4;
    background: var(--bg-alt);
    overflow: hidden;
    position: relative;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

/* Hover overlay */
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}

.product-card:hover .product-card-overlay {
    background: rgba(26,26,26,0.25);
}

.product-card-overlay span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.6);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(4px);
}

.product-card:hover .product-card-overlay span {
    opacity: 1;
    transform: translateY(0);
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    gap: 12px;
}

.product-card-placeholder svg { opacity: 0.2; }

.product-card-placeholder span {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.4;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    font-weight: 500;
    z-index: 2;
}

.product-card-info {
    padding: 24px 8px;
}

.product-card-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-card-tagline {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 10px;
}

.product-card-price {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.product-card-colors {
    display: flex;
    gap: 6px;
    margin-top: 12px;
}

.color-dot-sm {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--border);
    transition: transform var(--transition-fast);
}

.color-dot-sm:hover {
    transform: scale(1.3);
}

/* ============================================
   Single Product Page
   ============================================ */

.product-page {
    padding: 40px 0 120px;
    margin-top: 72px; /* for fixed header */
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-main {
    aspect-ratio: 3/4;
    background: var(--bg-alt);
    margin-bottom: 12px;
    overflow: hidden;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-gallery-main:hover img {
    transform: scale(1.04);
}

.product-gallery-thumbs {
    display: flex;
    gap: 8px;
}

.product-gallery-thumb {
    width: 72px;
    height: 96px;
    background: var(--bg-alt);
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: border-color var(--transition);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    border-color: var(--text);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding-top: 20px;
}

.product-breadcrumb {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 24px;
}

.product-breadcrumb a {
    transition: color var(--transition);
}

.product-breadcrumb a:hover { color: var(--text); }
.product-breadcrumb span { margin: 0 10px; }

.product-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-tagline-single {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 24px;
}

.product-price-single {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 36px;
}

.product-option {
    margin-bottom: 32px;
}

.product-option-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-option-label .selected-value {
    font-weight: 400;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0.02em;
}

/* Color selector */
.color-options {
    display: flex;
    gap: 12px;
}

.color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.color-swatch::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transition: border-color var(--transition), transform var(--transition-fast);
}

.color-swatch.active::after,
.color-swatch:hover::after {
    border-color: var(--text);
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch[data-color="white"] {
    border-color: var(--border);
}

/* Size selector */
.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.size-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text);
    transform: translateY(101%);
    transition: transform 0.35s var(--ease-out);
    z-index: -1;
}

.size-btn:hover {
    border-color: var(--text);
}

.size-btn:hover::before {
    transform: translateY(0);
}

.size-btn:hover {
    color: var(--white);
}

.size-btn.active {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    margin-bottom: 48px;
}

.product-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
}

.product-qty button {
    width: 48px;
    height: 52px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
}

.product-qty button:hover {
    color: var(--text);
    background: var(--bg-alt);
}

.product-qty input {
    width: 48px;
    height: 52px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    background: transparent;
}

.product-qty input:focus { outline: none; }

.product-description {
    padding-top: 36px;
    border-top: 1px solid var(--border-light);
}

.product-description p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 28px;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--accent);
    transform: translateY(-50%);
}

.product-motto {
    font-family: var(--font-display);
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-top: 28px;
}

/* ============================================
   Brand Statement
   ============================================ */

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

.brand-statement p {
    font-size: 17px;
    line-height: 2.1;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 28px;
}

.brand-statement p:last-of-type {
    margin-bottom: 0;
}

.brand-statement strong {
    color: var(--text);
    font-weight: 500;
}

.brand-motto {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-top: 48px;
    font-weight: 400;
}

/* Large decorative quote marks */
.brand-statement-deco {
    font-family: var(--font-display);
    font-size: 120px;
    line-height: 0.5;
    color: var(--border);
    margin-bottom: 20px;
    display: block;
    user-select: none;
}

/* ============================================
   Marquee Banner
   ============================================ */

.marquee-section {
    background: var(--black);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    padding: 0 40px;
}

.marquee-track .accent {
    color: var(--accent);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Cart Page
   ============================================ */

.cart-page {
    padding: 40px 0 120px;
    margin-top: 72px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.cart-items { list-style: none; }

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
    transition: opacity var(--transition);
}

.cart-item-image {
    width: 100px;
    height: 130px;
    background: var(--bg-alt);
    overflow: hidden;
}

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

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cart-item-variant {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    width: fit-content;
}

.cart-item-qty button {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.cart-item-qty button:hover { color: var(--text); }

.cart-item-qty span {
    width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

.cart-item-right { text-align: right; }

.cart-item-price {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}

.cart-item-remove::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width var(--transition);
}

.cart-item-remove:hover { color: var(--red); }
.cart-item-remove:hover::after { width: 100%; }

.cart-summary {
    background: var(--bg-card);
    padding: 40px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow);
}

.cart-summary-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

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

.cart-summary-row.total {
    font-weight: 600;
    font-size: 17px;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
}

.cart-summary .btn { margin-top: 24px; }

.cart-empty {
    text-align: center;
    padding: 100px 24px;
}

.cart-empty p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 14px;
}

/* ============================================
   Checkout
   ============================================ */

.checkout-page {
    padding: 40px 0 120px;
    margin-top: 72px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

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

.form-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    font-size: 14px;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--text);
    box-shadow: 0 0 0 3px rgba(26,26,26,0.04);
}

.form-input::placeholder { color: var(--text-light); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-section-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
    margin-top: 40px;
}

.form-section-title:first-child { margin-top: 0; }

textarea.form-input {
    min-height: 100px;
    resize: vertical;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7570' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* ============================================
   About Page
   ============================================ */

.about-hero {
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 72px;
}

.about-hero h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-content {
    max-width: 640px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.about-content p {
    font-size: 15px;
    line-height: 2.1;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 28px;
}

.about-content h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 56px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 48px;
}

.about-value {
    padding: 28px;
    border: 1px solid var(--border-light);
    transition: border-color var(--transition), transform var(--transition);
}

.about-value:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.about-value h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-value p {
    font-size: 13px;
    margin-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 28px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
}

.footer-heading {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.35);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition), transform var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: rgba(255,255,255,0.35);
    transition: color var(--transition), transform var(--transition);
}

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

/* ============================================
   Flash Messages
   ============================================ */

.flash {
    padding: 16px 24px;
    font-size: 13px;
    border-left: 3px solid;
    margin-bottom: 24px;
    animation: flashIn 0.4s var(--ease-out);
}

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

.flash-success {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
}

.flash-error {
    background: #fef0ee;
    border-color: var(--red);
    color: var(--red);
}

/* ============================================
   Reveal Animations — multiple variants
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

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

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

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

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

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Text line reveal */
.text-reveal {
    overflow: hidden;
}

.text-reveal-inner {
    display: block;
    transform: translateY(105%);
    transition: transform 0.7s var(--ease-out);
}

.text-reveal.visible .text-reveal-inner {
    transform: translateY(0);
}

/* ============================================
   Scroll Progress Bar
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    z-index: 999;
    transition: width 0.1s linear;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .product-layout { gap: 48px; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
}

@media (max-width: 768px) {
    .nav-main { display: none; }
    .menu-toggle { display: block; }
    .announcement-bar { font-size: 9px; letter-spacing: 0.15em; }

    .site-header { transform: translateY(32px); }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-card-info { padding: 16px 4px; }
    .product-card-name { font-size: 11px; }
    .product-card-price { font-size: 14px; }
    .product-card-tagline { display: none; }
    .product-card-overlay { display: none; }

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

    .product-gallery { position: static; }
    .product-page { margin-top: 60px; }

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

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

    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }

    .hero { min-height: 100vh; }

    .cart-page, .checkout-page { margin-top: 60px; }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }

    .cart-item-right {
        grid-column: 2;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .form-row { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .about-hero { margin-top: 60px; padding-top: 80px; }

    .brand-statement-deco { font-size: 80px; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .header-inner { height: 60px; padding: 0 16px; }
    .logo { font-size: 15px; letter-spacing: 0.2em; }
    .hero-brand { letter-spacing: 0.12em; }
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }
}

/* ============================================
   Utility
   ============================================ */

.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.pt-0 { padding-top: 0; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
