/* Toptan Nargile — premium static storefront */
:root {
  --bg: #070605;
  --bg-2: #100e0c;
  --bg-3: #181411;
  --surface: #1f1915;
  --surface-2: #2a221c;
  --text: #f7f1e9;
  --muted: #b9aa9a;
  --faint: #7f7368;
  --line: rgba(247, 241, 233, 0.1);
  --ember: #ff6a1f;
  --ember-2: #ff8f4a;
  --gold: #e8c07a;
  --ig: #e1306c;
  --ig-2: #833ab4;
  --ok: #3ecf8e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(1000px 520px at 12% -8%, rgba(255, 106, 31, 0.2), transparent 55%),
    radial-gradient(800px 480px at 100% 0%, rgba(131, 58, 180, 0.12), transparent 50%),
    radial-gradient(600px 400px at 50% 100%, rgba(232, 192, 122, 0.06), transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 40%, #0a0908 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body.page-enter main {
  animation: pageIn 0.7s var(--ease) both;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 31, 0.45);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 106, 31, 0);
  }
}

@keyframes smokeDrift {
  0% {
    transform: translate3d(0, 20px, 0) scale(1);
    opacity: 0.15;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    transform: translate3d(30px, -40px, 0) scale(1.2);
    opacity: 0.1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: rgba(7, 6, 5, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.site-header.scrolled {
  background: rgba(7, 6, 5, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  background: transparent;
}

.logo img {
  display: block;
  height: 52px;
  width: auto;
  background: transparent;
}

@media (min-width: 900px) {
  .logo img {
    height: 64px;
  }
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-brand img {
  width: 88px;
  height: auto;
  background: transparent;
}

.age-card .age-logo {
  width: 96px;
  height: auto;
  margin: 0 auto 0.75rem;
  display: block;
  background: transparent;
}

.nav {
  display: none;
  gap: 1.5rem;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transition: width 0.3s var(--ease);
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ig-chip {
  display: none;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(221, 42, 123, 0.35);
  transition: transform 0.2s var(--ease), filter 0.2s;
}

.ig-chip:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(31, 25, 21, 0.9);
  color: var(--text) !important;
  transition: border-color 0.2s, transform 0.2s;
}

.cart-link:hover {
  border-color: var(--ember);
  transform: translateY(-1px);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--ember);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.menu-btn {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(16, 14, 12, 0.98);
}

.mobile-nav.open {
  display: block;
  animation: rise 0.35s var(--ease);
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 960px) {
  .nav {
    display: flex;
  }
  .ig-chip {
    display: inline-flex;
  }
  .menu-btn,
  .mobile-nav {
    display: none !important;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.8rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), filter 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ember) 0%, #ff4500 100%) !important;
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(255, 106, 31, 0.4);
}

.btn-primary.pulse {
  animation: pulseGlow 2.2s ease infinite;
}

.btn-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af) !important;
  color: #fff !important;
  box-shadow: 0 12px 32px rgba(221, 42, 123, 0.4);
}

.btn-secondary {
  background: transparent !important;
  color: var(--text) !important;
  border-color: rgba(247, 241, 233, 0.35) !important;
}

.btn-secondary:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.btn-ghost {
  background: var(--surface) !important;
  color: var(--text) !important;
  border-color: var(--line) !important;
}

.btn-light {
  background: #fff !important;
  color: #111 !important;
}

.btn-block {
  width: 100%;
}

.card-btn {
  min-height: 38px !important;
  padding: 0.45rem 0.9rem !important;
  font-size: 0.8rem !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: min(94vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08) translate(0, 0);
  }
  to {
    transform: scale(1.16) translate(-1.5%, -1%);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 4, 3, 0.94) 0%, rgba(5, 4, 3, 0.62) 48%, rgba(5, 4, 3, 0.25) 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 106, 31, 0.35), transparent 38%);
}

.smoke {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  filter: blur(20px);
  animation: smokeDrift 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.smoke.s2 {
  left: 55%;
  top: 40%;
  animation-delay: -3s;
  width: 220px;
  height: 220px;
}

.smoke.s3 {
  left: 70%;
  top: 55%;
  animation-delay: -6s;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 3.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.42rem 0.9rem;
  border: 1px solid rgba(232, 192, 122, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 9.5vw, 6.6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  color: rgba(247, 241, 233, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
  max-width: 540px;
}

.stat {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20, 16, 14, 0.7);
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 31, 0.4);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 1rem 0;
  animation: marquee 32s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.marquee span::before {
  content: "◆";
  margin-right: 2.5rem;
  color: var(--ember);
  font-size: 0.65rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4.8rem 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.9rem;
}

.section-head h2,
.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.6vw, 2.9rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-lead,
.page-lead {
  margin: 0.7rem 0 0;
  max-width: 38rem;
  color: var(--muted);
}

.page-hero {
  padding: 2.6rem 0 1rem;
}

.grid-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 720px) {
  .grid-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .grid-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ===== PRODUCT CARD ===== */
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, var(--surface) 0%, #14100e 100%);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 31, 0.5);
  box-shadow: 0 28px 60px rgba(255, 106, 31, 0.12);
}

.product-card .thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #15110f;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .thumb img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.1rem;
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.product-card .meta {
  color: var(--faint);
  font-size: 0.85rem;
}

.product-card .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.price {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}

/* ===== BRAND ===== */
.brand-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  min-height: 240px;
  background: var(--surface);
  transition: transform 0.4s var(--ease), border-color 0.3s;
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 192, 122, 0.45);
}

