:root{
  --bg:#0b1220;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#ffffff;
  --muted:#cbd5e1;
  --gold:#d4af37;
  --border:rgba(255,255,255,.12);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:"Microsoft YaHei", Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}

.container{width:min(1100px, 92%); margin:0 auto;}

.nav{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.75);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{
  display:flex; flex-direction:column; gap:2px;
}
.brand b{font-size:18px; letter-spacing:.5px; line-height:1.2}
.brand span{font-size:12px; color:var(--muted)}
.menu{display:flex; gap:8px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
.menu a{padding:8px 10px; border-radius:10px; color:var(--muted)}
.menu a:hover{background:rgba(255,255,255,.06); color:#fff}
.menu .cta{
  background:var(--gold); color:#111; font-weight:800;
}
.menu .cta:hover{filter:brightness(1.05)}

.hero{
  padding:64px 0 44px;
  background:
    linear-gradient(180deg, rgba(11,18,32,.55), rgba(11,18,32,1)),
    url("https://images.unsplash.com/photo-1508964942454-1a56651d54ac?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  border-bottom:1px solid var(--border);
}
.hero h1{margin:0; font-size:44px}
.hero p{margin:14px 0 0; color:var(--muted); font-size:18px; line-height:1.6}
.badges{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}
.badge{
  padding:8px 12px; border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  border-radius:999px; color:#e5e7eb; font-size:13px;
}

.section{padding:54px 0}
.section h2{
  margin:0 0 22px;
  font-size:28px;
  color:var(--gold);
  letter-spacing:.5px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  transition:.25s;
}
.card:hover{transform: translateY(-6px); background:var(--card2)}
.card .cover{
  height:170px;
  background:#111 center/cover no-repeat;
}
.card .content{padding:18px}
.card h3{margin:0; color:var(--gold); font-size:18px}
.card p{margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:14px}
.card .link{
  margin-top:14px;
  display:inline-flex; gap:8px; align-items:center;
  color:#fff; font-weight:800;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(212,175,55,.15);
  border:1px solid rgba(212,175,55,.35);
}
.card .link:hover{filter:brightness(1.05)}

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
}
@media (max-width: 860px){
  .split{grid-template-columns:1fr}
  .hero h1{font-size:34px}
}

.panel{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}
.kv{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:10px 14px;
  color:var(--muted);
  font-size:14px;
}
.kv b{color:#fff; font-weight:800}

.steps{margin:12px 0 0; padding-left:18px; color:var(--muted); line-height:1.9}
.hr{height:1px; background:var(--border); margin:16px 0}

.footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  color:#94a3b8;
  font-size:13px;
}

.whatsapp{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  background:#25D366;
  color:#0b1220;
  border:1px solid rgba(255,255,255,.15);
}
.whatsapp:hover{filter:brightness(1.05)}
.small{font-size:12px; color:var(--muted)}

.breadcrumbs{
  font-size:12px; color:var(--muted);
  margin:12px 0 0;
}
.breadcrumbs a{color:var(--muted); text-decoration:underline; text-underline-offset:3px}


/* Product booking styles */
.product-top{display:flex; gap:8px; flex-wrap:wrap; align-items:center; justify-content:space-between; margin-bottom:10px}
.tag{display:inline-flex; padding:5px 9px; border-radius:999px; background:rgba(212,175,55,.18); border:1px solid rgba(212,175,55,.4); color:#fff; font-size:12px; font-weight:800}
.sold{font-size:12px; color:#cbd5e1; background:rgba(255,255,255,.06); border:1px solid var(--border); padding:5px 9px; border-radius:999px}
.price{margin-top:10px; font-size:22px; font-weight:900; color:#fff}
.meta{margin-top:12px; color:#cbd5e1; font-size:13px}
.product-card .content{min-height:245px; display:flex; flex-direction:column}
.product-card .link{margin-top:auto}
.notice{font-size:12px; color:#94a3b8; line-height:1.7; margin-top:10px}
