
:root {
  --primary: #ff6a00;
  --accent: #00c2a8;
  --accent2: #ffd400;
  --dark: #0f172a;
  --light-bg: #ffffff;
  --muted-bg: #f8fafc;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--dark); background: var(--light-bg); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.header { position: sticky; top:0; z-index:999; backdrop-filter: blur(6px); background: rgba(255,255,255,.8); border-bottom: 1px solid #eef2f7; }
.topbar { display:flex; align-items:center; justify-content: space-between; padding: 10px 0; font-size:14px; }
.topbar .cta { background: var(--primary); color:#fff; padding: 6px 10px; border-radius: 999px; box-shadow: var(--shadow); }
.nav { display:flex; gap: 18px; align-items:center; padding: 12px 0; overflow-x:auto; }
.nav a { padding: 8px 12px; border-radius: 10px; white-space: nowrap; }
.nav a:hover { background: var(--muted-bg); }
.logo { font-weight: 800; letter-spacing: -0.02em; font-size: 22px; color: var(--dark); }
.hero { position: relative; }
.hero .slide { display:none; }
.hero .slide.active { display:block; }
.hero .slide img { width:100%; border-radius: 28px; box-shadow: var(--shadow); }
.badges { display:flex; gap:12px; margin-top:12px; flex-wrap: wrap; }
.badge { font-size:12px; padding:6px 10px; border-radius:999px; background: var(--muted-bg); }
.grid { display:grid; gap:18px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } .grid.cols-3 { grid-template-columns: repeat(1, 1fr); } }
.card { background:#fff; border-radius: 22px; padding: 18px; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,.12); }
.product-card img { width:100%; height:220px; object-fit:cover; border-radius:16px; background:var(--muted-bg); }
.price { font-weight: 800; font-size: 20px; }
.btn { display:inline-flex; align-items:center; gap:8px; border:0; border-radius:12px; padding: 10px 14px; background: var(--dark); color:#fff; cursor:pointer; transition: transform .1s ease, opacity .2s ease; }
.btn.primary { background: var(--primary); }
.btn.accent { background: var(--accent); }
.btn:hover { opacity:.92; transform: translateY(-1px); }
.section { padding: 26px 0 32px; }
.section h2 { margin:0 0 12px; font-size: 28px; }
.footer { background: var(--muted-bg); margin-top:40px; }
.footer .cols { display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
@media (max-width: 900px) { .footer .cols { grid-template-columns: repeat(2,1fr); } }
.footer a { color: inherit; }
.small { font-size: 13px; opacity:.75; }
.kicker { font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--primary); }
.marquee { overflow:hidden; position: relative; background:linear-gradient(90deg, var(--muted-bg), #fff); border-radius: 14px; box-shadow: var(--shadow); }
.marquee-line { display:flex; gap:48px; padding:12px 0; animation: scroll 24s linear infinite; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.carousel { position: relative; }
.carousel-track { display:flex; gap:16px; overflow:auto; scroll-snap-type:x mandatory; padding-bottom:6px; }
.carousel-item { min-width:260px; scroll-snap-align:start; }
.icon { width:20px; height:20px; display:inline-block; background: var(--accent); mask: var(--mask); -webkit-mask: var(--mask); }
.toast { position: fixed; right: 16px; bottom: 16px; background: #111; color:#fff; padding: 12px 14px; border-radius: 12px; box-shadow: var(--shadow); display:none; }
.sticky-cta { position: fixed; left: 50%; transform: translateX(-50%); bottom: 0; width: 100%; max-width: 1160px; display:flex; justify-content:center; pointer-events:none; }
.sticky-cta .inner { pointer-events:auto; background: #fff; border:1px solid #eef2f7; border-bottom: none; padding:10px 12px; margin: 0 10px; border-radius: 14px 14px 0 0; box-shadow: var(--shadow); display:flex; gap:12px; align-items:center; }
.cookiebar { position: fixed; left:12px; right:12px; bottom:12px; background:#fff; border:1px solid #e5e7eb; border-radius: 12px; padding: 14px; box-shadow: var(--shadow); display:none; }
.label { display:inline-block; padding: 4px 8px; border-radius: 999px; background: var(--accent2); font-size: 12px; }
.table { width:100%; border-collapse: collapse; }
.table th, .table td { border-bottom:1px solid #eef2f7; padding:10px; text-align:left; }
.hr { height:1px; background:#eef2f7; margin: 16px 0; }
.breadcrumbs { font-size:14px; opacity:.8; margin-bottom: 10px; }
.hero-title { font-size: 40px; line-height: 1.1; margin:10px 0; }
.subtitle { color:#475569; }
input, select, textarea { width:100%; padding: 10px 12px; border-radius: 12px; border:1px solid #e5e7eb; background:#fff; }
.form-row { display:grid; gap:12px; grid-template-columns: repeat(2,1fr); }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
label { display:block; font-size: 14px; margin: 6px 0; }
.alert { background:#fff7ed; border:1px solid #fed7aa; padding: 10px 12px; border-radius: 12px; }
.success { background:#ecfdf5; border:1px solid #86efac; }
.warning { background:#fff1f2; border:1px solid #fecdd3; }
