/* ═══════════════════════════════════════════════
   FULLGRAPHICS STORE — WooCommerce Custom Styles
   ═══════════════════════════════════════════════ */

/* Variables — aligned with Home / Nosotros palette */
.fullgraphics-shop {
  --gold: #f2c029;
  --gold-dark: #d4a820;
  --gold-light: rgba(242,192,41,0.12);
  --black: #0A0A0A;
  --dark: #141414;
  --dark-card: #ffffff;
  --gray: #f0f0f0;
  --white: #222222;
  --light-bg: #f6f6f8;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e0e0e0;
  --border-light: #eeeeee;
  --bg: #ffffff;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --green-wpp: #25D366;
  --green-wpp-dark: #1fb855;
  --font: 'Roboto Condensed', sans-serif;
  background: #ffffff !important;
  color: #333333 !important;
  font-family: 'Roboto Condensed', sans-serif;
}
.fullgraphics-shop a { color: inherit; text-decoration: none; }
.fullgraphics-shop img { display: block; max-width: 100%; }

/* ── Hide home-specific elements on store pages ── */
.fullgraphics-shop .side-dots,
.fullgraphics-shop .scroll-progress {
  display: none !important;
}

/* ── Keep the main navbar dark on store pages ── */
.fullgraphics-shop nav#mainNav {
  background: rgba(10,10,10,0.97) !important;
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Ensure nav links stay light colored */
.fullgraphics-shop .nav-links a,
.fullgraphics-shop .nav-logo-img,
.fullgraphics-shop .nav-cta {
  color: #fff;
}
.fullgraphics-shop .nav-links a:hover {
  color: var(--gold);
}

/* ── CATEGORY BAR ── */
.cat-bar {
  background: #f8f8f8;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-bar::-webkit-scrollbar { display: none; }
.cat-bar__inner {
  display: flex;
  gap: 0;
  min-width: max-content;
  justify-content: center;
}
.cat-bar__item {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
}
.cat-bar__item:hover { color: var(--white); }
.cat-bar__item.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

/* ── CATEGORY HERO BANNER ── */
.cat-hero {
  position: relative;
  height: 750px;
  overflow: hidden;
  background: var(--dark);
}
.cat-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 56px;
}
.cat-hero__breadcrumb {
  font-size: 11px;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.cat-hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.cat-hero__breadcrumb a:hover { color: var(--gold); }
.cat-hero__breadcrumb span { color: rgba(255,255,255,0.8); }
.cat-hero__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cat-hero__count {
  font-size: 12px;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SUBCATEGORY BUBBLES ── */
.subcats {
  padding: 32px 40px;
  background: #f8f8f8;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.subcats__label {
  font-size: 10px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}
.subcats__carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subcats__track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  scroll-behavior: smooth;
  justify-content: center;
}
.subcats__track::-webkit-scrollbar { display: none; }
.subcats__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.subcats__arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.subcats__arrow--prev { left: -18px; }
.subcats__arrow--next { right: -18px; }
.subcat-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 110px;
}
.subcat-bubble__img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: all 0.3s;
  background: var(--dark-card);
}
.subcat-bubble:hover .subcat-bubble__img,
.subcat-bubble.active .subcat-bubble__img {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-light);
}
.subcat-bubble__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subcat-bubble__name {
  font-size: 13px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  transition: color 0.3s;
  line-height: 1.3;
}
.subcat-bubble:hover .subcat-bubble__name,
.subcat-bubble.active .subcat-bubble__name {
  color: var(--gold);
}

/* ── PRODUCT GRID ── */
.products {
  padding: 24px;
}
.products__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.products__title {
  font-size: 13px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}
.products__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.products__sort label {
  font-size: 11px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.products__sort select {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--dark-card);
  color: var(--text);
  cursor: pointer;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

/* ── PRODUCT CARD — Horizontal image card (matches home carousel style) ── */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.product-card__img {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a1a1a;
}

.product-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

/* Hover image swap */
.product-card__img-hover {
  opacity: 0;
  z-index: 2 !important;
}

.product-card:hover .product-card__img-main {
  opacity: 0;
}

.product-card:hover .product-card__img-hover {
  opacity: 1;
  transform: scale(1.05);
}

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

/* Gradient overlay */
.product-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  transition: background 0.4s ease;
  pointer-events: none;
}

.product-card:hover .product-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}

/* Badge */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 5;
}

