/**
 * Red Rocket Cards - Theme Styles
 * Design system and component styles
 */

:root {
  --yellow: #CC0000;
  --yellow-dark: #E63946;
  --red: #CC0000;
  --blue: #003A8C;
  --blue-light: #0052D4;
  --dark: #0A0A12;
  --dark2: #12121E;
  --dark3: #1C1C2E;
  --gray: #8888AA;
  --light: #F0F0FF;
  --white: #FFFFFF;
  --card-shine: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  --header-navy: #0a1021;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Barlow', sans-serif;
}

/* Breadcrumbs disabled site-wide except PDP bar (see .redrocket-pdp-breadcrumb). */
.woocommerce-breadcrumb:not(.redrocket-pdp-breadcrumb),
.rank-math-breadcrumb,
.breadcrumbs {
  display: none !important;
}

/* ── SITE HEADER (sticky when scrolled) ── */
.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.site-header.header-stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: visible;
}
body.admin-bar .site-header.header-stuck {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header.header-stuck {
    top: 46px;
  }
}
.site-header.header-stuck .announce {
  display: block !important;
  visibility: visible !important;
  flex-shrink: 0;
  min-height: fit-content;
}
.header-spacer {
  height: 0;
  transition: height 0.3s ease;
}

/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.announce a { color: var(--white); text-decoration: underline; }

.screen-reader-text {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* ── SITE NAV (two rows: search + account + cart; primary links below) ── */
.site-header-nav {
  background: var(--header-navy);
  border-bottom: 1px solid rgba(204,0,0,0.2);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}
.header-top {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-top .nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 12px 24px;
  gap: 20px;
}
.header-bottom .nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px 10px;
  position: relative;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--yellow);
  letter-spacing: 2px;
  text-decoration: none;
  flex-shrink: 0;
  text-shadow: 0 0 20px rgba(204,0,0,0.4);
}
.logo span { color: var(--white); }
.site-header-nav .custom-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header-nav .custom-logo {
  max-height: 48px;
  width: auto;
  height: auto;
}

/* Product search column (phone + pill) */
.header-search-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 120;
  overflow: visible;
}
.header-business-phone {
  text-align: center;
  line-height: 1.15;
}
.header-business-phone a {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.header-business-phone a:hover,
.header-business-phone a:focus-visible {
  color: var(--yellow);
  text-decoration: none;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
}

/* Product search (pill) */
.header-search {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-search__catwrap {
  flex-shrink: 0;
  border-right: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
}
.header-search__cat {
  border: none;
  background: transparent;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  padding: 12px 12px 12px 18px;
  cursor: pointer;
  max-width: 140px;
}
.header-search__input {
  flex: 1;
  min-width: 0;
  border: none;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  color: #111;
}
.header-search__input::placeholder {
  color: #888;
}
.header-search__submit {
  flex-shrink: 0;
  width: 52px;
  border: none;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, filter 0.2s;
}
.header-search__submit:hover {
  filter: brightness(1.08);
}

/* Header live search suggestions (sibling of .header-search inside .header-search-wrap) */
.header-search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  max-height: min(70vh, 420px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 200;
  -webkit-overflow-scrolling: touch;
}
.header-search-suggestions[hidden] {
  display: none !important;
}
.header-search-suggestions__status {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  padding: 16px 18px;
  color: #444;
  text-align: center;
}
.header-search-suggestions__status--empty,
.header-search-suggestions__status--error {
  color: #666;
}
.header-search-suggestions__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.header-search-suggestions__item {
  margin: 0;
  padding: 0;
}
.header-search-suggestions__item.is-active .header-search-suggestions__link,
.header-search-suggestions__link:hover,
.header-search-suggestions__link:focus-visible {
  background: rgba(204, 0, 0, 0.08);
  outline: none;
}
.header-search-suggestions__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header-search-suggestions__item:last-child .header-search-suggestions__link {
  border-bottom: none;
}
.header-search-suggestions__thumb {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: #f5f5f5;
}
.header-search-suggestions__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-align: left;
}
.header-search-suggestions__title {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
}
.header-search-suggestions__price {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}
.header-search-suggestions__price .woocommerce-Price-amount {
  color: inherit;
}

/* Account + loyalty */
.header-user {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  max-width: 220px;
}
.header-user__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #555 0%, #2a2a3a 100%);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.12);
}
.header-user__avatar--guest {
  opacity: 0.85;
}
.header-user__text {
  min-width: 0;
  font-size: 12px;
  line-height: 1.35;
}
.header-user__greet {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.header-user__hi {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.header-user__status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f5a623;
  flex-shrink: 0;
}
.header-user__loyalty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.header-user__pts {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.header-user__tier {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  background: #0a0a0a;
  padding: 3px 8px;
  border-radius: 999px;
  line-height: 1;
}
.header-user__links {
  margin-top: 4px;
}
.header-user__links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
}
.header-user__links a:hover {
  color: var(--white);
  text-decoration: underline;
}
.header-wishlist-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  margin-left: 6px;
  border-radius: 999px;
  padding: 0 5px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.header-user__sep {
  color: rgba(255,255,255,0.35);
  margin: 0 4px;
}
.header-user__signin {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.header-user__signin:hover {
  text-decoration: underline;
}

/* Cart */
.redrocket-header-cart-fragment {
  flex-shrink: 0;
}
.header-cart__link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.header-cart__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.header-cart__link:hover .header-cart__icon {
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(255,255,255,0.15);
}
.header-cart__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.header-cart__total {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.header-cart__total .woocommerce-Price-amount {
  font-weight: 800;
}
.header-cart__count {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Primary row */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header-bottom .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  list-style: none;
}
.header-bottom .nav-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.header-bottom .nav-links a:hover {
  color: var(--white);
  background: rgba(204,0,0,0.12);
}

/* ── HAMBURGER (mobile) ── */
.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-hamburger:hover {
  background: rgba(255,255,255,0.08);
}
.btn-hamburger .hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.2s;
}
.site-header-nav.nav-mobile-open .btn-hamburger .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header-nav.nav-mobile-open .btn-hamburger .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header-nav.nav-mobile-open .btn-hamburger .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── DROPDOWNS (desktop) ── */
.header-bottom .nav-links > li {
  position: relative;
}
.header-bottom .nav-links > .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.header-bottom .nav-links > .menu-item.menu-item-mega {
  position: relative;
}
/* Down caret: top-level parents only (submenus use a right chevron in flyout rows) */
.header-bottom .nav-links > .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--red);
  vertical-align: middle;
}
.header-bottom .nav-links > li:not(.menu-item-mega) > .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 50;
}
.header-bottom .nav-links > li:not(.menu-item-mega):hover > .sub-menu,
.header-bottom .nav-links > li:not(.menu-item-mega):focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-bottom .nav-links > li:not(.menu-item-mega) > .sub-menu,
.header-bottom .nav-links > li:not(.menu-item-mega) > .sub-menu ul {
  list-style: none;
}
.header-bottom .nav-links > li:not(.menu-item-mega) > .sub-menu li {
  position: static;
  list-style: none;
}
.header-bottom .nav-links > li:not(.menu-item-mega) .sub-menu li.menu-item-has-children {
  position: relative;
}
/* Invisible strip so the pointer can move into the sideways flyout without closing */
.header-bottom .nav-links > li:not(.menu-item-mega) .sub-menu li.menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 14px;
  height: 100%;
  z-index: 61;
}
.header-bottom .nav-links > li:not(.menu-item-mega) > .sub-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  border-radius: 0;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.header-bottom .nav-links > li:not(.menu-item-mega) > .sub-menu a:hover {
  background: rgba(204,0,0,0.15);
  color: var(--yellow);
}

/* Pokémon set locale links: flag + label */
.header-bottom .nav-links a .menu-item-flag-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.header-bottom .nav-links .menu-item-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  line-height: 1;
  flex-shrink: 0;
}
.header-bottom .nav-links .menu-item-flag--svg .menu-item-flag-img {
  display: block;
  width: 1.15em;
  height: 1.15em;
  object-fit: contain;
}

/* Sideways flyout for deeper levels (e.g. Card Holders → sleeves, toploaders, …) */
.header-bottom .nav-links > li:not(.menu-item-mega) .sub-menu .sub-menu {
  position: absolute;
  left: calc(100% + 10px);
  top: 0;
  margin: 0;
  padding: 8px 0;
  min-width: 200px;
  list-style: none;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 60;
}
.header-bottom .nav-links > li:not(.menu-item-mega) .sub-menu li.menu-item-has-children:hover > .sub-menu,
.header-bottom .nav-links > li:not(.menu-item-mega) .sub-menu li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.header-bottom .nav-links > li:not(.menu-item-mega) .sub-menu .sub-menu a {
  padding: 10px 20px;
  white-space: nowrap;
}
.header-bottom .nav-links > li:not(.menu-item-mega) .sub-menu .menu-item-has-children > a {
  position: relative;
  padding-right: 28px;
}
.header-bottom .nav-links > li:not(.menu-item-mega) .sub-menu .menu-item-has-children > a::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -4px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid var(--red);
  border-right: none;
  display: block;
}

