/* public/assets/css/style.css */
:root{
  --bg:#0b0d12;
  --bg2:#0f1118;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.14);
  --text:#f5f7ff;
  --muted:#b4bccf;
  --gold:#f2c14e;
  --gold2:#ffde88;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 900px at 20% 10%, rgba(242,193,78,.10), transparent 55%),
              radial-gradient(900px 700px at 80% 0%, rgba(78,140,242,.08), transparent 60%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
img,video{max-width:100%; display:block}

.container{width:min(1120px, 92%); margin:0 auto}
.section{padding:72px 0}
.section-alt{background: linear-gradient(180deg, transparent, rgba(255,255,255,.03) 20%, transparent 100%)}
.muted{color:var(--muted)}
.small{font-size:12px; opacity:.92}
.gold{color:var(--gold)}
.dot{opacity:.55}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.22)}
.btn:active{transform: translateY(0)}
.btn-gold{
  background: linear-gradient(135deg, rgba(242,193,78,.95), rgba(255,222,136,.9));
  color:#13151b;
  border-color: rgba(242,193,78,.45);
}
.btn-gold:hover{background: linear-gradient(135deg, rgba(255,222,136,.95), rgba(242,193,78,.92))}
.btn-ghost{background:rgba(255,255,255,.02)}
.btn-full{width:100%}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(11,13,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand-mark{
  width:38px; height:38px; display:grid; place-items:center;
  border-radius:12px;
  background: rgba(242,193,78,.14);
  border:1px solid rgba(242,193,78,.22);
}
.brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand-name{font-weight:700; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted)}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:var(--muted); font-size:14px}
.nav a:hover{color:var(--text)}
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
}
.burger span{
  display:block;
  width:18px; height:2px;
  margin:4px auto;
  background: rgba(245,247,255,.9);
  border-radius:2px;
}
.mobile-nav{
  display:none;
  padding:10px 0 18px;
  border-top:1px solid rgba(255,255,255,.06);
}
.mobile-nav a{
  display:block;
  padding:10px 4%;
  color:var(--muted);
}
.mobile-nav.open{display:block}

@media (max-width: 860px){
  .nav{display:none}
  .burger{display:inline-block}
}

/* HERO SLIDER */
.hero{padding:0}
.hero-slider{
  position:relative;
  min-height: 74vh;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.slide{
  position:absolute; inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .9s ease, transform 1.2s ease;
}
.slide.active{opacity:1; transform: scale(1.00)}
.slide-media{
  width:100%; height:100%;
  object-fit:cover;
  filter: contrast(1.05) saturate(1.05);
}
.slide-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 600px at 25% 20%, rgba(0,0,0,.10), rgba(0,0,0,.55)),
    linear-gradient(90deg, rgba(11,13,18,.72), rgba(11,13,18,.20) 55%, rgba(11,13,18,.62)),
    linear-gradient(180deg, rgba(11,13,18,.25), rgba(11,13,18,.75));
}

.hero-content{
  position:relative;
  padding: 92px 0 58px;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:13px;
}
.hero h1{
  margin:18px 0 12px;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.03;
  letter-spacing: -0.6px;
}
.lead{max-width: 62ch; font-size: 16px; line-height:1.6; color: rgba(245,247,255,.86)}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-badges{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:18px;
}
.badge{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(245,247,255,.86);
  font-size:13px;
}

.slider-ui{
  position:absolute;
  left:0; right:0; bottom:18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  pointer-events:none;
}
.slider-btn{
  pointer-events:auto;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  color: rgba(245,247,255,.95);
  font-size: 22px;
}
.dots{
  pointer-events:auto;
  display:flex; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
}
.dot.active{background: rgba(242,193,78,.95); border-color: rgba(242,193,78,.65)}
.dots button{cursor:pointer}

/* SECTION HEAD */
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; flex-wrap:wrap}
.section-head h2{margin:0; font-size: 28px}
.section-head p{margin:0; max-width: 68ch}

/* CARDS */
.cards{display:grid; gap:16px; margin-top:22px}
.products{grid-template-columns: repeat(4, 1fr)}
@media (max-width: 980px){ .products{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 520px){ .products{grid-template-columns: 1fr} }

.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.product-media{height:180px}
.product-media img{width:100%; height:100%; object-fit:cover}
.product-body{padding:14px 14px 16px}
.product-body h3{margin:0 0 6px; font-size:16px}
.product-body p{margin:0; font-size:13px; line-height:1.5}

/* SPLIT */
.split{display:grid; grid-template-columns: 1.35fr .85fr; gap:18px; align-items:start}
@media (max-width: 980px){ .split{grid-template-columns: 1fr} }

.highlights{display:grid; gap:12px; margin-top:16px}
.hl{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.hl-ico{width:36px; height:36px; display:grid; place-items:center; border-radius:12px;
  background: rgba(242,193,78,.14); border:1px solid rgba(242,193,78,.22)
}
.hl-title{font-weight:700; margin-bottom:2px}

.note{
  margin-top:14px;
  padding:12px 14px;
  border-radius: 16px;
  border:1px dashed rgba(242,193,78,.35);
  background: rgba(242,193,78,.08);
  color: rgba(245,247,255,.90);
}

/* PANEL */
.panel{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(450px 260px at 40% 0%, rgba(242,193,78,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.panel-top{display:flex; flex-direction:column; gap:6px; margin-bottom:10px}
.panel-kicker{color:var(--muted); font-size:12px}
.panel-title{font-size:18px; font-weight:800}
.panel-list{list-style:none; padding:0; margin:0 0 12px; display:grid; gap:10px}
.panel-list li{display:flex; justify-content:space-between; gap:10px; padding:10px 12px;
  border-radius: 14px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03)
}

/* INFOS */
.infos-grid{display:grid; grid-template-columns: 1fr 1fr 1.2fr; gap:16px; margin-top:22px}
@media (max-width: 980px){ .infos-grid{grid-template-columns: 1fr} }
.info-card{padding:16px}
.info-card h3{margin:0 0 10px}
.mini-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

.hours{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.hours li{display:flex; justify-content:space-between; gap:10px; padding:10px 12px;
  border-radius: 14px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03)
}

.map{border-radius: 16px; overflow:hidden; border:1px solid rgba(255,255,255,.10)}
.map iframe{width:100%; height:260px; border:0}

/* FOOTER */
.footer{padding:48px 0 22px; border-top:1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.14)}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr 1.2fr; gap:18px}
@media (max-width: 980px){ .footer-grid{grid-template-columns: 1fr} }
.footer-brand .brand-name{font-size:18px}
.footer-actions{display:flex; gap:10px; flex-wrap:wrap; margin:12px 0}
.social{display:flex; gap:14px; margin-top:8px}
.social a{color:var(--muted)}
.social a:hover{color:var(--text)}

.footer-bottom{
  margin-top:22px; padding-top:16px;
  border-top:1px solid rgba(255,255,255,.06);
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  color: rgba(245,247,255,.75);
}

