/* Single product: same outer shell as shop archives so trust bar is full-width (not inside max-width box) */
.woocommerce-shop-wrapper--single-product {
	width: 100%;
}

/* Shop archive shell with optional left/right sidebar */
.redrocket-shop-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.redrocket-shop-sidebar-right .redrocket-shop-layout {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
}

.redrocket-shop-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.redrocket-shop-sidebar-inner {
  background: #11152d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 14px 24px;
}

.redrocket-shop-sidebar-widgets .widget {
  margin: 0 0 16px;
}

.redrocket-shop-sidebar-widgets .widget:last-child {
  margin-bottom: 0;
}

.redrocket-shop-main {
  min-width: 0;
}

/*
 * Shop + category archives: keep the filter sidebar and product grid inside one centered
 * column (same ~1400px shell as trust bar / header content). Otherwise .products-inner is
 * max-width:1400px and margin:auto only inside .redrocket-shop-main, which leaves a huge
 * empty band between the sidebar and the grid on wide screens.
 */
.woocommerce-shop-wrapper.redrocket-shop-has-sidebar .redrocket-shop-layout {
	max-width: 1400px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

.woocommerce-shop-wrapper.redrocket-shop-has-sidebar .redrocket-shop-main .products-inner {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.woocommerce-shop-wrapper.redrocket-shop-has-sidebar .products-inner {
	padding-left: 0;
	padding-right: 0;
}

/* Shop card image treatment: square frame with contained art. */
.woocommerce-shop-wrapper .product-img {
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.03);
  padding: 18px;
  box-sizing: border-box;
}

.woocommerce-shop-wrapper .product-img img {
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 300px;
  object-fit: contain !important;
  object-position: center;
  display: block;
  margin: 0 auto;
  min-width: 0;
  min-height: 0;
  flex-shrink: 1;
}

/* Shop/archive grids: keep cards aligned even with long titles.
 * Note: our archive markup uses `.product-card` DIVs directly in the grid (not `li.product`).
 */
.woocommerce-shop-wrapper .woocommerce-product-loop > .product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.woocommerce-shop-wrapper .woocommerce-product-loop > .product-card .product-card-media {
  flex-shrink: 0;
}

.woocommerce-shop-wrapper .woocommerce-product-loop > .product-card .product-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.woocommerce-shop-wrapper .woocommerce-product-loop > .product-card .product-meta {
  margin-top: auto;
}

/* Stable title block: clamp to 2 lines so price/button line up. */
.woocommerce-shop-wrapper .woocommerce-product-loop > .product-card .product-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 2.4em;
}

/* Force one consistent media band height on archives.
 * Some cards were being rendered with `.product-card--pokemon-aspect` (portrait),
 * which makes the image area taller and breaks row alignment.
 */
.woocommerce-shop-wrapper .woocommerce-product-loop > .product-card .product-img,
.woocommerce-shop-wrapper .woocommerce-product-loop > .product-card.product-card--pokemon-aspect .product-img,
.woocommerce-shop-wrapper .woocommerce-product-loop > .product-card.product-card-pokemon .product-img {
  aspect-ratio: 1 / 1;
  padding: 18px;
}

/*
 * Single Cards category archives only (body.redrocket-shop-single-cards-tree): TCG portrait slot.
 * Overrides the square band above so full card art fits without a 1:1 letterbox.
 */
body.redrocket-shop-single-cards-tree .woocommerce-shop-wrapper .product-img,
body.redrocket-shop-single-cards-tree .woocommerce-shop-wrapper .woocommerce-product-loop > .product-card .product-img,
body.redrocket-shop-single-cards-tree .woocommerce-shop-wrapper .woocommerce-product-loop > .product-card.product-card--pokemon-aspect .product-img,
body.redrocket-shop-single-cards-tree .woocommerce-shop-wrapper .woocommerce-product-loop > .product-card.product-card-pokemon .product-img {
  aspect-ratio: 63 / 88;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.redrocket-shop-single-cards-tree .woocommerce-shop-wrapper .product-img img,
body.redrocket-shop-single-cards-tree .woocommerce-shop-wrapper .woocommerce-product-loop > .product-card .product-img img {
  object-fit: contain !important;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
}

/* Product card badges (shop + related / upsells — same card component) */
.product-card .product-img .product-badges--left {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  max-width: calc(100% - 100px);
}
.product-card .product-img .product-badges--left .product-badge {
  position: static;
}

.product-card .product-badge.badge-soldout {
  background: #dc2626;
  color: #fff;
}
.product-card .product-badge.badge-preorder {
  background: #f59e0b;
  color: #fff;
}
.product-card .product-badge.badge-lowstock {
  background: #ea580c;
  color: #fff;
}
.product-card .product-badge.badge-sale {
  background: #00a854;
  color: #fff;
}
.product-card .product-badge.badge-new {
  background: #2563eb;
  color: #fff;
}
.product-card .product-badge.badge-right {
  left: auto;
  right: 12px;
}

/* You May Also Like / upsells / recently viewed: hide condition line (still shown on main shop grids) */
.redrocket-single-product .related.products .product-condition,
.redrocket-single-product .upsells.products .product-condition,
.redrocket-single-product .also-bought-with.products .product-condition,
.redrocket-single-product .cross-sells .product-condition,
.redrocket-single-product .recently-viewed.products .product-condition {
  display: none;
}

.woocommerce-shop-wrapper .products-inner {
  padding-left: clamp(0.75rem, 2.5vw, 1.5rem);
  padding-right: clamp(0.75rem, 2.5vw, 1.5rem);
  box-sizing: border-box;
}

/* Reduce the inherited home-page top spacing for shop archive hero. */
.woocommerce-shop-wrapper .products-section {
  padding-top: 24px;
}

.redrocket-shop-filter-form--fallback {
  margin-bottom: 14px;
}

/* Hidden shell used so toolbar + widgets can associate fields via the form attribute */
.redrocket-shop-filter-form--shell {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.redrocket-widget-filter-by-set .redrocket-filter-by-set-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.redrocket-shop-set-multiselect-search {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 14px;
}

.redrocket-shop-filter-set-multiselect {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 200px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  color: #e8e8ec;
  font-size: 13px;
  line-height: 1.35;
}

.redrocket-filter-by-set-hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
}

.redrocket-shop-filter-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.06em;
}

.redrocket-shop-acc-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.redrocket-shop-acc-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  cursor: pointer;
  font-weight: 700;
}

.redrocket-shop-acc-panel {
  padding: 0 0 12px;
}

.redrocket-shop-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.redrocket-shop-checklist label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d2d7e2;
  font-size: 13px;
}

.redrocket-shop-price-readout {
  margin-bottom: 8px;
  color: #d2d7e2;
  font-size: 13px;
}

.redrocket-shop-price-dual {
  display: grid;
  gap: 8px;
}

.redrocket-shop-range {
  width: 100%;
}

/* Intro copy spacing before toolbar toggles */
.woocommerce-shop-wrapper .archive-description,
.woocommerce-shop-wrapper .term-description,
.woocommerce-shop-wrapper .woocommerce-products-header__description {
  margin-top: 0;
  margin-bottom: 2.25rem;
}

/* Compact toolbar row (toggle chips + grid/list + sort) */
.redrocket-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 10px 0 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(10, 16, 33, 0.55);
}

.redrocket-shop-toolbar-left,
.redrocket-shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.redrocket-switch-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #cfd4df;
  white-space: nowrap;
}

.redrocket-switch-row input[type='checkbox'] {
  display: none;
}

.redrocket-switch-ui {
  position: relative;
  width: 30px;
  height: 16px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #5a5f6a;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.redrocket-switch-ui::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s ease;
}

.redrocket-switch-row input[type='checkbox']:checked + .redrocket-switch-ui {
  background: #2ecc71;
  border-color: #2ecc71;
}

