/* ==========================================================================
   ARKHAM PRINTS - DESIGN SYSTEM & STYLESHEET
   Aesthetics: Obsidian Dark, Glassmorphism, Neon Cyan & Mythic Gold Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Cinzel:wght@500;700;900&display=swap');

:root {
  /* Obsidian Void Colors */
  --bg-primary: #090a0f;
  --bg-secondary: #10121a;
  --bg-tertiary: #161924;
  --bg-card: rgba(22, 26, 38, 0.55);
  --bg-glass: rgba(14, 16, 24, 0.75);
  
  /* Borders & Dividers */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(0, 242, 254, 0.25);
  --border-glass-gold: rgba(245, 175, 25, 0.25);
  --border-line: rgba(255, 255, 255, 0.06);

  /* Typography Colors */
  --text-primary: #f5f6f9;
  --text-secondary: #a3aabf;
  --text-muted: #6a6f80;
  
  /* Cosmic Neon Cyan Accent */
  --teal-primary: #00f2fe;
  --teal-hover: #4facfe;
  --teal-glow: rgba(0, 242, 254, 0.35);
  --teal-dim: rgba(0, 242, 254, 0.08);
  
  /* Mythic Gold Accent */
  --gold-primary: #dfa84a;
  --gold-hover: #f5af19;
  --gold-glow: rgba(223, 168, 74, 0.3);
  --gold-dim: rgba(223, 168, 74, 0.08);

  /* Warm Red Accent */
  --red-primary: #ff416c;
  --red-hover: #ff4b2b;
  --red-glow: rgba(255, 65, 108, 0.3);
  --red-dim: rgba(255, 65, 108, 0.08);

  /* Shadow Systems */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 24px -6px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 20px var(--teal-glow);
  --shadow-glow-gold: 0 0 20px var(--gold-glow);
  
  /* Typography */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Cinzel", Georgia, serif;
  
  /* Motion & Transitions */
  --transition-fast: 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
}

body {
  margin: 0;
  color: var(--text-primary);
  background: #020105; /* Deep obsidian void background */
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body:has(dialog[open]) {
  overflow: hidden;
}

.site-wrapper {
  max-width: 1400px;
  width: 95%;
  margin: 40px auto;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(0, 242, 254, 0.02), /* subtle cyan ambient glow */
    0 0 1px 1px rgba(255, 255, 255, 0.05) inset; /* inner sharp border */
  position: relative;
}

@media (max-width: 1024px) {
  .site-wrapper {
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .site-header {
    border-radius: 0;
  }
  .site-footer {
    border-radius: 0;
  }
}

/* Background Glowing Orbs */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -10;
  filter: blur(140px);
  opacity: 0.8;
}

.bg-glow-1 {
  top: -10vw;
  right: -10vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

.bg-glow-2 {
  bottom: 10vh;
  left: -15vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

.bg-glow-3 {
  top: 40vh;
  right: 15vw;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(223, 168, 74, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--teal-hover);
}

img,
video {
  display: block;
  max-width: 100%;
  border-radius: 6px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

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

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
  color: var(--text-secondary);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--teal-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 10px var(--teal-glow);
}

/* ==========================================================================
   BUTTONS AND INTERACTIVE
   ========================================================================== */

.primary-button,
.secondary-button,
.primary-link,
.ghost-link,
.small-button,
.chip,
.icon-button,
.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
}

.primary-button,
.primary-link {
  min-height: 48px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-hover) 100%);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.primary-button:hover,
.primary-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: brightness(1.1);
}

.secondary-button,
.small-button {
  min-height: 44px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
}

.secondary-button:hover,
.small-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
}

.ghost-link {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.ghost-link:hover {
  border-color: var(--teal-primary);
  background: var(--teal-dim);
  color: var(--text-primary);
  box-shadow: 0 0 15px var(--teal-glow);
  transform: translateY(-2px);
}

.icon-button {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--red-primary);
  color: var(--red-primary);
  transform: translateY(-1px);
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(9, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border-radius: 16px 16px 0 0;
}

.site-header.is-scrolled {
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(9, 10, 15, 0.95);
  border-bottom-color: rgba(0, 242, 254, 0.15);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--text-primary);
  object-fit: contain;
  padding: 3px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.brand:hover .brand-mark {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 0 15px var(--teal-glow);
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.brand small {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a {
  padding: 6px 0;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-primary);
  box-shadow: 0 0 8px var(--teal-primary);
  transition: width var(--transition-fast);
}

.main-nav a:hover {
  color: var(--text-primary);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Cart Pill Button */
.cart-pill {
  padding: 0 18px;
  min-height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  gap: 10px;
}

.cart-pill:hover {
  border-color: var(--teal-primary);
  background: var(--teal-dim);
  box-shadow: 0 0 15px var(--teal-glow);
  transform: translateY(-2px);
}

.cart-pill span:first-child {
  font-size: 1.1rem;
  color: var(--teal-primary);
}

.cart-pill strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 99px;
  background: var(--teal-primary);
  color: var(--bg-primary);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 0 8px var(--teal-glow);
}

/* ==========================================================================
   HERO SHOWCASE SECTION
   ========================================================================== */

.shop-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: min(650px, calc(100vh - 100px));
  padding: clamp(60px, 8vw, 120px) clamp(18px, 4vw, 56px);
  overflow: hidden;
  color: var(--text-primary);
  isolation: isolate;
  border-bottom: 1px solid var(--border-line);
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(circle at 75% 35%, rgba(0, 242, 254, 0.04) 0%, transparent 65%),
    radial-gradient(circle at 15% 75%, rgba(223, 168, 74, 0.02) 0%, transparent 55%);
}

.hero-showcase {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 242, 254, 0.1);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.hero-showcase:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 242, 254, 0.2);
  border-color: var(--border-glass-hover);
}