/* ── MEGA PANEL (desktop) ── */
.header-bottom .nav-links > .menu-item.menu-item-mega > .sub-menu.mega-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: min(var(--rr-mega-panel-max-width, 1100px), calc(100vw - 28px));
  transform: translate(var(--rr-mega-shift, 0px), -8px);
  margin: 0;
  padding: 22px;
  list-style: none;
  display: block;
  column-width: var(--rr-mega-col-min-width, 220px);
  column-gap: 24px;
  max-height: min(72vh, calc(100vh - 140px));
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 60;
  --rr-mega-divider: rgba(204,0,0,0.32);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-clip: content-box;
}

.header-bottom .nav-links > .menu-item.menu-item-mega > .sub-menu.mega-panel.mega-cols-2 {
  column-count: 2;
  background-image:
    linear-gradient(
      to right,
      transparent calc(50% - 0.5px),
      var(--rr-mega-divider) calc(50% - 0.5px),
      var(--rr-mega-divider) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    );
}
.header-bottom .nav-links > .menu-item.menu-item-mega > .sub-menu.mega-panel.mega-cols-3 {
  column-count: 3;
  background-image:
    linear-gradient(
      to right,
      transparent calc(33.333% - 0.5px),
      var(--rr-mega-divider) calc(33.333% - 0.5px),
      var(--rr-mega-divider) calc(33.333% + 0.5px),
      transparent calc(33.333% + 0.5px)
    ),
    linear-gradient(
      to right,
      transparent calc(66.666% - 0.5px),
      var(--rr-mega-divider) calc(66.666% - 0.5px),
      var(--rr-mega-divider) calc(66.666% + 0.5px),
      transparent calc(66.666% + 0.5px)
    );
}
.header-bottom .nav-links > .menu-item.menu-item-mega > .sub-menu.mega-panel.mega-cols-4 {
  column-count: 4;
  background-image:
    linear-gradient(
      to right,
      transparent calc(25% - 0.5px),
      var(--rr-mega-divider) calc(25% - 0.5px),
      var(--rr-mega-divider) calc(25% + 0.5px),
      transparent calc(25% + 0.5px)
    ),
    linear-gradient(
      to right,
      transparent calc(50% - 0.5px),
      var(--rr-mega-divider) calc(50% - 0.5px),
      var(--rr-mega-divider) calc(50% + 0.5px),
      transparent calc(50% + 0.5px)
    ),
    linear-gradient(
      to right,
      transparent calc(75% - 0.5px),
      var(--rr-mega-divider) calc(75% - 0.5px),
      var(--rr-mega-divider) calc(75% + 0.5px),
      transparent calc(75% + 0.5px)
    );
}

.header-bottom .nav-links > .menu-item.menu-item-mega:hover > .sub-menu.mega-panel,
.header-bottom .nav-links > .menu-item.menu-item-mega:focus-within > .sub-menu.mega-panel,
.header-bottom .nav-links > .menu-item.menu-item-mega.nav-dropdown-open > .sub-menu.mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(var(--rr-mega-shift, 0px), 0);
}

.header-bottom .nav-links > .menu-item.menu-item-mega > .sub-menu.mega-panel > .menu-item {
  min-width: 0;
  margin: 0 0 18px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.header-bottom .nav-links .menu-item-mega > .sub-menu.mega-panel > .menu-item > a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
}

.header-bottom .nav-links .menu-item-mega > .sub-menu.mega-panel > .menu-item.menu-item-has-children > a,
.header-bottom .nav-links .menu-item-mega-group > a {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.header-bottom .nav-links .menu-item-mega > .sub-menu.mega-panel > .menu-item.menu-item-mega-col-break {
  break-before: column;
  -webkit-column-break-before: always;
  page-break-before: always;
}

.header-bottom .nav-links .menu-item-mega > .sub-menu.mega-panel .sub-menu {
  position: static;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  box-shadow: none;
  background: transparent;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.header-bottom .nav-links .menu-item-mega > .sub-menu.mega-panel .sub-menu a {
  display: block;
  padding: 8px 0;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
}

.header-bottom .nav-links .menu-item-mega > .sub-menu.mega-panel .sub-menu a:hover,
.header-bottom .nav-links .menu-item-mega > .sub-menu.mega-panel .sub-menu a:focus-visible {
  color: var(--yellow);
}

/* ── MOBILE MENU DRAWER ── */
@media (max-width: 991px) {
  .header-bottom {
    height: 0;
    min-height: 0;
    overflow: visible;
    border: none;
  }
  .header-bottom .nav-inner {
    padding: 0;
    min-height: 0 !important;
  }
  .btn-hamburger {
    display: flex;
    order: -1;
  }
  .header-top .nav-inner {
    position: relative;
    z-index: 101;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 10px 16px;
  }
  .header-search-wrap {
    order: 4;
    flex: 1 1 100%;
    max-width: none;
    margin: 0;
  }
  .header-business-phone {
    display: none;
  }
  .header-user {
    order: 3;
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }
  .redrocket-header-cart-fragment {
    order: 2;
    margin-left: auto;
  }
  .site-header-nav .custom-logo-link,
  .site-header-nav .logo {
    order: 1;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--header-navy);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
    padding: 80px 24px 40px;
    justify-content: flex-start;
  }
  .site-header-nav.nav-mobile-open .nav-menu {
    opacity: 1;
    visibility: visible;
    z-index: 99;
  }
  .nav-menu .nav-links {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
  }
  .nav-menu .nav-links > li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-menu .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 15px;
  }
  .nav-menu .nav-links > li:hover .sub-menu,
  .nav-menu .nav-links > li:focus-within .sub-menu {
    opacity: 0;
    visibility: hidden;
  }
  .nav-menu .nav-links .menu-item-has-children.nav-dropdown-open .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-menu .nav-links .sub-menu {
    position: static;
    display: none;
    padding: 0 0 12px 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: auto;
  }
  .nav-menu .nav-links .menu-item-has-children.nav-dropdown-open .sub-menu {
    display: block;
  }
  .nav-menu .nav-links .menu-item-has-children > a::after {
    transition: transform 0.25s;
    border-top-color: var(--red);
  }
  .nav-menu .nav-links .menu-item-has-children.nav-dropdown-open > a::after {
    transform: rotate(180deg);
  }
  .nav-menu .nav-links .sub-menu a {
    padding: 10px 0;
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .header-user__loyalty {
    display: none;
  }
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Barlow', sans-serif;
  font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 14px 32px; border-radius: 10px;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(204,0,0,0.3);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204,0,0,0.4);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 14px 32px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(204,0,0,0.4);
  color: var(--yellow);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark3);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 24px;
}
.trust-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 20px 24px;
  display: flex; justify-content: space-around;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.trust-icon { font-size: 20px; }

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  color: var(--yellow);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-top: 0;
  margin-bottom: 12px;
}
h2.section-title {
  margin: 0;
  font-weight: 400;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.section-title span { color: var(--yellow); }
.section-desc {
  color: var(--gray);
  font-size: 15px;
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}

/* ── PRODUCT CARDS ── */
.products-section {
  padding: 80px 24px;
  background: var(--dark2);
}
.products-inner { max-width: 1400px; margin: 0 auto; }
.products-tabs {
  display: flex; gap: 4px; justify-content: center;
  margin-bottom: 40px;
  background: var(--dark3);
  padding: 6px; border-radius: 12px;
  width: fit-content; margin-left: auto; margin-right: auto;
}
.tab {
  padding: 8px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  cursor: pointer; border: none;
  background: none; color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.tab.active {
  background: var(--yellow);
  color: var(--dark);
}
.tab:hover:not(.active) { color: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--dark3);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204,0,0,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(204,0,0,0.1);
}
/* Image column + wishlist control (sibling of link — not inside <a>) */
.product-card-media {
  position: relative;
}
.product-card-media .product-img-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card-media .redrocket-wishlist-button--loop {
  position: absolute !important;
  top: auto !important;
  left: auto !important;
  right: 10px !important;
  bottom: 10px !important;
  z-index: 7;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0 !important;
  margin: 0;
  border-radius: 50% !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  background: rgba(245, 245, 248, 0.96) !important;
  color: #1a1a2e !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 0 !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.product-card-media .redrocket-wishlist-button--loop:hover {
  background: #fff !important;
  color: #0f0f1a !important;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}
.product-card-media .redrocket-wishlist-button--loop .redrocket-wishlist-button__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.product-card-media .redrocket-wishlist-button--loop .redrocket-wishlist-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-media .redrocket-wishlist-button--loop .redrocket-wishlist-button__heart {
  width: 18px;
  height: 18px;
  display: block;
}
.product-card-media .redrocket-wishlist-button--loop.is-active {
  background: rgba(204, 0, 0, 0.12) !important;
  border-color: rgba(204, 0, 0, 0.35) !important;
  color: var(--red) !important;
}
.product-card-media .redrocket-wishlist-button--loop.is-active .redrocket-wishlist-button__heart path {
  fill: currentColor;
  stroke: currentColor;
}
.product-img {
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img-bg {
  position: absolute; inset: 0;
  transition: transform 0.4s;
}
.product-card:hover .product-img-bg { transform: scale(1.04); }
.product-art { font-size: 90px; position: relative; z-index: 1; }
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 6px; z-index: 2;
}
.badge-new { background: var(--blue-light); color: white; }
.badge-hot { background: var(--red); color: white; }
.badge-sale { background: #00C853; color: white; }
.badge-soldout { background: rgba(255,255,255,0.15); color: var(--gray); }
.badge-graded { background: var(--yellow); color: var(--dark); }
.product-info { padding: 16px; }
.product-set {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--yellow); margin-bottom: 4px;
}
.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px;
  color: var(--white); line-height: 1.2;
  margin-bottom: 8px;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 12px;
}
.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; color: var(--yellow);
  letter-spacing: 1px;
}
.product-old-price {
  font-size: 13px; color: var(--gray);
  text-decoration: line-through;
  margin-left: 6px;
}