.redrocket-switch-row input[type='checkbox']:checked + .redrocket-switch-ui::after {
  transform: translateX(14px);
}

.redrocket-view-toggle {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.redrocket-view-btn {
  border: 0;
  min-width: 46px;
  height: 28px;
  padding: 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 10px;
  font-weight: 700;
  color: #c6ccda;
  background: #1b2139;
  cursor: pointer;
}

.redrocket-view-btn + .redrocket-view-btn {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.redrocket-view-btn.is-active {
  color: #fff;
  background: #2a314f;
}

.redrocket-shop-toolbar-orderby {
  height: 30px;
  min-width: 180px;
  padding: 0 30px 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #11162d;
  color: #fff;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .redrocket-shop-layout,
  .redrocket-shop-sidebar-right .redrocket-shop-layout {
    grid-template-columns: 1fr;
  }

  .redrocket-shop-sidebar {
    position: static;
    top: auto;
  }

  .redrocket-shop-toolbar {
    flex-wrap: wrap;
  }

  .redrocket-shop-toolbar-left,
  .redrocket-shop-toolbar-right {
    width: 100%;
    flex-wrap: wrap;
  }
}
/**
 * Red Rocket - WooCommerce Styles
 */

/* Single Product - Full-width layout */
.redrocket-single-product {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
}
.redrocket-single-product #primary {
	max-width: none;
	width: 100%;
}

/* WooCommerce default ~48% on .images was shrinking the gallery inside our grid column */
.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
	float: left;
	width: 100%;
}

/* PDP breadcrumb (below trust bar, dark page — no strip background) */
.woocommerce-shop-wrapper--single-product .redrocket-pdp-breadcrumb-bar {
	background: transparent;
	border: none;
	margin-bottom: 8px;
}
.woocommerce-shop-wrapper--single-product .redrocket-pdp-breadcrumb-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 12px clamp(1.5rem, 5vw, 3.5rem) 20px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
}
.woocommerce-shop-wrapper--single-product .redrocket-pdp-breadcrumb-main {
	flex: 1 1 auto;
	min-width: min(100%, 12rem);
}
.woocommerce-shop-wrapper--single-product .redrocket-pdp-breadcrumb {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 10px;
	row-gap: 8px;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	background: none !important;
	border: none !important;
}
.woocommerce-shop-wrapper--single-product .redrocket-pdp-breadcrumb a {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	transition: color 0.15s ease;
}
.woocommerce-shop-wrapper--single-product .redrocket-pdp-breadcrumb a:hover {
	color: var(--red);
}
.woocommerce-shop-wrapper--single-product .redrocket-pdp-breadcrumb__sep {
	display: inline-block;
	margin: 0;
	color: rgba(255, 255, 255, 0.38);
	font-weight: 400;
	font-size: 13px;
}
.woocommerce-shop-wrapper--single-product .redrocket-breadcrumb__home {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	color: rgba(255, 255, 255, 0.92);
}
.woocommerce-shop-wrapper--single-product .redrocket-breadcrumb__home:hover {
	color: var(--red);
}
.woocommerce-shop-wrapper--single-product .redrocket-breadcrumb__home-icon {
	display: block;
}

/* Single Product - Image layout (stacked gallery) */
.redrocket-single-product .redrocket-product-inner {
	display: grid;
	grid-template-columns: 38% 1fr;
	gap: 40px;
	align-items: start;
}
/* Override WooCommerce default width:48% on summary - let it use full grid cell */
.redrocket-single-product .summary.entry-summary {
	width: 100% !important;
	float: none !important;
	min-width: 0;
}
/* Summary column: breathing room between title, price, excerpt, stock/cart, wishlist */
.redrocket-single-product .summary .product_title {
	margin-bottom: 0.5rem;
}
.redrocket-single-product .summary p.price,
.redrocket-single-product .summary span.price {
	margin-top: 0;
}
.redrocket-single-product .summary .price {
	display: block;
	margin-bottom: 1.25rem;
}
.redrocket-single-product .summary .woocommerce-product-details__short-description {
	margin-bottom: 1.25rem;
	max-height: none;
	overflow: visible;
	-webkit-line-clamp: unset;
	line-clamp: unset;
	display: block;
}
.redrocket-single-product .summary .woocommerce-product-details__short-description * {
	max-height: none;
	-webkit-line-clamp: unset;
	line-clamp: unset;
}
.redrocket-single-product .summary form.cart {
	margin-top: 0.25rem;
	margin-bottom: 1.25rem;
}
.redrocket-single-product .summary .redrocket-wishlist-button {
	margin-top: 0;
}

/* Price label (Price: / Price From: min – max) */
.redrocket-single-product .summary .redrocket-price-block {
	display: block;
	margin-bottom: 1rem;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: #c8e86c;
	line-height: 1.3;
}
.redrocket-single-product .summary .redrocket-price-label {
	font-weight: 700;
	color: var(--light);
	margin-right: 0.35rem;
	font-size: 0.92em;
	letter-spacing: 0.02em;
}
.redrocket-single-product .summary .redrocket-price-inner .woocommerce-Price-amount,
.redrocket-single-product .summary .redrocket-price-inner {
	color: #c8e86c;
}
.redrocket-single-product .summary .redrocket-price-inner del,
.redrocket-single-product .summary .redrocket-price-inner del .woocommerce-Price-amount {
	color: rgba(240, 240, 255, 0.45);
}

/* Clearpay instalment line (under price) */
.redrocket-clearpay-pdp {
	margin: 0 0 1rem;
	padding-top: 2px;
}
.redrocket-clearpay-pdp__line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	color: rgba(240, 240, 255, 0.65);
}
.redrocket-clearpay-pdp__text {
	display: inline;
}
.redrocket-clearpay-pdp__amount {
	color: rgba(240, 240, 255, 0.92);
	font-weight: 600;
}
.redrocket-clearpay-pdp__brand-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px 3px 12px;
	border-radius: 999px;
	background: #bff7ea;
	color: #0a0a0a;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.02em;
	text-transform: lowercase;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.redrocket-clearpay-pdp__brand-mark {
	flex-shrink: 0;
	color: #0a0a0a;
}
.redrocket-clearpay-pdp__info {
	width: 22px;
	height: 22px;
	padding: 0;
	border-radius: 50%;
	border: 1.5px solid rgba(240, 240, 255, 0.55);
	background: transparent;
	color: rgba(240, 240, 255, 0.85);
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.redrocket-clearpay-pdp__info:hover,
.redrocket-clearpay-pdp__info:focus-visible {
	border-color: #bff7ea;
	color: #bff7ea;
	outline: none;
}

/* PayPal Pay Later messaging (WooCommerce PayPal Payments) — matches Clearpay line tone */
.message__messaging,
.message__messaging .message__headline span,
.message__messaging .message__sub-headline span,
.message__messaging .message__disclaimer span {
	font-size: 12px;
	color: rgba(240, 240, 255, 0.65);
}

/* Clearpay modal */
body.redrocket-clearpay-modal-open {
	overflow: hidden;
}
.redrocket-clearpay-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}
.redrocket-clearpay-modal.is-open {
	display: flex;
}
.redrocket-clearpay-modal__scrim {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 18, 0.72);
	backdrop-filter: blur(4px);
}
.redrocket-clearpay-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	max-height: min(90vh, 720px);
	overflow-y: auto;
	padding: 28px 24px 24px;
	border-radius: 16px;
	background: #c8f9e8;
	color: #0a0a0a;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	-webkit-overflow-scrolling: touch;
}
.redrocket-clearpay-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	color: #0a0a0a;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	border-radius: 8px;
	transition: background 0.2s;
}
.redrocket-clearpay-modal__close:hover,
.redrocket-clearpay-modal__close:focus-visible {
	background: rgba(0, 0, 0, 0.08);
	outline: none;
}
.redrocket-clearpay-modal__header {
	margin-bottom: 20px;
	padding-right: 36px;
}
.redrocket-clearpay-modal__logo {
	font-weight: 800;
	font-size: 18px;
	text-transform: lowercase;
	letter-spacing: 0.02em;
	margin-right: 6px;
	vertical-align: middle;
}
.redrocket-clearpay-modal__logo-icon {
	vertical-align: middle;
	color: #0a0a0a;
}
.redrocket-clearpay-modal__title {
	margin: 14px 0 0;
	font-size: clamp(1.25rem, 3.5vw, 1.65rem);
	font-weight: 800;
	line-height: 1.2;
	font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.redrocket-clearpay-modal__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 22px;
}
@media (max-width: 640px) {
	.redrocket-clearpay-modal__steps {
		grid-template-columns: repeat(2, 1fr);
	}
}
.redrocket-clearpay-modal__step {
	text-align: center;
}
.redrocket-clearpay-modal__step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	color: #0a0a0a;
	min-height: 48px;
}
.redrocket-clearpay-modal__step p {
	margin: 0;
	font-size: 12px;
	line-height: 1.35;
	font-weight: 600;
	color: #1a1a1a;
}
.redrocket-clearpay-modal__legal {
	font-size: 11px;
	line-height: 1.5;
	color: #222;
}
.redrocket-clearpay-modal__legal p {
	margin: 0 0 10px;
}
.redrocket-clearpay-modal__legal a {
	color: #0a0a0a;
	font-weight: 700;
	text-decoration: underline;
}
.redrocket-clearpay-modal__disclaimer {
	margin-top: 14px !important;
	padding-top: 12px;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	font-size: 10px;
	color: #333;
}

