/* ═══════════════════════════════════════════════
   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;
}
.cat-bar__item {
  padding: 14px 20px;
  font-size: 11px;
  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: 320px;
  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);
}
.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;
}
.subcats__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.subcats__track::-webkit-scrollbar { display: none; }
.subcat-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 80px;
}
.subcat-bubble__img {
  width: 72px;
  height: 72px;
  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: 10px;
  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: 40px;
}
.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(3, 1fr);
  gap: 24px;
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.4s, transform 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.product-card__img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray);
  max-width: 500px;
  max-height: 500px;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__img img {
  transform: scale(1.05);
}
.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: 2;
}

/* Quick view eye icon — always visible */
.product-card__view-more {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.product-card__view-more svg {
  width: 16px;
  height: 16px;
  color: #fff;
  transition: color 0.3s;
}
.product-card__view-more:hover {
  background: var(--gold);
  box-shadow: 0 2px 12px rgba(242,192,41,0.4);
  transform: scale(1.1);
}
.product-card__view-more:hover svg {
  color: var(--black);
}
.product-card__view-more::after {
  content: 'Vista rápida';
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.product-card__view-more:hover::after {
  opacity: 1;
}

.product-card__actions {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateY(0);
}
.product-card__btn-quickview {
  flex: 0 0 auto;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
}
.product-card__btn-quickview:hover {
  background: var(--black);
  color: var(--gold);
}
.product-card__btn-wpp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--green-wpp);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.3s;
}
.product-card__btn-wpp:hover { background: var(--green-wpp-dark); }
.product-card__btn-wpp svg { width: 14px; height: 14px; fill: #fff; }

.product-card__info {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 110px;
}
.product-card__cat {
  font-size: 9px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__desc {
  font-size: 12px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--text-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* ── 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: var(--radius-lg);
  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 ── */
.detail {
  padding: 32px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.detail__breadcrumb {
  font-size: 11px;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.detail__breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.detail__breadcrumb a:hover { color: var(--gold); }
.detail__breadcrumb span { color: var(--text); }
.detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.detail__gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}
.detail__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail__thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s;
  background: var(--gray);
}
.detail__thumb.active,
.detail__thumb:hover {
  border-color: var(--gold);
}
.detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail__main-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray);
  aspect-ratio: 1/1;
  max-width: 500px;
  max-height: 500px;
}
.detail__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail__img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  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: all 0.3s;
  cursor: pointer;
  border: none;
}
.detail__img-nav:hover { background: var(--gold); color: var(--black); box-shadow: 0 4px 16px rgba(242,192,41,0.3); }
.detail__img-nav.prev { left: 14px; }
.detail__img-nav.next { right: 14px; }
.detail__img-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;
}
.detail__info {
  display: flex;
  flex-direction: column;
}
.detail__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: 10px;
}
.detail__name {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.detail__gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin-bottom: 20px;
}
.detail__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.detail__tab {
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.detail__tab.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.detail__tab-content {
  font-size: 13px;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}
.detail__promo {
  background: rgba(242,192,41,0.08);
  border: 1px solid rgba(242,192,41,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.detail__promo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail__promo-icon svg { width: 18px; height: 18px; fill: var(--black); }
.detail__promo-text {
  font-size: 12px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--gold);
  line-height: 1.4;
}
.detail__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: 16px 28px;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  width: 100%;
  margin-bottom: 16px;
}
.detail__wpp-btn:hover {
  background: var(--green-wpp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.detail__wpp-btn svg { width: 20px; height: 20px; fill: #fff; }
.detail__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: 10px;
  transition: color 0.3s;
  cursor: pointer;
}
.detail__share:hover { color: var(--gold); }
.detail__share svg { width: 14px; height: 14px; }
.detail__trust {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.detail__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.detail__trust-item svg { width: 16px; height: 16px; color: var(--gold); }

/* ── 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(2, 1fr); gap: 16px; }
  .detail__grid { grid-template-columns: 1fr; gap: 24px; }
  .detail__gallery { grid-template-columns: 1fr; }
  .detail__thumbs { flex-direction: row; order: 2; overflow-x: auto; }
  .detail__thumb { width: 60px; height: 60px; flex-shrink: 0; }
  .quickview { grid-template-columns: 1fr; max-height: 90vh; }
  .quickview__gallery { aspect-ratio: 1/1; }
  .quickview__info { padding: 24px; }
  .cat-hero { height: 200px; }
  .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; }
  .detail__main-img { max-width: 100%; max-height: none; aspect-ratio: 1/1; }
  .detail__name { font-size: 28px; }
  .detail__info { padding: 0; }
}

/* ── 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: 12px; }
  .products__header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
  .product-card__info { padding: 12px 14px 16px; min-height: 90px; }
  .product-card__name { font-size: 14px; }
  .product-card__desc { font-size: 11px; }
  .product-card__cat { font-size: 8px; letter-spacing: 1.5px; }
  .product-card__badge { font-size: 8px; padding: 3px 8px; }
  .product-card__view-more { width: 30px; height: 30px; top: 8px; right: 8px; }
  .product-card__view-more svg { width: 14px; height: 14px; }
  .product-card__view-more::after { display: none; }
  .product-card__actions { bottom: 8px; left: 8px; right: 8px; }
  .product-card__btn-quickview { font-size: 9px; padding: 8px 10px; letter-spacing: 1px; }
  .product-card__btn-wpp { font-size: 9px; padding: 8px 12px; letter-spacing: 0.5px; }

  /* Detail page mobile */
  .detail { padding: 16px 12px 32px; }
  .detail__grid { gap: 20px; }
  .detail__breadcrumb { font-size: 10px; margin-bottom: 16px; letter-spacing: 1px; }
  .detail__name { font-size: 24px; }
  .detail__cat { font-size: 9px; letter-spacing: 2px; }
  .detail__gold-line { width: 36px; margin-bottom: 16px; }
  .detail__tabs { margin-bottom: 16px; }
  .detail__tab { padding: 8px 14px; font-size: 10px; letter-spacing: 1px; }
  .detail__tab-content { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
  .detail__promo { padding: 12px 14px; margin-bottom: 20px; }
  .detail__promo-text { font-size: 11px; }
  .detail__wpp-btn { font-size: 13px; padding: 14px 20px; letter-spacing: 1px; }
  .detail__share { font-size: 10px; }
  .detail__trust { gap: 12px; margin-top: 16px; padding-top: 16px; flex-wrap: wrap; }
  .detail__trust-item { font-size: 9px; }
  .detail__main-img { max-width: 100%; max-height: none; aspect-ratio: 1/1; }
  .detail__thumb { width: 50px; height: 50px; }

  /* Category hero mobile */
  .cat-hero { height: 180px; }
  .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__img { width: 56px; height: 56px; }
  .subcat-bubble__name { font-size: 9px; }
  .subcats__track { gap: 16px; }

  /* 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: 1/1; }
  .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: 8px; }
  .product-card__info { padding: 10px 10px 14px; min-height: 80px; }
  .product-card__name { font-size: 13px; }
  .product-card__desc { font-size: 10px; -webkit-line-clamp: 1; }
  .detail__name { font-size: 22px; }
  .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 {
  aspect-ratio: 1 / 1;
}
.fullgraphics-shop .woocommerce-product-gallery img,
.fullgraphics-shop .quickview__gallery img {
  max-width: 500px;
  max-height: 500px;
  object-fit: cover;
}
.subcat-bubble__img img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

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