/* ═══════════════════════════════════════════════════════════
   SOUND & PRECISION — WEBSHOP STYLES
   soundandprecision.nl
   ═══════════════════════════════════════════════════════════ */

:root {
    --navy: #1B2A4A;
    --navy-deep: #0F1A2E;
    --navy-rich: #162240;
    --gold: #C9A84C;
    --gold-soft: #D4BC6E;
    --gold-muted: #A8935A;
    --cream: #F7F4EF;
    --cream-dark: #EDE8E0;
    --warm-white: #FDFCFA;
    --warm-black: #1A1A18;
    --text-primary: #2C2C2A;
    --text-secondary: #6B6B67;
    --text-tertiary: #9B9B96;
    --border-light: rgba(27, 42, 74, 0.06);
    --border-med: rgba(27, 42, 74, 0.12);
    --success: #2E7D5B;
    --error: #C0392B;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--navy-deep); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Typography ─── */
.serif { font-family: 'Playfair Display', Georgia, serif; }
.elegant { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.label {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-muted);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--navy);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 26, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    color: var(--warm-white);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--warm-white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Cart icon */
.nav-cart {
    position: relative;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    padding: 0;
}

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

.nav-cart svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

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

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

/* Language toggle */
.lang-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.6rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.lang-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 26px;
    height: 18px;
    position: relative;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--warm-white);
    transition: 0.3s;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; }
.nav-toggle span:nth-child(3) { top: 100%; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: none;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    gap: 0.6rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-primary:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-dark {
    background: var(--navy);
    color: var(--warm-white);
}

.btn-dark:hover {
    background: var(--navy-rich);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 42, 74, 0.3);
}

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

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

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
    color: var(--warm-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-full { width: 100%; }
.btn-lg { padding: 1.15rem 3rem; font-size: 0.72rem; }

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--navy-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold-muted));
}

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

.hero-overtitle {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    color: var(--warm-white);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 0.3em;
}

.hero h1 .amp {
    font-style: italic;
    color: var(--gold);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gold-soft);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 3rem;
}

.hero-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2.5rem;
}

.hero-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-bottom {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-bottom p {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.4), transparent);
    margin: 0.8rem auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ═══════════════════════════════════════
   PRODUCT CARDS / GRID
   ═══════════════════════════════════════ */
.products-section {
    padding: 6rem 0;
    background: var(--cream);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--warm-white);
    border: 1px solid var(--border-light);
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--border-med);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-card-image {
    aspect-ratio: 1;
    background: linear-gradient(145deg, var(--navy-deep), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
}

.product-card-visual {
    text-align: center;
}

.product-card-visual .circle {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.product-card-visual .circle span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 500;
}

.product-card-visual p {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.product-card-body {
    padding: 1.75rem;
}

.product-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.product-card-sub {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 300;
    margin-bottom: 1.25rem;
}

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

.product-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--navy);
    font-weight: 600;
}

.product-card-price small {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: var(--text-tertiary);
    font-weight: 300;
    display: block;
    margin-top: 0.15rem;
}