/* Variation attribute dropdowns — readable on dark */
.redrocket-single-product .variations_form .variations {
	width: 100%;
	margin-bottom: 0.5rem;
}
.redrocket-single-product .variations_form .variations th,
.redrocket-single-product .variations_form .variations td {
	display: block;
	width: 100%;
	padding: 0;
	text-align: left;
}
.redrocket-single-product .variations_form .variations th.label {
	padding-bottom: 6px;
}
.redrocket-single-product .variations_form .variations th.label label {
	font-weight: 700;
	color: var(--light);
	font-size: 14px;
	letter-spacing: 0.04em;
}
.redrocket-single-product .variations_form .variations td.value {
	padding-bottom: 14px;
}
.redrocket-single-product .variations_form select,
.redrocket-single-product .variations_form .select2-container--default .select2-selection--single {
	width: 100% !important;
	max-width: 100%;
	padding: 12px 40px 12px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(0, 0, 0, 0.45);
	color: #f0f0ff !important;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	appearance: auto;
	-webkit-appearance: menulist;
}
.redrocket-single-product .variations_form select:focus {
	outline: 2px solid rgba(204, 0, 0, 0.55);
	outline-offset: 2px;
	border-color: rgba(204, 0, 0, 0.45);
}
.redrocket-single-product .variations_form select option {
	background: #1c1c2e;
	color: #f0f0ff;
}
.redrocket-single-product .variations_form .reset_variations {
	display: inline-block;
	margin-top: 8px;
	font-size: 13px;
	color: var(--gray);
	text-decoration: underline;
}
.redrocket-single-product .variations_form .reset_variations:hover {
	color: var(--red);
}
.redrocket-single-product .variations_form .select2-container--default .select2-selection--single {
	min-height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	background: rgba(0, 0, 0, 0.45) !important;
	border-radius: 10px !important;
}
.redrocket-single-product .variations_form .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #f0f0ff !important;
	line-height: 46px !important;
	padding-left: 14px !important;
	padding-right: 28px !important;
	font-size: 15px;
	font-weight: 500;
}
.redrocket-single-product .variations_form .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 46px !important;
}
.redrocket-single-product .variations_form .select2-dropdown {
	background: #1c1c2e;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	overflow: hidden;
}
.redrocket-single-product .variations_form .select2-results__option {
	color: #f0f0ff;
}
.redrocket-single-product .variations_form .select2-results__option--highlighted[aria-selected] {
	background: rgba(204, 0, 0, 0.45) !important;
	color: #fff !important;
}

/* Purchase row: qty + add to cart + wishlist */
.redrocket-purchase-actions {
	margin-top: 0.25rem;
	margin-bottom: 1rem;
}
.redrocket-purchase-actions form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 12px 14px;
	margin-bottom: 0;
}
.redrocket-purchase-actions form.variations_form {
	flex-direction: column;
	align-items: stretch;
}
.redrocket-purchase-actions form.variations_form .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	margin-top: 4px;
}
.redrocket-purchase-actions .quantity {
	margin: 0 !important;
}
.redrocket-purchase-actions .quantity.quantity--stepper {
	display: flex;
	align-items: stretch;
}
.redrocket-purchase-actions .redrocket-qty {
	display: inline-flex;
	align-items: stretch;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(0, 0, 0, 0.35);
	overflow: hidden;
}
.redrocket-purchase-actions .redrocket-qty .qty {
	width: 52px;
	min-width: 44px;
	text-align: center;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--light) !important;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 6px !important;
	-moz-appearance: textfield;
}
.redrocket-purchase-actions .redrocket-qty .qty::-webkit-outer-spin-button,
.redrocket-purchase-actions .redrocket-qty .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.redrocket-purchase-actions .redrocket-qty-btn {
	flex: 0 0 44px;
	min-width: 40px;
	border: none;
	background: rgba(255, 255, 255, 0.08);
	color: var(--light);
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.redrocket-purchase-actions .redrocket-qty-btn:hover {
	background: rgba(204, 0, 0, 0.35);
	color: var(--white);
}
.redrocket-purchase-actions .redrocket-qty-btn:focus-visible {
	outline: 2px solid var(--red);
	outline-offset: 2px;
}

.redrocket-purchase-actions .single_add_to_cart_button {
	flex: 1 1 160px;
	min-height: 48px;
	padding: 12px 22px !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	font-size: 13px !important;
	background: rgba(204, 0, 0, 0.15) !important;
	border: 2px solid rgba(204, 0, 0, 0.55) !important;
	color: #ff6b6b !important;
	transition: background 0.2s, color 0.2s, border-color 0.2s !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.redrocket-purchase-actions .single_add_to_cart_button__icon {
	display: inline-flex;
	flex-shrink: 0;
	opacity: 0.95;
}
.redrocket-purchase-actions .single_add_to_cart_button__icon svg {
	display: block;
}
.redrocket-purchase-actions .single_add_to_cart_button:hover {
	background: var(--red) !important;
	border-color: var(--red) !important;
	color: var(--white) !important;
}

.redrocket-purchase-actions .redrocket-wishlist-button {
	flex: 1 1 140px;
	min-height: 48px;
	margin: 0 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 10px !important;
	border: 2px solid rgba(255, 255, 255, 0.22) !important;
	background: rgba(255, 255, 255, 0.06) !important;
	color: var(--light) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.08em !important;
	padding: 12px 18px !important;
	transition: background 0.2s, border-color 0.2s, color 0.2s !important;
	cursor: pointer;
}
.redrocket-purchase-actions .redrocket-wishlist-button__icon {
	display: inline-flex;
	flex-shrink: 0;
}
.redrocket-purchase-actions .redrocket-wishlist-button__heart path {
	transition: fill 0.2s, stroke 0.2s;
}
.redrocket-purchase-actions .redrocket-wishlist-button.is-active .redrocket-wishlist-button__heart path {
	fill: currentColor;
	stroke: currentColor;
}
.redrocket-purchase-actions .redrocket-wishlist-button:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 255, 255, 0.35) !important;
	color: var(--white) !important;
}