.hero-showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.hero-showcase:hover img {
  transform: scale(1.03);
}

.hero-showcase img:not(:first-child) {
  display: none;
}

.hero-copy {
  max-width: 100%;
}

.hero-copy .eyebrow {
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-glow);
}

.hero-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
}

.hero-proof {
  display: grid;
  gap: 8px;
  max-width: 600px;
  margin-top: 28px;
  border-left: 3px solid var(--gold-primary);
  padding-left: 18px;
  background: rgba(223, 168, 74, 0.03);
  padding-top: 6px;
  padding-bottom: 6px;
}

.hero-proof strong {
  color: var(--text-primary);
  font-size: 1rem;
}

.hero-proof span {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-stats span {
  min-height: 32px;
  border: 1px solid var(--border-glass);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ==========================================================================
   PROOF STRIP
   ========================================================================== */

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-line);
}

.proof-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 16px 24px;
  transition: all var(--transition-fast);
}

.proof-strip article:hover {
  transform: translateY(-2px);
  border-color: var(--border-glass-hover);
  background: rgba(255,255,255,0.02);
}

.proof-strip article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid var(--teal-primary);
  color: var(--teal-primary);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 0 10px var(--teal-glow);
}

.proof-strip strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

/* ==========================================================================
   SHOWROOM SECTION
   ========================================================================== */

.showroom-section {
  padding: 80px clamp(18px, 4vw, 56px);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-line);
}

.showroom-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.showroom-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-line);
  padding-bottom: 12px;
}

.showroom-tab {
  min-height: 42px;
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  padding: 0 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.showroom-tab:hover {
  color: var(--text-primary);
  border-color: var(--border-glass-hover);
  background: rgba(255, 255, 255, 0.06);
}

.showroom-tab.is-active {
  border-color: var(--teal-primary);
  background: var(--teal-dim);
  color: var(--teal-primary);
  box-shadow: 0 0 12px var(--teal-glow);
}

.showroom-panel {
  animation: fadeUp 0.4s var(--ease-out) both;
}

/* Visual Grid (Showroom) */
.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(200px, 1fr) minmax(200px, 1fr);
  grid-template-rows: repeat(2, minmax(130px, 1fr));
  gap: 16px;
}

.visual-card {
  position: relative;
  min-height: 130px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  background: var(--bg-tertiary);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.visual-card.large {
  grid-row: span 2;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  border-radius: 0;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 10, 15, 0.9) 100%);
  z-index: 1;
}

.visual-card div {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.visual-card span {
  color: var(--gold-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 8px var(--gold-glow);
}

.visual-card strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  line-height: 1.25;
  color: var(--text-primary);
}

.visual-card:hover img {
  transform: scale(1.06);
}

.visual-card:hover {
  border-color: var(--teal-primary);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.2);
}

/* Secondary tiles in panels */
.step-tiles,
.offer-tiles,
.compact-rules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-tiles article,
.compact-rules article,
.offer-tiles a {
  display: grid;
  gap: 12px;
  min-height: 180px;
  align-content: start;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-card);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.step-tiles article:hover,
.compact-rules article:hover,
.offer-tiles a:hover {
  transform: translateY(-4px);
  border-color: var(--teal-primary);
  box-shadow: 0 8px 24px rgba(0, 242, 254, 0.15);
  background: rgba(22, 26, 38, 0.8);
}

.step-tiles article > span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-primary);
  font-weight: 700;
  text-shadow: 0 0 8px var(--gold-glow);
}

.step-tiles article strong,
.compact-rules article strong,
.offer-tiles a strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.step-tiles p,
.compact-rules span,
.offer-tiles span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.offer-tiles a {
  text-decoration: none;
  color: var(--text-primary);
}

/* ==========================================================================
   SHOP LAYOUT (CATALOG & CART)
   ========================================================================== */

.shop-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
  padding: 80px clamp(18px, 4vw, 56px);
}

.catalog {
  min-width: 0;
}

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

.section-heading h2 {
  margin-top: 4px;
}

.section-heading > span {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Filter Toolbar */
.toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-secondary);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.toolbar label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toolbar input,
.toolbar select {
  min-height: 42px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-fast);
}