/* Quick view eye icon */
.product-card__quickview {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.product-card__quickview svg {
  width: 15px;
  height: 15px;
  color: #fff;
  transition: color 0.3s;
}

.product-card__quickview:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.product-card__quickview:hover svg {
  color: var(--black);
}

/* Bottom content (over image) — always visible */
.product-card__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card__name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Actions row — appears on hover */
.product-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp button — green solid */
.product-card__wpp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #25D366;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.3s;
}

.product-card__wpp:hover {
  background: #1fb855;
}

.product-card__wpp svg {
  flex-shrink: 0;
}

/* "Ver más" indicator */
.product-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.product-card:hover .product-card__more {
  color: #fff;
}

.product-card__more svg {
  transition: transform 0.3s;
}

.product-card:hover .product-card__more svg {
  transform: translateX(3px);
}

/* ── QUICK VIEW MODAL ── */
.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.quickview-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.quickview {
  background: var(--dark-card);
  border-radius: 0;
  width: 90%;
  max-width: 880px;
  max-height: 85vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transform: scale(0.95);
  transition: transform 0.3s;
}
.quickview-overlay.active .quickview {
  transform: scale(1);
}
.quickview__gallery {
  position: relative;
  background: var(--gray);
  aspect-ratio: 1;
}
.quickview__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quickview__gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10,10,10,0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.quickview__gallery-nav:hover { background: var(--gold); color: var(--black); }
.quickview__gallery-nav.prev { left: 12px; }
.quickview__gallery-nav.next { right: 12px; }
.quickview__gallery-nav svg { width: 16px; height: 16px; }
.quickview__info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.quickview__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 5;
  border: none;
  cursor: pointer;
}
.quickview__close:hover { background: rgba(255,255,255,0.2); }
.quickview__close svg { width: 14px; height: 14px; }
.quickview__cat {
  font-size: 10px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.quickview__name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.quickview__divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}
.quickview__desc {
  font-size: 13px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}
.quickview__wpp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-wpp);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.2s;
  width: 100%;
  margin-bottom: 12px;
}
.quickview__wpp-btn:hover { background: var(--green-wpp-dark); transform: translateY(-1px); }
.quickview__wpp-btn svg { width: 18px; height: 18px; fill: #fff; }
.quickview__detail-link {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  display: block;
}
.quickview__detail-link:hover { color: var(--gold); }

/* ── PRODUCT DETAIL PAGE v3 ── */
.detail-v2 {
  padding: 32px 40px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Breadcrumb */
.detail-v2__breadcrumb {
  font-size: 11px;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.detail-v2__breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.detail-v2__breadcrumb a:hover { color: var(--gold); }
.detail-v2__breadcrumb .bc-sep { margin: 0 8px; color: var(--border); }
.detail-v2__breadcrumb .bc-current { color: var(--text); }

/* ── MAIN ROW: [Gallery] [Info] ── */
.detail-v2__row {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 40px;
  align-items: start;
}

/* Gallery sub-grid: main image + thumbs */
.detail-v2__gallery {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 12px;
}
/* When no thumbnails, gallery is just the image */
.detail-v2__row.no-thumbs .detail-v2__gallery {
  grid-template-columns: 1fr;
}

/* Main image (1:1 square) */
.detail-v2__main-img {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--gray);
  aspect-ratio: 1 / 1;
}
.detail-v2__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.detail-v2__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  z-index: 2;
}
.detail-v2__img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10,10,10,0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  opacity: 0;
  z-index: 3;
}
.detail-v2__main-img:hover .detail-v2__img-nav { opacity: 1; }
.detail-v2__img-nav:hover { background: var(--gold); color: var(--black); box-shadow: 0 4px 16px rgba(242,192,41,0.3); }
.detail-v2__img-nav.prev { left: 14px; }
.detail-v2__img-nav.next { right: 14px; }
.detail-v2__img-nav svg { width: 18px; height: 18px; }