@media (min-width: 600px) {
	.redrocket-purchase-actions form.cart:not(.variations_form) {
		align-items: center;
	}
	.redrocket-purchase-actions .single_add_to_cart_button,
	.redrocket-purchase-actions .redrocket-wishlist-button {
		flex: 0 1 auto;
	}
}

/* Loyalty estimate (card + medal) */
.redrocket-product-loyalty-estimate--card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-top: 0.5rem;
	margin-bottom: 1.25rem;
	padding: 16px 18px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
}
.redrocket-product-loyalty-estimate__badge {
	flex-shrink: 0;
	margin-top: 2px;
}
.redrocket-product-loyalty-estimate__badge svg {
	display: block;
}
.redrocket-product-loyalty-estimate__body {
	min-width: 0;
	flex: 1;
}
.redrocket-product-loyalty-estimate__primary {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 500;
	color: rgba(240, 240, 255, 0.95);
}
.redrocket-product-loyalty-estimate__primary .redrocket-loyalty-points-num {
	color: #7cb342;
	font-weight: 800;
}
.redrocket-product-loyalty-estimate__secondary {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.45;
	color: rgba(240, 240, 255, 0.88);
}
.redrocket-product-loyalty-estimate__secondary .redrocket-loyalty-gap-num,
.redrocket-product-loyalty-estimate__secondary .redrocket-loyalty-tier-name {
	color: #f0f0ff;
	font-weight: 800;
}
.redrocket-product-loyalty-estimate__link {
	margin: 0 0 6px;
	font-size: 14px;
}
.redrocket-product-loyalty-estimate__link a {
	color: var(--red);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(204, 0, 0, 0.4);
}
.redrocket-product-loyalty-estimate__link a:hover {
	color: #ff8888;
	border-bottom-color: rgba(255, 136, 136, 0.6);
}
.redrocket-product-loyalty-estimate__fineprint {
	margin: 0;
	font-size: 12px;
	line-height: 1.4;
	color: var(--gray);
}
@media (max-width: 480px) {
	.redrocket-product-loyalty-estimate--card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.redrocket-product-loyalty-estimate__body {
		text-align: center;
	}
}
.redrocket-single-product .redrocket-product-inner .redrocket-product-trust-badges,
.redrocket-single-product .redrocket-product-inner .upsells.products,
.redrocket-single-product .redrocket-product-inner .also-bought-with.products,
.redrocket-single-product .redrocket-product-inner .related.products,
.redrocket-single-product .redrocket-product-inner .recently-viewed.products {
	grid-column: 1 / -1;
}
@media (max-width: 768px) {
	.redrocket-single-product .redrocket-product-inner {
		grid-template-columns: 1fr;
	}
}

.redrocket-single-product .redrocket-product-gallery-column {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.redrocket-single-product .woocommerce-product-gallery {
	max-width: 600px;
	background: var(--dark3);
	border-radius: 12px;
	padding: 16px;
	border: 1px solid rgba(255,255,255,0.08);
}
.redrocket-single-product .woocommerce-product-gallery__image {
	display: block;
}
.redrocket-single-product .woocommerce-product-gallery__image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Breathing room between main slide and thumbnail strip */
.redrocket-single-product .woocommerce-product-gallery .flex-viewport {
	margin-bottom: 12px;
}

/* Card products in loops: portrait frame + contain (cards only, non-cards remain square). */
.product-card.product-card--pokemon-aspect .product-img,
.product-card.product-card-pokemon .product-img {
	aspect-ratio: 63 / 88;
	padding: 10px 12px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
}
.product-card.product-card--pokemon-aspect .product-img img,
.product-card.product-card-pokemon .product-img img {
	object-fit: contain !important;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	min-width: 0;
	min-height: 0;
	flex-shrink: 1;
	object-position: center;
}

/* PDP main gallery: show full card when product has a Pokémon set */
.redrocket-pdp-pokemon-card.redrocket-single-product .woocommerce-product-gallery__image > a {
	display: block;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 8px;
}
.redrocket-pdp-pokemon-card.redrocket-single-product .woocommerce-product-gallery__image img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
	object-position: center;
	vertical-align: middle;
}
/* Thumbnail strip wrapper: arrows + scrollable list */
.redrocket-single-product .rri-gallery-thumbs-strip {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
	width: 100%;
	min-width: 0;
}

.redrocket-single-product .rri-gallery-thumbs-nav {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.35);
	color: var(--light, #f5f5f5);
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.redrocket-single-product .rri-gallery-thumbs-nav:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.redrocket-single-product .rri-gallery-thumbs-nav:focus-visible {
	outline: 2px solid var(--red, #c00);
	outline-offset: 2px;
}

.redrocket-single-product .rri-gallery-thumbs-nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.redrocket-single-product .rri-gallery-thumbs-strip:not(.rri-gallery-thumbs-strip--scrollable) .rri-gallery-thumbs-nav {
	display: none;
}

/* Thumbnails under main image - horizontal strip, scroll if many */
.redrocket-single-product .flex-control-thumbs,
.redrocket-single-product .flex-control-nav.flex-control-thumbs {
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 1;
	min-width: 0;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}
.redrocket-single-product .flex-control-thumbs::-webkit-scrollbar {
	height: 6px;
}
.redrocket-single-product .flex-control-thumbs li {
	width: 70px;
	min-width: 70px;
	flex-shrink: 0;
}
.redrocket-single-product .flex-control-thumbs li img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	opacity: 0.6;
	cursor: pointer;
	transition: opacity 0.2s;
}
.redrocket-single-product .flex-control-thumbs li img:hover,
.redrocket-single-product .flex-control-thumbs li img.flex-active {
	opacity: 1;
}

/* SKU under title */
.redrocket-product-sku {
	margin: 0 0 12px;
	font-size: 14px;
	color: var(--gray);
	letter-spacing: 0.02em;
}
.redrocket-product-sku-value {
	color: var(--light);
	font-weight: 600;
}
/* SKU lives in the PDP breadcrumb row; hide duplicate in product_meta */
.redrocket-single-product .summary .product_meta .sku_wrapper {
	display: none;
}
/* Category links duplicate breadcrumb / navigation — hide product_meta categories */
.redrocket-single-product .summary .product_meta .posted_in {
	display: none !important;
}

/* Product Set display (pokemon_set with logo) */
.redrocket-product-set {
	margin-bottom: 16px;
	width: fit-content;
	max-width: min(100%, 50%);
}
@media (max-width: 600px) {
	.redrocket-product-set {
		max-width: 100%;
	}
}
.redrocket-product-set-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	max-width: 100%;
	text-decoration: none;
	color: var(--gray);
	font-size: 14px;
	transition: color 0.2s;
}
.redrocket-product-set-link:hover {
	color: var(--red);
}
.redrocket-product-set-logo {
	height: auto;
	max-height: 40px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}
.redrocket-product-set-name {
	font-weight: 600;
}

