/* ============================================================
   Player's Price TCG — styles.css
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --red:        #E3263A;
  --yellow:     #F5D130;
  --navy:       #0D1B2A;
  --navy-mid:   #132336;
  --navy-light: #1E3A5F;
  --white:      #F4F6F8;
  --muted:      #7A92A8;
  --card-bg:    #142033;
  --border:     rgba(245, 209, 48, 0.12);
  --glow-r:     rgba(227, 38,  58, 0.2);
  --glow-y:     rgba(245, 209, 48, 0.15);
}

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }

.loader-pokeball {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid var(--red);
  border-top-color: var(--yellow);
  animation: lspin 1s linear infinite;
}
@keyframes lspin { to { transform: rotate(360deg); } }

.loader-progress {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 999px;
  animation: lfill 1.8s cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes lfill {
  0%   { width: 0%; }
  70%  { width: 75%; }
  100% { width: 100%; }
}
.loader-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── GLOBAL ── */
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(227, 38, 58, .07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(245, 209, 48, .05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  background: rgba(13, 27, 42, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(245, 209, 48, .4));
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #c41f30; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: var(--navy);
  z-index: 99;
  padding: 32px 5%;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 38, 58, .12);
  border: 1px solid rgba(227, 38, 58, .3);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--yellow); display: block; }
.hero-title .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 13px 28px 13px 46px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: visible;
  display: inline-block;
}
.btn-primary::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url('assets/ball.png') center / contain no-repeat;
  pointer-events: none;
}
.btn-primary:hover {
  background: #c41f30;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 38, 58, .35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .2);
  transition: all .2s;
  cursor: pointer;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-stack { position: relative; width: 280px; height: 380px; margin: 0 auto; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── HERO VIDEO BG ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
  pointer-events: none;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13, 27, 42, .85) 0%,
    rgba(13, 27, 42, .5)  50%,
    rgba(13, 27, 42, .75) 100%);
}
.hero-video-wrap .video-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 120% 80% at 30% 50%, rgba(227, 38, 58, .18) 0%, transparent 55%),
    radial-gradient(ellipse 80%  60% at 70% 30%, rgba(245, 209, 48, .1)  0%, transparent 50%),
    var(--navy);
}

/* ── HERO CARD STACK ── */
.hero-card {
  position: absolute;
  width: 175px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .08);
}
.hero-card img { width: 100%; display: block; border-radius: 10px; }
.hero-card-1 { top: 0;  left: 30px; transform: rotate(-9deg); animation: float1 4.5s ease-in-out infinite; }
.hero-card-2 { top: 30px; right: 0; transform: rotate(6deg);  animation: float2 5.5s ease-in-out infinite; }
.hero-card-3 { top: 60px; left: 0;  transform: rotate(-3deg) translateY(20px); animation: float3 6s ease-in-out infinite; opacity: .7; z-index: -1; }

@keyframes float1 {
  0%, 100% { transform: rotate(-9deg) translateY(0) scale(1); }
  50%       { transform: rotate(-7deg) translateY(-14px) scale(1.02); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%       { transform: rotate(4deg) translateY(-10px); }
}
@keyframes float3 {
  0%, 100% { transform: rotate(-3deg) translateY(20px); }
  50%       { transform: rotate(-5deg) translateY(10px); }
}
.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%, rgba(255,255,255,.05) 100%);
  border-radius: 10px;
  pointer-events: none;
}
.card-loading-placeholder {
  width: 175px;
  height: 244px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a3050, #0d1b2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: .6; }
  50%       { opacity: 1; }
}

/* ── SECTION SHARED ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.section-title .y { color: var(--yellow); }
.section-sub { color: var(--muted); margin-top: 8px; font-size: .95rem; }

/* ── PRICE LOOKUP ── */
#price-lookup {
  padding: 80px 0 100px;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
}
.lookup-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .4);
  position: relative;
  z-index: 1;
}

/* Hide tabs — only search remains */
.lookup-tabs { display: none; }
.lookup-panel { display: block; }