.toolbar input:focus,
.toolbar select:focus {
  border-color: var(--teal-primary);
  box-shadow: 0 0 10px var(--teal-glow);
}

/* Category Quick Filter Chips */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip {
  min-height: 36px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.8rem;
  border-radius: 18px;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass-hover);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.chip.is-active {
  background: var(--teal-dim);
  border-color: var(--teal-primary);
  color: var(--teal-primary);
  box-shadow: 0 0 12px var(--teal-glow);
}

/* Products Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-primary);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15);
}

.product-media {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 11;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  border-radius: 0;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 20px;
  background: rgba(9, 10, 15, 0.8);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  gap: 12px;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.product-title-row h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.product-title-row strong {
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 600;
}

.tag.alt {
  background: var(--red-dim);
  border-color: var(--red-primary);
  color: var(--red-primary);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8px;
  margin-top: 8px;
}

.card-actions .small-button {
  padding: 0 8px;
  font-size: 0.78rem;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   CART PANEL & FORMS
   ========================================================================== */

.cart-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
  border: 1px solid rgba(0, 242, 254, 0.15); /* cyan neon borders */
  border-radius: 12px;
  background: rgba(12, 10, 26, 0.85); /* deep dark purple-blue glass */
  padding: 24px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(0, 242, 254, 0.05); /* neon shadow */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cart-panel h2 {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-top: 4px;
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cart-head .icon-button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all var(--transition-fast);
}

.cart-head .icon-button:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

.cart-items {
  display: grid;
  gap: 14px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
}

.empty-cart {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 30px 0;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
}

.cart-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px;
  transition: all var(--transition-normal);
}

.cart-item:hover {
  border-color: rgba(0, 242, 254, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.cart-item img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
}

.cart-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.cart-item span:last-child {
  color: var(--gold-primary);
  font-weight: 600;
  margin-top: 2px;
  font-size: 0.8rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  height: 28px;
}

.qty-controls button {
  width: 24px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.qty-controls button:hover {
  background: rgba(0, 242, 254, 0.1);
  color: var(--teal-primary);
}

.qty-controls span {
  width: 20px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-summary {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.cart-summary .total-row {
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dotted rgba(255, 255, 255, 0.1);
}

.cart-summary .total-row strong {
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-glow);
}

.cart-links-box {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-weight: 700;
  text-align: center;
  opacity: 0.85;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.brand-link-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
}

.brand-link-btn.olx {
  background: rgba(35, 229, 219, 0.03);
  border: 1px solid rgba(35, 229, 219, 0.15);
  color: #23e5db;
}

.brand-link-btn.olx svg {
  width: 52px;
  height: 20px;
  fill: #23e5db;
  transition: transform var(--transition-fast);
}

.brand-link-btn.olx:hover {
  background: rgba(35, 229, 219, 0.08);
  border-color: #23e5db;
  box-shadow: 0 0 15px rgba(35, 229, 219, 0.15);
  transform: translateY(-2px);
}

.brand-link-btn.olx:hover svg {
  transform: scale(1.05);
}

.brand-link-btn.allegro {
  background: rgba(255, 90, 0, 0.03);
  border: 1px solid rgba(255, 90, 0, 0.15);
  color: #ff5a00;
}

.brand-link-btn.allegro .allegro-txt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -1.5px;
  text-transform: lowercase;
  line-height: 1;
  color: #ff5a00;
  transition: transform var(--transition-fast);
}

.brand-link-btn.allegro:hover {
  background: rgba(255, 90, 0, 0.08);
  border-color: #ff5a00;
  box-shadow: 0 0 15px rgba(255, 90, 0, 0.15);
  transform: translateY(-2px);
}

.brand-link-btn.allegro:hover .allegro-txt {
  transform: scale(1.05);
}

/* Forms general */
.checkout-form,
.quote-form {
  display: grid;
  gap: 14px;
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-form label span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  background: rgba(9, 10, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.88rem;
  padding: 10px 14px;
  transition: all var(--transition-normal);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: var(--teal-primary);
  box-shadow: 
    0 0 10px rgba(0, 242, 254, 0.15),
    0 0 1px 1px rgba(0, 242, 254, 0.1) inset;
  background: rgba(9, 10, 15, 0.8);
}

.checkout-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A7E6E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

.checkout-form select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300f2fe' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

label span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 10px 14px;
  outline: none;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-primary);
  box-shadow: 0 0 10px var(--teal-glow);
  background: var(--bg-glass);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   STL CUSTOM ESTIMATE calculator
   ========================================================================== */

.info-band {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 80px clamp(18px, 4vw, 56px);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
  position: relative;
}

.info-band h2 {
  margin-top: 8px;
}

.quote-form {
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: flex-end;
  gap: 16px;
}

.quote-note {
  grid-column: 1 / -1;
  margin-top: -6px;
}

.policy-box {
  grid-column: 1 / -1;
  margin-top: 10px;
  background: rgba(223, 168, 74, 0.03);
  border-left: 3px solid var(--gold-primary);
  padding: 16px 20px;
  border-radius: 4px;
}

.policy-box strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.policy-box span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   INVESTIGATORS LIST
   ========================================================================== */

.investigators-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-line);
  padding: 80px clamp(18px, 4vw, 56px);
}

