@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --zylux-navy: #0B1221;
    --zylux-navy-soft: #151D30;
    --zylux-navy-deep: #070C16;
    --zylux-gold: #D4AF37;
    --zylux-gold-light: #F5D17E;
    --zylux-gold-border: rgba(212, 175, 55, 0.2);
    --zylux-beige: #F5F5DC;
    --zylux-beige-muted: rgba(245, 245, 220, 0.74);
    --zylux-panel: rgba(21, 29, 48, 0.68);
    --zylux-panel-strong: rgba(11, 18, 33, 0.9);
    --zylux-cta: linear-gradient(90deg, #D4AF37 0%, #F5D17E 100%);
    --zylux-glow: 0 0 40px -8px rgba(212, 175, 55, 0.6);
    --zylux-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif !important;
    color: var(--zylux-beige) !important;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 28%),
        linear-gradient(180deg, #0B1221 0%, #11192d 48%, #0B1221 100%) !important;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 18%, transparent 82%, rgba(212, 175, 55, 0.04)),
        radial-gradient(circle at 20% 10%, rgba(245, 209, 126, 0.08), transparent 16%);
    opacity: 0.9;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6,
.font-headline,
.font-heading,
.font-\[\'Space_Grotesk\'\],
[class*="font-headline"],
[class*="font-heading"] {
    font-family: 'Playfair Display', Georgia, serif !important;
    letter-spacing: -0.02em;
}

p, li, a, span, input, textarea, select, button, label {
    font-family: 'Inter', system-ui, sans-serif;
}

.ph {
    font-weight: 300;
}

.glass-panel,
.glass,
.bg-navy-light,
.bg-navy,
.bg-navy-dark,
.product-card,
.card-premium,
form,
header + div,
main section > div > div[class*="rounded"],
main .rounded-xl,
main .rounded-2xl,
main .rounded-3xl {
    box-shadow: var(--zylux-shadow);
}

.glass-panel,
.glass {
    background: linear-gradient(135deg, rgba(21, 29, 48, 0.78), rgba(11, 18, 33, 0.58));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

header {
    background: rgba(11, 18, 33, 0.72) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(245, 245, 220, 0.12) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

header a,
header button,
nav a {
    color: var(--zylux-beige);
}

header a:hover,
nav a:hover,
footer a:hover {
    color: var(--zylux-gold) !important;
}

a[href*="index.html"].text-2xl,
a[href*="index.html"].text-3xl,
header a[class*="uppercase"] {
    color: var(--zylux-gold) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.glow-button,
.gold-btn,
.btn-premium,
button[type="submit"],
a[class*="glow-button"] {
    background: var(--zylux-cta) !important;
    color: var(--zylux-navy) !important;
    border: 1px solid rgba(245, 209, 126, 0.35) !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.24);
}

.glow-button:hover,
.gold-btn:hover,
.btn-premium:hover,
button[type="submit"]:hover,
a[class*="glow-button"]:hover {
    box-shadow: var(--zylux-glow), 0 18px 40px rgba(212, 175, 55, 0.22) !important;
    transform: translateY(-2px);
    filter: saturate(1.04);
}

.whatsapp-btn {
    background: #25D366 !important;
    color: #fff !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background: #20bd5a !important;
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.product-card,
[data-category],
.variant-pill,
.filter-btn,
.bg-navy-light.border,
.bg-navy.border,
.bg-navy-light.border-2,
.bg-navy.border-2 {
    border: 1px solid var(--zylux-gold-border) !important;
}

.product-card,
[data-category] {
    background: linear-gradient(180deg, rgba(21, 29, 48, 0.88), rgba(11, 18, 33, 0.98)) !important;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover,
[data-category]:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.38) !important;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.12), 0 0 0 1px rgba(245, 209, 126, 0.08);
}

img {
    image-rendering: auto;
}

img[src*="assets/images"] {
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.text-primary,
.text-gradient-gold {
    color: var(--zylux-gold) !important;
}

.text-on-surface,
.text-on-background,
.text-white {
    color: var(--zylux-beige) !important;
}

.text-on-surface-variant,
.text-gray-300,
.text-gray-400,
.text-gray-500 {
    color: var(--zylux-beige-muted) !important;
}

.text-glow {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.45), 0 2px 10px rgba(0, 0, 0, 0.35);
}

.border-primary,
.border-primary\/20,
.border-primary\/30,
.border-primary\/10 {
    border-color: var(--zylux-gold-border) !important;
}

.bg-primary,
.bg-primary\/20 {
    background-color: rgba(212, 175, 55, 0.16) !important;
}

input,
textarea,
select {
    background: rgba(8, 14, 27, 0.85) !important;
    color: var(--zylux-beige) !important;
    border: 1px solid rgba(245, 245, 220, 0.15) !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(245, 245, 220, 0.42) !important;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
}

footer {
    background: rgba(7, 12, 22, 0.94) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.16) !important;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

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

.marquee-animation {
    animation: marquee 30s linear infinite;
}

@media (max-width: 1024px) {
    header {
        padding-inline: 1rem !important;
    }

    h1 {
        line-height: 1.02;
    }
}
