 /* ==========================================================
   01. FONT IMPORTS
========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Neogen';
  src: url('../assets/fonts/Neogen-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================
   02. DESIGN TOKENS / BRAND VARIABLES
========================================================== */
:root {
  --brand: #006CFF;
  --brand-dark: #004FC2;
  --brand-soft: #EAF3FF;
  --brand-softer: #F6FAFF;

  --ink: #080B14;
  --text: #253149;
  --muted: #59667A;
  --line: #DCE8FB;
  --card: #FFFFFF;

  --shadow: 0 18px 45px rgba(0, 91, 209, 0.10);
  --shadow-small: 0 10px 25px rgba(0, 91, 209, 0.08);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --site-max: 1180px;
  --container-max: 1080px;
}

/* ==========================================================
   03. RESET AND BASE STYLES
========================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--ink);
  background: #FFFFFF;
  line-height: 1.6;
}

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

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

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

/* Accessibility helper for screen-reader-only labels */
.sr-only {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: #FFFFFF;
}

.skip-link:focus {
  top: 18px;
}

/* ==========================================================
   04. GLOBAL LAYOUT HELPERS
========================================================== */
.site-shell {
  width: min(var(--site-max), calc(100% - 40px));
  margin: 24px auto;
  overflow: clip;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.container {
  width: min(var(--container-max), calc(100% - 48px));
  margin-inline: auto;
}

main {
  padding-bottom: 28px;
}

.section-block {
  margin-top: 28px;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 32px 0 18px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.035em;
}

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

.text-link {
  color: var(--brand);
  font-weight: 800;
}

/* ==========================================================
   05. HEADER AND NAVIGATION
========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(16px);
}

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

.logo-wrap img {
  width: 150px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: #20283A;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--brand);
  border-radius: 999px;
  transition: width 0.25s ease;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.mobile-toggle,
.close-mobile {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--brand);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.icon-button:hover,
.mobile-toggle:hover,
.close-mobile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
  background: var(--brand-soft);
}

.search-details {
  position: relative;
}

.search-details summary {
  list-style: none;
}

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

.search-box {
  position: absolute;
  right: 0;
  top: 62px;
  width: min(560px, calc(100vw - 70px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

/* ==========================================================
   CSS ONLY MOBILE MENU
========================================================== */

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* Hamburger hidden on desktop */
.mobile-toggle {
  display: none;
  padding: 0;
}
.mobile-toggle span {

  display: block;

  width: 20px;

  height: 2px;

  margin: 3px 0;

  border-radius: 999px;

  background: currentColor;

}
/* Dark overlay */
.mobile-backdrop {

  position: fixed;

  inset: 0;

  z-index: 80;

  background: rgba(8,11,20,0.25);

  opacity:0;

  pointer-events:none;

  transition:opacity .25s ease;

}
/* Sliding menu */
.mobile-panel {

  position: fixed;
  top:0;
  right:0;
  bottom:0;
  height:100vh;
  width:min(350px,90vw);
  padding:24px;
  z-index:90;
  display:flex;
  flex-direction:column;
  gap:24px;
  background:white;
  box-shadow:
  -15px 0 45px rgba(0,0,0,.15);
  transform:translateX(110%);
  transition:transform .3s ease;
}
/* OPEN STATE */

.nav-toggle:checked ~ .mobile-panel {

  transform:translateX(0);

}


.nav-toggle:checked ~ .mobile-backdrop {

  opacity:1;

  pointer-events:auto;

}
/* Mobile logo */

.mobile-panel-header img {

  width:132px;

}
/* Mobile links */

.mobile-nav {

  display:grid;

  gap:12px;

}
.mobile-nav a {

  display:flex;

  align-items:center;


  width:100%;


  padding:15px 18px;


  border:

  1px solid var(--line);


  border-radius:16px;


  font-weight:700;


  color:var(--ink);


  background:white;

}
.mobile-nav a.active,
.mobile-nav a:hover {

  background:var(--brand);

  color:white;

}
/* ==========================================================
   06. BUTTONS AND FORM ELEMENTS
========================================================== */
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
}

.btn-primary {
  background: var(--brand);
  color: #FFFFFF;
}

.btn-outline {
  background: #FFFFFF;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn-arrow {
  font-size: 1.3em;
  line-height: 0;
}

.search-box input,
.newsletter input,
.collection-search input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: #FFFFFF;
  color: var(--ink);
}