.investigators-section h2 {
  margin-top: 4px;
}

.investigator-note {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.investigator-toolbar {
  max-width: 100%;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-wrap {
  max-width: 480px;
  width: 100%;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-field span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-field input {
  padding: 10px 14px;
  font-size: 0.95rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  color: var(--text-primary);
}

.filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.row-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  min-width: 100px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-group.scrollable {
  max-height: 80px;
  overflow-y: auto;
  padding-right: 6px;
}

.filter-chip {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-chip:hover {
  border-color: var(--teal-primary);
  color: var(--text-primary);
}

.filter-chip.active {
  background: var(--teal-primary);
  color: var(--bg-primary);
  border-color: var(--teal-primary);
  font-weight: 700;
}

.investigator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-height: 700px;
  overflow-y: auto;
  padding-right: 8px;
  margin-top: 16px;
}

.investigator-grid::-webkit-scrollbar {
  width: 12px;
}

.investigator-grid::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.investigator-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 6px;
}

.investigator-grid::-webkit-scrollbar-thumb:hover {
  background: var(--teal-primary);
  border: 3px solid transparent;
  background-clip: padding-box;
}

.investigator-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 16px;
  transition: all var(--transition-fast);
}

/* Class Borders */
.investigator-card.guardian { border-color: rgba(43, 83, 164, 0.3); }
.investigator-card.guardian:hover { border-color: rgb(43, 83, 164); box-shadow: 0 5px 20px rgba(43, 83, 164, 0.25); }
.investigator-card.seeker { border-color: rgba(236, 132, 38, 0.3); }
.investigator-card.seeker:hover { border-color: rgb(236, 132, 38); box-shadow: 0 5px 20px rgba(236, 132, 38, 0.25); }
.investigator-card.rogue { border-color: rgba(16, 113, 71, 0.3); }
.investigator-card.rogue:hover { border-color: rgb(16, 113, 71); box-shadow: 0 5px 20px rgba(16, 113, 71, 0.25); }
.investigator-card.mystic { border-color: rgba(81, 58, 138, 0.3); }
.investigator-card.mystic:hover { border-color: rgb(81, 58, 138); box-shadow: 0 5px 20px rgba(81, 58, 138, 0.25); }
.investigator-card.survivor { border-color: rgba(204, 48, 56, 0.3); }
.investigator-card.survivor:hover { border-color: rgb(204, 48, 56); box-shadow: 0 5px 20px rgba(204, 48, 56, 0.25); }
.investigator-card.neutral { border-color: rgba(134, 134, 134, 0.3); }
.investigator-card.neutral:hover { border-color: rgb(134, 134, 134); box-shadow: 0 5px 20px rgba(134, 134, 134, 0.25); }
.investigator-card.enemy { border-color: rgba(220, 20, 60, 0.3); }
.investigator-card.enemy:hover { border-color: rgb(220, 20, 60); box-shadow: 0 5px 20px rgba(220, 20, 60, 0.25); }

.investigator-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
}

.investigator-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.investigator-fallback-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.investigator-fallback-avatar.guardian { background: linear-gradient(135deg, rgba(43, 83, 164, 0.1), rgba(43, 83, 164, 0.25)); }
.investigator-fallback-avatar.seeker { background: linear-gradient(135deg, rgba(236, 132, 38, 0.1), rgba(236, 132, 38, 0.25)); }
.investigator-fallback-avatar.rogue { background: linear-gradient(135deg, rgba(16, 113, 71, 0.1), rgba(16, 113, 71, 0.25)); }
.investigator-fallback-avatar.mystic { background: linear-gradient(135deg, rgba(81, 58, 138, 0.1), rgba(81, 58, 138, 0.25)); }
.investigator-fallback-avatar.survivor { background: linear-gradient(135deg, rgba(204, 48, 56, 0.1), rgba(204, 48, 56, 0.25)); }
.investigator-fallback-avatar.neutral { background: linear-gradient(135deg, rgba(134, 134, 134, 0.1), rgba(134, 134, 134, 0.25)); }
.investigator-fallback-avatar.enemy { background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(220, 20, 60, 0.25)); }

.type-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.8);
  color: var(--text-primary);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.investigator-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
  margin-top: 12px;
}

.role-title-row h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.role-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-style: italic;
  display: block;
  margin-top: 2px;
}

.investigator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
}