/* Product card meta row: keep CTA buttons below price (variable products add "Price From"). */
.product-meta > .button:not(.redrocket-wishlist-button),
.product-meta > a.button:not(.redrocket-wishlist-button),
.product-meta > .add_to_cart_button,
.product-meta > a.add_to_cart_button {
  flex: 1 0 100%;
  width: 100%;
}

/* Add a little separation when the button breaks onto its own line. */
.product-meta > .button:not(.redrocket-wishlist-button),
.product-meta > a.button:not(.redrocket-wishlist-button) {
  margin-top: 2px;
}
.btn-add {
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.2);
  color: var(--yellow);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 7px 14px; border-radius: 8px;
  cursor: pointer; transition: all 0.2s;
}
.btn-add:hover {
  background: var(--yellow);
  color: var(--dark);
}
.product-condition {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--gray); font-weight: 600;
}
.condition-dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.cond-nm { background: #00C853; }
.cond-lp { background: #64DD17; }
.cond-mp { background: #FFD600; }
.products-cta {
  text-align: center; margin-top: 48px;
}

/* ── POKEMON ERA / SERIES / SET OVERVIEW PAGES ── */
.pokemon-sets-overview .products-inner {
  max-width: 1300px;
}
.pokemon-sets-overview .pokemon-sets-header {
  margin-bottom: 26px;
}
.pokemon-sets-overview.pokemon-sets-locale-coming-soon .pokemon-sets-header--coming-soon {
  margin-bottom: 0;
  text-align: center;
}
.pokemon-sets-overview.pokemon-sets-locale-coming-soon .pokemon-sets-header--coming-soon .pokemon-sets-desc {
  text-align: left;
  max-width: 48rem;
  margin: 18px auto 0;
}
.pokemon-sets-overview .pokemon-sets-desc {
  color: var(--gray);
  font-size: 15px;
  margin: 10px 0 0;
  line-height: 1.55;
}
.pokemon-sets-overview .pokemon-sets-desc a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(204, 0, 0, 0.45);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.pokemon-sets-overview .pokemon-sets-desc a:hover,
.pokemon-sets-overview .pokemon-sets-desc a:focus-visible {
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}
.pokemon-sets-overview .pokemon-sets-empty {
  margin: 20px 0 40px;
  color: var(--gray);
}
.pokemon-sets-overview .pokemon-sets-nested-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.pokemon-sets-overview .pokemon-era-section {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
}
.pokemon-sets-overview .pokemon-era-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0 0 12px;
}
.pokemon-sets-overview .pokemon-series-subsection + .pokemon-series-subsection {
  margin-top: 16px;
}
.pokemon-sets-overview .pokemon-series-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}
.pokemon-sets-overview .pokemon-series-title a {
  color: var(--light);
  text-decoration: none;
}
.pokemon-sets-overview .pokemon-series-title a:hover {
  color: var(--yellow);
}
.pokemon-sets-overview .pokemon-sets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* Browse-by-locale landing page: 3 big cards */
.browse-by-pokemon-set .browse-by-pokemon-set-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 980px) {
  .browse-by-pokemon-set .browse-by-pokemon-set-grid {
    grid-template-columns: 1fr;
  }
}
.browse-by-pokemon-set .browse-by-pokemon-set-card {
  align-items: flex-start;
  padding: 18px;
  min-height: 140px;
}
.browse-by-pokemon-set .browse-by-pokemon-set-desc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.68);
}
.pokemon-sets-overview .pokemon-set-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  min-height: 124px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.pokemon-sets-overview .pokemon-set-card:hover {
  transform: translateY(-1px);
  border-color: rgba(204,0,0,0.45);
  background: rgba(204,0,0,0.06);
}
.pokemon-sets-overview .pokemon-set-card--coming-soon {
  position: relative;
  overflow: hidden;
}
.pokemon-sets-overview .pokemon-set-card-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}
.pokemon-sets-overview .pokemon-set-card-soon-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(142%, 28rem);
  height: 3px;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(204, 0, 0, 0.25) 6%,
    rgba(230, 45, 45, 0.98) 50%,
    rgba(204, 0, 0, 0.25) 94%,
    transparent 100%
  );
  transform: translate(-50%, -50%) rotate(-28deg);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}
.pokemon-sets-overview .pokemon-set-card-soon-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--red);
  background: rgba(8, 10, 20, 0.78);
  border: 1px solid rgba(204, 0, 0, 0.55);
  line-height: 1;
  text-transform: uppercase;
}
.pokemon-sets-overview .pokemon-set-card-logo {
  width: 96px;
  min-width: 96px;
  height: 96px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}
.pokemon-sets-overview .pokemon-set-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pokemon-sets-overview .pokemon-set-card-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}
.pokemon-sets-overview .pokemon-set-card-info {
  min-width: 0;
}
.pokemon-sets-overview .pokemon-set-card-name {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.3;
}
.pokemon-sets-overview .pokemon-set-card-date,
.pokemon-sets-overview .pokemon-set-card-count,
.pokemon-sets-overview .pokemon-set-card-stock {
  margin: 4px 0 0;
  color: var(--gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}
.pokemon-sets-overview .pokemon-set-card-official-total {
  margin: 4px 0 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}
@media (max-width: 1100px) {
  .pokemon-sets-overview .pokemon-sets-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .pokemon-sets-overview .pokemon-era-section {
    padding: 14px;
  }
  .pokemon-sets-overview .pokemon-sets-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SELL CARDS LANDING ───────────────────────────────────────────── */
.sell-cards-landing {
  background: linear-gradient(180deg, #080d1b 0%, #0d1224 55%, #0b0f1d 100%);
}
.sell-cards-landing section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}
.sell-cards-hero {
  padding-top: 52px;
  padding-bottom: 42px;
}
.sell-cards-hero-inner {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}
.sell-cards-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
  background: var(--yellow);
  border-radius: 999px;
  padding: 7px 12px;
}
.sell-cards-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 8vw, 82px);
  letter-spacing: 1.5px;
  line-height: 0.95;
  margin: 18px 0 12px;
  color: var(--white);
}
.sell-cards-hero-desc {
  margin: 0 auto 20px;
  max-width: 600px;
  color: var(--gray);
  font-size: 17px;
}
.sell-cards-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 46px;
  border-radius: 10px;
  border: none;
  color: var(--white);
  background: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.sell-cards-cta:hover {
  background: #b00000;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(176, 0, 0, 0.26);
}

.sell-cards-section-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.2px;
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 18px;
  text-align: center;
}

.sell-cards-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sell-cards-benefit-card {
  background: #131a31;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px;
}
.sell-cards-benefit-icon {
  color: var(--yellow);
  width: 34px;
  height: 34px;
  display: inline-flex;
  margin-bottom: 8px;
}
.sell-cards-benefit-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
}
.sell-cards-benefit-card p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.sell-cards-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.sell-cards-compare-card {
  border-radius: 14px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.sell-cards-compare-card h3 {
  margin: 0 0 8px;
}
.sell-cards-compare-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--gray);
}
.sell-cards-compare-card li + li {
  margin-top: 5px;
}
.sell-cards-compare-other {
  background: rgba(84, 92, 117, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sell-cards-compare-us {
  background: rgba(204, 0, 0, 0.12);
  border: 1px solid rgba(204, 0, 0, 0.45);
}
.sell-cards-compare-logos-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sell-cards-compare-logo-redrocket {
  max-width: 168px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sell-cards-compare-logo-fallback {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-size: 28px;
  color: var(--white);
}

.sell-cards-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sell-cards-step {
  background: #11172d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.sell-cards-step-num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: var(--red);
  color: var(--white);
  margin-bottom: 10px;
}
.sell-cards-step h3 {
  margin: 0 0 7px;
}
.sell-cards-step p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}
.sell-cards-cta-wrap {
  text-align: center;
  margin-top: 18px;
}

.sell-cards-footer-note {
  padding-top: 12px;
  padding-bottom: 56px;
}
.sell-cards-footer-note p {
  margin: 0 auto;
  max-width: 820px;
  text-align: center;
  color: var(--gray);
}

@media (max-width: 980px) {
  .sell-cards-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sell-cards-compare-grid,
  .sell-cards-steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .sell-cards-landing section {
    padding: 24px 16px;
  }
  .sell-cards-benefits-grid {
    grid-template-columns: 1fr;
  }
  .sell-cards-hero-desc {
    font-size: 15px;
  }
}

/* ── POKEMON SET TAXONOMY ARCHIVE ── */
.pokemon-set-archive .set-header {
  margin-bottom: 48px;
}
.pokemon-set-archive .set-header-inline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px;
  background: var(--dark3);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.pokemon-set-archive .set-header-logo img {
  max-height: 140px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}
.pokemon-set-archive .set-header-info {
  min-width: 0;
}
.pokemon-set-archive .set-header-info .set-title {
  margin-bottom: 12px;
}
.pokemon-set-archive .set-meta-row {
  font-size: 14px;
  color: var(--gray);
  margin: 0 0 6px;
}
.pokemon-set-archive .set-meta-row:last-child {
  margin-bottom: 0;
}
.pokemon-set-archive .set-header-symbol img {
  max-height: 64px;
  max-width: 80px;
  width: auto;
  object-fit: contain;
}
.pokemon-set-archive .set-logo {
  margin-bottom: 20px;
}
.pokemon-set-archive .set-logo img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}
.pokemon-set-archive .set-symbol {
  margin-bottom: 12px;
}
.pokemon-set-archive .set-symbol img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.pokemon-set-archive .set-title {
  margin-bottom: 8px;
}
.pokemon-set-archive .set-era {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
}
.pokemon-set-archive .set-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: var(--gray);
}
.pokemon-set-archive .set-meta p {
  margin: 0;
}
.pokemon-set-archive .set-about,
.pokemon-set-archive .set-sealed,
.pokemon-set-archive .set-chase,
.pokemon-set-archive .set-singles {
  margin-bottom: 56px;
}
.pokemon-set-archive .set-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.pokemon-set-archive .set-about-content {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
}
.pokemon-set-archive .set-about-grid {
  display: grid;
  gap: 28px 40px;
  align-items: start;
}
.pokemon-set-archive .set-about--with-chase .set-about-content {
  max-width: none;
}
@media (min-width: 900px) {
  .pokemon-set-archive .set-about--with-chase .set-about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
  }
}
.pokemon-set-archive .set-about-chase {
  justify-self: center;
}
@media (min-width: 900px) {
  .pokemon-set-archive .set-about--with-chase .set-about-chase {
    justify-self: end;
  }
}
.pokemon-set-archive .set-about-chase-link {
  display: block;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pokemon-set-archive .set-about-chase-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
}
.pokemon-set-archive .set-about-chase-img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
}
.pokemon-set-archive .chase-cards-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pokemon-set-archive .chase-cards-list li {
  background: var(--dark3);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
}
.pokemon-set-archive .set-singles-desc {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 24px;
}
.pokemon-set-archive .set-sealed-empty {
  color: var(--gray);
  font-style: italic;
  margin: 0;
}
.pokemon-set-archive .no-products {
  color: var(--gray);
  font-style: italic;
}

/* Set page - card browser layout (per website brief) */
.pokemon-set-archive .set-browser-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.pokemon-set-archive .set-filters-sidebar {
  position: sticky;
  top: 100px;
  background: var(--dark3);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.pokemon-set-archive .set-search-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pokemon-set-archive .set-search-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--dark2);
  color: var(--light);
  font-size: 14px;
}
.pokemon-set-archive .set-search-input::placeholder {
  color: var(--gray);
}
.pokemon-set-archive .set-search-submit {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}
.pokemon-set-archive .set-search-submit:hover {
  background: var(--yellow-dark);
}
.pokemon-set-archive .set-filters-note {
  font-size: 12px;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}
.pokemon-set-archive .set-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pokemon-set-archive .set-result-count {
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
}
.pokemon-set-archive .set-sort-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pokemon-set-archive .set-orderby,
.pokemon-set-archive .set-order {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--dark3);
  color: var(--light);
  font-size: 13px;
}
.pokemon-set-archive .set-sort-submit {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: rgba(204,0,0,0.2);
  color: var(--red);
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
}
.pokemon-set-archive .set-sort-submit:hover {
  background: var(--red);
  color: var(--white);
}
/* Card grid: 6 cols desktop, 4 tablet, 2 mobile (per brief) */
.pokemon-set-archive .set-cards-grid.products-grid {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1200px) {
  .pokemon-set-archive .set-cards-grid.products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .pokemon-set-archive .set-browser-layout {
    grid-template-columns: 1fr;
  }
  .pokemon-set-archive .set-filters-sidebar {
    position: static;
  }
  .pokemon-set-archive .set-cards-grid.products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Database card tiles (set page) */
.pokemon-set-archive .set-cards-db-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.pokemon-set-archive .set-card-db-tile {
  background: var(--dark3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.pokemon-set-archive .set-card-db-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(204,0,0,0.35);
}
.pokemon-set-archive .set-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.pokemon-set-archive .set-card-link img {
  width: 100%;
  height: auto;
  display: block;
}
.pokemon-set-archive .set-card-link .woocommerce-loop-product__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--light);
  padding: 8px 10px 2px;
  margin: 0;
  line-height: 1.3;
}
.pokemon-set-archive .set-card-number {
  display: block;
  font-size: 11px;
  color: var(--gray);
  padding: 0 10px;
}
.pokemon-set-archive .set-card-rarity {
  display: block;
  font-size: 11px;
  color: var(--gray);
  padding: 0 10px 6px;
}
.pokemon-set-archive .set-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2.5/3.5;
  background: var(--dark2);
  color: var(--gray);
  font-size: 14px;
  font-weight: 700;
}
.pokemon-set-archive .set-card-actions {
  display: flex;
  gap: 8px;
  padding: 8px 10px 12px;
}
/*
 * DB set tiles use WooCommerce loop classes (.products-grid .product .button), so
 * WooCommerce plugin CSS wins unless we match/beat it (same idea as .product-card .button).
 */
.pokemon-set-archive .set-card-actions a.button.set-card-buy,
.pokemon-set-archive .set-card-actions .button.set-card-buy {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  background: var(--red) !important;
  color: var(--white) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
  line-height: 1.2 !important;
  white-space: nowrap;
  cursor: pointer !important;
  transition: background 0.2s ease, color 0.2s ease;
}
.pokemon-set-archive .set-card-actions a.button.set-card-buy:hover,
.pokemon-set-archive .set-card-actions .button.set-card-buy:hover {
  background: var(--yellow-dark) !important;
  color: var(--white) !important;
}
.pokemon-set-archive .set-card-actions a.button.set-card-sell,
.pokemon-set-archive .set-card-actions .button.set-card-sell {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--light) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: none !important;
  line-height: 1.2 !important;
  white-space: nowrap;
  cursor: pointer !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.pokemon-set-archive .set-card-actions a.button.set-card-sell:hover,
.pokemon-set-archive .set-card-actions .button.set-card-sell:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: var(--white) !important;
}
@media (max-width: 1200px) {
  .pokemon-set-archive .set-cards-db-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .pokemon-set-archive .set-cards-db-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .pokemon-set-archive .set-cards-db-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Filter form elements */
.pokemon-set-archive .set-filters-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pokemon-set-archive .set-filter-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  margin-top: 12px;
  margin-bottom: 4px;
}
.pokemon-set-archive .set-filter-select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--dark2);
  color: var(--light);
  font-size: 14px;
}
.pokemon-set-archive .set-filter-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  max-height: 120px;
  overflow-y: auto;
}
.pokemon-set-archive .set-filter-checkbox {
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pokemon-set-archive .set-filter-price {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pokemon-set-archive .set-filter-price-input {
  width: 80px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--dark2);
  color: var(--light);
  font-size: 13px;
}
.pokemon-set-archive .set-filter-price-sep {
  color: var(--gray);
}
.pokemon-set-archive .set-filters-clear {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  margin-top: 8px;
}
.pokemon-set-archive .set-filters-clear:hover {
  color: var(--red);
}
/* Loading spinner */
.pokemon-set-archive .set-cards-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 0;
  color: var(--gray);
  font-size: 14px;
}
.pokemon-set-archive .set-cards-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: setSpinner 0.6s linear infinite;
}
@keyframes setSpinner {
  to { transform: rotate(360deg); }
}
/* Infinite scroll sentinel */
.set-infinite-scroll-sentinel {
  width: 100%;
  text-align: center;
  padding: 24px 0 12px;
  font-size: 0.9rem;
  color: #888;
}
.set-scroll-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.set-scroll-status .set-cards-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: var(--red, #e53935);
  border-radius: 50%;
  animation: setSpinner 0.6s linear infinite;
}
.set-scroll-status--done {
  color: #666;
  font-style: italic;
}

/* Get Prices page (sell cards - full card list) */
.get-prices-page .set-browser-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.get-prices-page .set-filters-sidebar { position: sticky; top: 100px; background: var(--dark3); border-radius: 12px; padding: 20px; border: 1px solid rgba(255,255,255,0.08); }
.get-prices-page .get-prices-search-form { display: flex; flex-direction: column; gap: 8px; }
.get-prices-page .get-prices-hero-actions { margin-top: 18px; }
.get-prices-page .get-prices-bulk-cta {
  min-width: 220px;
  background: var(--red);
  color: var(--white);
}
.get-prices-page .get-prices-bulk-cta:hover {
  background: #b00000;
  color: var(--white);
}
.get-prices-page .set-search-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: var(--light);
  font-size: 14px;
  line-height: 1.2;
}
.get-prices-page .set-search-input::placeholder { color: rgba(255,255,255,0.45); }
.get-prices-page .set-search-input:focus {
  outline: 2px solid rgba(204,0,0,0.45);
  outline-offset: 2px;
  border-color: rgba(204,0,0,0.35);
}
.get-prices-page .set-filter-label {
  margin-top: 10px;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.get-prices-page .set-filter-select {
  width: 100%;
  padding: 12px 14px;
  margin-top: 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #fff;
  color: #111;
  font-size: 14px;
  line-height: 1.2;
}
.get-prices-page .set-filter-select:focus {
  outline: 2px solid rgba(204,0,0,0.45);
  outline-offset: 2px;
  border-color: rgba(204,0,0,0.35);
}

/* Dropdown menu items (best-effort; OS/browser may still control native menus). */
.get-prices-page .set-filter-select option {
  background: #fff;
  color: #111;
}
.get-prices-page .set-search-submit { margin-top: 8px; padding: 10px 16px; border-radius: 8px; border: none; background: var(--red); color: var(--white); font-weight: 600; cursor: pointer; }
.get-prices-page .set-toolbar { display: flex; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.get-prices-page .set-result-count { font-size: 14px; color: var(--gray); font-weight: 600; }
.get-prices-page .get-prices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.get-prices-page .get-prices-card { background: var(--dark3); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.get-prices-page .get-prices-card-inner { padding: 16px; }
.get-prices-page .get-prices-card-image-link { display: block; margin: -16px -16px 12px; }
.get-prices-page .get-prices-card-img { width: 100%; height: auto; display: block; }
.get-prices-page .get-prices-card-name { font-size: 15px; margin: 0 0 4px; color: var(--light); }
.get-prices-page .get-prices-card-meta { font-size: 12px; color: var(--gray); margin: 0 0 4px; }
.get-prices-page .get-prices-card-rarity { font-size: 11px; color: var(--gray); margin: 0 0 8px; }
.get-prices-page .get-prices-card-price { font-size: 14px; margin: 0 0 12px; color: var(--red); }
.get-prices-page .get-prices-card-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.get-prices-page .get-prices-condition { padding: 6px 10px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); background: var(--dark2); color: var(--light); font-size: 12px; max-width: 120px; }
.get-prices-page .get-prices-qty { width: 50px; padding: 6px 8px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); background: var(--dark2); color: var(--light); font-size: 13px; }
.get-prices-page .get-prices-add-btn { padding: 8px 16px; border-radius: 8px; border: none; background: var(--red); color: var(--white); font-weight: 600; cursor: pointer; font-size: 12px; white-space: nowrap; }
.get-prices-page .get-prices-add-btn:hover { background: var(--yellow-dark); }
.get-prices-page .get-prices-header { margin-bottom: 24px; }
.get-prices-page .get-prices-desc { color: var(--gray); margin: 0 0 8px; }
.get-prices-page .link-bulk { color: var(--red); text-decoration: none; }
.get-prices-page .link-bulk:hover { text-decoration: underline; }
.get-prices-page .get-prices-pagination { margin-top: 32px; }
.get-prices-page .get-prices-pagination .page-numbers { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.get-prices-page .get-prices-pagination .page-numbers a,
.get-prices-page .get-prices-pagination .page-numbers span { background: var(--dark3); color: var(--light); padding: 10px 16px; border-radius: 8px; text-decoration: none; }
.get-prices-page .get-prices-pagination .page-numbers a:hover { background: var(--red); color: var(--dark); }
.get-prices-page .get-prices-pagination .page-numbers .current { background: var(--red); color: var(--dark); }
@media (max-width: 900px) {
  .get-prices-page .set-browser-layout { grid-template-columns: 1fr; }
  .get-prices-page .set-filters-sidebar { position: static; }
  .get-prices-page .get-prices-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .get-prices-page .get-prices-grid { grid-template-columns: 1fr; }
  .get-prices-page .get-prices-card-actions { flex-direction: column; align-items: stretch; }
}

/* Get Prices - additional filter controls */
.get-prices-page .get-prices-type-fieldset,
.get-prices-page .get-prices-hp-fieldset { border: none; padding: 0; margin: 8px 0 0; }
.get-prices-page .get-prices-type-fieldset legend,
.get-prices-page .get-prices-hp-fieldset legend { font-size: 12px; font-weight: 600; color: var(--gray); margin-bottom: 6px; }
.get-prices-page .get-prices-type-checks { display: flex; flex-wrap: wrap; gap: 6px; }
.get-prices-page .get-prices-type-label { font-size: 12px; color: var(--light); display: flex; align-items: center; gap: 4px; cursor: pointer; }
.get-prices-page .get-prices-type-label input { accent-color: var(--red); }
.get-prices-page .get-prices-hp-inputs { display: flex; gap: 6px; align-items: center; }
.get-prices-page .get-prices-hp-input { width: 70px; padding: 8px 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: var(--dark2); color: var(--light); font-size: 13px; }
.get-prices-page .get-prices-hp-sep { color: var(--gray); }
.get-prices-page .set-filters-clear { margin-top: 6px; padding: 8px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: transparent; color: var(--gray); font-size: 12px; cursor: pointer; width: 100%; }
.get-prices-page .set-filters-clear:hover { color: var(--light); border-color: rgba(255,255,255,0.2); }

/* Get Prices - mobile filters toggle */
.get-prices-filters-toggle { display: none; padding: 10px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: var(--dark3); color: var(--light); font-weight: 600; cursor: pointer; margin-bottom: 16px; }
@media (max-width: 900px) {
  .get-prices-filters-toggle { display: block; }
  .get-prices-page .set-filters-sidebar { display: none; }
  .get-prices-page .set-filters-sidebar.set-filters-sidebar--open { display: block; }
}

/* Get Prices - loading spinner */
.get-prices-loading { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 48px 0; color: var(--gray); font-size: 14px; }
.get-prices-spinner { width: 24px; height: 24px; border: 3px solid rgba(255,255,255,0.1); border-top-color: var(--red); border-radius: 50%; animation: gp-spin 0.7s linear infinite; }
@keyframes gp-spin { to { transform: rotate(360deg); } }
.get-prices-cards-section.is-loading .get-prices-grid,
.get-prices-cards-section.is-loading .get-prices-pagination { opacity: 0.3; pointer-events: none; }

/* Get Prices - Load More button and infinite scroll */
.get-prices-load-more-wrap { text-align: center; margin-top: 32px; }
.get-prices-load-more-btn { padding: 14px 40px; border-radius: 10px; border: 2px solid var(--red); background: transparent; color: var(--red); font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.2s; }
.get-prices-load-more-btn:hover { background: var(--red); color: var(--white); }
.get-prices-load-more-spinner { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 24px 0; color: var(--gray); font-size: 14px; }
.get-prices-scroll-sentinel { height: 1px; }

/* Get Prices - sell basket floating bar */
.sell-basket-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--dark2); border-top: 2px solid var(--red); padding: 14px 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.4); }
.sell-basket-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sell-basket-bar-summary { color: var(--light); font-size: 15px; }
.sell-basket-checkout-btn { display: inline-block; padding: 12px 28px; border-radius: 8px; background: var(--red); color: var(--white); font-weight: 700; text-decoration: none; font-size: 14px; white-space: nowrap; }
.sell-basket-checkout-btn:hover { background: var(--yellow-dark); color: var(--dark); }

/* Get Prices - bulk modal */
.bulk-modal { display: none; position: fixed; inset: 0; z-index: 10000; }
.bulk-modal.bulk-modal--open { display: flex; align-items: center; justify-content: center; }
.bulk-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.bulk-modal-dialog { position: relative; background: var(--dark2); border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); max-width: 700px; width: 90vw; max-height: 85vh; overflow-y: auto; padding: 0; }
.bulk-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.bulk-modal-header h2 { margin: 0; font-size: 18px; color: var(--light); }
.bulk-modal-close { background: none; border: none; color: var(--gray); font-size: 28px; cursor: pointer; line-height: 1; }
.bulk-modal-close:hover { color: var(--light); }
.bulk-modal-body { padding: 20px 24px 24px; }
.bulk-instructions { color: var(--gray); font-size: 13px; margin: 0 0 12px; }
.bulk-textarea { width: 100%; padding: 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: var(--dark3); color: var(--light); font-size: 13px; font-family: monospace; resize: vertical; }
.bulk-modal-actions { display: flex; gap: 8px; margin-top: 12px; }
.bulk-modal-actions .button { padding: 10px 20px; border-radius: 8px; border: none; font-weight: 600; cursor: pointer; font-size: 13px; }
.bulk-search-btn { background: var(--red); color: var(--white); }
.bulk-clear-btn { background: transparent; border: 1px solid rgba(255,255,255,0.1) !important; color: var(--gray); }
.bulk-results-section { margin-top: 16px; }
.bulk-results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: 13px; color: var(--gray); }
.bulk-select-all { display: flex; align-items: center; gap: 6px; cursor: pointer; color: var(--light); font-size: 13px; }
.bulk-total { font-size: 14px; color: var(--light); }
.bulk-results-list { display: flex; flex-direction: column; gap: 8px; max-height: 300px; overflow-y: auto; }
.bulk-result-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--dark3); border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); }
.bulk-row-img { width: 40px; height: 56px; object-fit: cover; border-radius: 4px; }
.bulk-row-info { flex: 1; min-width: 0; }
.bulk-row-name { font-size: 13px; font-weight: 600; color: var(--light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bulk-row-meta { font-size: 11px; color: var(--gray); }
.bulk-row-condition { padding: 4px 8px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); background: var(--dark2); color: var(--light); font-size: 11px; }
.bulk-row-qty { display: flex; align-items: center; gap: 4px; }
.bulk-qty-minus, .bulk-qty-plus { width: 24px; height: 24px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); background: var(--dark2); color: var(--light); cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.bulk-qty-input { width: 40px; text-align: center; padding: 4px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.1); background: var(--dark2); color: var(--light); font-size: 12px; }
.bulk-row-price { font-size: 13px; font-weight: 600; color: var(--red); min-width: 60px; text-align: right; }
.bulk-add-btn { margin-top: 16px; padding: 12px 24px; border-radius: 8px; border: none; background: var(--red); color: var(--white); font-weight: 700; cursor: pointer; font-size: 14px; width: 100%; }
.bulk-add-btn:hover { background: var(--yellow-dark); color: var(--dark); }
.bulk-add-btn--added { background: #27ae60 !important; color: var(--white) !important; }
.bulk-unmatched { margin-top: 12px; padding: 10px 14px; background: rgba(255,193,7,0.1); border: 1px solid rgba(255,193,7,0.2); border-radius: 8px; font-size: 12px; color: #ffc107; }
.bulk-error { color: var(--red); font-size: 13px; }
.get-prices-add-btn--added { background: #27ae60 !important; color: var(--white) !important; }

/* WooCommerce add to cart in product cards (exclude wishlist — it uses .button too) */
.product-card .button:not(.redrocket-wishlist-button),
.product-card .add_to_cart_button {
  background: rgba(204,0,0,0.1) !important;
  border: 1px solid rgba(204,0,0,0.2) !important;
  color: var(--yellow) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 5px 10px !important;
  border-radius: 6px !important;
  line-height: 1.25 !important;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer !important;
}
.product-card .button:not(.redrocket-wishlist-button):hover,
.product-card .add_to_cart_button:hover {
  background: var(--yellow) !important;
  color: var(--dark) !important;
}
.summary .redrocket-wishlist-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.06) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  padding: 10px 16px !important;
}

/* ── NEWSLETTER ── */
.newsletter {
  padding: 80px 24px;
  background: var(--dark2);
  text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
h2.newsletter-title {
  margin-top: 0;
  font-weight: 400;
}
.newsletter-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; letter-spacing: 2px;
  color: var(--white); margin-bottom: 12px;
}
.newsletter-title span { color: var(--yellow); }
.newsletter-desc {
  color: var(--gray); font-size: 15px; margin-bottom: 28px;
}
.newsletter-form {
  display: flex; gap: 10px; max-width: 460px; margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: rgba(204,0,0,0.4); }

/* MailPoet embed (homepage newsletter) */
.newsletter-mailpoet input[type="email"],
.newsletter-mailpoet input.mailpoet_text {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
}
.newsletter-mailpoet input[type="email"]::placeholder,
.newsletter-mailpoet input.mailpoet_text::placeholder {
  color: rgba(255,255,255,0.3);
}
.newsletter-mailpoet input[type="email"]:focus,
.newsletter-mailpoet input.mailpoet_text:focus {
  border-color: rgba(204,0,0,0.4);
}

/* ── FOOTER ── */
footer {
  background: #07070F;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--red);
  letter-spacing: 2px; margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(204,0,0,0.3);
}
.footer-logo span { color: var(--white); }
footer .custom-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}
footer .custom-logo {
  max-height: 56px;
  width: auto;
  height: auto;
}
.footer-desc {
  color: rgba(255,255,255,0.35);
  font-size: 13px; line-height: 1.7;
  max-width: 280px;
}
.footer-contact { margin-top: 12px; }
.footer-contact a {
  color: rgba(255,255,255,0.5);
  font-size: 13px; text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--red); }
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none; font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}
.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.15);
  max-width: 500px; text-align: right;
}

/* ── CONTACT PAGE ── */
.contact-page { max-width: 1200px; margin: 0 auto; padding: 0 24px 48px; }
.contact-page-inner { max-width: 1200px; margin: 0 auto; }

body.page-template-page-contact-php .woocommerce-breadcrumb {
  display: none !important;
}

/* Contact Hero */
.contact-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark2);
  margin: 0 -24px 48px;
  padding: 0 24px;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--contact-hero-bg, none) center/cover no-repeat;
  opacity: 0.25;
  transition: opacity 0.5s ease;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,20,0.92) 0%, rgba(10,10,20,0.6) 100%);
  z-index: 1;
}
.contact-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}
.contact-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}
.contact-hero-content { max-width: 600px; }
.contact-hero-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: 6px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.contact-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 3px;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1;
}
.contact-hero-desc {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* Contact fade-up animation */
@keyframes contact-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact-anim {
  opacity: 0;
  animation: contact-fade-up 0.6s ease forwards;
}
.contact-anim[data-delay="0"]   { animation-delay: 0s; }
.contact-anim[data-delay="100"] { animation-delay: 0.1s; }
.contact-anim[data-delay="200"] { animation-delay: 0.2s; }
.contact-anim[data-delay="300"] { animation-delay: 0.3s; }
.contact-anim[data-delay="350"] { animation-delay: 0.35s; }

/* Contact header */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--white);
  margin: 0 0 8px;
}
.contact-desc {
  color: rgba(255,255,255,0.45);
  font-size: 15px;
}

/* Contact layout: sidebar + form */
.contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

/* Info card (left sidebar) */
.contact-info-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  align-self: start;
}
.contact-info-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0 0 8px;
}
.contact-info-card > p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204,0,0,0.1);
  border-radius: 10px;
  color: var(--red);
}
.contact-info-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--red); }

/* Contact form */
.contact-form {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 32px;
}
.contact-form label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.contact-form label .required { color: var(--red); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(204,0,0,0.4);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-row { margin-bottom: 20px; }
.contact-form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form-row--half .form-row { margin-bottom: 20px; }
.contact-form-actions {
  padding-top: 8px;
}
.contact-form-actions .button {
  width: 100%;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 10px;
  cursor: pointer;
}

/* Form error */
.contact-form-error {
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: #ff6b6b;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Honeypot (hidden) */
.contact-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/* Success state */
.contact-success {
  text-align: center;
  padding: 100px 24px;
  max-width: 520px;
  margin: 0 auto;
}
.contact-success h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 2px;
  color: var(--white);
  margin: 24px 0 12px;
}
.contact-success p {
  color: rgba(255,255,255,0.45);
  font-size: 16px;
  line-height: 1.7;
}
@keyframes contact-success-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}
.contact-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  font-size: 36px;
  font-weight: 700;
  animation: contact-success-pop 0.5s ease forwards;
}

/* Captcha row */
.contact-captcha-row input {
  max-width: 180px;
}

/* Base set-tile styles (shared across pages that don't load home.css) */
.set-tile {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: inherit;
}
.set-tile:hover {
  border-color: rgba(204,0,0,0.3);
  background: rgba(204,0,0,0.05);
  transform: translateY(-3px);
}
.set-icon { font-size: 36px; min-height: 48px; display: flex; align-items: center; justify-content: center; }
.set-icon img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.set-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--white); line-height: 1.2;
  text-align: center;
}
.set-count { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.set-sealed-count { font-size: 10px; color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; opacity: 0.85; }

/* Popular Sets on contact page */
.contact-sets-section {
  margin-top: 24px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.contact-sets-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-sets-section .section-header {
  text-align: center;
  margin-bottom: 32px;
}
.contact-sets-section .sets-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.contact-sets-section .sets-scroll::-webkit-scrollbar { height: 4px; }
.contact-sets-section .sets-scroll::-webkit-scrollbar-track { background: transparent; }
.contact-sets-section .sets-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
.contact-sets-section .set-tile {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ── CONTACT RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-hero-title { font-size: 48px; }
  .contact-hero-inner { padding: 60px 0; }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .contact-hero { min-height: 260px; }
  .contact-hero-title { font-size: 36px; }
  .contact-hero-desc { font-size: 14px; }
  .contact-form-row--half { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .contact-success { padding: 60px 16px; }
  .contact-success h1 { font-size: 36px; }
  .contact-sets-section .sets-scroll { gap: 12px; }
}

/* ── POLICY / INFO PAGES ── */
.policy-page-template {
  padding: 0 24px 56px;
}
.policy-page-shell {
  max-width: 1020px;
  margin: 0 auto;
}
.policy-page-hero {
  --policy-accent: #cc0000;
  --policy-rgb: 204,0,0;
  --policy-glow-a: rgba(204,0,0,0.2);
  --policy-glow-b: rgba(0,82,212,0.16);
  position: relative;
  text-align: center;
  margin: 0 auto 26px;
  padding: 44px 28px 36px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14, 20, 38, 0.96) 0%, rgba(10, 10, 18, 0.96) 65%);
  border: 1px solid rgba(var(--policy-rgb), 0.38);
  box-shadow: 0 22px 40px rgba(0,0,0,0.32);
}
.policy-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px circle at 0% 0%, var(--policy-glow-a), transparent 60%),
    radial-gradient(460px circle at 100% 100%, var(--policy-glow-b), transparent 65%);
  pointer-events: none;
}
.policy-page-hero--delivery {
  --policy-accent: #f59e0b;
  --policy-rgb: 245,158,11;
  --policy-glow-a: rgba(245,158,11,0.28);
  --policy-glow-b: rgba(59,130,246,0.2);
}
.policy-page-hero--refunds {
  --policy-accent: #10b981;
  --policy-rgb: 16,185,129;
  --policy-glow-a: rgba(16,185,129,0.28);
  --policy-glow-b: rgba(20,184,166,0.2);
}
.policy-page-hero--privacy {
  --policy-accent: #6366f1;
  --policy-rgb: 99,102,241;
  --policy-glow-a: rgba(99,102,241,0.3);
  --policy-glow-b: rgba(56,189,248,0.2);
}
.policy-page-hero--terms {
  --policy-accent: #ef4444;
  --policy-rgb: 239,68,68;
  --policy-glow-a: rgba(239,68,68,0.28);
  --policy-glow-b: rgba(217,70,239,0.2);
}
.policy-page-hero--conditions {
  --policy-accent: #eab308;
  --policy-rgb: 234,179,8;
  --policy-glow-a: rgba(234,179,8,0.3);
  --policy-glow-b: rgba(251,191,36,0.18);
}

/* Conditions guide — layout matches reference; surfaces use shop / policy dark theme (no white cards) */
.conditions-guide-page {
  padding: 0 0 56px;
}
.conditions-guide-page .policy-page-shell {
  padding-left: 24px;
  padding-right: 24px;
}
.conditions-guide-top {
  background: transparent;
  padding: 40px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.conditions-guide-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}
.conditions-guide-title {
  margin: 0 0 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}
.conditions-guide-intro {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
}
.conditions-guide-chart-card {
  background: linear-gradient(160deg, rgba(25, 29, 46, 0.96) 0%, rgba(16, 19, 32, 0.96) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 28px 20px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
.conditions-guide-chart-title {
  margin: 0 0 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
}
.conditions-guide-table-wrap--light {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  border: none;
  border-radius: 0;
}
.conditions-guide-table--reference {
  width: 100%;
  min-width: 600px;
  margin: 0;
  border-collapse: collapse;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.conditions-guide-table--reference thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  padding: 8px 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: transparent;
}
.conditions-guide-table--reference tbody td {
  padding: 14px 14px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: transparent;
}
.conditions-guide-table--reference tbody tr:last-child td {
  border-bottom: none;
}
.conditions-guide-cell-label--light {
  color: var(--white);
}
.conditions-guide-cell-label--light .conditions-dot {
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}
.conditions-guide-chart-note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
}
.conditions-guide-value--nm { color: #16a34a; }
.conditions-guide-value--lp { color: #2563eb; }
.conditions-guide-value--mp { color: #ca8a04; }
.conditions-guide-value--hp { color: #ea580c; }
.conditions-guide-value--pd { color: #dc2626; }
.conditions-guide-body-shell {
  padding-top: 8px;
}
.conditions-guide-detail {
  background: transparent;
  margin: 0;
  padding: 28px 0 40px;
  border-radius: 0;
}
.conditions-guide-page .conditions-guide-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 52rem;
  margin: 0 auto 28px;
}
.conditions-guide-grade {
  --grade-accent: #10b981;
  --grade-badge-bg: rgba(16, 185, 129, 0.18);
  --grade-badge-text: #6ee7b7;
  --grade-impact-bg: rgba(16, 185, 129, 0.08);
  --grade-impact-border: rgba(52, 211, 153, 0.35);
  --grade-impact-title: #6ee7b7;
  --grade-impact-text: rgba(255,255,255,0.88);
  background: linear-gradient(160deg, rgba(25, 29, 46, 0.96) 0%, rgba(16, 19, 32, 0.96) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0;
  margin: 0 0 22px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
  overflow: hidden;
}
.conditions-guide-grade--lp {
  --grade-accent: #3b82f6;
  --grade-badge-bg: rgba(59, 130, 246, 0.2);
  --grade-badge-text: #93c5fd;
  --grade-impact-bg: rgba(59, 130, 246, 0.08);
  --grade-impact-border: rgba(96, 165, 250, 0.4);
  --grade-impact-title: #93c5fd;
  --grade-impact-text: rgba(255,255,255,0.88);
}
.conditions-guide-grade--mp {
  --grade-accent: #eab308;
  --grade-badge-bg: rgba(234, 179, 8, 0.2);
  --grade-badge-text: #fde047;
  --grade-impact-bg: rgba(234, 179, 8, 0.08);
  --grade-impact-border: rgba(250, 204, 21, 0.35);
  --grade-impact-title: #fde047;
  --grade-impact-text: rgba(255,255,255,0.88);
}
.conditions-guide-grade--hp {
  --grade-accent: #f97316;
  --grade-badge-bg: rgba(249, 115, 22, 0.2);
  --grade-badge-text: #fdba74;
  --grade-impact-bg: rgba(249, 115, 22, 0.08);
  --grade-impact-border: rgba(251, 146, 60, 0.4);
  --grade-impact-title: #fdba74;
  --grade-impact-text: rgba(255,255,255,0.88);
}
.conditions-guide-grade--pd {
  --grade-accent: #ef4444;
  --grade-badge-bg: rgba(239, 68, 68, 0.2);
  --grade-badge-text: #fca5a5;
  --grade-impact-bg: rgba(239, 68, 68, 0.08);
  --grade-impact-border: rgba(248, 113, 113, 0.4);
  --grade-impact-title: #fca5a5;
  --grade-impact-text: rgba(255,255,255,0.88);
}
.conditions-guide-grade-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.conditions-guide-grade-title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.conditions-guide-grade-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--grade-badge-bg);
  color: var(--grade-badge-text);
  border: 1px solid rgba(255,255,255,0.12);
}
.conditions-guide-grade-header .conditions-dot {
  background: var(--grade-accent);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}
.conditions-guide-grade-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(18px, 3vw, 32px);
  padding: 22px 22px 24px;
  align-items: start;
}
.conditions-guide-grade-media {
  margin: 0;
  min-width: 0;
}
.conditions-guide-grade-media-frame {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.conditions-guide-grade-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  vertical-align: middle;
}
.conditions-guide-grade-copy {
  min-width: 0;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.65;
}
.conditions-guide-subheading {
  margin: 0 0 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}
.conditions-guide-checklist {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.conditions-guide-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 10px;
}
.conditions-guide-checklist li:last-child {
  margin-bottom: 0;
}
.conditions-guide-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--grade-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.conditions-guide-impact {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--grade-impact-border);
  background: var(--grade-impact-bg);
}
.conditions-guide-impact-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
  color: var(--grade-impact-title);
}
.conditions-guide-impact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--grade-impact-text);
}
@media (min-width: 900px) {
  .conditions-guide-grade-media {
    position: sticky;
    top: 96px;
  }
}
@media (max-width: 767px) {
  .conditions-guide-grade-body {
    grid-template-columns: 1fr;
  }
}
.conditions-guide-lead + .conditions-guide-grade {
  margin-top: 0;
}
.conditions-guide-after {
  margin-top: 8px;
  padding: 24px 22px 8px;
  background: linear-gradient(160deg, rgba(25, 29, 46, 0.96) 0%, rgba(16, 19, 32, 0.96) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
.conditions-guide-after-title {
  margin: 0 0 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}
.conditions-guide-after-list {
  margin: 0 0 20px;
  padding-left: 1.2em;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}
.conditions-guide-quote {
  margin: 0 0 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--red);
  background: rgba(204, 0, 0, 0.12);
  border-radius: 0 8px 8px 0;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.conditions-guide-quote p {
  margin: 0;
}
.conditions-guide-actions {
  margin: 0 0 8px;
}
.conditions-guide-content .button {
  display: inline-block;
  margin: 0 12px 12px 0;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
}
/* Primary CTA: match sell flow red buttons (.sell-cards-cta); scope beats .conditions-guide-content .button */
.conditions-guide-content .sell-cards-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 46px;
  border-radius: 10px;
  border: none;
  color: var(--white) !important;
  background: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.conditions-guide-content .sell-cards-cta:hover {
  background: #b00000;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(176, 0, 0, 0.26);
}
/* Secondary CTA: same footprint as .sell-cards-cta, outline / neutral (no red) */
.conditions-guide-content a.button.conditions-guide-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 10px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.conditions-guide-content a.button.conditions-guide-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--yellow) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

/* Condition grade colour key (dots align with NM → PD) */
.conditions-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
}
.conditions-dot--nm { background: #22c55e; }
.conditions-dot--lp { background: #3b82f6; }
.conditions-dot--mp { background: #eab308; }
.conditions-dot--hp { background: #f97316; }
.conditions-dot--pd { background: #ef4444; }
.conditions-guide-cell-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.conditions-guide-editor {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
}
.policy-page-hero-meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.policy-page-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(var(--policy-rgb), 0.2);
  border: 1px solid rgba(var(--policy-rgb), 0.5);
  color: rgba(255,255,255,0.96);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.policy-page-eyebrow {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(var(--policy-rgb), 0.95);
}
.policy-page-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
}
.policy-page-updated {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
}
.policy-page-card {
  background: linear-gradient(160deg, rgba(25, 29, 46, 0.96) 0%, rgba(16, 19, 32, 0.96) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 40px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
.policy-page-content {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.8;
}
.policy-page-content > *:first-child {
  margin-top: 0;
}
.policy-page-content > *:last-child {
  margin-bottom: 0;
}
.policy-page-content h2,
.policy-page-content h3,
.policy-page-content h4 {
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.policy-page-content h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 1.8em 0 0.5em;
}
.policy-page-content h3 {
  font-size: clamp(21px, 2.5vw, 27px);
  margin: 1.4em 0 0.45em;
}
.policy-page-content p,
.policy-page-content ul,
.policy-page-content ol {
  margin: 0 0 1em;
}
.policy-page-content ul,
.policy-page-content ol {
  padding-left: 1.25em;
}
.policy-page-content li + li {
  margin-top: 0.35em;
}
.policy-page-content a {
  color: color-mix(in srgb, var(--red) 70%, white 30%);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-page-content a:hover {
  color: #ffd6d6;
}
.policy-page-content blockquote {
  margin: 1.2em 0;
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.9);
  border-radius: 8px;
}
.policy-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 14px;
}
.policy-page-content th,
.policy-page-content td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 12px;
  text-align: left;
}
.policy-page-content th {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
@media (max-width: 768px) {
  .policy-page-template {
    padding: 0 16px 42px;
  }
  .policy-page-hero {
    padding: 34px 18px 28px;
    margin-bottom: 18px;
  }
  .policy-page-content {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ── 404 PAGE ── */
.content-wrapper--404 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

.page-404 .error-404 {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(204, 0, 0, 0.18) 0%, transparent 55%),
    linear-gradient(165deg, var(--dark3) 0%, var(--dark2) 45%, #0d0d18 100%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.error-404__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 12px 40px;
  align-items: center;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 56px);
}

.error-404__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.error-404__code {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  margin: 0;
  font-size: clamp(7rem, 22vw, 12rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.error-404__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  max-width: min(420px, 100%);
}

.error-404__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.error-404__figure .error-404__img {
  animation: error404-float 5s ease-in-out infinite;
}

@keyframes error404-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .error-404__figure .error-404__img {
    animation: none;
  }
}

.error-404__body {
  position: relative;
  z-index: 1;
}

.error-404__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.error-404__title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

.error-404__lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(240, 240, 255, 0.82);
  max-width: 38em;
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.error-404__actions .btn-primary,
.error-404__actions .btn-secondary {
  font-size: 13px;
  padding: 12px 20px;
}

@media (max-width: 900px) {
  .error-404__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .error-404__visual {
    order: -1;
    min-height: 0;
  }
  .error-404__body {
    text-align: center;
  }
  .error-404__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .error-404__actions {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .content-wrapper--404 {
    padding: 16px 14px 48px;
  }
}

/* ── RESPONSIVE (footer) ── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ── Widget: random product from category (WooCommerce) ── */
/* min-width:0 + max-width:100% keeps wide imgs / Imagify <picture> inside flex & grid sidebars */
.widget.redrocket-widget-random-category-product {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.redrocket-widget-random-category-product .redrocket-random-cat-product {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.redrocket-random-cat-product__media {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--dark2, #12121e);
  line-height: 0;
  box-sizing: border-box;
}

/* Imagify wraps output in <picture>; constrain like the inner <img> */
.redrocket-random-cat-product__media picture {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  line-height: 0;
}

.redrocket-random-cat-product__media img,
.redrocket-random-cat-product__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 280px;
  display: block;
  object-fit: contain;
  box-sizing: border-box;
}

.redrocket-random-cat-product__more {
  margin: 4px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.redrocket-random-cat-product__cat-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red, #cc0000);
  text-decoration: none;
}

.redrocket-random-cat-product__cat-link:hover {
  color: #fff;
}

.redrocket-random-cat-product__empty {
  font-size: 14px;
  color: rgba(240, 240, 255, 0.55);
  margin: 0;
}
