/* Laptopik Solutions — dark neon design system */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --card: #161616;
  --card-2: #141414;
  --green: #22c55e;
  --green-bright: #4ade80;
  --green-neon: #00e676;
  --green-deep: #16a34a;
  --green-dim: rgba(34, 197, 94, 0.12);
  --green-glow: rgba(34, 197, 94, 0.28);
  --text: #ffffff;
  --text-body: #c9c9c9;
  --text-muted: #8a8a8a;
  --border: #2a2a2a;
  --border-subtle: #1e1e1e;
  --header-h: 76px;
  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 22px;
  --pill: 999px;
  --space: 8px;
  --font-display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --ease: 180ms ease;
  --shadow-green: 0 18px 50px rgba(34, 197, 94, 0.12);
  --focus: 0 0 0 2px var(--bg), 0 0 0 4px var(--green);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  background: none;
  border: 0;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  background: var(--green);
  color: #000;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus {
  top: 12px;
}

main {
  min-height: 50vh;
}

html, body {
  max-width: 100%;
  overflow-x: clip;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .container { padding-inline: 24px; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  height: var(--header-h);
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  color: var(--green);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-word .g { color: var(--green); }
.logo-word .w { color: var(--text); margin-left: 0.12em; }

.logo-tag {
  margin-top: 3px;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.nav-desktop {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover,
.nav-item.is-open > .nav-link,
.nav-link[aria-current="page"] {
  color: var(--green-bright);
}

.nav-link .chev {
  width: 10px;
  height: 10px;
  opacity: 0.7;
}

.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: #121212;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  display: none;
}
.nav-item.is-open > .dropdown,
.nav-item:focus-within > .dropdown {
  display: grid;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-body);
  font-size: 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.dropdown a:hover,
.dropdown a:focus-visible {
  background: var(--green-dim);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  flex-shrink: 0;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #2f2f2f;
  display: grid;
  place-items: center;
  color: var(--text);
  position: relative;
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}
.icon-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}

.header-cta {
  min-height: 40px;
  padding: 0 16px;
  font-size: 11px;
}
@media (max-width: 719px) {
  .header-cta { display: none; }
}

.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 899px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }
  .nav-desktop { display: none !important; }
  .logo { min-width: 0; }
  .header-actions { margin-left: auto; }
}

@media (min-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
  .logo { justify-self: start; }
  .logo-word { font-size: 16.5px; }
  .logo-tag { font-size: 8.5px; }
}

@media (max-width: 720px) {
  .logo-tag { display: none; }
}
@media (max-width: 639px) {
  .logo-word { font-size: 14px; }
  .logo-mark { width: 28px; height: 28px; }
  .hero h1 { font-size: 1.9rem; }
  .eyebrow-pill {
    font-size: 10px;
    letter-spacing: 0.04em;
    white-space: normal;
    max-width: 100%;
    line-height: 1.3;
    padding: 6px 12px;
    height: auto;
    min-height: 32px;
  }
  .nvidia-lockup {
    flex: 1 0 100%;
    padding-right: 0;
    border-right: 0;
  }
  .cookie-banner.is-on {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cookie-banner p { flex: none; width: 100%; }
  .cookie-banner .btn { width: 100%; }
}
@media (max-width: 560px) {
  .logo-word .w { display: none; }
  .header-actions { gap: 4px; }
  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 90;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 360px);
  height: 100%;
  background: #0d0d0d;
  border-left: 1px solid var(--border);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 220ms ease;
  padding: 24px 20px 40px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.drawer nav a,
.drawer-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 8px 4px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
}

.drawer-sub {
  display: none;
  padding: 6px 0 10px 12px;
}
.drawer-acc.is-open .drawer-sub { display: grid; }
.drawer-sub a {
  color: var(--text-body);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 0;
  min-height: 44px;
}

body.nav-open { overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn .arrow { font-size: 15px; line-height: 1; }

.btn-primary {
  background: var(--green);
  color: #04140a;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
}
.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid #3a3a3a;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-bright);
  background: var(--green-dim);
}