.tag-badge.class-badge.guardian { background: rgba(43, 83, 164, 0.2); color: #a4c2ff; }
.tag-badge.class-badge.seeker { background: rgba(236, 132, 38, 0.2); color: #ffd6ad; }
.tag-badge.class-badge.rogue { background: rgba(16, 113, 71, 0.2); color: #94ffcc; }
.tag-badge.class-badge.mystic { background: rgba(81, 58, 138, 0.2); color: #dbccff; }
.tag-badge.class-badge.survivor { background: rgba(204, 48, 56, 0.2); color: #ffb5b8; }
.tag-badge.class-badge.neutral { background: rgba(134, 134, 134, 0.2); color: #e2e2e2; }
.tag-badge.class-badge.enemy { background: rgba(220, 20, 60, 0.2); color: #ffb3c1; }
.tag-badge.source-badge { background: rgba(255, 255, 255, 0.04); color: var(--text-secondary); border: 1px solid var(--border-glass); }

.game-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.game-badge-tag {
  font-size: 0.58rem;
  font-weight: 800;
  background: var(--bg-secondary);
  color: var(--teal-primary);
  padding: 1px 4px;
  border-radius: 3px;
  border: 1px solid rgba(0, 242, 254, 0.15);
}

.resin-select-wrap {
  margin-top: 2px;
}

.resin-select-wrap label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.resin-select-wrap span {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-resin-select {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  padding: 6px;
  font-size: 0.78rem;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.card-resin-select:focus {
  border-color: var(--teal-primary);
}

.card-price-display {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: auto;
}

.card-price-display .price-val {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.add-investigator-btn {
  width: 100%;
  padding: 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  background: var(--teal-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.add-investigator-btn:hover {
  background: var(--teal-hover);
  box-shadow: 0 0 12px var(--teal-glow);
}

/* ==========================================================================
   RESIN DETAILS SECTION
   ========================================================================== */

.resins-info-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-line);
  padding: 50px clamp(18px, 4vw, 56px);
}

.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.tech-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all var(--transition-normal);
  min-width: 200px;
}

.tech-tab-btn span {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.tech-tab-btn small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.tech-tab-btn:hover {
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.05);
}

.tech-tab-btn.active {
  background: rgba(0, 242, 254, 0.05);
  border-color: var(--teal-primary);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.tech-tab-btn.active span {
  color: var(--teal-primary);
}

.tech-tab-btn.active small {
  color: var(--text-secondary);
}

.tech-content {
  display: none !important;
}

.tech-content.active {
  display: grid !important;
}

.resins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.resin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: all var(--transition-medium);
}

.resin-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-glow);
}

.resin-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
}

.resin-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-top: 4px;
}

.resin-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.resin-price-tag {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  padding-top: 12px;
}

.resin-price-tag.alt {
  color: var(--teal-primary);
}

.resin-price-tag.gold {
  color: var(--gold-primary);
}

/* ==========================================================================
   PHOTO GRID GALLERY
   ========================================================================== */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Lightbox Dialog */
.lightbox-dialog {
  border: none;
  background: rgba(0, 0, 0, 0.95);
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox-dialog[open] {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  color: var(--text-primary);
  font-size: 0.95rem;
  text-align: center;
  font-family: var(--font-display);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 1001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

@media (max-width: 1024px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .tech-tab-btn {
    min-width: 0;
    width: 100%;
    padding: 10px 16px;
  }
}

/* ==========================================================================
   MEDIA GALLERY & FAQ Accordion
   ========================================================================== */

.media-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-line);
  padding: 80px clamp(18px, 4vw, 56px);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.featured-media {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.featured-media:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
}

.featured-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.featured-media div {
  padding: 20px;
}

.featured-media h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.featured-media p {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
}

.photo-strip img:hover {
  transform: scale(1.04);
  border-color: var(--teal-primary);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.15);
}

/* FAQ Accordion */
.faq-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-line);
  padding: 80px clamp(18px, 4vw, 56px);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-card);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-list details[open] {
  border-color: var(--teal-primary);
  background: rgba(22, 26, 38, 0.85);
}

.faq-list summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--teal-primary);
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.faq-list details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-list p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */

.process {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-line);
  padding: 80px clamp(18px, 4vw, 56px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-grid article {
  display: grid;
  gap: 12px;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.process-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--teal-primary);
  box-shadow: 0 8px 24px rgba(0, 242, 254, 0.15);
}

.process-grid span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--teal-primary);
  font-weight: 900;
  text-shadow: 0 0 10px var(--teal-glow);
}

.process-grid h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.process-grid p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   LEGAL TERMS SECTION
   ========================================================================== */

.legal-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-line);
  padding: 80px clamp(18px, 4vw, 56px);
}

.legal-section .section-heading {
  align-items: center;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.legal-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-card);
  padding: 24px;
}

.legal-grid h3 {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
}

.legal-grid p {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.legal-disclaimer {
  max-width: 1000px;
  margin-top: 24px;
  border-left: 3px solid var(--red-primary);
  background: rgba(255, 65, 108, 0.03);
  padding: 16px 20px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  border-radius: 4px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px clamp(18px, 4vw, 56px);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-line);
  font-size: 0.9rem;
  border-radius: 0 0 16px 16px;
}

