:root {
  --bg: #1d120f;
  --panel: rgba(255,255,255,0.08);
  --panel-2: rgba(255,255,255,0.12);
  --text: #fff8f2;
  --muted: #d7c6be;
  --accent: #e0b067;
  --accent-2: #7a4c33;
  --success: #59c18f;
  --danger: #ff7f7f;
  --shadow: 0 18px 50px rgba(0,0,0,0.25);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(224,176,103,.20), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(166,93,45,.25), transparent 25%),
    linear-gradient(180deg, #2b1712 0%, #1c110f 45%, #120b09 100%);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(18,11,9,.75); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: flex; gap: 12px; align-items: center; font-weight: 700; font-size: 1.1rem; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 14px; background: linear-gradient(135deg, #60381f, #e0b067); box-shadow: var(--shadow); }
.nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 12px 20px; font-weight: 600; border: 1px solid transparent; transition: .25s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #e0b067, #a86937); color: #24150f; }
.btn-outline { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04); }
.btn-sm { padding: 10px 16px; }
.hero { padding: 80px 0 36px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: center; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; margin-bottom: 12px; }
.hero h1, .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1; margin: 0 0 16px; }
.hero p { color: var(--muted); font-size: 1.06rem; max-width: 640px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-card, .card, .admin-card { background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); border-radius: var(--radius); }
.hero-card { padding: 18px; position: relative; min-height: 420px; }
.floating-cake { width: 100%; height: 100%; border-radius: 24px; background: radial-gradient(circle at 50% 30%, #fff8e9 0%, #d8a97f 22%, #6e3821 56%, #43231a 100%); position: relative; overflow: hidden; }
.floating-cake::before, .floating-cake::after { content: ''; position: absolute; border-radius: 999px; filter: blur(6px); opacity: .65; animation: float 6s ease-in-out infinite; }
.floating-cake::before { width: 130px; height: 130px; background: rgba(255,224,170,.45); top: 24px; left: 40px; }
.floating-cake::after { width: 160px; height: 160px; background: rgba(255,255,255,.18); bottom: 40px; right: 24px; animation-delay: 1.2s; }
.badge { position: absolute; background: rgba(255,248,242,.92); color: #2e1a12; padding: 12px 14px; border-radius: 16px; box-shadow: var(--shadow); font-weight: 700; }
.badge.one { top: 18px; right: 18px; }
.badge.two { left: 18px; bottom: 18px; }
.section { padding: 54px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 20px; }
.card h3 { margin-top: 0; }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.4rem; border-radius: 16px; background: rgba(224,176,103,.18); margin-bottom: 14px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { overflow: hidden; }
.product-thumb { height: 220px; border-radius: 18px; background: linear-gradient(135deg, #f0d9c7, #a45b31 70%, #5e2a1d); margin-bottom: 16px; position: relative; }
.product-thumb::after { content: ''; position: absolute; inset: 18px; border-radius: 18px; border: 1px solid rgba(255,255,255,.25); }
.price { color: var(--accent); font-weight: 700; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.input, select, textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06); color: var(--text); outline: none;
}
textarea { min-height: 110px; resize: vertical; }
label { display: block; margin-bottom: 8px; font-weight: 600; }
.notice, .alert { padding: 14px 16px; border-radius: 16px; margin-bottom: 16px; }
.notice { background: rgba(89,193,143,.16); border: 1px solid rgba(89,193,143,.28); }
.alert { background: rgba(255,127,127,.14); border: 1px solid rgba(255,127,127,.22); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kpi { padding: 18px; border-radius: 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.kpi strong { display: block; font-size: 1.8rem; margin-top: 10px; }
.site-footer { padding: 46px 0 64px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.admin-shell { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.sidebar { padding: 22px; background: rgba(0,0,0,.18); border-right: 1px solid rgba(255,255,255,.08); }
.sidebar a { display: block; padding: 12px 14px; margin-bottom: 8px; border-radius: 14px; }
.sidebar a:hover, .sidebar a.active { background: rgba(255,255,255,.08); }
.admin-main { padding: 28px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 22px; }
.summary-list { display: grid; gap: 12px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; }
.pill { display: inline-flex; padding: 6px 10px; border-radius: 999px; font-size: .85rem; background: rgba(224,176,103,.16); }
.centered { max-width: 900px; margin: 0 auto; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.reveal { opacity: 0; transform: translateY(18px); transition: all .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) {
  .hero-grid, .grid-3, .products-grid, .checkout-layout, .footer-grid, .kpis { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