.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.link-arrow:hover { color: var(--green-bright); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 28px;
  background:
    radial-gradient(ellipse 70% 80% at 78% 40%, rgba(34, 197, 94, 0.18), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0b0b0b 100%);
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(34, 197, 94, 0.55);
  border-radius: var(--pill);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.05rem, 5.4vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 0 0 18px;
}
.hero h1 .line2 {
  display: block;
  color: var(--green);
}

.hero-copy {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 42ch;
  margin-bottom: 28px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 639px) {
  .hero-actions .btn { width: 100%; }
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: 100%;
}
.hero-visual img {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  color: var(--text-body);
  font-size: 13px;
  font-weight: 500;
}
.trust-item { white-space: nowrap; }

.nvidia-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .nvidia-lockup { border-right: 1px solid #333; }
}
.nvidia-lockup small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.nvidia-lockup .brand {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-body);
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .hero { padding: 20px 0 12px; }
  .hero-grid {
    grid-template-columns: 1.12fr 0.98fr;
    gap: 12px;
    align-items: center;
  }
  .hero-visual { justify-self: end; margin-right: -28px; }
  .hero-visual img { max-width: min(880px, 108%); width: 108%; }
  .hero-actions .btn { min-width: 190px; }
  .hero h1 { font-size: 3.4rem; }
  .hero h1 .line2 { white-space: nowrap; }
  .trust-row { flex-wrap: nowrap; gap: 10px 14px; }
}

/* ---------- Feature strip ---------- */
.features {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: #0c0c0c;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.feature:last-child { border-bottom: 0; }

.feature-icon {
  width: 44px;
  height: 44px;
  color: var(--green);
  flex-shrink: 0;
}
.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature h3 {
  font-size: 15px;
  margin: 0 0 2px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
  .feature:nth-child(1),
  .feature:nth-child(2) {
    border-bottom: 1px solid var(--border-subtle);
  }
  .feature:nth-child(3),
  .feature:nth-child(4) { border-bottom: 0; }
}

@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
  .feature {
    padding: 28px 20px;
    border-bottom: 0;
    border-right: 1px solid var(--border-subtle);
  }
  .feature:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
  .feature:last-child { border-right: 0; }
}

/* ---------- Products ---------- */
.section {
  padding: 64px 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 28px;
}

.kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin: 0;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.product-card {
  background: var(--card);
  border: 1px solid #232323;
  border-radius: var(--radius);
  padding: 8px 8px 20px;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: var(--shadow-green), 0 0 0 1px rgba(34, 197, 94, 0.18);
}

.product-card .thumb {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #0d0d0d;
  margin-bottom: 14px;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-body { padding: 0 10px; }

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: var(--pill);
  background: var(--green);
  color: #06210f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin: 0 0 6px;
  font-weight: 800;
}
.product-card .blurb {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 12px;
  min-height: 2.6em;
}
.product-card .price {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 10px;
}

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

/* ---------- Support banner ---------- */
.support-banner {
  background:
    radial-gradient(ellipse 50% 80% at 88% 50%, rgba(34, 197, 94, 0.22), transparent 60%),
    linear-gradient(90deg, #121212, #0e0e0e);
  border: 1px solid #242424;
  border-radius: 22px;
  padding: 28px 24px;
  display: grid;
  gap: 24px;
  align-items: center;
}

.support-copy {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.support-icon {
  width: 72px;
  height: 72px;
  color: var(--green);
  flex-shrink: 0;
}
.support-icon svg { width: 100%; height: 100%; }

.support-banner h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0 0 8px;
  font-weight: 800;
}
.support-banner p {
  color: var(--text-body);
  margin: 0 0 14px;
  max-width: 42ch;
}

.support-visual img {
  width: 100%;
  max-width: min(420px, 100%);
  margin-left: auto;
  border-radius: 14px;
  mix-blend-mode: lighten;
}

@media (min-width: 900px) {
  .support-banner {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 28px 36px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 0;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

.footer-brand .logo { margin-bottom: 16px; }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--text);
  border-radius: 8px;
}
.socials a:hover { color: var(--green); }
.socials svg { width: 18px; height: 18px; }

.footer-col h3 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 14px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px 0;
  min-height: 32px;
}
.footer-col a:hover { color: var(--green); }