.search-box input:focus,
.newsletter input:focus,
.collection-search input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 108, 255, 0.10);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
  border-radius: 18px;
}

/* ==========================================================
   07. HERO SECTIONS
========================================================== */
.hero,
.page-hero {
  display: grid;
  align-items: center;
  gap: 54px;
  padding: 54px 0 38px;
}

.hero {
  grid-template-columns: 0.95fr 1.05fr;
}

.page-hero {
  grid-template-columns: 1fr 0.75fr;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 50px;
  color: #050914;
  font-family: 'Neogen', 'Poppins', Arial, sans-serif;
  font-weight: 1000;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.hero-copy h1 {
  font-size: clamp(50px, 5vw, 84px);
}

.page-hero h1 {
  font-size: clamp(100px, 6vw, 84px);
}

.hero-copy h1 span,
.page-hero h1 span,
.about-panel h2 span {
  color: var(--brand);
}

.hero-copy p,
.page-hero p {
  max-width: 560px;
  color: var(--text);
  font-size: 16px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

/* Homepage animated halo area */
.moving-showcase {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: radial-gradient(circle at 62% 34%, #EAF3FF, transparent 42%), linear-gradient(140deg, #FFFFFF, #F8FBFF);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.90);
}

.hero-placeholder {
  position: absolute;
  inset: 42px 44px 96px;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #83A5D8;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.62);
  border: 2px dashed #BBD3F8;
  border-radius: 22px;
}

.hero-placeholder::before {
  content: '';
  position: absolute;
  top: 46px;
  width: 190px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 108, 255, 0.05);
  filter: blur(6px);
}

.orbit {
  position: absolute;
  border: 3px solid rgba(0, 108, 255, 0.24);
  border-radius: 50%;
  transform: rotate(-12deg);
  animation: spin 8s linear infinite;
}

.orbit-one {
  width: 380px;
  height: 106px;
  left: 72px;
  top: 118px;
}

.orbit-two {
  width: 490px;
  height: 132px;
  right: -84px;
  bottom: 104px;
  animation-duration: 12s;
  animation-direction: reverse;
}

.motion-caption {
  position: absolute;
  left: 32px;
  bottom: 26px;
  display: grid;
  gap: 2px;
  color: #111827;
}

.motion-caption small {
  color: var(--brand);
  font-weight: 1000;
  text-transform: uppercase;
}

.motion-caption strong {
  font-size: 24px;
  line-height: 1;
}

.motion-caption span {
  color: var(--muted);
  font-size: 13px;
}

@keyframes spin {
  to {
    transform: rotate(348deg);
  }
}

/* ==========================================================
   08. COMMON CARDS AND PLACEHOLDERS
========================================================== */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px 18px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.icon-line {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 24px;
  font-weight: 900;
}

.trust-item h3 {
  margin: 0;
  font-size: 15px;
}

.trust-item p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.card-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.collectible-card,
.review-card,
.guide-card,
.contact-card,
.form-panel,
.sidebar,
.spotlight-card,
.about-panel,
.contact-strip,
.rating-panel {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.collectible-card {
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collectible-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.badge {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.save-mark {
  color: var(--brand);
  font-size: 22px;
}

.placeholder {
  min-height: 150px;
  display: grid;
  place-items: center;
  color: #83A5D8;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #FFFFFF, var(--brand-softer));
  border: 2px dashed #BBD3F8;
  border-radius: 18px;
}

.placeholder.large {
  min-height: 250px;
}

.collectible-card h3 {
  margin: 16px 0 4px;
  font-size: 16px;
  line-height: 1.2;
}

.card-subtitle {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #1F2937;
  font-size: 13px;
  font-weight: 700;
}

.stars {
  color: var(--brand);
  letter-spacing: 0.05em;
}

.scale-pill {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
}

/* Homepage moving ticker */
.moving-ticker {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.ticker-label {
  color: var(--brand);
  font-weight: 900;
  white-space: nowrap;
}

.ticker-window {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  color: var(--muted);
  font-weight: 700;
  animation: tickerMove 18s linear infinite;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.card img {
  width: 100%;
  border-radius: 12px;
}

/* ==========================================================
   09. COLLECTION PAGE
========================================================== */
.compact-hero {
  grid-template-columns: 1fr 0.55fr;
}

.mini-visual {
  padding: 14px;
  background: radial-gradient(circle at center, var(--brand-soft), transparent 70%);
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 6px auto 18px;
}

.collection-search {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.collection-search button {
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #FFFFFF;
  font-weight: 800;
}

.static-sort {
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #27324A;
  font-weight: 700;
  white-space: nowrap;
}

.filter-system > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.chip-bar label {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #24314A;
  font-weight: 800;
  cursor: pointer;
}

.chip-bar label:hover {
  border-color: var(--brand);
  color: var(--brand);
}

#filter-all:checked ~ .chip-bar label[for="filter-all"],
#filter-hotwheels:checked ~ .chip-bar label[for="filter-hotwheels"],
#filter-diecast:checked ~ .chip-bar label[for="filter-diecast"],
#filter-figures:checked ~ .chip-bar label[for="filter-figures"],
#filter-vintage:checked ~ .chip-bar label[for="filter-vintage"],
#filter-other:checked ~ .chip-bar label[for="filter-other"] {
  background: var(--brand);
  color: #FFFFFF;
  border-color: var(--brand);
}

.collection-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 110px;
  padding: 20px;
}

.sidebar h2,
.sidebar h3 {
  margin: 0 0 12px;
}

.sidebar p,
.small-note {
  color: var(--muted);
  font-size: 14px;
}

.sidebar ul {
  display: grid;
  gap: 11px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.sidebar li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #24314A;
  font-weight: 700;
}

#filter-hotwheels:checked ~ .collection-layout .collectible-card:not(.cat-hotwheels),
#filter-diecast:checked ~ .collection-layout .collectible-card:not(.cat-diecast),
#filter-figures:checked ~ .collection-layout .collectible-card:not(.cat-figures),
#filter-vintage:checked ~ .collection-layout .collectible-card:not(.cat-vintage),
#filter-other:checked ~ .collection-layout .collectible-card:not(.cat-other) {
  display: none;
}

/* ==========================================================
   10. REVIEWS PAGE
========================================================== */
.rating-panel {
  padding: 24px;
}

.rating-panel strong {
  display: block;
  color: var(--brand);
  font-size: 52px;
  line-height: 1;
}

.rating-panel span {
  color: var(--muted);
}

.rating-bars {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.rating-bars i {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 70%, var(--line) 70%);
}

.rating-bars i:nth-child(2) {
  background: linear-gradient(90deg, var(--brand) 48%, var(--line) 48%);
}

.rating-bars i:nth-child(3) {
  background: linear-gradient(90deg, var(--brand) 28%, var(--line) 28%);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

.review-list {
  display: grid;
  gap: 20px;
}

.review-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px;
}

.review-card h2 {
  margin: 10px 0 6px;
}

.review-author {
  color: var(--brand);
  font-weight: 800;
}

.review-sidebar {
  position: sticky;
  top: 110px;
  padding: 22px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.review-sidebar ul {
  padding-left: 18px;
  color: var(--muted);
}

.form-panel {
  padding: 28px;
  margin-top: 28px;
}

.no-margin {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

/* ==========================================================
   11. FEATURED PAGE
========================================================== */
.featured-hero {
  grid-template-columns: 0.75fr 1.25fr;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
}

.spotlight-card h2 {
  margin: 12px 0;
  font-size: 26px;
  line-height: 1.1;
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
  color: var(--brand);
  font-weight: 800;
}

/* ==========================================================
   12. GUIDE / ABOUT PAGE
========================================================== */
.guide-hero {
  grid-template-columns: 1fr 1fr;
}

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

.guide-card {
  padding: 24px;
}

.guide-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
}

.guide-card h3 {
  margin: 0 0 10px;
}

.guide-card p {
  color: var(--muted);
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
}

.about-panel h2 {
  margin: 0 0 12px;
  font-size: 32px;
}

.about-panel p {
  color: var(--muted);
}

/* ==========================================================
   13. CONTACT PAGE AND FAQ
========================================================== */
.contact-hero {
  grid-template-columns: 1fr 0.65fr;
}

.contact-mascot {
  min-height: 220px;
  position: relative;
  display: grid;
  place-items: center;
}

.contact-mascot img {
  width: 160px;
  filter: drop-shadow(0 18px 20px rgba(0, 91, 209, 0.14));
  animation: bob 3s ease-in-out infinite;
}

.contact-mascot span {
  position: absolute;
  width: 260px;
  height: 90px;
  border: 3px dashed rgba(0, 108, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-10deg);
  animation: spin 9s linear infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 26px;
}

.contact-method {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method b {
  display: block;
}

.contact-method a {
  color: var(--brand);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-method p {
  margin: 4px 0 0;
  color: var(--muted);
}

.faq-section {
  margin-top: 28px;
}

.accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.accordion details {
  overflow: hidden;
  padding: 0;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary::after {
  content: '+';
  color: var(--brand);
  font-size: 20px;
}

.accordion details[open] summary::after {
  content: '-';
}

.accordion p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

/* ==========================================================
   14. CONTACT STRIP AND FOOTER
========================================================== */
.contact-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
}

.contact-strip h2,
.contact-strip p {
  margin: 0;
}

.contact-strip p {
  color: var(--muted);
}

.mail-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 24px;
}

.site-footer {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #FFFFFF, #F8FBFF);
}

.footer-inner {
  padding: 34px 0 20px;
}

.footer-inner img {
  width: 150px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 22px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #FFFFFF;
  font-weight: 900;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 24px 0;
}

.footer-links div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links h3 {
  margin: 0 0 6px;
}

.footer-links a,
.footer-links p {
  margin: 0;
  color: var(--muted);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter .btn {
  min-width: 54px;
  padding-inline: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

/* ==========================================================
   15. RESPONSIVE DESIGN
========================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-shell {
    width: min(430px, calc(100% - 24px));
    margin: 14px auto;
    border-radius: 24px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 82px;
  }

  .logo-wrap img {
    width: 130px;
  }

  .desktop-nav,
  .search-details {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
  }

  .hero,
  .page-hero,
  .compact-hero,
  .featured-hero,
  .guide-hero,
  .contact-hero,
  .spotlight-card,
  .about-panel,
  .reviews-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .moving-showcase {
    min-height: 270px;
  }

  .hero-placeholder {
    inset: 28px 24px 86px;
  }

  .trust-row {
    grid-template-columns: repeat(4, minmax(80px, 1fr));
    overflow-x: auto;
  }

  .trust-item {
    min-width: 92px;
    display: grid;
    justify-items: center;
    padding: 18px 10px;
    text-align: center;
  }

  .trust-item h3 {
    font-size: 11px;
  }

  .trust-item p {
    display: none;
  }

  .icon-line {
    width: 42px;
    height: 42px;
  }

  .card-grid,
  .card-grid-four,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .collectible-card {
    padding: 12px;
  }

  .placeholder {
    min-height: 120px;
  }

  .collectible-card h3 {
    font-size: 13px;
  }

  .card-meta {
    display: grid;
    gap: 8px;
    font-size: 12px;
  }

  .collection-layout {
    grid-template-columns: 1fr;
  }

  .sidebar,
  .review-sidebar {
    position: static;
  }

  .collection-toolbar,
  .collection-search,
  .footer-brand,
  .footer-links,
  .footer-bottom,
  .contact-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-image {
    min-height: 160px;
  }

  .accordion {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-brand {
    justify-items: start;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(390px, calc(100% - 14px));
  }

  .container {
    width: calc(100% - 24px);
  }

  .hero-actions .btn,
  .contact-strip .btn {
    width: 100%;
  }

  .card-grid,
  .card-grid-four,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .chip-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .chip-bar label {
    white-space: nowrap;
  }

  .motion-caption strong {
    font-size: 18px;
  }
}


/* ==========================================================
   FINAL MOBILE MENU OVERRIDE
========================================================== */

@media (max-width:980px){

  .desktop-nav,
  .search-details{
    display:none !important;
  }

  .mobile-toggle{
    display:grid !important;
  }

  .mobile-panel{
    display:flex !important;
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:min(350px,90vw);
    padding:24px;
    background:#fff;
    z-index:999;
    flex-direction:column;
    gap:24px;
    transform:translateX(110%);
    transition:transform .3s ease;
    box-shadow:-15px 0 45px rgba(0,0,0,.15);
  }

  .nav-toggle:checked ~ .mobile-panel{
    transform:translateX(0);
  }

  .mobile-nav{
    display:grid !important;
    gap:12px;
    width:100%;
  }

  .mobile-nav a{
    display:flex !important;
    width:100%;
    padding:15px 18px;
    border:1px solid var(--line);
    border-radius:16px;
    color:var(--ink);
    background:#fff;
    font-weight:700;
  }

  .mobile-nav a.active{
    background:var(--brand);
    color:#fff;
  }

}