.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.brand-card:hover img {
  transform: scale(1.1);
}

.brand-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.15) 55%);
}

.brand-card .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.15rem;
}

.brand-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.brand-card p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Brand info panel */
.brand-panel {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(34, 28, 24, 0.9), rgba(16, 14, 12, 0.95));
  animation: fadeScale 0.7s var(--ease);
}

@media (min-width: 860px) {
  .brand-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.brand-specs {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr 1fr;
}

.brand-specs div {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.brand-specs dt {
  margin: 0;
  color: var(--faint);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-specs dd {
  margin: 0.25rem 0 0;
  font-weight: 600;
  font-size: 0.92rem;
}

/* Features */
.features {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(31, 25, 21, 0.75);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 31, 0.4);
}

.feature .num {
  color: var(--ember);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.feature h3 {
  margin: 0.5rem 0;
  font-family: var(--font-display);
}

.feature p {
  margin: 0;
  color: var(--muted);
}

/* Filters */
.filters {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

@media (min-width: 760px) {
  .filters {
    grid-template-columns: 1fr 220px auto;
    align-items: center;
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--muted);
  font-size: 0.78rem;
  transition: all 0.25s var(--ease);
}

.chip.active,
.chip:hover {
  border-color: var(--ember);
  color: var(--text);
  background: rgba(255, 106, 31, 0.14);
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-3);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 4px rgba(255, 106, 31, 0.18);
}

.label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Product detail */
.product-detail {
  display: grid;
  gap: 2rem;
  padding: 1.5rem 0 3rem;
}

@media (min-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.product-gallery {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  aspect-ratio: 1;
  animation: fadeScale 0.7s var(--ease);
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.product-gallery:hover img {
  transform: scale(1.04);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: var(--faint);
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}

.qty button {
  width: 46px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;
}

.qty input {
  width: 54px;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: center;
}

.add-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.specs {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 560px) {
  .specs {
    grid-template-columns: 1fr 1fr;
  }
}

.specs dt {
  color: var(--faint);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.specs dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
}

/* Cart / checkout */
.split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 920px) {
  .split {
    grid-template-columns: 1.35fr 0.85fr;
    align-items: start;
  }
}

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.9rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  margin-bottom: 0.75rem;
  transition: border-color 0.25s, transform 0.25s;
}

.cart-item:hover {
  border-color: rgba(255, 106, 31, 0.35);
  transform: translateX(3px);
}

.cart-item img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
}

.summary {
  position: sticky;
  top: 92px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #2c211b, #171310);
  box-shadow: var(--shadow);
}

.summary h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.5rem 0;
}

.notice {
  margin: 1rem 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(232, 192, 122, 0.35);
  border-radius: 14px;
  background: rgba(232, 192, 122, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.notice strong {
  color: var(--gold);
}

.notice.ig {
  border-color: rgba(221, 42, 123, 0.4);
  background: rgba(221, 42, 123, 0.1);
}

.notice.ig strong {
  color: #ff8fb8;
}

.empty {
  text-align: center;
  padding: 4rem 1rem;
}

.order-preview {
  white-space: pre-wrap;
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 1rem;
  border-radius: 14px;
  background: #0c0a09;
  border: 1px solid var(--line);
  color: var(--muted);
  max-height: 260px;
  overflow: auto;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: #050403;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.82rem;
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.age-gate.open {
  display: flex;
}

.age-card {
  width: min(420px, 100%);
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-2);
  text-align: center;
  box-shadow: var(--shadow);
  animation: fadeScale 0.45s var(--ease);
}

.age-card h2 {
  margin: 0.6rem 0;
  font-family: var(--font-display);
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.age-actions .btn {
  flex: 1;
}

/* Floating IG */
.float-ig {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(221, 42, 123, 0.45);
  animation: floaty 4.5s ease-in-out infinite;
  transition: transform 0.2s;
}

.float-ig:hover {
  transform: scale(1.05);
}

.float-ig svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 5.5rem;
  z-index: 80;
  display: none;
  transform: translateX(-50%);
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  background: #143528;
  border: 1px solid rgba(62, 207, 142, 0.45);
  color: #d9ffe9;
  box-shadow: var(--shadow);
}

.toast.show {
  display: block;
  animation: rise 0.3s var(--ease);
}

.muted {
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.ig-hero-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(221, 42, 123, 0.35);
  background:
    radial-gradient(600px 240px at 100% 0%, rgba(245, 133, 41, 0.25), transparent 50%),
    radial-gradient(500px 220px at 0% 100%, rgba(131, 58, 180, 0.3), transparent 50%),
    var(--surface);
}

.cat-banner {
  margin-bottom: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 300px;
}

.cat-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
