 {} *{} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --red: #C8102E; --gold: #FFB81C; --blue: #004687; --teal: #00A9CE; --dark: #0f0f0f; --muted: #666; --light: #f8f6f1; --border: #e5e1d8; --white: #ffffff; --font: 'Outfit', system-ui, sans-serif; } body { font-family: var(--font); background: var(--white); color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; } /* ── HERO ── */ .hero { background: var(--dark); padding: 80px 40px 72px; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; } .hero-glow-red { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: var(--red); opacity: 0.09; top: -200px; left: -100px; filter: blur(70px); pointer-events: none; } .hero-glow-gold { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--gold); opacity: 0.07; bottom: -100px; right: 5%; filter: blur(70px); pointer-events: none; } .hero-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; } .hero-eyebrow { display: inline-block; background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 16px; margin-bottom: 24px; transform: rotate(-0.8deg); } .hero h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.03em; color: var(--white); margin-bottom: 20px; } .hero h1 .gold { color: var(--gold); font-style: italic; } .hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 300; color: rgba(255,255,255,0.5); max-width: 520px; line-height: 1.75; margin-bottom: 32px; } .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; } /* ── TICKER ── */ .ticker-wrap { background: var(--gold); border-top: 3px solid var(--dark); border-bottom: 3px solid var(--dark); overflow: hidden; padding: 12px 0; } .ticker-track { display: flex; animation: ticker 22s linear infinite; width: max-content; } .ticker-track .item { font-size: 0.875rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark); padding: 0 22px; white-space: nowrap; } .ticker-track .sep { color: var(--red); } @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } } /* ── WAVE ── */ .wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; } .wave-divider svg { display: block; width: 100%; } /* ── SHARED ── */ .section { padding: 80px 40px; max-width: 1120px; margin: 0 auto; } .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; transform: rotate(-0.8deg); } .eyebrow::before { content: ''; width: 22px; height: 3px; background: var(--gold); border-radius: 2px; flex-shrink: 0; } .eyebrow.light { color: rgba(255,255,255,0.6); } .eyebrow.light::before { background: rgba(255,255,255,0.35); } .s-headline { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; color: var(--dark); margin-bottom: 6px; position: relative; display: inline-block; } .s-headline.underline::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 55%; height: 5px; background: var(--gold); border-radius: 3px; transform: rotate(-0.5deg); opacity: 0.85; } /* ── PRODUCTS SECTION ── */ .products-section { background: var(--white); } /* Loading state */ .products-loading { text-align: center; padding: 80px 24px; } .loading-spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--red); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 16px; } @keyframes spin { to { transform: rotate(360deg); } } .loading-text { font-size: 0.9rem; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; } /* Error state */ .products-error { display: none; text-align: center; padding: 60px 24px; background: var(--light); border: 2px solid var(--border); } .products-error p { font-size: 1rem; color: var(--muted); margin-bottom: 20px; } /* Products grid */ .products-grid { display: none; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; margin-top: 52px; } .products-grid.loaded { display: grid; } .product-card { border: 2px solid var(--border); background: var(--white); transition: border-color 0.2s, transform 0.2s; position: relative; overflow: hidden; } .product-card:hover { border-color: var(--gold); transform: translateY(-4px); } .product-card:nth-child(3n+1) { border-top: 5px solid var(--red); } .product-card:nth-child(3n+2) { border-top: 5px solid var(--gold); } .product-card:nth-child(3n+3) { border-top: 5px solid var(--teal); } .product-img-wrap { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: var(--light); position: relative; } .product-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; } .product-card:hover .product-img-wrap img { transform: scale(1.05); } /* Placeholder for missing images */ .product-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--light); font-size: 3rem; font-weight: 900; font-style: italic; color: var(--gold); opacity: 0.4; } .product-info { padding: 20px 20px 22px; } .product-name { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; color: var(--dark); margin-bottom: 6px; line-height: 1.3; } .product-price { font-size: 1.1rem; font-weight: 700; color: var(--red); margin-bottom: 16px; letter-spacing: -0.01em; } .product-price.no-price { font-size: 0.8rem; font-weight: 500; color: var(--muted); font-style: italic; } /* ── BUTTONS ── */ .btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font); font-size: 0.875rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; padding: 13px 24px; transition: transform 0.15s, box-shadow 0.15s; cursor: pointer; border: none; white-space: nowrap; } .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); } .btn:active { transform: translateY(0); box-shadow: none; } .btn-gold { background: var(--gold); color: var(--dark); } .btn-red { background: var(--red); color: var(--white); } .btn-dark { background: var(--dark); color: var(--white); } .btn-white { background: var(--white); color: var(--dark); } .btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); } .btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); } .btn-full { width: 100%; justify-content: center; } /* ── FINAL CTA ── */ .final-cta { background: var(--red); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; } .final-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); } .final-cta::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(0,0,0,0.08); bottom: -150px; right: -80px; pointer-events: none; } .final-cta-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; } .final-tag { display: inline-block; background: rgba(255,255,255,0.15); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 16px; margin-bottom: 22px; transform: rotate(-0.5deg); } .final-cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; letter-spacing: -0.03em; color: var(--white); line-height: 1.05; margin-bottom: 14px; } .final-cta h2 em { font-style: italic; color: var(--gold); } .final-cta p { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 32px; } .final-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; } /* ── FOOTER ── */ .footer { background: #0a0a0a; padding: 48px 40px 28px; } .footer-inner { max-width: 1120px; margin: 0 auto; } .footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); } .footer-logo { font-size: 1.8rem; font-weight: 900; font-style: italic; color: var(--gold); letter-spacing: -0.03em; } .footer-tagline { font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.3); margin-top: 6px; } .footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; max-width: 520px; } .footer-links a { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.15s; } .footer-links a:hover { color: var(--gold); } .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.18); text-align: center; line-height: 1.8; } /* ── RESPONSIVE ── */ @media (max-width: 860px) { .hero, .section, .final-cta, .footer { padding-left: 24px; padding-right: 24px; } .footer-top { flex-direction: column; } .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } } @media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }
