/* Modern Design - CSS Variables */
:root {
    --color-primary: #1a5f2a;
    --color-primary-light: #2d8a3e;
    --color-primary-dark: #144a21;
    --color-accent: #d4af37;
    --color-accent-light: #e9c558;
    --color-accent-dark: #a8862a;
    --color-accent-soft: rgba(212, 175, 55, 0.12);
    --color-bg: #fafbfc;
    --color-surface: #ffffff;
    --color-surface-elevated: #ffffff;
    --color-text: #111827;
    --color-text-secondary: #4b5563;
    --color-text-muted: #9ca3af;
    --color-border: #e5e7eb;
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.1;
    margin: 0 0 1rem;
    font-weight: 400;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

p {
    margin: 0 0 1rem;
}

.overline {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.highlight {
    color: var(--color-primary);
    font-style: italic;
}

.highlight-gold {
    color: var(--color-accent-dark);
    font-style: italic;
    position: relative;
    display: inline-block;
    background: linear-gradient(180deg, transparent 65%, var(--color-accent-soft) 65%, var(--color-accent-soft) 95%, transparent 95%);
    padding: 0 0.15em;
}

.section-intro {
    max-width: 720px;
    margin: 1.5rem auto 0;
    color: var(--color-text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:disabled,
.btn[aria-disabled="true"] {
    background: var(--color-text-muted);
    color: white;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

.product-soon {
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-style: italic;
}

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

.btn-ghost:hover {
    background: var(--color-surface);
    border-color: var(--color-text-muted);
}

.btn-nav {
    background: var(--color-text);
    color: white;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-nav:hover {
    background: var(--color-primary);
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text);
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-balustre {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, #f0f7f1 0%, var(--color-bg) 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-display);
    line-height: 1;
}

.stat:nth-child(1) .stat-number { color: var(--color-accent-dark); }

.stat-currency {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-left: 0.1em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.35rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.balustre-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balustre-main {
    width: 200px;
    height: 600px;
    filter: drop-shadow(0 40px 80px rgba(168, 134, 42, 0.35));
    animation: float 6s ease-in-out infinite;
}

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

.showcase-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.ring-2 {
    width: 400px;
    height: 400px;
    animation-delay: 1s;
}

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

.hero-bridge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
}

.hero-bridge svg {
    width: 100%;
    height: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    display: inline-block;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent-light));
    margin: 0.85rem auto 0;
    border-radius: 2px;
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background: var(--color-surface);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.mission-card {
    padding: 2.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.mission-card h3 {
    margin-bottom: 0.75rem;
}

.mission-card p {
    color: var(--color-text-secondary);
    margin: 0;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--color-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.products-grid.single {
    grid-template-columns: 1fr;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 820px) {
    .products-grid.single .product-card {
        display: grid;
        grid-template-columns: 5fr 6fr;
    }
    .products-grid.single .product-visual {
        min-height: 100%;
    }
    .products-grid.single .product-content {
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card.featured {
    border: 2px solid var(--color-accent);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.18);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-accent);
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.product-badge.secondary {
    background: var(--color-primary);
    color: white;
}

.product-visual {
    padding: 3rem;
    background:
        radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.18), transparent 60%),
        linear-gradient(135deg, #fbf7eb 0%, #f3ecd6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-balustre {
    width: 100px;
    height: 300px;
    filter: drop-shadow(0 22px 38px rgba(168, 134, 42, 0.35));
    transition: var(--transition);
}

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

.product-balustre.customized {
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.3)); }
    50% { filter: drop-shadow(0 20px 40px rgba(236, 72, 153, 0.3)); }
}

.product-content {
    padding: 2rem;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.product-header h3 {
    margin: 0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    margin: 0;
    font-family: var(--font-display);
    line-height: 1;
}

.price span {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-accent-dark);
    margin-left: 0.15em;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    gap: 0.5rem;
}

.product-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.product-description {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.product-meta {
    margin-bottom: 1.5rem;
}

.stock {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
}

.stock-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* History Timeline */
.history {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.10), transparent 55%),
        var(--color-surface);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 960px;
    margin: 4rem auto 2rem;
    padding: 1rem 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
        transparent 0%,
        var(--color-accent) 4%,
        var(--color-accent) 96%,
        transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem 3rem 2.5rem 0;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding: 1rem 0 2.5rem 3rem;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 1.6rem;
    width: 18px;
    height: 18px;
    background: var(--color-accent);
    border: 4px solid var(--color-surface);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--color-accent), 0 0 20px rgba(212, 175, 55, 0.5);
    z-index: 2;
}

.timeline-item:nth-child(odd)::before {
    right: -11px;
}

.timeline-item:nth-child(even)::before {
    left: -11px;
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.625rem;
    color: var(--color-accent-dark);
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.timeline-body {
    background: var(--color-bg);
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
}

.timeline-body::before {
    content: '';
    position: absolute;
    top: 1.4rem;
    width: 14px;
    height: 14px;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-body::before {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-body::before {
    left: -8px;
    transform: rotate(-135deg);
}

.timeline-item:hover .timeline-body {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.timeline-body h3 {
    margin: 0 0 0.5rem;
    color: var(--color-text);
}

.timeline-body p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.timeline-tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-text);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.timeline-item.highlighted .timeline-body {
    background: linear-gradient(135deg, #fdf8e7 0%, #faf1d3 100%);
    border-color: var(--color-accent);
    border-width: 2px;
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.25);
}

.timeline-item.highlighted .timeline-body::before {
    background: #fdf8e7;
    border-color: var(--color-accent);
}

.timeline-item.highlighted::before {
    width: 22px;
    height: 22px;
    box-shadow: 0 0 0 3px var(--color-accent), 0 0 30px rgba(212, 175, 55, 0.7);
}

.timeline-item.highlighted:nth-child(odd)::before { right: -13px; }
.timeline-item.highlighted:nth-child(even)::before { left: -13px; }

.history-credit {
    max-width: 720px;
    margin: 3rem auto 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-style: italic;
    padding-top: 2rem;
    border-top: 1px dashed var(--color-border);
}

@media (max-width: 768px) {
    .timeline {
        margin-top: 2rem;
    }
    .timeline::before {
        left: 18px;
        transform: none;
    }
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding: 0.5rem 0 2rem 3rem;
        text-align: left;
    }
    .timeline-item::before,
    .timeline-item:nth-child(odd)::before,
    .timeline-item:nth-child(even)::before {
        left: 9px;
        right: auto;
    }
    .timeline-item.highlighted:nth-child(odd)::before,
    .timeline-item.highlighted:nth-child(even)::before {
        left: 7px;
    }
    .timeline-item:nth-child(odd) .timeline-body::before,
    .timeline-item:nth-child(even) .timeline-body::before {
        left: -8px;
        right: auto;
        transform: rotate(-135deg);
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.badge-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

/* Gallery */
.gallery {
    padding: 6rem 0;
    background: var(--color-surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.large img {
    min-height: 100%;
}

.gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, #e8f4ea 0%, #d4e8d7 100%);
}

.bridge-mini {
    width: 80%;
    opacity: 0.5;
}

/* Logistics */
.logistics {
    padding: 6rem 0;
    background: var(--color-bg);
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.logistics-card {
    padding: 2.5rem;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    position: relative;
}

.logistics-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-display);
}

.logistics-card h3 {
    margin-bottom: 0.5rem;
}

.logistics-highlight {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.logistics-card p:last-child {
    color: var(--color-text-secondary);
    margin: 0;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--color-text);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-balustre {
    opacity: 0.5;
}

.footer-brand p {
    margin: 0;
    font-weight: 500;
}

.footer-collab {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin: 0;
}

.footer-bridge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
}

.footer-bridge svg {
    width: 100%;
    height: 100%;
}

/* Background decorations */
.bg-balustres {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.balustre-bg {
    position: absolute;
    opacity: 0.03;
    fill: var(--color-primary);
}

.balustre-1 {
    width: 100px;
    top: 20%;
    left: 5%;
    transform: rotate(-10deg);
}

.balustre-2 {
    width: 80px;
    top: 50%;
    right: 8%;
    transform: rotate(15deg);
}

.balustre-3 {
    width: 60px;
    bottom: 20%;
    left: 15%;
    transform: rotate(-5deg);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .mission-grid,
    .mission-grid-2,
    .logistics-grid {
        grid-template-columns: 1fr;
    }

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

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

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .btn-nav {
        display: none;
    }

    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mission,
    .products,
    .gallery,
    .logistics {
        padding: 4rem 0;
    }

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

    .product-visual {
        padding: 2rem;
        min-height: 250px;
    }

    .product-balustre {
        width: 80px;
        height: 240px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: #0f172a;
        --color-surface: #1e293b;
        --color-surface-elevated: #334155;
        --color-text: #f1f5f9;
        --color-text-secondary: #94a3b8;
        --color-text-muted: #64748b;
        --color-border: #334155;
    }

    .header {
        background: rgba(15, 23, 42, 0.9);
    }

    .hero {
        background: linear-gradient(180deg, #1e293b 0%, var(--color-bg) 100%);
    }

    .product-visual {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    }

    .gallery-placeholder {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    }
}