.site-footer div {
  display: grid;
  gap: 8px;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.site-footer span {
  color: var(--text-secondary);
}

.site-footer a {
  color: var(--teal-primary);
  font-weight: 700;
}

.site-footer a:hover {
  text-shadow: 0 0 8px var(--teal-glow);
}

.site-footer a.keddify-link {
  color: #ffb800;
  text-shadow: 0 0 5px rgba(255, 184, 0, 0.15);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.site-footer a.keddify-link:hover {
  color: #ffcc33;
  text-shadow: 0 0 12px rgba(255, 204, 51, 0.6);
}

/* ==========================================================================
   PRODUCT DETAIL DIALOG
   ========================================================================== */

.product-dialog {
  width: min(900px, calc(100vw - 32px));
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 0;
  background: var(--bg-secondary);
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.product-dialog::backdrop {
  background: rgba(5, 6, 10, 0.85);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(9, 10, 15, 0.7);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.dialog-close:hover {
  background: var(--red-primary);
  color: #fff;
  border-color: var(--red-primary);
}

.dialog-product {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.dialog-gallery {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dialog-gallery-main {
  position: relative;
  overflow: hidden;
}

.dialog-gallery-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
  transition: opacity 0.3s ease;
}

.dialog-gallery-thumbs {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.3);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-glass) transparent;
}

.dialog-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  opacity: 0.55;
  transition: all 0.2s ease;
}

.dialog-thumb:hover {
  opacity: 0.85;
  border-color: var(--border-glass-hover);
}

.dialog-thumb.is-active {
  opacity: 1;
  border-color: var(--teal-primary);
  box-shadow: 0 0 8px rgba(0, 210, 190, 0.3);
}

.dialog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.dialog-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
}

.dialog-info .eyebrow {
  margin-bottom: 6px;
}

.dialog-info h2 {
  font-size: 1.8rem;
  font-family: var(--font-sans);
}

.dialog-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.dialog-description {
  line-height: 1.7 !important;
}

.dialog-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.option-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--bg-tertiary);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.option-list label:hover {
  border-color: var(--border-glass-hover);
  background: rgba(255, 255, 255, 0.02);
}

.option-list input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal-primary);
  min-height: auto;
  margin: 0;
  cursor: pointer;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  max-width: min(360px, calc(100vw - 48px));
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  background: var(--bg-tertiary);
  border: 1px solid var(--teal-primary);
  color: var(--text-primary);
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.25);
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    opacity var(--transition-normal) var(--ease-out),
    transform var(--transition-normal) var(--ease-out);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   ADMIN PANEL DASHBOARD
   ========================================================================== */

.admin-body {
  background-color: var(--bg-primary);
}

.admin-shell {
  padding: 60px clamp(18px, 4vw, 56px) 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.admin-login {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.admin-login h1 {
  margin-bottom: 16px;
}

.admin-login-card {
  align-self: start;
}

.admin-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.admin-steps article {
  display: grid;
  gap: 8px;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-card);
  padding: 20px;
  text-align: center;
  place-items: center;
}

.admin-steps strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-primary);
  color: var(--bg-primary);
  font-weight: 800;
  box-shadow: 0 0 10px var(--teal-glow);
}

.admin-steps span {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.admin-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-lg);
}

.admin-dashboard {
  display: grid;
  gap: 32px;
  animation: fadeUp 0.5s var(--ease-out) both;
}

.admin-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.admin-topbar p {
  color: var(--text-secondary);
}

.admin-topbar-actions {
  display: flex;
  gap: 12px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.admin-stats article {
  display: grid;
  gap: 8px;
  padding: 20px 24px;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.admin-stats span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-stats strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-glow);
}

.admin-help-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0, 242, 254, 0.15);
  border-radius: 8px;
  background: var(--teal-dim);
  padding: 16px 20px;
}

.admin-help-strip strong {
  color: var(--teal-primary);
  white-space: nowrap;
  font-size: 0.9rem;
}

.admin-help-strip span {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 24px;
  align-items: start;
}

.admin-photo-box {
  display: grid;
  gap: 12px;
}

.admin-field-title {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.admin-photo-box p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.image-drop {
  position: relative;
  display: grid;
  gap: 12px;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  border: 2px dashed rgba(0, 242, 254, 0.3);
  border-radius: 8px;
  background: var(--bg-tertiary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.image-drop:hover {
  border-color: var(--teal-primary);
  background: rgba(0, 242, 254, 0.02);
}

.image-drop input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.image-drop img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}

.image-drop span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  border-radius: 6px;
  background: rgba(9, 10, 15, 0.8);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.admin-advanced {
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-tertiary);
  padding: 16px;
}

.admin-advanced summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text-secondary);
  user-select: none;
  outline: none;
}

.admin-advanced summary:hover {
  color: var(--text-primary);
}

.admin-advanced > div {
  margin-top: 14px;
}

.admin-list-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--border-line);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.admin-products {
  display: grid;
  gap: 12px;
  max-height: 650px;
  overflow-y: auto;
  padding-right: 4px;
}