/* Product Accordion */
.redrocket-product-accordion {
	background: var(--dark3);
	border-radius: 12px;
	overflow: hidden;
	margin-top: 24px;
	border: 1px solid rgba(255,255,255,0.08);
}
.redrocket-product-accordion .accordion-item {
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.redrocket-product-accordion .accordion-item:last-child {
	border-bottom: none;
}
.redrocket-product-accordion .accordion-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--dark2);
	color: var(--light);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 20px;
	letter-spacing: 1px;
	padding: 18px 24px;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: background 0.2s, color 0.2s;
}
.redrocket-product-accordion .accordion-header:hover {
	background: rgba(204,0,0,0.15);
	color: var(--red);
}
.redrocket-product-accordion .accordion-item.accordion-open .accordion-header {
	color: var(--red);
}
.redrocket-product-accordion .accordion-icon {
	flex-shrink: 0;
	transition: transform 0.25s;
}
.redrocket-product-accordion .accordion-item.accordion-open .accordion-icon {
	transform: rotate(45deg);
}
.redrocket-product-accordion .accordion-panel {
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.redrocket-product-accordion .accordion-panel[hidden] {
	display: none;
}
.redrocket-product-accordion .accordion-panel-inner {
	padding: 24px;
	color: var(--light);
	line-height: 1.6;
}
.redrocket-product-accordion .accordion-panel-inner p {
	margin-bottom: 12px;
}
.redrocket-product-accordion .accordion-panel-inner p:last-child {
	margin-bottom: 0;
}

/* Share Buttons - left column, below gallery, circular icons */
.redrocket-product-gallery-column .redrocket-product-share {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.redrocket-product-share {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.redrocket-share-label {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 16px;
	letter-spacing: 2px;
	color: var(--gray);
	text-transform: uppercase;
}
.redrocket-share-links {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}
.redrocket-share-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--red);
	border-radius: 50%;
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s;
}
.redrocket-share-icon:hover {
	background: var(--yellow-dark);
	color: var(--white);
	transform: translateY(-2px);
}
.redrocket-share-icon svg {
	width: 18px;
	height: 18px;
}
.redrocket-product-share .sharedaddy,
.redrocket-product-share .sd-block {
	display: flex;
	align-items: center;
	gap: 10px;
}
.redrocket-product-share .sd-block a {
	color: var(--gray);
	transition: color 0.2s;
}

/* Product Trust Badges - below accordions, 2-block layout */
.redrocket-product-trust-badges {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 32px;
	padding: 28px 32px;
	background: var(--dark3);
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.08);
}
.redrocket-trust-block {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.redrocket-trust-block .redrocket-trust-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	color: var(--red);
}
.redrocket-trust-block .redrocket-trust-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}
.redrocket-trust-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.redrocket-trust-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 22px;
	letter-spacing: 1px;
	color: var(--light);
	display: block;
}
.redrocket-trust-sub {
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray);
}
@media (max-width: 768px) {
	.redrocket-product-trust-badges {
		grid-template-columns: 1fr;
		padding: 20px;
	}
}