/* Thumbnails — vertical column on the RIGHT */
.detail-v2__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
}
.detail-v2__thumbs::-webkit-scrollbar { width: 3px; }
.detail-v2__thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.detail-v2__thumb {
  width: 90px;
  height: 90px;
  border-radius: 0;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--gray);
  flex-shrink: 0;
}
.detail-v2__thumb.active,
.detail-v2__thumb:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(242,192,41,0.2);
}
.detail-v2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Info panel ── */
.detail-v2__info {
  display: flex;
  flex-direction: column;
}
.detail-v2__name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #222222;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Tabs */
.detail-v2__tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
}
.detail-v2__tab {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}
.detail-v2__tab:hover { color: #222; }
.detail-v2__tab.active {
  color: #222222;
  border-bottom-color: var(--gold);
}

/* Tab panels */
.detail-v2__tab-panel {
  display: none;
  margin-bottom: 24px;
}
.detail-v2__tab-panel.active {
  display: block;
}

/* Description content */
.detail-v2__desc-content {
  font-size: 13px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.detail-v2__desc-content p { margin-bottom: 10px; }
.detail-v2__desc-content ul,
.detail-v2__desc-content ol {
  padding-left: 20px;
  margin-bottom: 10px;
}

/* Characteristics (inside description tab) */
.detail-v2__char-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.detail-v2__char-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 12px;
}
.detail-v2__char-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-v2__char-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 12px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--text);
  line-height: 1.5;
}
.char-bullet {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.detail-v2__char-item strong {
  color: #222222;
  font-weight: 700;
}

/* Promo banner */
.detail-v2__promo {
  background: rgba(242,192,41,0.08);
  border: 1px solid rgba(242,192,41,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.detail-v2__promo-icon {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-v2__promo-icon svg { width: 16px; height: 16px; fill: var(--black); }
.detail-v2__promo-text {
  font-size: 12px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  color: #222222;
  line-height: 1.4;
}

/* WhatsApp CTA */
.detail-v2__wpp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-wpp);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 24px;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  width: 100%;
  margin-bottom: 16px;
}
.detail-v2__wpp-btn:hover {
  background: var(--green-wpp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.detail-v2__wpp-btn svg { width: 20px; height: 20px; fill: #fff; }

/* Payment methods inline row */
.detail-v2__payment-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.detail-v2__payment-row .pay-icon {
  display: inline-block;
  width: 42px;
  height: 28px;
  min-width: 42px;
  max-width: 42px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  padding: 4px;
  box-sizing: content-box;
  transition: border-color 0.3s;
}
.detail-v2__payment-row .pay-icon:hover { border-color: var(--gold); }
.detail-v2__payment-row .pay-icon img {
  display: block;
  width: 42px;
  height: 28px;
  object-fit: contain;
}

/* Share */
.detail-v2__share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px;
  transition: color 0.3s;
  cursor: pointer;
}
.detail-v2__share:hover { color: var(--gold); }
.detail-v2__share svg { width: 14px; height: 14px; }

/* ── Keep old .detail class for backward compat (hidden) ── */
.detail { display: none; }

/* ── RELATED PRODUCTS CAROUSEL ── */
.related {
  padding: 48px 40px 56px;
  background: #f8f8f8;
  border-top: 1px solid var(--border);
}
.related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.related__title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.related__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}
.related__nav {
  display: flex;
  gap: 8px;
}
.related__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  cursor: pointer;
}
.related__nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.related__nav-btn svg {
  width: 18px;
  height: 18px;
}
.related__track-wrapper {
  overflow: hidden;
  position: relative;
}
.related__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.related__track .product-card {
  flex: 0 0 calc((100vw - 80px - 60px) / 4);
  max-width: calc((100vw - 80px - 60px) / 4);
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 900px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .quickview { grid-template-columns: 1fr; max-height: 90vh; }
  .quickview__gallery { aspect-ratio: 4/3; }
  .quickview__info { padding: 24px; }
  .cat-hero { height: 365px; }
  .cat-hero__title { font-size: 28px; }
  .cat-hero__overlay { padding: 32px 24px; }
  .related { padding: 32px 16px 40px; }
  .related__track .product-card {
    flex: 0 0 calc((100vw - 48px - 20px) / 2);
    max-width: calc((100vw - 48px - 20px) / 2);
  }
  .product-card__img { max-width: 100%; max-height: none; }

  /* Subcats: fix justify-content for scrollable tracks on all mobile/tablet */
  .subcats__carousel { justify-content: flex-start; }
  .subcats__track { justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
  .cat-bar__inner { justify-content: flex-start; }

  /* Detail v2 tablet */
  .detail-v2 { padding: 24px 24px 32px; }
  .detail-v2__row { grid-template-columns: 1fr; gap: 28px; }
  .detail-v2__gallery { grid-template-columns: 1fr; }
  .detail-v2__thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    gap: 8px;
  }
  .detail-v2__thumb { width: 70px; height: 70px; flex-shrink: 0; }
  .detail-v2__name { font-size: 28px; }
  .detail-v2__tab { font-size: 13px; padding: 10px 20px; }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 600px) {
  .cat-bar { padding: 0 12px; }
  .cat-bar__item { padding: 12px 14px; font-size: 10px; letter-spacing: 1px; }
  .products { padding: 20px 12px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .products__header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
  .product-card__name { font-size: 12px; letter-spacing: 1px; }
  .product-card__badge { font-size: 8px; padding: 3px 8px; }
  .product-card__bottom { padding: 14px 12px; }
  .product-card__wpp { padding: 6px 10px; font-size: 9px; }
  .product-card__more { font-size: 9px; }
  .product-card__quickview { width: 28px; height: 28px; top: 8px; right: 8px; }
  .product-card__quickview svg { width: 13px; height: 13px; }

  /* Detail v2 mobile */
  .detail-v2 { padding: 16px 12px 24px; }
  .detail-v2__breadcrumb { font-size: 10px; margin-bottom: 16px; letter-spacing: 1px; }
  .detail-v2__row { grid-template-columns: 1fr; gap: 20px; }
  .detail-v2__gallery { grid-template-columns: 1fr; }
  .detail-v2__thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    gap: 6px;
  }
  .detail-v2__thumb { width: 56px; height: 56px; flex-shrink: 0; }
  .detail-v2__img-nav { opacity: 1; width: 34px; height: 34px; }
  .detail-v2__img-nav svg { width: 14px; height: 14px; }
  .detail-v2__name { font-size: 24px; }
  .detail-v2__tab { font-size: 12px; padding: 8px 16px; }
  .detail-v2__desc-content { font-size: 13px; }
  .detail-v2__promo { padding: 12px 14px; margin-bottom: 16px; }
  .detail-v2__promo-text { font-size: 11px; }
  .detail-v2__wpp-btn { font-size: 13px; padding: 14px 20px; letter-spacing: 1px; }
  .detail-v2__share { font-size: 10px; }
  .detail-v2__payment-row { gap: 6px; }

  /* Category hero mobile */
  .cat-hero { height: 325px; }
  .cat-hero__overlay { padding: 24px 16px; }
  .cat-hero__title { font-size: 22px; }
  .cat-hero__breadcrumb { font-size: 10px; letter-spacing: 1.5px; }

  /* Subcategory bubbles mobile */
  .subcats { padding: 20px 12px; }
  .subcat-bubble { min-width: 90px; }
  .subcat-bubble__img { width: 100px; height: 100px; }
  .subcat-bubble__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .subcat-bubble__name { font-size: 11px; letter-spacing: 0.5px; }
  .subcats__arrow { display: none; }
  .subcats__carousel { justify-content: flex-start; }
  .subcats__track { gap: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; justify-content: flex-start; }

  /* Related products mobile */
  .related { padding: 24px 12px 32px; }
  .related__title { font-size: 20px; }
  .related__track { gap: 10px; }
  .related__track .product-card {
    flex: 0 0 calc((100vw - 24px - 10px) / 2);
    max-width: calc((100vw - 24px - 10px) / 2);
  }
  .related__nav-btn { width: 34px; height: 34px; }
  .related__nav-btn svg { width: 14px; height: 14px; }

  /* Quick view mobile */
  .quickview { width: 95%; }
  .quickview__gallery { aspect-ratio: 4/3; }
  .quickview__info { padding: 20px 16px; }
  .quickview__name { font-size: 22px; }
  .quickview__desc { font-size: 12px; }
  .quickview__wpp-btn { font-size: 12px; padding: 12px 16px; }
  .quickview__detail-link { font-size: 10px; }
}

/* ── VERY SMALL PHONES ── */
@media (max-width: 400px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .product-card__name { font-size: 11px; letter-spacing: 0.5px; }
  .product-card__bottom { padding: 12px 10px; gap: 6px; }
  .detail-v2__name { font-size: 22px; }
  .detail-v2__thumb { width: 48px; height: 48px; }
  .related__track .product-card {
    flex: 0 0 calc((100vw - 16px - 10px) / 2);
    max-width: calc((100vw - 16px - 10px) / 2);
  }
}

/* ── PRODUCT IMAGE SIZE CONSTRAINTS ── */
.product-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.detail-v2__main-img img,
.fullgraphics-shop .woocommerce-product-gallery img,
.fullgraphics-shop .quickview__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subcat-bubble__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* ── ENSURE ALL STORE TEXT IS ROBOTO ── */
.fullgraphics-shop,
.fullgraphics-shop * {
  font-family: 'Roboto Condensed', sans-serif;
}