.admin-product {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  background: var(--bg-card);
  padding: 12px;
  transition: all var(--transition-fast);
}

.admin-product:hover {
  border-color: var(--border-glass-hover);
  background: rgba(22, 26, 38, 0.85);
}

.admin-product img {
  width: 80px;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.admin-product div {
  display: grid;
  gap: 4px;
}

.admin-product strong {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.admin-product span {
  font-size: 0.8rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.admin-product p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.admin-product-actions {
  display: flex;
  gap: 8px;
}

.admin-product-actions button {
  min-height: 36px;
}

.admin-danger {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--border-line);
  padding-top: 16px;
  margin-top: 16px;
}

.admin-danger button {
  border-color: var(--red-primary);
  color: var(--red-primary);
}

.admin-danger button:hover {
  background: var(--red-dim);
  border-color: var(--red-primary);
  color: var(--red-primary);
  box-shadow: 0 0 12px var(--red-glow);
}

.admin-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

@keyframes heroDrift {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.07) translate3d(0.8%, -0.5%, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  body.is-loaded .hero-showcase img:first-child {
    animation: heroDrift 20s var(--ease-out) infinite alternate;
  }
  
  .reveal {
    transition-delay: var(--reveal-delay, 0ms);
  }
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step-tiles,
  .offer-tiles,
  .compact-rules,
  .investigator-grid,
  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 16px;
  }
  
  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: center;
    gap: 16px;
  }
  
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .info-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .quote-form {
    grid-template-columns: 1fr 1fr;
  }
  
  .media-grid,
  .admin-login,
  .admin-grid,
  .dialog-product {
    grid-template-columns: 1fr;
  }
  
  .visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .visual-card.large {
    grid-row: auto;
  }
  
  .proof-strip {
    grid-template-columns: 1fr;
  }
  
  .dialog-gallery-main img {
    height: 260px;
  }

  .dialog-gallery-thumbs {
    padding: 4px 6px;
  }

  .dialog-thumb {
    width: 52px;
    height: 42px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 12px 16px;
  }
  
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  
  .brand strong {
    font-size: 1rem;
  }
  
  .brand small,
  .cart-pill span:not(.cart-pill strong) {
    display: none;
  }
  
  .main-nav {
    display: none; /* Hide top nav on tiny screens or wrap them */
  }
  
  .shop-hero {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-height: auto;
    padding: 100px 16px 40px;
    align-items: stretch;
  }
  
  .hero-copy {
    order: 1;
  }
  
  .hero-showcase {
    order: 2;
    height: 320px;
    box-shadow: var(--shadow-md);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .primary-button,
  .ghost-link {
    width: 100%;
    text-align: center;
  }
  
  .step-tiles,
  .offer-tiles,
  .compact-rules,
  .investigator-grid,
  .legal-grid,
  .product-grid,
  .process-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }
  
  .toolbar {
    grid-template-columns: 1fr;
  }
  
  .quote-form {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-shell {
    padding: 40px 16px 60px;
  }
  
  .admin-stats {
    grid-template-columns: 1fr;
  }
  
  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==========================================================================
   SHOWROOM DETAILED COPY STYLES
   ========================================================================== */

.showroom-about-block {
  padding: 24px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.showroom-about-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  border-left: 3px solid var(--teal-primary);
  padding-left: 10px;
}

.showroom-about-block h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 14px;
}

.showroom-about-block p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.bullet-list {
  list-style: disc;
  margin-left: 1.5rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.bullet-list strong, .numbered-list strong {
  color: var(--text-primary);
}

/*.numbered-list {
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ==========================================================================
   TRUST & STATISTICS SECTION
   ========================================================================== */

.trust-stats-section {
  padding: 40px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid var(--border-line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all var(--transition-normal);
}

.stat-card.olx-stat::before {
  background: #23e5db;
}

.stat-card.allegro-stat::before {
  background: #ff5a00;
}

.stat-card.sales-stat::before {
  background: var(--teal-primary);
}

.stat-card.model-stat::before {
  background: var(--gold-primary);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.stat-card.olx-stat:hover {
  border-color: rgba(35, 229, 219, 0.3);
  box-shadow: 0 10px 25px rgba(35, 229, 219, 0.08);
}

.stat-card.allegro-stat:hover {
  border-color: rgba(255, 90, 0, 0.3);
  box-shadow: 0 10px 25px rgba(255, 90, 0, 0.08);
}

.stat-card.sales-stat:hover {
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.08);
}

.stat-card.model-stat:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.08);
}

.stat-icon {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-icon svg {
  width: 60px;
  height: 24px;
  fill: #23e5db;
}

.allegro-logo-txt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -1.5px;
  text-transform: lowercase;
  color: #ff5a00;
  line-height: 1;
}

.stat-card .stat-icon {
  font-size: 2rem;
}

.stat-card .stat-icon svg,
.stat-card .allegro-logo-txt {
  font-size: initial;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 6px;
  white-space: nowrap;
}

.olx-stat .stat-number {
  color: #23e5db;
  text-shadow: 0 0 15px rgba(35, 229, 219, 0.1);
}

.allegro-stat .stat-number {
  color: #ff5a00;
  text-shadow: 0 0 15px rgba(255, 90, 0, 0.1);
}

.sales-stat .stat-number {
  color: var(--teal-primary);
  text-shadow: 0 0 15px var(--teal-glow);
}

.model-stat .stat-number {
  color: var(--gold-primary);
  text-shadow: 0 0 15px var(--gold-glow);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   KEDDIFY PROMO BANNER
   ========================================================================== */
.promo-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: rgba(13, 13, 22, 0.96);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 102, 255, 0.08);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(12px);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}