/* PDP: Also bought with / Related (recommended) / Upsells / Recently Viewed */
.redrocket-single-product .related.products,
.redrocket-single-product .upsells.products,
.redrocket-single-product .also-bought-with.products,
.redrocket-single-product .recently-viewed.products {
	margin-top: 48px;
	margin-bottom: 60px;
	width: 100%;
}
.redrocket-single-product .related.products h2,
.redrocket-single-product .upsells.products h2,
.redrocket-single-product .also-bought-with.products h2,
.redrocket-single-product .recently-viewed.products h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 28px;
	letter-spacing: 2px;
	color: var(--red);
	margin-bottom: 24px;
	text-transform: uppercase;
}
.redrocket-single-product .related ul.products,
.redrocket-single-product .upsells ul.products,
.redrocket-single-product .also-bought-with ul.products,
.redrocket-single-product .recently-viewed ul.products {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/*
 * PDP “Recommended” / upsells / cross-sells: keep rows visually aligned.
 * - Flex line gives each `li` the same height (tallest item); inner `.product-card` must fill it.
 * - Pokémon loop aspect (63/88) is taller than 3/4 — mixing both breaks image + wishlist alignment.
 */
.redrocket-single-product .related ul.products > li.product,
.redrocket-single-product .upsells ul.products > li.product,
.redrocket-single-product .also-bought-with ul.products > li.product,
.redrocket-single-product .recently-viewed ul.products > li.product {
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.redrocket-single-product .related ul.products > li.product > .product-card,
.redrocket-single-product .upsells ul.products > li.product > .product-card,
.redrocket-single-product .also-bought-with ul.products > li.product > .product-card,
.redrocket-single-product .recently-viewed ul.products > li.product > .product-card {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 0;
	height: 100%;
}

.redrocket-single-product .related .product-card .product-card-inner,
.redrocket-single-product .upsells .product-card .product-card-inner,
.redrocket-single-product .also-bought-with .product-card .product-card-inner,
.redrocket-single-product .recently-viewed .product-card .product-card-inner {
	flex-shrink: 0;
}

.redrocket-single-product .related .product-card .product-card-media,
.redrocket-single-product .upsells .product-card .product-card-media,
.redrocket-single-product .also-bought-with .product-card .product-card-media,
.redrocket-single-product .recently-viewed .product-card .product-card-media {
	flex-shrink: 0;
}

.redrocket-single-product .related .product-card .product-info,
.redrocket-single-product .upsells .product-card .product-info,
.redrocket-single-product .also-bought-with .product-card .product-info,
.redrocket-single-product .recently-viewed .product-card .product-info {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	min-height: 0;
}

.redrocket-single-product .related .product-card .product-meta,
.redrocket-single-product .upsells .product-card .product-meta,
.redrocket-single-product .also-bought-with .product-card .product-meta,
.redrocket-single-product .recently-viewed .product-card .product-meta {
	margin-top: auto;
}

/* One image aspect + contain so short SKUs and Pokémon singles share the same media band height. */
.redrocket-single-product .related .product-card .product-img,
.redrocket-single-product .upsells .product-card .product-img,
.redrocket-single-product .also-bought-with .product-card .product-img,
.redrocket-single-product .recently-viewed .product-card .product-img,
.redrocket-single-product .related .product-card.product-card--pokemon-aspect .product-img,
.redrocket-single-product .upsells .product-card.product-card--pokemon-aspect .product-img,
.redrocket-single-product .also-bought-with .product-card.product-card--pokemon-aspect .product-img,
.redrocket-single-product .recently-viewed .product-card.product-card--pokemon-aspect .product-img,
.redrocket-single-product .related .product-card.product-card-pokemon .product-img,
.redrocket-single-product .upsells .product-card.product-card-pokemon .product-img,
.redrocket-single-product .also-bought-with .product-card.product-card-pokemon .product-img,
.redrocket-single-product .recently-viewed .product-card.product-card-pokemon .product-img {
	aspect-ratio: 3 / 4;
	padding: 10px 12px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
}

.redrocket-single-product .related .product-card .product-img img,
.redrocket-single-product .upsells .product-card .product-img img,
.redrocket-single-product .also-bought-with .product-card .product-img img,
.redrocket-single-product .recently-viewed .product-card .product-img img,
.redrocket-single-product .related .product-card.product-card--pokemon-aspect .product-img img,
.redrocket-single-product .upsells .product-card.product-card--pokemon-aspect .product-img img,
.redrocket-single-product .also-bought-with .product-card.product-card--pokemon-aspect .product-img img,
.redrocket-single-product .recently-viewed .product-card.product-card--pokemon-aspect .product-img img,
.redrocket-single-product .related .product-card.product-card-pokemon .product-img img,
.redrocket-single-product .upsells .product-card.product-card-pokemon .product-img img,
.redrocket-single-product .also-bought-with .product-card.product-card-pokemon .product-img img,
.redrocket-single-product .recently-viewed .product-card.product-card-pokemon .product-img img {
	object-fit: contain !important;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	min-width: 0;
	min-height: 0;
	flex-shrink: 1;
	object-position: center;
}

/* Stable title block: two lines max so price lines up better across a row. */
.redrocket-single-product .related .product-card .product-name,
.redrocket-single-product .upsells .product-card .product-name,
.redrocket-single-product .also-bought-with .product-card .product-name,
.redrocket-single-product .recently-viewed .product-card .product-name {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	min-height: 2.4em;
}

/* Recommended products carousel (related only): horizontal scroll with arrows. */
.redrocket-single-product .related.products.rr-related-carousel {
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}
.redrocket-single-product .related.products.rr-related-carousel .rr-related-carousel-controls {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin: -10px 0 12px;
}
.redrocket-single-product .related.products.rr-related-carousel .rr-related-carousel-btn {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.redrocket-single-product .related.products.rr-related-carousel .rr-related-carousel-btn:hover:not(:disabled) {
	background: rgba(204, 0, 0, 0.25);
	border-color: rgba(204, 0, 0, 0.5);
}
.redrocket-single-product .related.products.rr-related-carousel .rr-related-carousel-btn:disabled {
	opacity: 0.45;
	cursor: default;
}
.redrocket-single-product .related.products.rr-related-carousel ul.products {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	gap: 14px 12px;
	padding: 0 0 6px;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}
.redrocket-single-product .related.products.rr-related-carousel ul.products > li.product {
	flex: 0 0 calc((100% - 5 * 12px) / 6);
	flex-shrink: 0;
	max-width: calc((100% - 5 * 12px) / 6);
	min-width: 0;
	scroll-snap-align: start;
}
@media (max-width: 1100px) {
	.redrocket-single-product .related ul.products,
	.redrocket-single-product .upsells ul.products,
	.redrocket-single-product .also-bought-with ul.products,
	.redrocket-single-product .recently-viewed ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
	.redrocket-single-product .related.products.rr-related-carousel ul.products > li.product {
		flex-basis: calc((100% - 12px) / 2);
		max-width: calc((100% - 12px) / 2);
	}
}
@media (max-width: 480px) {
	.redrocket-single-product .related ul.products,
	.redrocket-single-product .upsells ul.products,
	.redrocket-single-product .also-bought-with ul.products,
	.redrocket-single-product .recently-viewed ul.products {
		grid-template-columns: 1fr;
	}
	.redrocket-single-product .related.products.rr-related-carousel ul.products > li.product {
		flex: 0 0 100%;
		flex-shrink: 0;
		max-width: 100%;
		min-width: 0;
	}
}

/* Shop / Archive */
.woocommerce-shop-wrapper .woocommerce-product-loop {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
@media (max-width: 1100px) {
	.woocommerce-shop-wrapper .woocommerce-product-loop {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.woocommerce-shop-wrapper .woocommerce-product-loop {
		grid-template-columns: 1fr;
	}
}

.woocommerce-shop-wrapper .woocommerce-pagination {
	margin-top: 40px;
}
.woocommerce-shop-wrapper .woocommerce-pagination .page-numbers {
	display: flex;
	gap: 8px;
	justify-content: center;
}
.woocommerce-shop-wrapper .page-numbers a,
.woocommerce-shop-wrapper .page-numbers span {
	background: var(--dark3);
	color: var(--light);
	padding: 10px 16px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s;
}
.woocommerce-shop-wrapper .page-numbers a:hover {
	background: var(--red);
	color: var(--dark);
}
.woocommerce-shop-wrapper .page-numbers .current {
	background: var(--red);
	color: var(--dark);
}

/* Cart table (classic template uses .shop_table.cart, not .woocommerce-cart-table) */
.woocommerce-cart-table,
.woocommerce-cart-form table.shop_table.cart {
	width: 100%;
	border-collapse: collapse;
}
.woocommerce-cart-table th,
.woocommerce-cart-table td,
.woocommerce-cart-form table.shop_table.cart th,
.woocommerce-cart-form table.shop_table.cart td {
	padding: 16px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	color: var(--light);
}
.woocommerce-cart-table th,
.woocommerce-cart-form table.shop_table.cart th {
	text-align: left;
	font-weight: 700;
	color: var(--red);
}
.woocommerce-cart-table .product-price .amount,
.woocommerce-cart-table .product-subtotal .amount,
.woocommerce-cart-form table.shop_table.cart .product-price .amount,
.woocommerce-cart-form table.shop_table.cart .product-subtotal .amount {
	color: var(--red);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 20px;
}
.woocommerce-cart-form .coupon {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}
.woocommerce-cart-form .coupon .input-text {
	background: var(--dark3);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px;
	padding: 12px 16px;
	color: var(--white);
}
.cart_totals {
	background: var(--dark3);
	border-radius: 16px;
	padding: 24px;
	margin-top: 32px;
}
.cart_totals h2 {
	color: var(--red);
	font-family: 'Bebas Neue', sans-serif;
	margin-bottom: 20px;
}

/* Checkout */
.woocommerce-checkout-wrapper .col2-set {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
@media (max-width: 768px) {
	.woocommerce-checkout-wrapper .col2-set {
		grid-template-columns: 1fr;
	}
}
.woocommerce-checkout-wrapper #order_review_heading {
	color: var(--red);
	font-family: 'Bebas Neue', sans-serif;
	margin-top: 40px;
	margin-bottom: 20px;
}
.woocommerce-checkout-wrapper input[type="text"],
.woocommerce-checkout-wrapper input[type="email"],
.woocommerce-checkout-wrapper input[type="tel"],
.woocommerce-checkout-wrapper select,
.woocommerce-checkout-wrapper textarea {
	background: var(--dark3);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px;
	padding: 12px 16px;
	color: var(--white);
	width: 100%;
}

/* Account form helper links (lost password + privacy policy). */
.woocommerce-account #customer_login {
	margin-top: 36px;
	margin-bottom: 42px;
}

@media (min-width: 769px) {
	.woocommerce-account #customer_login {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
		align-items: start;
	}

	/* Disable WooCommerce clearfix pseudo-elements in grid layout. */
	.woocommerce-account #customer_login::before,
	.woocommerce-account #customer_login::after {
		content: none;
		display: none;
	}

	.woocommerce-account #customer_login .u-column1,
	.woocommerce-account #customer_login .u-column2 {
		float: none !important;
		clear: none !important;
		width: 100% !important;
		margin: 0;
	}
}

.woocommerce-account #customer_login .u-column1 .woocommerce-form,
.woocommerce-account #customer_login .u-column2 .woocommerce-form {
	margin-bottom: 0;
}

.woocommerce-account #customer_login .u-column2 .woocommerce-form-register .woocommerce-privacy-policy-text {
	margin-bottom: 16px;
}

.woocommerce-account #customer_login .u-column2 .woocommerce-form-register button.button {
	margin-top: 8px;
}

.woocommerce-account .woocommerce-form .lost_password a,
.woocommerce-account .woocommerce-privacy-policy-text a {
	color: var(--red) !important;
	transition: color 0.2s ease;
}

.woocommerce-account .woocommerce-form .lost_password a:hover,
.woocommerce-account .woocommerce-privacy-policy-text a:hover {
	color: var(--white) !important;
}

/* Account form action buttons (match theme primary CTA style). */
.woocommerce-account .woocommerce .woocommerce-form-login .button,
.woocommerce-account .woocommerce .woocommerce-form-register .button,
.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce input.button,
.woocommerce-account .woocommerce .woocommerce-Button {
	background: var(--yellow) !important;
	color: var(--dark) !important;
	font-family: 'Barlow', sans-serif;
	font-weight: 800;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 12px 24px;
	border-radius: 10px;
	border: none !important;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.25s ease;
	box-shadow: 0 4px 20px rgba(204,0,0,0.3) !important;
}