.newsletter p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 14px;
}

.newsletter-form {
  display: flex;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  min-height: 48px;
  color: var(--text);
}
.newsletter-form input::placeholder { color: #6b6b6b; }
.newsletter-form button {
  width: 52px;
  background: var(--green);
  color: #04140a;
  font-size: 22px;
  font-weight: 500;
  min-height: 48px;
  line-height: 1;
}
.newsletter-form button:hover { background: var(--green-bright); }
.newsletter-success {
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  padding: 18px 0 22px;
  margin-top: 36px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 13px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.footer-legal a:hover { color: var(--text); }

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr 1.1fr 1.3fr;
  }
}

/* ---------- Inner pages ---------- */
.page-hero {
  padding: 48px 0 28px;
  background:
    radial-gradient(ellipse 50% 80% at 90% 0%, rgba(34, 197, 94, 0.14), transparent 55%),
    #0a0a0a;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 10px;
}
.page-hero .lead {
  max-width: 56ch;
  color: var(--text-body);
  font-size: 1.05rem;
  margin: 0;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 16px;
}
.crumbs a:hover { color: var(--green); }
.crumbs span { color: #555; }

.content-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .content-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .content-grid.cols-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .content-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.info-card {
  background: var(--card);
  border: 1px solid #232323;
  border-radius: var(--radius);
  padding: 22px;
}
.info-card h2,
.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.info-card p:last-child { margin-bottom: 0; }

.prose {
  max-width: 72ch;
  color: var(--text-body);
}
.prose h2 { font-size: 1.4rem; margin-top: 1.4em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.2em; }
.prose ul, .prose ol {
  padding-left: 1.2em;
  margin: 0 0 1em;
}
.prose li { margin: 0.35em 0; }
.prose a { color: var(--green); }

/* Specs table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}
.spec-table th {
  color: var(--text-muted);
  font-weight: 600;
  width: 38%;
}
.spec-table td { color: var(--text); }

/* Product detail */
.product-layout {
  display: grid;
  gap: 32px;
}
.gallery {
  background: #0e0e0e;
  border: 1px solid #222;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
}
.thumbs button {
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  min-height: 64px;
}
.thumbs button.is-active,
.thumbs button:hover { border-color: var(--green); }
.thumbs img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.buy-box .price-lg {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin: 8px 0 16px;
}
.buy-box .muted { color: var(--text-muted); font-size: 14px; }
.price-enquire,
.product-card .price .price-enquire { color: var(--green-bright); font-weight: 700; }
.enquire-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.45;
}
.page-figure { margin: 0 0 28px; }
.page-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid #222;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #121212;
  border: 1px solid var(--green);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 120;
}
.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

/* Cart */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
}
.cart-table td {
  padding: 16px 8px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}