.promo-banner::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.promo-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.promo-close:hover {
  color: #8b5cf6;
}

.promo-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(251, 191, 36, 0.08);
  color: #fbbf24;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.promo-banner h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.keddify-logo-text {
  font-weight: 800;
  background: linear-gradient(135deg, #0066ff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.promo-banner p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.promo-actions {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
  margin-top: 4px;
}

.promo-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.promo-btn.primary {
  background: linear-gradient(135deg, #0066ff, #8b5cf6);
  color: #ffffff;
  border: none;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.promo-btn.primary:hover {
  background: linear-gradient(135deg, #1e77ff, #9b6bf7);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.promo-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
}

.promo-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

@media (max-width: 480px) {
  .promo-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
  }
  .resins-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   3D STL MODEL VIEWER & UPLOAD
   ========================================================================== */
.stl-upload-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.stl-upload-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stl-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0 16px;
  width: fit-content;
}

.stl-upload-btn:hover {
  background: rgba(0, 242, 254, 0.08);
  border-color: var(--teal-primary);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
  transform: translateY(-1px);
}

.stl-file-name {
  font-size: 0.76rem;
  color: var(--teal-primary);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#stl-viewer-container {
  width: 100%;
  height: 320px;
  background: #050508;
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.stl-viewer-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: var(--text-secondary);
  font-size: 0.86rem;
  pointer-events: none;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 11px;
}

.stl-loading-spinner {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.stl-loading-spinner .spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0, 242, 254, 0.15);
  border-top-color: var(--teal-primary);
  border-radius: 50%;
  animation: stl-spin 0.8s linear infinite;
}

@keyframes stl-spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   ORDER TRACKING SECTION
   ========================================================================== */
.tracker-section {
  background: var(--bg-primary);
  padding: 80px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--border-line);
}

.tracker-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 36px;
  max-width: 720px;
  margin: 32px auto 0;
  box-shadow: var(--shadow-md);
}

.tracker-card > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  text-align: center;
  margin-bottom: 24px;
}

.tracker-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tracker-form button {
  width: 100%;
  margin-top: 8px;
}

.tracker-divider {
  height: 1px;
  background: var(--border-glass);
  margin: 32px 0;
}

.tracker-info-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 24px;
  text-align: center;
}

.tracker-info-label strong {
  color: var(--teal-primary);
}

.tracker-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 24px 0 32px;
}

.tracker-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  flex: 1;
  text-align: center;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 255, 255, 0.10);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.step-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.4s ease;
}

.tracker-step.active .step-circle {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--teal-primary);
  color: var(--teal-primary);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.25);
}

.tracker-step.active .step-name {
  color: var(--text-primary);
}

.tracker-step.completed .step-circle {
  background: var(--teal-primary);
  border-color: var(--teal-primary);
  color: #000;
}

.tracker-step.completed .step-name {
  color: var(--teal-primary);
}

.tracker-details-summary {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.tracker-details-summary strong {
  color: var(--text-primary);
}

.tracker-tracking-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 12px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--teal-primary);
  border-radius: 4px;
  color: var(--teal-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.tracker-tracking-btn:hover {
  background: var(--teal-primary);
  color: #000;
  box-shadow: 0 0 10px var(--teal-glow);
}

/* ==========================================================================
   TESTIMONIALS (OPINIE) CAROUSEL
   ========================================================================== */
.testimonials-section {
  background: var(--bg-secondary);
  padding: 80px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--border-line);
}

.testimonials-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}

.testimonials-wrapper {
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  opacity: 0;
  transform: translateX(50px) scale(0.95);
  transition: all 0.5s var(--ease-out);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  pointer-events: none;
  width: 100%;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.testimonial-arrow:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-glass-hover);
  color: var(--text-primary);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .testimonials-container {
    gap: 10px;
  }
  .testimonial-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
  .testimonial-text {
    font-size: 0.98rem;
  }
  .tracker-card {
    padding: 24px 16px;
  }
  .tracker-steps::before {
    display: none;
  }
  .tracker-steps {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-left: 20px;
  }
  .tracker-step {
    flex-direction: row;
    gap: 14px;
    text-align: left;
  }
}

[hidden] {
  display: none !important;
}