.woocommerce-account .woocommerce .woocommerce-form-login .button:hover,
.woocommerce-account .woocommerce .woocommerce-form-register .button:hover,
.woocommerce-account .woocommerce button.button:hover,
.woocommerce-account .woocommerce input.button:hover,
.woocommerce-account .woocommerce .woocommerce-Button:hover {
	background: #fff !important;
	color: var(--dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(204,0,0,0.4) !important;
}

/* My Account two-column shell and nav styling. */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	margin: 0 0 16px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 10px;
	list-style: none;
	border-radius: 12px;
	background: var(--dark3);
	border: 1px solid rgba(255,255,255,0.08);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
	margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li + li {
	margin-top: 6px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	text-decoration: none;
	color: var(--light);
	font-weight: 700;
	letter-spacing: 0.03em;
	font-size: 14px;
	text-transform: uppercase;
	transition: background 0.2s ease, color 0.2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:focus {
	background: rgba(204,0,0,0.2);
	color: var(--white);
	outline: none;
}

.woocommerce-account .woocommerce-MyAccount-content {
	padding: 16px;
	border-radius: 12px;
	background: var(--dark3);
	border: 1px solid rgba(255,255,255,0.08);
}

/* Add breathing room above footer on account screens. */
.woocommerce-account .woocommerce {
	margin-bottom: 40px;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
	color: var(--red);
	font-family: 'Bebas Neue', sans-serif;
	letter-spacing: 0.03em;
	line-height: 1.1;
}

.woocommerce-account .woocommerce-MyAccount-content p,
.woocommerce-account .woocommerce-MyAccount-content li,
.woocommerce-account .woocommerce-MyAccount-content label {
	font-size: 15px;
	line-height: 1.5;
}

@media (min-width: 640px) {
	.woocommerce-account .woocommerce {
		display: flex !important;
		gap: 18px;
		align-items: flex-start;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		width: auto !important;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin: 0;
		flex: 0 0 220px;
		max-width: 220px;
		position: sticky;
		top: 112px;
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		flex: 1 1 auto;
		min-width: 0;
	}

	/* Fallback if another stylesheet overrides flex layout. */
	.woocommerce-account .woocommerce > .woocommerce-MyAccount-navigation {
		float: left !important;
		width: 220px !important;
		margin-right: 18px !important;
	}

	.woocommerce-account .woocommerce > .woocommerce-MyAccount-content {
		float: none !important;
		width: calc(100% - 238px) !important;
		overflow: hidden;
	}
}

@media (min-width: 1200px) {
	.woocommerce-account .woocommerce-MyAccount-navigation {
		flex-basis: 260px;
		max-width: 260px;
	}

	.woocommerce-account .woocommerce > .woocommerce-MyAccount-navigation {
		width: 260px !important;
		margin-right: 18px !important;
	}

	.woocommerce-account .woocommerce > .woocommerce-MyAccount-content {
		width: calc(100% - 278px) !important;
	}

	.woocommerce-account .woocommerce {
		margin-bottom: 56px;
	}
}

/* ── Shop / category archive hero (category thumbnail + title + description) ── */
.woocommerce-shop-wrapper .rr-shop-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.75rem;
  padding: 0 clamp(1rem, 2.5vw, 1.75rem);
  background: var(--dark2, #12121e);
  border-radius: 12px;
}

.woocommerce-shop-wrapper .rr-shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rr-shop-hero-bg, none) center top / cover no-repeat;
  opacity: 0.35;
  transition: opacity 0.4s ease;
}

.woocommerce-shop-wrapper .rr-shop-hero--no-image::before {
  opacity: 0;
}

.woocommerce-shop-wrapper .rr-shop-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(10, 10, 20, 0.94) 0%, rgba(10, 10, 20, 0.72) 55%, rgba(10, 10, 20, 0.45) 100%);
}

.woocommerce-shop-wrapper .rr-shop-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  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;
  pointer-events: none;
}

.woocommerce-shop-wrapper .rr-shop-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0 52px;
}

.woocommerce-shop-wrapper .rr-shop-hero__content {
  max-width: 100%;
  text-align: left;
}

.woocommerce-shop-wrapper .rr-shop-hero__tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red, #c00);
  background: rgba(204, 0, 0, 0.12);
  border: 1px solid rgba(204, 0, 0, 0.28);
  border-radius: 6px;
  padding: 6px 12px;
  margin-bottom: 16px;
}

.woocommerce-shop-wrapper .rr-shop-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  letter-spacing: 0.06em;
  color: var(--white, #fff);
  margin: 0 0 14px;
  line-height: 1.05;
  text-transform: uppercase;
}

.woocommerce-shop-wrapper .rr-shop-hero__desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.woocommerce-shop-wrapper .rr-shop-hero__desc p {
  margin: 0 0 0.75em;
}

.woocommerce-shop-wrapper .rr-shop-hero__desc p:last-child {
  margin-bottom: 0;
}

.woocommerce-shop-wrapper .rr-shop-hero__desc strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.woocommerce-shop-wrapper .rr-shop-hero__desc a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.woocommerce-shop-wrapper .rr-shop-hero__desc a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .woocommerce-shop-wrapper .rr-shop-hero {
    min-height: 220px;
  }

  .woocommerce-shop-wrapper .rr-shop-hero__inner {
    padding: 36px 0 40px;
  }
}

/* Live Streams page: intro copy in hero may include block headings (same width as category archives via .products-inner). */
.woocommerce-shop-wrapper.rr-live-streams-page .rr-shop-hero__desc h1,
.woocommerce-shop-wrapper.rr-live-streams-page .rr-shop-hero__desc h2,
.woocommerce-shop-wrapper.rr-live-streams-page .rr-shop-hero__desc h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.2px;
  color: var(--white, #fff);
  margin-top: 0;
  margin-bottom: 0.4em;
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
}
.woocommerce-shop-wrapper.rr-live-streams-page .rr-shop-hero__desc h1 {
  font-size: clamp(32px, 5vw, 52px);
}
.woocommerce-shop-wrapper.rr-live-streams-page .rr-shop-hero__desc h2 {
  font-size: clamp(26px, 4vw, 40px);
}
.woocommerce-shop-wrapper.rr-live-streams-page .rr-shop-hero__desc h3 {
  font-size: clamp(20px, 3vw, 28px);
}
.woocommerce-shop-wrapper.rr-live-streams-page .rr-shop-hero__desc p {
  color: rgba(240, 240, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
}
.woocommerce-shop-wrapper.rr-live-streams-page .rr-live-streams-plugin-hint {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Cart / Basket page (block + classic): width, empty “New in store” grid, buttons ── */
body.woocommerce-cart #main.site-main > .content-wrapper {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(16px, 3vw, 24px);
	padding-right: clamp(16px, 3vw, 24px);
	box-sizing: border-box;
}

/* Prevent block “alignwide” from stretching past the same max width as the rest of the site */
body.woocommerce-cart #main.site-main .alignwide {
	max-width: 100%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

body.woocommerce-cart .woocommerce-cart-wrapper .products-inner {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(16px, 3vw, 24px);
	padding-right: clamp(16px, 3vw, 24px);
	box-sizing: border-box;
}

/* Empty cart: “New in store” heading + product-new grid */
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > h2.wp-block-heading:not(.wc-block-cart__empty-cart__title) {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(28px, 4vw, 40px);
	letter-spacing: 0.06em;
	color: var(--white);
	margin: 2rem 0 1.25rem;
}

body.woocommerce-cart .wc-block-cart__empty-cart__title {
	margin-bottom: 1rem;
}

/* Product grid: equal columns, aligned cards (overrides WC flex % widths) */
body.woocommerce-cart ul.wc-block-grid__products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
	align-items: stretch;
}

body.woocommerce-cart li.wc-block-grid__product {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--dark3);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