.search-row {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.search-input {
  width: 100%;
  background: rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
}
.search-input::placeholder { color: var(--muted); }
.search-input:focus { border-color: var(--yellow); }
.search-btn {
  width: 100%;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.search-btn:hover { background: #e8c61a; transform: translateY(-1px); }

/* Side by side on larger screens */
@media (min-width: 600px) {
  .search-row { flex-direction: row; }
  .search-btn { width: auto; }
}

/* ── INVENTORY ── */
#inventory {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.inventory-carousel-wrap {
  position: relative;
  margin-top: 28px;
  overflow: visible;
  padding: 0 28px;
}

.inventory-carousel {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.inv-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  flex: 0 0 280px;
  width: 280px;
}
.inv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(245,209,48,.2);
}
.inv-img {
  background: linear-gradient(135deg, #1a3050, #0d1b2a);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.inv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inv-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(13,27,42,.5));
}
.inv-body   { padding: 18px; }
.inv-tag    { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 4px; }
.inv-name   { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.inv-cta    { font-size: .78rem; color: var(--muted); font-style: italic; margin-top: 6px; }

/* Carousel nav buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all .2s;
  font-size: 1.1rem;
}
.inventory-carousel {
  overflow: visible;
}
.carousel-track-clip {
  overflow: hidden;
  border-radius: 4px;
}
.carousel-btn:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* Dots */
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.carousel-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

/* Contact nudge */
.inventory-cta-strip {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 0;
  padding: 28px 24px;
  background: rgba(245,209,48,.05);
  border: 1px solid rgba(245,209,48,.15);
  border-radius: 12px;
}
.inventory-cta-strip p {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.inventory-cta-strip p strong { color: var(--white); }

/* ── TRADE SHOWS ── */
#shows {
  padding: 80px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.show-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 760px;
  margin: 32px auto 0;
}
.show-badge         { background: var(--red); color: #fff; border-radius: 10px; padding: 16px 20px; text-align: center; flex-shrink: 0; }
.show-badge-month   { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; }
.show-badge-day     { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900; line-height: 1; }
.show-info h3       { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; margin-bottom: 6px; }
.show-info p        { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.show-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  transition: all .2s;
}
.show-link:hover { background: #e8c61a; transform: translateY(-1px); }

/* ── WHY POKEMON ── */
#why {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.reason-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s;
  position: relative;
  overflow: hidden;
}
.reason-card:hover { border-color: rgba(245, 209, 48, .3); }
.reason-num   { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900; color: rgba(245,209,48,.15); line-height: 1; margin-bottom: 8px; }
.reason-title { font-weight: 600; font-size: .95rem; margin-bottom: 6px; color: var(--yellow); }
.reason-body  { color: var(--muted); font-size: .85rem; line-height: 1.6; }
.reason-silhouette {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 110px;
  height: 110px;
  object-fit: contain;
  opacity: 0.07;
  pointer-events: none;
  filter: invert(1);
}

/* ── CONTACT ── */
#contact {
  padding: 80px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.contact-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 16px; }
.contact-info p  { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--white);
  transition: border-color .2s, transform .15s;
}
.contact-method:hover { border-color: rgba(245,209,48,.3); transform: translateX(4px); }
.method-icon  { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.method-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.method-val   { font-size: .9rem; font-weight: 500; }

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 14px 14px 46px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.form-submit::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url('assets/ball.png') center / contain no-repeat;
  pointer-events: none;
}
.form-submit:hover { background: #c41f30; transform: translateY(-1px); }

/* ── PAYMENTS ── */
#payments {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.payments-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.pay-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
  min-width: 140px;
  justify-content: center;
}
.pay-btn:hover { border-color: var(--yellow); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.pay-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.pay-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 28px 5%;
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.footer-logo  { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 900; letter-spacing: .05em; color: var(--yellow); }
.footer-copy  { color: var(--muted); font-size: .8rem; }
.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.footer-soc {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s;
}
.footer-soc:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta  { display: none; }
  .hamburger            { display: flex; }
  .hero-inner           { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 60px 5%; }
  .hero-sub             { margin: 0 auto 32px; }
  .hero-btns            { justify-content: center; }
  .hero-visual          { order: -1; }
  .hero-stats           { justify-content: center; }
  .contact-grid         { grid-template-columns: 1fr; }
  .show-card            { flex-direction: column; text-align: center; }
  .footer-inner         { flex-direction: column; text-align: center; }
  .inv-card             { flex: 0 0 240px; width: 240px; }
  .carousel-btn.prev    { left: -8px; }
  .carousel-btn.next    { right: -8px; }

  #price-lookup         { padding: 48px 0 64px; }
  .lookup-box           { margin: 0 16px; padding: 24px 16px; }
  .search-row           { flex-direction: column; }
  .search-btn           { width: 100%; }
  .inventory-cta-strip  { padding: 20px 16px; }
}
