:root {
  --bg: #0b1020;
  --panel: #141b31;
  --panel-2: #1b2541;
  --text: #f4f7fb;
  --muted: #b9c3d6;
  --line: rgba(255,255,255,.12);
  --accent: #56a3ff;
  --accent-2: #ffcc66;
  --danger: #ff7b7b;
  --success: #83e19a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #22365d 0, var(--bg) 38%, #060914 100%);
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(6, 9, 20, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
}
.brand span { color: var(--accent); }
.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}
.main-nav a { text-decoration: none; color: var(--muted); }
.main-nav a:hover { color: var(--text); }
main { min-height: 70vh; }
.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
  padding: 68px 5vw 50px;
}
.hero h1, .page-head h1 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
  margin: 0 0 20px;
}
.hero p { max-width: 760px; color: var(--muted); font-size: 18px; }
.eyebrow {
  color: var(--accent-2) !important;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px !important;
  font-weight: 700;
}
.hero-card, .content-card, .form-card, .product-card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  overflow: hidden;
}
.hero-card img, .product-card img, .detail-image {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #0c1223;
}
.hero-card img { min-height: 450px; }
.notice {
  border-left: 4px solid var(--accent-2);
  padding: 12px 14px;
  background: rgba(255, 204, 102, .08);
  border-radius: 12px;
  color: var(--text) !important;
}
.button, .small-button, button {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--accent);
  color: #07101f;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.small-button { padding: 9px 14px; font-size: 14px; }
.section, .page-head, .content-card, .form-page, .product-detail, .filters {
  margin: 0 auto;
  width: min(1180px, 90vw);
}
.section { padding: 30px 0 70px; }
.page-head { padding: 54px 0 26px; }
.page-head p { color: var(--muted); font-size: 18px; max-width: 840px; }
.product-grid {
  width: min(1180px, 90vw);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.product-card img { height: 310px; }
.product-body { padding: 20px; }
.product-body h2, .product-body h3 { margin: 8px 0; line-height: 1.2; }
.product-body p { color: var(--muted); }
.price { color: var(--accent-2) !important; font-size: 20px; font-weight: 800; }
.status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--panel-2);
  color: var(--muted);
}
.status-available { color: var(--success); }
.status-reserved { color: var(--accent-2); }
.status-sold, .status-unsalable { color: var(--danger); }
.filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.filters a { text-decoration: none; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; color: var(--muted); }
.product-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  padding: 54px 0 70px;
}
.detail-image { border-radius: 24px; border: 1px solid var(--line); max-height: 720px; }
.detail-video { width: 100%; margin-top: 16px; border-radius: 18px; }
.detail-info { padding: 22px; }
.detail-info h1 { font-size: clamp(30px, 4vw, 54px); line-height: 1.06; }
.content-card { padding: 26px; margin-bottom: 70px; }
.form-page { padding: 50px 0 70px; max-width: 680px; }
.form-page.wide { max-width: 980px; }
.form-card { padding: 24px; display: grid; gap: 16px; }
.grid-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
label { display: grid; gap: 6px; color: var(--muted); font-weight: 700; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255,255,255,.06);
  color: var(--text);
}
textarea { min-height: 130px; }
.inline-form { display: flex; align-items: end; gap: 14px; flex-wrap: wrap; }
.qty { width: 80px; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.data-table th, .data-table td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 12px;
  vertical-align: top;
}
.data-table th { color: var(--accent-2); }
.error { color: var(--danger); font-weight: 700; }
.success { color: var(--success); font-weight: 700; }
.thank-you { margin-top: 60px; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 5vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(0,0,0,.18);
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
@media (max-width: 900px) {
  .site-header, .site-footer { flex-direction: column; align-items: flex-start; }
  .hero, .product-detail { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-form { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
}


/* sDushan cartoon-book and gallery update */
.social-nav{display:flex;gap:.75rem;flex-wrap:wrap;font-size:.9rem;margin-top:.45rem}.social-nav a{opacity:.85}.social-nav a:hover{opacity:1}.button.secondary{background:transparent;border:1px solid currentColor;color:inherit}.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:18px;padding:32px}.gallery-item{margin:0;background:#111;border-radius:14px;overflow:hidden}.gallery-item img{width:100%;height:100%;display:block;object-fit:cover}.book-pages-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}.book-page-card{margin:0;background:#111;border-radius:14px;overflow:hidden}.book-page-card img{width:100%;display:block}.lead{font-size:1.1rem;font-weight:600}.book-grid .product-card img{aspect-ratio:3/4;object-fit:cover}