/* Square image area (matches shop archive treatment) */
body.woocommerce-cart .wc-block-grid__product-image {
	flex-shrink: 0;
	margin: 0;
	background: #fff;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

body.woocommerce-cart .wc-block-grid__product-image a,
body.woocommerce-cart .wc-block-grid__product-image .wc-block-components-product-image {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

body.woocommerce-cart .wc-block-grid__product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-height: none;
	vertical-align: middle;
}

/* Product grid item: WC wraps image + title in one link (no inner <a> on title) */
body.woocommerce-cart .wc-block-grid__product > a.wc-block-grid__product-link,
body.woocommerce-cart .wc-block-grid__product > a.wc-block-grid__product-link:visited {
	color: var(--white) !important;
	text-decoration: none;
}

body.woocommerce-cart .wc-block-grid__product > a.wc-block-grid__product-link:hover {
	color: rgba(255, 255, 255, 0.88) !important;
}

/* Title, price, CTA stack; button row aligns across row */
body.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-title {
	flex: 1 1 auto;
	padding: 14px 16px 8px;
	text-align: center;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 17px;
	line-height: 1.25;
	color: inherit;
}

body.woocommerce-cart .wc-block-grid__product-title a {
	color: var(--white) !important;
	text-decoration: none;
}

body.woocommerce-cart .wc-block-grid__product-title a:hover {
	color: var(--yellow) !important;
}

/* “Price” label + amount (same pattern as shop cards: label + Bebas price) */
body.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-price {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 16px 12px;
	text-align: center;
}

body.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-price::before {
	content: "Price";
	font-family: 'Barlow', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.5);
}

body.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-price .woocommerce-Price-amount,
body.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-price {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(20px, 2.5vw, 26px);
	letter-spacing: 0.06em;
	color: var(--yellow);
}

body.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-price .woocommerce-Price-amount {
	color: inherit;
}

body.woocommerce-cart .wc-block-grid__product .wp-block-button.wc-block-components-product-button,
body.woocommerce-cart .wc-block-grid__product .wp-block-button.wc-block-grid__product-add-to-cart {
	margin-top: auto;
	padding: 0 16px 16px;
	width: 100%;
	box-sizing: border-box;
}

/* Match store product cards: .product-card .add_to_cart_button (outline + yellow text, hover fill) */
body.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-add-to-cart .wp-block-button__link,
body.woocommerce-cart .wc-block-grid__product .wc-block-components-product-button .wp-block-button__link {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	background: rgba(204, 0, 0, 0.1) !important;
	border: 1px solid rgba(204, 0, 0, 0.2) !important;
	color: var(--yellow) !important;
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 10px 14px;
	border-radius: 8px;
	text-decoration: none;
	box-shadow: none !important;
	transition: background 0.2s ease, color 0.2s ease;
}

body.woocommerce-cart .wc-block-grid__product .wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
body.woocommerce-cart .wc-block-grid__product .wc-block-components-product-button .wp-block-button__link:hover {
	background: var(--yellow) !important;
	color: var(--dark) !important;
	transform: none;
}

/* Filled cart: primary actions match theme */
body.woocommerce-cart .wc-block-cart .wc-block-components-button:not(.wc-block-components-panel__button) .wc-block-components-button__button,
body.woocommerce-cart .wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button__button {
	background: var(--yellow) !important;
	color: var(--dark) !important;
	font-family: 'Barlow', sans-serif;
	font-weight: 800;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 14px 24px;
	border-radius: 10px;
	border: none !important;
	box-shadow: 0 4px 20px rgba(204, 0, 0, 0.3);
}

body.woocommerce-cart .wc-block-cart .wc-block-components-button:not(.wc-block-components-panel__button) .wc-block-components-button__button:hover,
body.woocommerce-cart .wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button__button:hover {
	background: #fff !important;
	color: var(--dark) !important;
}

/* Block cart line thumbnails: consistent square */
body.woocommerce-cart .wc-block-cart-item__image a {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	width: 88px;
	max-width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	overflow: hidden;
}

body.woocommerce-cart .wc-block-cart-item__image img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

@media (max-width: 1100px) {
	body.woocommerce-cart ul.wc-block-grid__products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	body.woocommerce-cart ul.wc-block-grid__products {
		grid-template-columns: 1fr;
	}
}

/* ── DB card detail modal (Get Prices): must be fixed — without this, #redrocket-card-detail-modal flows after </footer> ── */
#redrocket-card-detail-modal.card-detail-modal {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

#redrocket-card-detail-modal.card-detail-modal.is-open {
	display: flex;
}

.card-detail-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	cursor: pointer;
}

.card-detail-modal-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 920px;
	max-height: min(90vh, 920px);
	overflow: auto;
	background: #fff;
	color: #111;
	border-radius: 10px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.card-detail-modal-close {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 3;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.08);
	color: #111;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.card-detail-modal-close:hover {
	background: rgba(0, 0, 0, 0.14);
}

.card-detail-modal-prev,
.card-detail-modal-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.95);
	color: #111;
	font-size: 18px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card-detail-modal-prev {
	left: 8px;
}

.card-detail-modal-next {
	right: 8px;
}

.card-detail-modal-body {
	padding: 20px 24px 28px;
}

@media (max-width: 600px) {
	.card-detail-modal-prev,
	.card-detail-modal-next {
		display: none;
	}
}

/* Single Pokémon card page (/pokemon-card/{slug}/): title above image */
.pokemon-card-single .pokemon-card-page-header {
	margin: 0 0 1.25rem;
	padding: 0;
}

.pokemon-card-single .pokemon-card-page-title {
	margin: 0;
	font-size: clamp(1.375rem, 3.5vw, 1.875rem);
	font-weight: 700;
	color: var(--light);
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.pokemon-card-single .pokemon-card-detail-full {
	padding-top: 0.5rem;
}

.pokemon-card-single .pokemon-card-detail-set-logo img {
	display: block;
	max-height: 48px;
	width: auto;
	margin-bottom: 12px;
}

.pokemon-card-single .pokemon-card-detail-image img {
	display: block;
	max-width: min(100%, 420px);
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.pokemon-card-single .pokemon-card-detail-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	max-width: min(100%, 420px);
	padding: 24px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	color: var(--gray);
	font-size: 1.25rem;
	font-weight: 600;
}

.pokemon-card-single .pokemon-card-detail-info {
	margin-top: 1.5rem;
	color: var(--light);
}

.pokemon-card-single .pokemon-card-detail-info p {
	margin: 0.5rem 0;
	line-height: 1.5;
}

.pokemon-card-single .pokemon-card-set-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin: 0 0 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pokemon-card-single .pokemon-card-set-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--light);
}

.pokemon-card-single .pokemon-card-set-symbol {
	width: 32px;
	height: 32px;
	object-fit: contain;
	flex-shrink: 0;
}

.pokemon-card-single .pokemon-card-rules {
	margin: 1.25rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pokemon-card-single .pokemon-card-rules-heading {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--gray);
}

.pokemon-card-single .pokemon-card-rules-body {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(245, 245, 245, 0.92);
}

.pokemon-card-single .pokemon-card-rules-body .pokemon-card-rule-line {
	margin: 0 0 0.85rem;
}

.pokemon-card-single .pokemon-card-rules-body .pokemon-card-rule-line:last-child {
	margin-bottom: 0;
}

@media (min-width: 960px) {
	.pokemon-card-single .pokemon-card-detail-full {
		display: grid;
		grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
		column-gap: 48px;
		row-gap: 20px;
		align-items: start;
	}

	.pokemon-card-single .pokemon-card-page-header {
		grid-column: 1 / -1;
		grid-row: 1;
		margin-bottom: 0.5rem;
	}

	.pokemon-card-single .pokemon-card-detail-set-logo {
		grid-column: 1;
		grid-row: 2;
	}

	.pokemon-card-single .pokemon-card-detail-image {
		grid-column: 1;
		grid-row: 2;
	}

	.pokemon-card-single .pokemon-card-detail-full:has(.pokemon-card-detail-set-logo) .pokemon-card-detail-image {
		grid-row: 3;
	}

	.pokemon-card-single .pokemon-card-detail-info {
		grid-column: 2;
		grid-row: 2 / span 2;
		margin-top: 0;
	}
}