.btn-add-cart {
    background: var(--navy);
    color: var(--warm-white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-add-cart:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-add-cart.added {
    background: var(--success);
    color: white;
}

/* ═══════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════ */
.product-detail {
    padding-top: 72px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 72px);
}

.product-detail-image {
    background: linear-gradient(160deg, var(--navy-deep), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
}

.product-detail-info {
    padding: 4rem 4rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-detail-info .label { margin-bottom: 1rem; }

.product-detail-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.product-detail-info .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.product-detail-info .description {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.4rem;
}

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

.product-detail-price .num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1;
}

.product-detail-price .dec {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
}

.product-vat {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Quantity selector */
.quantity-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-med);
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.quantity-selector button:hover { color: var(--navy); }

.quantity-selector input {
    width: 48px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 500;
    outline: none;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-inner-spin-button { -webkit-appearance: none; }

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.product-actions .btn { flex: 1; }

/* Includes list */
.product-includes {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.product-includes h3 {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-muted);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.product-includes ul {
    list-style: none;
}

.product-includes li {
    padding: 0.65rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.product-includes li:last-child { border-bottom: none; }

.product-includes .dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    flex-shrink: 0;
}

.product-includes .item-detail {
    margin-left: auto;
    color: var(--text-tertiary);
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════ */
.page-header {
    padding: 8rem 0 3rem;
    text-align: center;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy);
    font-weight: 500;
}

.cart-page {
    padding: 3rem 0 6rem;
    min-height: 60vh;
}

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

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

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, var(--navy-deep), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image span {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 0.8rem;
}

.cart-item-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.cart-item-info p {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    font-weight: 300;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-med);
    background: none;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

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

.cart-item-qty span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    min-width: 24px;
    text-align: center;
}

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

.cart-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-tertiary);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    transition: color 0.2s;
    padding: 0;
}

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

/* Cart summary */
.cart-summary {
    background: var(--cream);
    padding: 2.5rem;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

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

.cart-summary-row.label-row {
    color: var(--text-secondary);
    font-weight: 300;
}

.cart-summary-row.total {
    padding-top: 1rem;
    margin-top: 0.75rem;
    border-top: 1px solid var(--border-med);
    font-weight: 500;
    color: var(--navy);
    font-size: 1rem;
}

.cart-summary-row.total span:last-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.cart-summary .btn {
    width: 100%;
    margin-top: 1.5rem;
}

.cart-summary .shipping-note {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: 0.75rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.cart-empty p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-tertiary);
    font-style: italic;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════ */
.checkout-page {
    padding: 3rem 0 6rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.checkout-section {
    margin-bottom: 2.5rem;
}

.checkout-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-med);
    background: var(--warm-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
}

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

.form-group .error-msg {
    font-size: 0.72rem;
    color: var(--error);
    margin-top: 0.3rem;
    display: none;
}

.form-group.has-error input {
    border-color: var(--error);
}

.form-group.has-error .error-msg {
    display: block;
}

/* Checkout summary sidebar */
.checkout-summary {
    background: var(--cream);
    padding: 2.5rem;
    position: sticky;
    top: 100px;
}

.checkout-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.checkout-items { list-style: none; margin-bottom: 1.5rem; }

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}

.checkout-item-name {
    color: var(--text-primary);
    font-weight: 400;
}

.checkout-item-name small {
    color: var(--text-tertiary);
    font-weight: 300;
}

.checkout-item-price { color: var(--navy); font-weight: 500; }

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

.payment-methods p {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.payment-icon {
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border-light);
    font-size: 0.7rem;
    color: var(--text-secondary);
    background: var(--warm-white);
}

/* ═══════════════════════════════════════
   LEGAL / CONTENT PAGES
   ═══════════════════════════════════════ */
.content-page {
    padding: 3rem 0 6rem;
}

.content-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    font-weight: 500;
    margin: 2.5rem 0 1rem;
}

.content-page h3 {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 500;
    margin: 2rem 0 0.75rem;
}

.content-page p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1rem;
}

.content-page ul {
    margin: 0.5rem 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 2;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
    background: var(--navy-deep);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--warm-white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
    line-height: 1.8;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-muted);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

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

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

.footer-col a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--warm-white); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.footer-bottom .origin {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

/* ═══════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show { display: block; }

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-inner p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.6;
}

.cookie-inner a {
    color: var(--gold-muted);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   NOTIFICATION TOAST
   ═══════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--navy);
    color: var(--warm-white);
    padding: 1rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 400;
    z-index: 10000;
    transform: translateY(120%);
    transition: transform 0.5s var(--ease);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.toast.show { transform: translateY(0); }

.toast .gold { color: var(--gold); }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-detail-image { position: relative; top: auto; height: 50vh; }
    .product-detail-info { padding: 3rem 2rem; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-inner { padding: 0 1.5rem; }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(15, 26, 46, 0.98);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }

    .form-row { grid-template-columns: 1fr; }
    .product-actions { flex-direction: column; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .cookie-inner { flex-direction: column; text-align: center; }

    .cart-item { grid-template-columns: 60px 1fr; gap: 1rem; }
    .cart-item-right { grid-column: 2; text-align: left; }
}
</style>