.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cart-item img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: 10px;
  background: #111;
}
.cart-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--text-muted);
}
.remove-btn {
  color: var(--text-muted);
  min-height: 44px;
  padding: 0 10px;
}
.remove-btn:hover { color: #f87171; }

.cart-summary {
  background: var(--card);
  border: 1px solid #232323;
  border-radius: var(--radius);
  padding: 22px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.summary-row.total {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

@media (min-width: 900px) {
  .cart-layout:not([hidden]) {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr;
    gap: 24px;
    align-items: start;
  }
}

/* Forms */
.contact-layout {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}
.contact-methods {
  background: var(--card);
  border: 1px solid #232323;
  border-radius: var(--radius);
  padding: 22px;
}
.contact-methods h2 { margin-top: 0; }
.contact-photo {
  width: 100%;
  border-radius: 12px;
  margin: 12px 0 16px;
  object-fit: cover;
  max-height: 220px;
}
.method-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.method-list li {
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
}
.method-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.method-list a { color: var(--green-bright); font-weight: 700; }

.form {
  display: grid;
  gap: 14px;
  max-width: 640px;
}
.form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form input,
.form textarea,
.form select {
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 12px 14px;
  min-height: 48px;
  color: var(--text);
}
.form textarea { min-height: 140px; resize: vertical; }
.form-success {
  display: none;
  background: var(--green-dim);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: var(--green-bright);
  padding: 16px 18px;
  border-radius: 14px;
}
.form-success.is-on { display: block; }

.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.search-bar input {
  flex: 1;
  min-height: 48px;
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: var(--pill);
  padding: 0 18px;
  color: var(--text);
}

/* FAQ */
.faq details {
  background: var(--card);
  border: 1px solid #232323;
  border-radius: 14px;
  padding: 4px 16px;
  margin-bottom: 10px;
}
.faq summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}
.faq details p {
  color: var(--text-body);
  padding-bottom: 12px;
}

/* Jobs / news */
.job, .news-card {
  display: block;
  background: var(--card);
  border: 1px solid #232323;
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color var(--ease), transform var(--ease);
}
.job:hover, .news-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-3px);
}
.meta {
  color: var(--text-muted);
  font-size: 13px;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 110;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 16px 18px;
  display: none;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-width: 1180px;
  margin-inline: auto;
}
.cookie-banner.is-on { display: flex; flex-wrap: wrap; }
.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--text-body);
  flex: 1 1 auto;
  min-width: 0;
}
.cookie-banner a { color: var(--green); }

/* Utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.muted { color: var(--text-muted); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Dynamic catalog extras */
.price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 8px;
  font-weight: 500;
}
.price-sale { color: var(--green-bright); }
.buy-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--pill);
  background: #128c7e;
  color: #fff;
  font-weight: 700;
}
.btn-whatsapp:hover { filter: brightness(1.08); }
.stock-line { font-size: 14px; font-weight: 600; margin: 0 0 8px; }
.stock-in_stock { color: var(--green); }
.stock-low_stock { color: #fbbf24; }
.stock-out_of_stock { color: #f87171; }
.stock-preorder { color: var(--green-bright); }
.empty-note {
  color: var(--text-muted);
  padding: 24px 0 8px;
}
.form-errors {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fca5a5;
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 16px;
  max-width: 640px;
}
.thumbs {
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
}

.header-actions .header-cta {
  min-height: 40px;
  padding: 0 16px;
  font-size: 11px;
}
@media (max-width: 719px) {
  .header-actions .header-cta { display: none; }
}


/* Static-site extras */
.footer-contact {
  display: grid;
  gap: 4px;
  margin: 12px 0 0;
  font-size: 14px;
}
.footer-contact a { color: var(--green-bright); font-weight: 600; }
.footer-contact a:hover { color: var(--green); }
.empty-collection {
  background: var(--card);
  border: 1px solid #232323;
  border-radius: var(--radius);
  padding: 28px 22px;
}
.mailto-fallback {
  margin-top: 12px;
  font-size: 14px;
}
.error-page { text-align: left; padding: 48px 0 72px; }

/* Hide unfilled phone / WhatsApp / email tokens even if JavaScript is off */
a[href*="YOUR-PHONE-NUMBER"],
a[href*="YOUR-WHATSAPP-NUMBER"],
a[href*="YOUR-EMAIL-ADDRESS"],
li:has(a[href*="YOUR-PHONE-NUMBER"]),
li:has(a[href*="YOUR-WHATSAPP-NUMBER"]),
li:has(a[href*="YOUR-EMAIL-ADDRESS"]),
p.mailto-fallback:has(a[href*="YOUR-EMAIL-ADDRESS"]) {
  display: none !important;
}
