/*!
Theme Name: GameDay Garment
Theme URI: https://gamedaygarment.com
Author: GameDay Garment
Description: Premium fan apparel store for MLB, NFL & NCAA merchandise.
Version: 2.0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
WC requires at least: 8.0
WC tested up to: 9.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gamedaygarment
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  --color-primary:    #1E5EFF;
  --color-primary-dk: #1449d4;
  --color-navy:       #0A1F44;
  --color-navy-dk:    #061530;
  --color-accent-red: #E10600;
  --color-red-dk:     #b80500;
  --color-white:      #FFFFFF;
  --color-gray:       #F5F6F8;
  --color-gray-300:   #D1D5DB;
  --color-gray-500:   #6B7280;
  --color-black:      #0A0A0A;
  --color-gold:       #F59E0B;

  --font-display: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --font-heading: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:      4px;
  --radius-md:   8px;
  --radius-card: 8px;
  --radius-pill: 9999px;

  --shadow-card: 0 1px 4px rgba(0,0,0,.06);
  --shadow-card-hover: 0 4px 20px rgba(0,0,0,.12);
  --shadow-nav: 0 4px 24px rgba(0,0,0,.14);

  --transition: .2s ease;

  /* Semantic aliases */
  --gdg-header-bg:    #FFFFFF;
  --gdg-header-text:  #222222;
  --gdg-announce-bg:  #0A0A0A;
  --gdg-announce-text:#FFFFFF;
  --gdg-primary:      #1E5EFF;
  --gdg-red:          #E10600;
  --gdg-navy:         #0A1F44;
  --gdg-black:        #0A0A0A;

  --announce-h: 32px;
  --header-h:   84px;
  --container:  1360px;
  --pad:        clamp(16px, 3vw, 40px);

  /* Layout tokens */
  --page-max-width:              1440px;
  --container-padding-desktop:   48px;
  --container-padding-tablet:    32px;
  --container-padding-mobile:    16px;
  --sidebar-width:               260px;
  --grid-gap:                    24px;
  --card-radius:                 10px;
  --border-color:                #e5e7eb;
  --brand-blue:                  #1E5EFF;
  --brand-navy:                  #0A1F44;
  --brand-black:                 #0A0A0A;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #111827;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.admin-bar .gdg-announce { top: 32px; }
body.admin-bar .gdg-header  { top: calc(32px + var(--announce-h)); }
body.admin-bar .gdg-shop-hero { margin-top: calc(32px + var(--announce-h) + var(--header-h)); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.1; letter-spacing: 0.01em; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1 { font-size: 64px; letter-spacing: 2px; text-transform: uppercase; }
h2 { font-size: 40px; letter-spacing: 1px; text-transform: uppercase; }
h3 { font-size: 26px; }

.gdg-caption { font-size: 13px; color: var(--color-gray-500); }
.gdg-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.gdg-section { padding: 80px 0; }
.gdg-section--gray { background: var(--color-gray); }
.gdg-section--navy { background: var(--color-navy); }
.gdg-section--black { background: var(--color-black); }

.gdg-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.gdg-section-header--center { justify-content: center; text-align: center; display: block; margin-bottom: 48px; }
.gdg-section-header h2 { color: var(--color-black); }
.gdg-section-header--dark h2 { color: var(--color-white); }
.gdg-section-sub { font-size: 1rem; color: var(--color-gray-500); margin-top: 8px; }
.gdg-section-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap var(--transition);
}
.gdg-section-link:hover { gap: 8px; color: var(--color-primary); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 14px 28px; font-size: 14px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-xl { padding: 18px 40px; font-size: 20px; height: 52px; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30,94,255,.35);
}

.btn-red {
  background: var(--color-accent-red);
  color: var(--color-white);
  border-color: var(--color-accent-red);
}
.btn-red:hover {
  background: var(--color-red-dk);
  border-color: var(--color-red-dk);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.btn-navy:hover {
  background: var(--color-navy-dk);
  border-color: var(--color-navy-dk);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: var(--color-gray);
  border-color: var(--color-gray);
  color: var(--color-black);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-gray-300);
}
.btn-outline-dark:hover {
  border-color: var(--color-black);
  transform: translateY(-1px);
}

.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */

/* Promo strip (optional homepage section between hero + leagues) */
.gdg-hp-strip {
  background: var(--color-accent-red);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Non-sticky header variant */
.gdg-header--no-sticky { position: relative !important; top: 0 !important; }

.gdg-announce {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--announce-h);
  background: var(--gdg-announce-bg);
  color: var(--gdg-announce-text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--pad);
}
.gdg-announce__text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
}
.gdg-announce__right {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.gdg-announce__right a,
.gdg-announce__right span {
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: color var(--transition);
}
.gdg-announce__right a:hover,
.gdg-announce__right span:hover { color: #fff; }
.gdg-announce__close {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  border-radius: 50%;
  transition: all var(--transition);
  margin-left: 2px;
}
.gdg-announce__close:hover { color: #fff; background: rgba(255,255,255,.1); }

/* ============================================================
   HEADER
   ============================================================ */

.gdg-header {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--gdg-header-bg);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition);
}
.gdg-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.gdg-header.announce-gone { top: 0; }

.gdg-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.gdg-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.gdg-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gdg-header-text);
}
.gdg-logo__icon {
  width: 40px; height: 40px;
  background: var(--color-primary);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gdg-logo__icon svg { width: 22px; height: 22px; fill: white; }
.gdg-logo__text {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gdg-header-text);
  white-space: nowrap;
}
.gdg-logo__text span { color: var(--gdg-header-text); }
.gdg-logo .custom-logo { max-height: 48px; width: auto; }

/* Primary Nav */
.gdg-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.gdg-nav__item { position: relative; }
.gdg-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  height: var(--header-h);
}
.gdg-nav__link:hover,
.gdg-nav__link.current { color: var(--gdg-primary); }
.gdg-nav__link--sale { color: var(--gdg-red) !important; font-weight: 600; }
.gdg-nav__link--sale:hover { color: #c90000 !important; }
.gdg-nav__chevron {
  opacity: 0.7;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.gdg-nav__item:hover .gdg-nav__chevron { transform: rotate(180deg); }

/* Mega Menu */
.gdg-mega {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 560px;
  background: var(--color-white);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-nav);
  display: grid;
  gap: 8px;
}
.gdg-mega--shop { grid-template-columns: repeat(4, 1fr); min-width: 680px; }
.gdg-mega--league { grid-template-columns: repeat(3, 1fr); min-width: 480px; }
.gdg-nav__item:hover .gdg-mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.gdg-mega__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  padding: 0 8px 8px;
  border-bottom: 1px solid var(--color-gray-300);
  margin-bottom: 4px;
  grid-column: 1 / -1;
}
.gdg-mega__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-black);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.gdg-mega__link:hover {
  background: var(--color-gray);
  color: var(--color-primary);
}
.gdg-mega__link-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Header Actions */
.gdg-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.gdg-action {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: #222;
  border-radius: var(--radius);
  transition: all var(--transition);
  font-size: 1rem;
}
.gdg-action:hover { color: var(--gdg-primary); background: #f5f5f5; }
.gdg-action svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.gdg-action__badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  background: var(--color-primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  font-family: var(--font-body);
  border: 1.5px solid white;
}

/* Mobile Toggle */
.gdg-mobile-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  color: #222;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.gdg-mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: all .3s ease;
}
.gdg-mobile-toggle:hover { background: #f5f5f5; }
.gdg-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gdg-mobile-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gdg-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.gdg-mobile-nav {
  position: fixed;
  top: calc(var(--announce-h) + var(--header-h));
  left: 0; right: 0;
  background: #fff;
  z-index: 999;
  transform: translateY(-110%);
  visibility: hidden;
  transition: transform .3s ease, visibility .3s ease;
  border-bottom: 2px solid var(--gdg-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  max-height: calc(100vh - var(--announce-h) - var(--header-h));
  overflow-y: auto;
}
.gdg-mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.gdg-mobile-nav__list { padding: 12px 16px 24px; }
.gdg-mobile-nav__link {
  display: block;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  border-bottom: 1px solid #f0f0f0;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.gdg-mobile-nav__link:hover { color: var(--gdg-primary); background: #f5f5f5; padding-left: 22px; }
.gdg-mobile-nav__link--red,
.gdg-mobile-nav__link--sale { color: var(--gdg-red) !important; font-weight: 600; }

/* Mobile nav accordion */
.gdg-mobile-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f3f4f6;
}
.gdg-mobile-nav__row .gdg-mobile-nav__link {
  flex: 1;
  border-bottom: none;
}
.gdg-mobile-nav__toggle {
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.gdg-mobile-nav__item--has-sub.is-open .gdg-mobile-nav__toggle {
  transform: rotate(180deg);
  color: var(--color-primary);
}
.gdg-mobile-nav__sub {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f9fafb;
  max-height: 320px;
  overflow-y: auto;
}
.gdg-mobile-nav__item--has-sub.is-open .gdg-mobile-nav__sub {
  display: block;
}
.gdg-mobile-nav__sub-item {
  border-bottom: 1px solid #f3f4f6;
}
.gdg-mobile-nav__sub-link {
  display: block;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
}
.gdg-mobile-nav__sub-link:hover {
  color: var(--color-primary);
  background: #f0f4ff;
}
.gdg-mobile-nav__sub-search {
  padding: 8px 16px;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  background: #f9fafb;
  z-index: 1;
}
.gdg-mobile-subnav-search {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
}
.gdg-mobile-subnav-search:focus { border-color: var(--color-primary); }
.gdg-mobile-nav__sub-item.is-hidden { display: none; }

/* Search Overlay */
.gdg-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,31,68,.92);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.gdg-search-overlay.is-open { opacity: 1; visibility: visible; }
.gdg-search-box {
  width: 100%;
  max-width: 660px;
  margin: 0 var(--pad);
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-nav);
  transform: translateY(-16px);
  transition: transform var(--transition);
}
.gdg-search-overlay.is-open .gdg-search-box { transform: translateY(0); }
.gdg-search-inner {
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
}
.gdg-search-inner svg { width: 20px; height: 20px; color: var(--color-gray-500); flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; }
.gdg-search-input {
  flex: 1;
  padding: 22px 0;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  color: var(--color-black);
}
.gdg-search-input::placeholder { color: var(--color-gray-300); }
.gdg-search-close {
  color: var(--color-gray-500);
  font-size: 20px;
  transition: color var(--transition);
}
.gdg-search-close:hover { color: var(--color-black); }
.gdg-search-hint {
  padding: 10px 20px;
  border-top: 1px solid var(--color-gray-300);
  font-size: 12px;
  color: var(--color-gray-500);
}
.gdg-search-kbd {
  background: var(--color-gray);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.gdg-hero {
  height: 520px;
  background: #0A1F44;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--announce-h) + var(--header-h));
}

.gdg-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3) 100%),
    url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_51_51-PM.avif') center/cover no-repeat;
}
.gdg-hero__bg::after {
  content: none;
}

.gdg-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
  width: 100%;
}

/* Hero Text Column */
.gdg-hero__text { }

.gdg-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,94,255,.2);
  border: 1px solid rgba(30,94,255,.4);
  color: #7aaeff;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.gdg-hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

.gdg-hero__h1 {
  display: flex;
  flex-direction: column;
  font-size: clamp(56px, 6vw, 92px);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  line-height: 0.9;
}
.gdg-hero__h1-white { color: #FFFFFF; }
.gdg-hero__h1-blue  { color: var(--gdg-primary); }

.gdg-hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}

.gdg-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.gdg-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
}
.gdg-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.gdg-hero__trust-item > span {
  color: #7aaeff;
  font-weight: 700;
  font-size: 13px;
}

/* Hero Visual — floating product cards */
.gdg-hero__visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gdg-hero__visual-ring { display: none; }

.gdg-hero__product-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 240px;
}
.gdg-hero__card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  animation: heroCardFloat 3s ease-in-out infinite;
}
.gdg-hero__card--1 { animation-delay: 0s; }
.gdg-hero__card--2 { animation-delay: .7s; }
.gdg-hero__card--3 { animation-delay: 1.4s; }
@keyframes heroCardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.gdg-hero__card-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 4px;
  background: var(--color-primary);
  color: white;
}
.gdg-hero__card-badge--new  { background: var(--color-primary); color: white; }
.gdg-hero__card-badge--sale { background: var(--color-accent-red); color: white; }
.gdg-hero__card-badge--hot  { background: var(--color-gold); color: var(--color-black); }
.gdg-hero__card-league {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.gdg-hero__card-name {
  font-family: var(--font-heading);
  font-size: 16px;
  color: white;
  letter-spacing: .04em;
  line-height: 1.1;
}
.gdg-hero__card-price {
  font-family: var(--font-heading);
  font-size: 17px;
  color: white;
  letter-spacing: .02em;
}
.gdg-hero__card-old {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: line-through;
  margin-left: 6px;
}

/* Hero Visual Placeholder (fallback) */
.gdg-hero-visual {
  width: 100%;
  height: 400px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 13px;
  font-family: var(--font-body);
  gap: 8px;
}
.gdg-hero-visual::before {
  content: '🏟️';
  font-size: 48px;
}

/* ============================================================
   SHOP BY LEAGUE
   ============================================================ */

.gdg-leagues { padding: 60px 0; background: #FFFFFF; }

.gdg-leagues__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.gdg-leagues__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}
.gdg-leagues__viewall {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gdg-primary);
  font-weight: 500;
  transition: opacity var(--transition);
}
.gdg-leagues__viewall:hover { opacity: .7; }

.gdg-leagues__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gdg-league-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 380px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gdg-league-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.gdg-league-card--mlb  { background: #0A1F44 url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_34_37-PM.avif') center/cover no-repeat; }
.gdg-league-card--nfl  { background: #C8102E url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_34_11-PM.avif') center/cover no-repeat; }
.gdg-league-card--ncaa { background: #1E5EFF url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_34_14-PM.avif') center/cover no-repeat; }

.gdg-league-card__body { position: relative; z-index: 1; }
.gdg-league-card__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.gdg-league-card__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 3vw, 52px);
  color: white;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin-bottom: 14px;
}
.gdg-league-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  line-height: 1.55;
  max-width: 220px;
}

.gdg-league-card__visual {
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  opacity: .45;
  transition: opacity var(--transition);
}
.gdg-league-card:hover .gdg-league-card__visual { opacity: .6; }

/* ============================================================
   SHOP BY CATEGORY
   ============================================================ */

.gdg-categories { padding: 60px 0; background: #FFFFFF; }

.gdg-categories__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.gdg-categories__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}

.gdg-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gdg-cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  text-decoration: none;
  transition: filter .25s ease, transform .25s ease;
}
.gdg-cat-card--apparel      { background: #111111 url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_56_50-PM.avif') center/cover no-repeat; }
.gdg-cat-card--headwear     { background: #1a1a1a url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_57_09-PM.avif') center/cover no-repeat; }
.gdg-cat-card--gifts        { background: #B8860B url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_56_26-PM.avif') center/cover no-repeat; }
.gdg-cat-card--collectibles { background: #1a1a1a url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_57_18-PM.avif') center/cover no-repeat; }

.gdg-cat-card:hover {
  filter: brightness(1.15);
  transform: scale(1.02);
}

/* Image placeholder area */
.gdg-cat-card__ghost {
  position: absolute;
  bottom: 0; right: 0;
  width: 90px; height: 90px;
  background: rgba(255,255,255,.08);
  border-radius: 50% 0 0 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  opacity: .5;
  pointer-events: none;
}

.gdg-cat-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gdg-cat-card__title {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 0.01em;
  color: white;
  line-height: 0.95;
}
/* thin divider line */
.gdg-cat-card__divider {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,.3);
  margin: 6px 0;
}
.gdg-cat-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.45;
  margin-bottom: 10px;
}
.gdg-cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.4);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  width: fit-content;
}
.gdg-cat-card:hover .gdg-cat-card__link { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* ============================================================
   PRODUCT CARD (shared: Trending, Archive, Related)
   ============================================================ */

.gdg-product-card {
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.gdg-product-card:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.gdg-product-card__img {
  position: relative;
  aspect-ratio: 1 / 1.15;
  background: var(--color-gray);
  overflow: hidden;
}
.gdg-product-card__img img,
.gdg-product-card__img .gdg-product-card__placeholder,
.gdg-product-card__img .gdg-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}
.gdg-product-card:hover .gdg-product-card__img img { transform: scale(1.04); }

/* Placeholder image */
.gdg-product-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--team-color, var(--color-gray)) 0%, color-mix(in srgb, var(--team-color, var(--color-gray)) 60%, white) 100%);
  opacity: .9;
}
.gdg-product-card__placeholder svg { width: 44px; height: 44px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 1.5; }
.gdg-product-card__placeholder span { font-family: var(--font-heading); font-size: 14px; letter-spacing: .1em; color: rgba(255,255,255,.7); text-transform: uppercase; }

/* Badges */
.gdg-product-card__badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1;
}
.gdg-badge {
  display: inline-block;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.gdg-badge--new     { background: var(--color-primary); color: white; }
.gdg-badge--hot     { background: var(--color-gold); color: var(--color-black); }
.gdg-badge--sale    { background: var(--color-accent-red); color: white; }
.gdg-badge--limited { background: transparent; color: var(--color-black); border: 1.5px solid var(--color-black); }

/* Wishlist btn */
.gdg-product-card__wish {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  z-index: 1;
  transition: all var(--transition);
  font-size: 15px;
  color: var(--color-gray-500);
}
.gdg-product-card__wish:hover,
.gdg-product-card__wish.is-active { color: var(--color-accent-red); transform: scale(1.12); }

/* ATC / Quick Add button — slides up on hover of parent card */
.gdg-product-card__atc {
  position: absolute;
  bottom: 10px;
  left: 10px; right: 10px;
  background: var(--color-primary);
  color: white;
  padding: 11px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
  touch-action: manipulation;
}
.gdg-product-card:hover .gdg-product-card__atc {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
/* Always visible on touch devices (no hover) */
@media (hover: none) {
  .gdg-product-card__atc {
    opacity: 1;
    transform: none;
    pointer-events: all;
  }
}
.gdg-product-card__atc:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Card body */
.gdg-product-card__body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gdg-product-card__league {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.gdg-product-card__name,
.gdg-product-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #0A0A0A;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gdg-product-card__name a,
.gdg-product-card__title a { color: inherit; text-decoration: none; }
.gdg-product-card__link:hover .gdg-product-card__name,
.gdg-product-card__link:hover .gdg-product-card__title,
.gdg-product-card__name a:hover,
.gdg-product-card__title a:hover,
.gdg-product-card__name:hover,
.gdg-product-card__title:hover { color: var(--color-primary); }

.gdg-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gdg-stars {
  display: flex;
  gap: 1px;
  color: var(--color-gold);
  font-size: 13px;
}
.gdg-stars .empty { color: var(--color-gray-300); }
.gdg-stars-count { font-size: 12px; color: var(--color-gray-500); }

.gdg-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.gdg-price-current {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  color: var(--color-black);
  letter-spacing: 0;
  line-height: 1.1;
}
.gdg-price-current--sale { color: var(--color-accent-red); }
.gdg-price-original {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #9CA3AF;
  text-decoration: line-through;
  line-height: 1;
}
.gdg-price-discount {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  background: rgba(225,6,0,.1);
  color: #E10600;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   TRENDING NOW
   ============================================================ */

.gdg-trending { padding: 60px 0; background: #FFFFFF; }

.gdg-trending__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.gdg-trending__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}
.gdg-trending__viewall {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gdg-primary);
  font-weight: 500;
  transition: opacity var(--transition);
}
.gdg-trending__viewall:hover { opacity: .7; }

.gdg-trending__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.gdg-trending__footer {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   TRUST BAR (5 items)
   ============================================================ */

.gdg-trust-bar {
  padding: 32px 0;
  background: #f9f9f9;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.gdg-trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  text-align: center;
}

.gdg-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px;
}
.gdg-trust-item__icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gdg-primary);
}
.gdg-trust-item__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.gdg-trust-item__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
}
.gdg-trust-item__desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: #666;
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.gdg-newsletter {
  padding: 40px 0;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}
.gdg-newsletter::before {
  content: '';
  position: absolute;
  top: -160px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,94,255,.15) 0%, transparent 70%);
  pointer-events: none;
}
.gdg-newsletter__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.gdg-newsletter__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.gdg-newsletter__title {
  font-size: clamp(28px, 3vw, 36px);
  color: var(--color-white);
  margin-bottom: 10px;
}
.gdg-newsletter__title-accent { color: var(--color-primary); }
.gdg-newsletter__sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-bottom: 36px;
  line-height: 1.7;
}
.gdg-newsletter__form {
  display: flex;
  max-width: 460px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30,94,255,.3);
}
.gdg-newsletter__input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-right: none;
  color: white;
  font-size: 15px;
  outline: none;
  border-radius: var(--radius) 0 0 var(--radius);
  transition: border-color var(--transition);
}
.gdg-newsletter__input::placeholder { color: rgba(255,255,255,.35); }
.gdg-newsletter__input:focus { border-color: var(--color-primary); }
.gdg-newsletter__btn {
  padding: 15px 24px;
  background: var(--color-primary);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
}
.gdg-newsletter__btn:hover { background: var(--color-primary-dk); }
.gdg-newsletter__privacy {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-bottom: 32px;
}
.gdg-newsletter__privacy a { color: rgba(255,255,255,.5); text-decoration: underline; }
.gdg-newsletter__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.gdg-newsletter__perk {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.gdg-newsletter__perk-check { color: var(--color-primary); font-size: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */

.gdg-footer {
  background: var(--color-black);
  padding: 56px 0 0;
  color: rgba(255,255,255,.65);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.gdg-footer__top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand col */
.gdg-footer__brand {}
.gdg-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  margin-bottom: 14px;
}
.gdg-footer__logo-icon {
  width: 34px; height: 34px;
  background: var(--color-primary);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.gdg-footer__logo-icon svg { width: 18px; height: 18px; fill: white; }
.gdg-footer__logo-name {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gdg-footer__tagline {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  margin-bottom: 22px;
  max-width: 280px;
}
.gdg-footer__social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gdg-footer__social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  transition: all var(--transition);
}
.gdg-footer__social-link:hover { background: var(--color-primary); color: white; }
.gdg-footer__social-link svg { width: 16px; height: 16px; fill: currentColor; }

/* Link columns */
.gdg-footer__col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.gdg-footer__links { display: flex; flex-direction: column; gap: 2px; }
.gdg-footer__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  color: #9CA3AF;
  transition: color var(--transition);
}
.gdg-footer__link:hover { color: var(--color-white); }
.gdg-footer__link--red { color: var(--color-accent-red) !important; }

/* Footer bottom */
.gdg-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  margin-top: 8px;
}
.gdg-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.gdg-footer__copy {
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
}
.gdg-footer__payments {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.gdg-payment-badge {
  height: 28px;
  padding: 4px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
}
.gdg-secure-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.gdg-cat-card,
.gdg-product-card,
.gdg-trust-item,
.gdg-league-card,
.gdg-hero__card {
  transition: opacity .45s ease, transform .45s ease;
}
.gdg-reveal-pending {
  opacity: 0 !important;
  transform: translateY(18px) !important;
}

/* ============================================================
   CATEGORY CARD — enforce text visibility
   ============================================================ */

.gdg-cat-card--apparel      { background: #111111 url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_56_50-PM.avif') center/cover no-repeat; }
.gdg-cat-card--headwear     { background: #1a1a1a url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_57_09-PM.avif') center/cover no-repeat; }
.gdg-cat-card--gifts        { background: #B8860B url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_56_26-PM.avif') center/cover no-repeat; }
.gdg-cat-card--collectibles { background: #1a1a1a url('/wp-content/uploads/2026/04/ChatGPT-Image-Apr-27-2026-07_57_18-PM.avif') center/cover no-repeat; }
.gdg-cat-card__content      { position: relative; z-index: 2; }
.gdg-cat-card__title        { color: #ffffff; }
.gdg-cat-card__desc         { color: rgba(255,255,255,.7); }

/* ============================================================
   FULL-WIDTH MEGA MENU (MLB / NFL / NCAA)
   ============================================================ */

.gdg-nav__item--full { position: static; }

.gdg-mega--full {
  position: absolute;
  top: 100%;
  left: 0 !important;
  right: 0;
  width: 100vw;
  min-width: unset;
  display: block;
  border-radius: 0 0 8px 8px;
  transform: none !important;
  background: #0A1F44;
  border-top: 3px solid var(--color-primary);
  padding: 0;
  max-height: 76vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.gdg-nav__item--full:hover .gdg-mega--full {
  opacity: 1;
  visibility: visible;
  transform: none !important;
}

.gdg-mega__full-search-row {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 14px 0;
}
.gdg-mega__search-wrap { position: relative; display: inline-block; }
.gdg-mega__search-icon {
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  fill: none;
  stroke: rgba(255,255,255,.4);
  stroke-width: 2;
  pointer-events: none;
}
.gdg-mega__team-search {
  width: 300px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 9px 14px 9px 34px;
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}
.gdg-mega__team-search::placeholder { color: rgba(255,255,255,.3); }
.gdg-mega__team-search:focus { border-color: var(--color-primary); }

.gdg-mega__full-body { padding: 24px 0 36px; }

.gdg-mega__full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 260px 200px;
  gap: 36px;
  align-items: start;
}

.gdg-mega__div-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6B7280;
  margin: 16px 0 6px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.gdg-mega__div-label:first-child { margin-top: 0; }

.gdg-mega__team-link {
  display: block;
  padding: 5px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.8);
  transition: color var(--transition), padding-left var(--transition);
}
.gdg-mega__team-link:hover { color: var(--color-primary); padding-left: 6px; }
.gdg-mega__team-link.is-hidden { display: none; }

.gdg-mega__full-feature {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 18px;
  margin-top: 0;
}
.gdg-mega__full-feature-img {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  margin-bottom: 14px;
}
.gdg-mega__full-feature-title {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: .04em;
  color: white;
  margin-bottom: 4px;
}
.gdg-mega__full-feature-price {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.gdg-mega__full-feature-btn {
  display: block;
  padding: 10px 14px;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
  transition: background var(--transition);
}
.gdg-mega__full-feature-btn:hover { background: var(--color-primary-dk); color: white; }

.gdg-mega__shop-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.75);
  border-radius: 4px;
  transition: all var(--transition);
  margin-bottom: 3px;
}
.gdg-mega__shop-link:hover { color: white; background: rgba(255,255,255,.07); }
.gdg-mega__shop-link-icon {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* Newsletter 2-column variant */
.gdg-newsletter__inner--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container);
  padding: 0 var(--pad);
  margin: 0 auto;
  text-align: left;
}
.gdg-newsletter__inner--two-col .gdg-newsletter__eyebrow { text-align: left; }
.gdg-newsletter__inner--two-col .gdg-newsletter__title   { text-align: left; }
.gdg-newsletter__inner--two-col .gdg-newsletter__sub     { text-align: left; margin-bottom: 0; }
.gdg-newsletter__inner--two-col .gdg-newsletter__perks   { justify-content: flex-start; padding-top: 20px; }
.gdg-newsletter__inner--two-col .gdg-newsletter__form    { max-width: none; margin: 0 0 12px; flex-direction: row; box-shadow: none; border-radius: var(--radius); overflow: hidden; }
.gdg-newsletter__inner--two-col .gdg-newsletter__input   { flex: 1; border-right: none; border-radius: var(--radius) 0 0 var(--radius); }
.gdg-newsletter__inner--two-col .gdg-newsletter__btn     { border-radius: 0 var(--radius) var(--radius) 0; padding: 15px 28px; min-width: 140px; }
.gdg-newsletter__inner--two-col .gdg-newsletter__privacy { text-align: left; margin-bottom: 0; font-size: 11px; }
.gdg-newsletter__right { display: flex; flex-direction: column; justify-content: center; }

/* ============================================================
   INNER PAGE SHELL
   ============================================================ */

.gdg-page-wrap {
  padding-top: calc(var(--announce-h) + var(--header-h));
}
.gdg-inner-hero {
  background: var(--color-navy);
  padding: 56px 0 44px;
  border-bottom: 3px solid var(--color-primary);
}
.gdg-inner-hero h1 {
  font-size: clamp(28px, 4vw, 56px);
  color: white;
}
.gdg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.gdg-breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.gdg-breadcrumb a:hover { color: white; }
.gdg-breadcrumb__sep { color: rgba(255,255,255,.25); }

/* ============================================================
   SHOP LAYOUT (Archive)
   ============================================================ */

.gdg-shop-wrap { padding: 32px 0 64px; }
.gdg-shop-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.gdg-sidebar {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-gray-300);
  overflow: hidden;
  position: sticky;
  top: calc(var(--announce-h) + var(--header-h) + 20px);
}
.gdg-sidebar__head {
  padding: 18px 20px;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gdg-sidebar__head-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
}
.gdg-sidebar__clear {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.gdg-sidebar__clear:hover { color: white; }

.gdg-filter-block {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-gray-300);
}
.gdg-filter-block:last-child { border-bottom: none; }
.gdg-filter-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  background: none;
  text-align: left;
}
.gdg-filter-toggle { transition: transform var(--transition); }
.gdg-filter-toggle.is-open { transform: rotate(180deg); }

.gdg-filter-list { display: flex; flex-direction: column; gap: 8px; }
.gdg-filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  font-size: 14px;
  color: var(--color-black);
  cursor: pointer;
}
.gdg-filter-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--color-primary); cursor: pointer; }
.gdg-filter-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--color-gray-500);
  background: var(--color-gray);
  padding: 1px 7px;
  border-radius: var(--radius-pill);
}

.gdg-filter-search {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: 10px;
}
.gdg-filter-search:focus { border-color: var(--color-primary); }

/* Price range */
.gdg-price-range { padding: 4px 0; }
.gdg-price-range input[type="range"] {
  width: 100%;
  accent-color: var(--color-primary);
  height: 4px;
  cursor: pointer;
}
.gdg-price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-500);
  margin-top: 8px;
}

/* Size pills */
.gdg-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.gdg-size-btn {
  padding: 6px 12px;
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
  transition: all var(--transition);
  cursor: pointer;
}
.gdg-size-btn:hover,
.gdg-size-btn.is-active { border-color: var(--color-primary); color: var(--color-primary); background: rgba(30,94,255,.06); }
.gdg-size-btn.is-disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

/* Filter actions + Apply button */
.gdg-filter-actions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gdg-apply-btn {
  width: 100%;
  height: 44px;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition);
}
.gdg-apply-btn:hover { background: var(--color-primary-dk); }
.gdg-reset-link {
  text-align: center;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--color-gray-500);
  transition: color var(--transition);
}
.gdg-reset-link:hover { color: var(--color-primary); }

/* Shop main */
.gdg-shop-main {}
.gdg-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.gdg-shop-count { font-size: 13px; color: var(--color-gray-500); }
.gdg-sort-wrap { display: flex; align-items: center; gap: 10px; }
.gdg-sort-label { font-size: 13px; font-weight: 600; color: var(--color-gray-500); white-space: nowrap; }
.gdg-sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  background: white;
  color: var(--color-black);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.gdg-sort-select:focus { border-color: var(--color-primary); }

.gdg-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.gdg-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.gdg-page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  background: white;
  border: 1.5px solid var(--color-gray-300);
  transition: all var(--transition);
  cursor: pointer;
}
.gdg-page-btn:hover,
.gdg-page-btn.is-active { background: var(--color-primary); border-color: var(--color-primary); color: white; }
.gdg-page-btn.is-disabled { opacity: .4; cursor: not-allowed; }

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */

.gdg-product-layout {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 56px;
  padding: 48px 0 80px;
  align-items: start;
}

/* Gallery */
.gdg-gallery {}
.gdg-gallery__main {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-gray);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 12px;
}
.gdg-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gdg-gallery__main:hover img { transform: scale(1.03); }
.gdg-gallery__badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gdg-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gdg-gallery__thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: var(--color-gray);
}
.gdg-gallery__thumb.is-active { border-color: var(--color-primary); }
.gdg-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Buy Box */
.gdg-buybox {}
.gdg-buybox__leagues {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.gdg-league-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gdg-league-tag--mlb  { background: rgba(10,31,68,.08); color: var(--color-navy); }
.gdg-league-tag--nfl  { background: rgba(225,6,0,.08); color: var(--color-accent-red); }
.gdg-league-tag--ncaa { background: rgba(30,94,255,.08); color: var(--color-primary); }

.gdg-buybox__title { font-size: 40px; letter-spacing: 1px; color: var(--color-black); margin-bottom: 12px; }

.gdg-buybox__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.gdg-buybox__rating-link {
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: underline;
}
.gdg-buybox__review-count { font-size: 13px; color: var(--color-gray-500); }

.gdg-buybox__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray-300);
}
.gdg-buybox__price-sale {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--color-accent-red);
  letter-spacing: .02em;
}
.gdg-buybox__price-reg {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--color-black);
  letter-spacing: .02em;
}
.gdg-buybox__price-original {
  font-size: 20px;
  color: var(--color-gray-500);
  text-decoration: line-through;
}
.gdg-buybox__save-badge {
  background: rgba(225,6,0,.1);
  color: var(--color-accent-red);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* Option rows */
.gdg-buybox__option { margin-bottom: 20px; }
.gdg-buybox__option-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gdg-buybox__option-link {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: underline;
}
.gdg-size-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.gdg-size-opt {
  padding: 8px 16px;
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  background: white;
}
.gdg-size-opt:hover { border-color: var(--color-primary); color: var(--color-primary); }
.gdg-size-opt.is-active { border-color: var(--color-primary); background: var(--color-primary); color: white; }
.gdg-size-opt.is-oos { opacity: .35; cursor: not-allowed; position: relative; }
.gdg-size-opt.is-oos::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='100%25' x2='100%25' y2='0' stroke='%236B7280' stroke-width='1'/%3E%3C/svg%3E"); }

.gdg-color-swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.gdg-color-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all var(--transition);
}
.gdg-color-swatch:hover, .gdg-color-swatch.is-active { outline-color: var(--color-primary); }

/* Qty selector */
.gdg-buybox__qty { margin-bottom: 20px; }
.gdg-qty-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
.gdg-qty-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-gray);
  transition: background var(--transition);
  cursor: pointer;
  user-select: none;
}
.gdg-qty-btn:hover { background: var(--color-gray-300); }
.gdg-qty-input {
  width: 56px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 8px;
  background: white;
  color: var(--color-black);
}

/* Delivery box */
.gdg-delivery-box {
  background: var(--color-gray);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.gdg-delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-black);
}
.gdg-delivery-item-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* Product tabs */
.gdg-product-tabs { border-top: 1px solid var(--color-gray-300); margin-top: 64px; }
.gdg-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-gray-300);
}
.gdg-tab-btn {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  cursor: pointer;
}
.gdg-tab-btn:hover { color: var(--color-black); }
.gdg-tab-btn.is-active { color: var(--color-primary); border-color: var(--color-primary); }
.gdg-tab-panel { display: none; padding: 36px 0; }
.gdg-tab-panel.is-active { display: block; }

/* Reviews */
.gdg-reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-gray-300);
}
.gdg-review-score {
  text-align: center;
  padding: 24px 32px;
  background: var(--color-gray);
  border-radius: var(--radius-card);
}
.gdg-review-score__num {
  font-family: var(--font-heading);
  font-size: 64px;
  letter-spacing: 1px;
  color: var(--color-black);
  line-height: 1;
}
.gdg-review-score__sub { font-size: 13px; color: var(--color-gray-500); margin-top: 4px; }
.gdg-review-bars { display: flex; flex-direction: column; gap: 10px; }
.gdg-review-bar { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.gdg-review-bar__label { width: 40px; text-align: right; color: var(--color-gray-500); font-weight: 600; }
.gdg-review-bar__track {
  flex: 1;
  height: 8px;
  background: var(--color-gray-300);
  border-radius: 4px;
  overflow: hidden;
}
.gdg-review-bar__fill { height: 100%; background: var(--color-gold); border-radius: 4px; }
.gdg-review-bar__count { width: 30px; color: var(--color-gray-500); }

.gdg-review-list { display: flex; flex-direction: column; gap: 24px; }
.gdg-review-item {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray-300);
}
.gdg-review-item:last-child { border-bottom: none; }
.gdg-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.gdg-review-avatar {
  width: 40px; height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.gdg-review-meta { flex: 1; }
.gdg-review-name { font-size: 14px; font-weight: 700; color: var(--color-black); }
.gdg-review-date { font-size: 12px; color: var(--color-gray-500); }
.gdg-review-text { font-size: 14px; color: var(--color-black); line-height: 1.65; }

/* ============================================================
   CART PAGE
   ============================================================ */

.gdg-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 48px 0 80px;
  align-items: start;
}

.gdg-cart-items { display: flex; flex-direction: column; gap: 0; }
.gdg-cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-300);
}
.gdg-cart-item:first-child { border-top: 1px solid var(--color-gray-300); }

.gdg-cart-item__img {
  width: 88px; height: 88px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--color-gray);
  border: 1px solid var(--color-gray-300);
}
.gdg-cart-item__placeholder {
  width: 88px; height: 88px;
  background: var(--color-gray);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.gdg-cart-item__body { flex: 1; }
.gdg-cart-item__name {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--color-black);
  margin-bottom: 4px;
}
.gdg-cart-item__name a { color: inherit; transition: color var(--transition); }
.gdg-cart-item__name a:hover { color: var(--color-primary); }
.gdg-cart-item__meta { font-size: 13px; color: var(--color-gray-500); margin-bottom: 12px; }
.gdg-cart-item__price-col { text-align: right; }
.gdg-cart-item__price {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--color-black);
  margin-bottom: 8px;
}
.gdg-cart-item__remove {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-500);
  text-decoration: underline;
  transition: color var(--transition);
  display: block;
  text-align: right;
}
.gdg-cart-item__remove:hover { color: var(--color-accent-red); }

.gdg-cart-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray-500);
  margin-top: 20px;
  transition: color var(--transition);
}
.gdg-cart-back:hover { color: var(--color-black); }

/* Order Summary */
.gdg-order-summary {
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: sticky;
  top: calc(var(--announce-h) + var(--header-h) + 20px);
}
.gdg-order-summary__head {
  background: var(--color-navy);
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: .06em;
  color: white;
}
.gdg-order-summary__body { padding: 24px; }
.gdg-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}
.gdg-order-row + .gdg-order-row { border-top: 1px solid var(--color-gray-300); }
.gdg-order-row__label { color: var(--color-gray-500); }
.gdg-order-row__value { font-weight: 600; color: var(--color-black); }
.gdg-order-row--total .gdg-order-row__label { font-weight: 700; font-size: 16px; color: var(--color-black); }
.gdg-order-row--total .gdg-order-row__value { font-family: var(--font-heading); font-size: 24px; letter-spacing: .04em; color: var(--color-black); }
.gdg-order-row--free .gdg-order-row__value { color: var(--color-primary); font-weight: 700; }

/* Shipping progress */
.gdg-ship-progress {
  margin: 14px 0;
  padding: 14px 16px;
  background: rgba(30,94,255,.06);
  border-radius: var(--radius);
  border: 1px solid rgba(30,94,255,.15);
}
.gdg-ship-progress__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-align: center;
}
.gdg-ship-progress__bar {
  height: 6px;
  background: var(--color-gray-300);
  border-radius: 3px;
  overflow: hidden;
}
.gdg-ship-progress__fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  transition: width .4s ease;
}

/* Promo code */
.gdg-promo-wrap { margin: 16px 0; }
.gdg-promo-row {
  display: flex;
  gap: 8px;
}
.gdg-promo-input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.gdg-promo-input:focus { border-color: var(--color-primary); }
.gdg-promo-input::placeholder { color: var(--color-gray-300); }
.gdg-promo-btn {
  padding: 11px 18px;
  background: var(--color-navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.gdg-promo-btn:hover { background: var(--color-navy-dk); }

.gdg-checkout-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding-top: 14px;
  border-top: 1px solid var(--color-gray-300);
  margin-top: 14px;
}
.gdg-checkout-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--color-gray-500);
}

/* Empty cart */
.gdg-cart-empty {
  text-align: center;
  padding: 80px 0;
}
.gdg-cart-empty__icon { font-size: 72px; margin-bottom: 16px; opacity: .3; }
.gdg-cart-empty h2 { font-size: 32px; margin-bottom: 10px; color: var(--color-black); }
.gdg-cart-empty p { color: var(--color-gray-500); margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .gdg-footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .gdg-footer__brand { grid-column: 1 / -1; display: flex; flex-direction: row; gap: 24px; align-items: flex-start; }
  .gdg-products-grid { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
  .gdg-shop-layout { grid-template-columns: 240px 1fr; }
}

@media (max-width: 1024px) {
  .gdg-nav { display: none; }
  .gdg-mobile-toggle { display: flex; }
  .gdg-hero__container { grid-template-columns: 1fr; }
  .gdg-hero__visual { display: none; }
  .gdg-categories__grid { grid-template-columns: repeat(2, 1fr); }
  .gdg-trust-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .gdg-trending__grid { grid-template-columns: repeat(3, 1fr); }
  .gdg-product-layout { grid-template-columns: 1fr; }
  .gdg-reviews-summary { grid-template-columns: 1fr; }
  .gdg-cart-layout { grid-template-columns: 1fr; }
  .gdg-order-summary { position: static; }
  .gdg-shop-layout { grid-template-columns: 1fr; }
  .gdg-sidebar { position: static; }
  .gdg-mega__full-grid { grid-template-columns: 1fr 1fr; }
  .gdg-mega__full-grid > *:nth-child(n+3) { display: none; }
}

@media (max-width: 768px) {
  :root { --announce-h: 32px; --header-h: 64px; }
  h1 { font-size: 44px; letter-spacing: 1px; }
  h2 { font-size: 32px; }
  .gdg-section { padding: 56px 0; }
  .gdg-leagues__grid { grid-template-columns: 1fr; }
  .gdg-trending__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gdg-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gdg-footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gdg-footer__brand { grid-column: 1 / -1; flex-direction: column; }
  .gdg-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gdg-trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gdg-trust-item:last-child { grid-column: 1 / -1; }
  .gdg-newsletter__inner--two-col { grid-template-columns: 1fr; gap: 40px; }
  .gdg-newsletter__inner--two-col .gdg-newsletter__form { flex-direction: column; }
  .gdg-newsletter__form { flex-direction: column; border-radius: var(--radius); }
  .gdg-newsletter__input { border-right: 1.5px solid rgba(255,255,255,.12); border-radius: var(--radius); }
  .gdg-newsletter__btn { border-radius: var(--radius); }
  .gdg-hero { min-height: 560px; }
  .gdg-hero__h1 { font-size: 52px; }
}

@media (max-width: 480px) {
  .gdg-trending__grid { grid-template-columns: repeat(2, 1fr); }
  .gdg-products-grid { grid-template-columns: 1fr; }
  .gdg-categories__grid { grid-template-columns: 1fr; }
  .gdg-trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .gdg-footer__top { grid-template-columns: 1fr; }
  .gdg-hero__cta { flex-direction: column; }
}

/* ============================================================
   SINGLE PRODUCT PAGE  (.gdg-sp-*)
   ============================================================ */

/* Page wrapper — offset fixed header + announce bar */
.gdg-sp-page {
  padding-top: calc(var(--header-h) + var(--announce-h) + 24px);
}

/* Container */
.gdg-sp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Breadcrumb ── */
.gdg-sp-breadcrumb {
  background: #fff;
  border-bottom: none;
  padding: 12px 0;
}
.gdg-sp-breadcrumb__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
}
.gdg-sp-breadcrumb__nav a { color: #666; text-decoration: none; }
.gdg-sp-breadcrumb__nav a:hover { color: #1E5EFF; }
.gdg-sp-breadcrumb__nav span:last-child { color: #111; }

/* ── Section 1: Main 55/45 ── */
.gdg-sp-main-section { padding: 40px 0 56px; background: #fff; }
.gdg-sp-main {
  display: grid;
  grid-template-columns: minmax(0,.55fr) minmax(0,.45fr);
  gap: 56px;
  align-items: start;
}

/* ── Gallery ── */
.gdg-sp-gallery__main {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #f8f8f8;
  overflow: hidden;
  cursor: zoom-in;
}
.gdg-sp-gallery__img-wrap { width: 100%; height: 100%; }
.gdg-sp-gallery__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gdg-sp-gallery__main:hover .gdg-sp-gallery__img { transform: scale(1.04); }

.gdg-sp-gallery__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg,#1a3a6e,#0a1f44);
  color: rgba(255,255,255,.4);
  font-family: var(--font-heading); font-size: 14px; letter-spacing: .06em;
}
.gdg-sp-gallery__placeholder svg { width: 48px; height: 48px; }

/* gallery badge */
.gdg-sp-gallery__badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; gap: 6px; }
.gdg-sp-gallery__pill {
  display: inline-block; padding: 4px 10px;
  border-radius: 20px; font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.gdg-sp-gallery__pill--new     { background: #1E5EFF; color: #fff; }
.gdg-sp-gallery__pill--sale    { background: #E10600; color: #fff; }
.gdg-sp-gallery__pill--sold-out{ background: #666; color: #fff; }

/* wishlist button */
.gdg-sp-gallery__wish {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: color .2s, transform .2s;
}
.gdg-sp-gallery__wish:hover { transform: scale(1.1); }
.gdg-sp-gallery__wish.is-active { color: #e10600; }

/* prev/next arrows */
.gdg-sp-gallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  color: #fff; border: none; cursor: pointer; transition: background .2s;
}
.gdg-sp-gallery__arrow:hover { background: rgba(0,0,0,.65); }
.gdg-sp-gallery__arrow--prev { left: 10px; }
.gdg-sp-gallery__arrow--next { right: 10px; }
.gdg-sp-gallery__arrow svg { width: 16px; height: 16px; display: block; }

/* zoom button */
.gdg-sp-gallery__zoom {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(0,0,0,.5); color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* thumbnails */
.gdg-sp-gallery__thumbs {
  display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap;
}
.gdg-sp-gallery__thumb {
  width: 72px; height: 72px; border-radius: 6px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  transition: border-color .2s; flex-shrink: 0; padding: 0;
  background: #f8f8f8;
}
.gdg-sp-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gdg-sp-gallery__thumb:hover { border-color: #ccc; }
.gdg-sp-gallery__thumb.is-active { border-color: #1E5EFF; }
.gdg-sp-gallery__thumb-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,.5);
  background: linear-gradient(135deg,#1a3a6e,#0a1f44);
  font-family: var(--font-body);
}

/* ── Buy Box ── */
.gdg-sp-buybox { display: flex; flex-direction: column; gap: 0; }

/* 1. Tags */
.gdg-sp-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.gdg-sp-tag {
  display: inline-block; padding: 4px 10px; border-radius: 20px;
  background: #EBF2FF; color: #1E5EFF;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
}

/* 2. Title — Inter, not Bebas */
.gdg-sp-title,
.gdg-sp__title,
body.single-product h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  text-transform: none;
  color: #111827; line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
@media (max-width: 767px) {
  .gdg-sp-title,
  .gdg-sp__title,
  body.single-product h1 {
    font-size: 24px;
  }
}

/* 3. Rating row */
.gdg-sp-rating-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px 8px; margin-bottom: 16px;
}
.gdg-sp-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.gdg-sp-rating { display: flex; align-items: center; gap: 6px; }
.gdg-sp-meta-divider { color: #e5e7eb; font-size: 14px; }
.gdg-sp-stars-wrap { display: flex; }
.gdg-sp-star--full  { color: #F59E0B; font-size: 16px; }
.gdg-sp-star--half  { color: #F59E0B; font-size: 16px; opacity: .6; }
.gdg-sp-star--empty { color: #ddd;    font-size: 16px; }
.gdg-sp-rating-num  { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111; }
.gdg-sp-rating-sep  { color: #ddd; }
.gdg-sp-social-proof{ font-family: var(--font-body); font-size: 13px; color: #16A34A; font-weight: 500; }

/* 4. Price */
.gdg-sp-price-block { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.gdg-sp-price-sale  { font-family: var(--font-body); font-size: 28px; font-weight: 700; color: #E10600; }
.gdg-sp-price-reg   { font-family: var(--font-body); font-size: 28px; font-weight: 700; color: #111; }
.gdg-sp-price-orig  { font-family: var(--font-body); font-size: 18px; font-weight: 400; color: #999; text-decoration: line-through; }
.gdg-sp-save-badge  {
  display: inline-block; padding: 3px 8px; border-radius: 4px;
  background: rgba(225,6,0,.1); color: #E10600;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
}

/* 5. Afterpay */
.gdg-sp-afterpay {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
  background: #f9f9f9; border-radius: 6px; padding: 10px 12px;
  font-family: var(--font-body); font-size: 13px; color: #666;
  margin-bottom: 14px;
}
.gdg-sp-afterpay__logo { font-weight: 800; color: #B2FCE4; background: #000; padding: 1px 5px; border-radius: 3px; font-size: 11px; }
.gdg-sp-afterpay__info { cursor: pointer; color: #999; }

/* 6. Mini trust */
.gdg-sp-trust-mini {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 12px; color: #444;
  margin-bottom: 16px;
}
.gdg-sp-trust-mini span { display: flex; align-items: center; gap: 5px; }
.gdg-sp-check-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Divider */
.gdg-sp-divider { height: 1px; background: #f0f0f0; margin: 4px 0 20px; }

/* ── Option rows ── */
.gdg-sp-option { margin-bottom: 20px; }
.gdg-sp-option__label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.gdg-sp-option__label {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  text-transform: uppercase; color: #111; display: block; margin-bottom: 10px;
}
.gdg-sp-option__label-row .gdg-sp-option__label { margin-bottom: 0; }
.gdg-sp-option__optional { font-weight: 400; color: #666; text-transform: none; font-size: 12px; }
.gdg-sp-option__sub  { font-family: var(--font-body); font-size: 12px; color: #666; margin-top: 2px; }
.gdg-sp-option__guide{ font-family: var(--font-body); font-size: 13px; color: #1E5EFF; text-decoration: underline; }

/* 7. Size buttons */
.gdg-sp-sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.gdg-sp-size-btn {
  width: 44px; height: 44px; border-radius: 6px;
  border: 1px solid #ddd; background: #fff; color: #111;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all .15s; display: flex; align-items: center; justify-content: center;
}
.gdg-sp-size-btn:hover:not(.is-oos)  { border-color: #111; }
.gdg-sp-size-btn.is-active { background: #111; border-color: #111; color: #fff; }
.gdg-sp-size-btn.is-oos    { opacity: .4; text-decoration: line-through; cursor: not-allowed; }

/* 8. Customization toggle */
.gdg-sp-custom-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.gdg-sp-toggle-wrap { display: flex; align-items: center; cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.gdg-sp-toggle-input { position: absolute; opacity: 0; width: 0; height: 0; }
.gdg-sp-toggle-slider {
  display: block; width: 42px; height: 24px; border-radius: 12px;
  background: #ccc; position: relative; transition: background .2s;
}
.gdg-sp-toggle-slider::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .2s;
}
.gdg-sp-toggle-input:checked + .gdg-sp-toggle-slider { background: #1E5EFF; }
.gdg-sp-toggle-input:checked + .gdg-sp-toggle-slider::after { transform: translateX(18px); }
.gdg-sp-custom-fields { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.gdg-sp-text-input {
  width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 6px;
  font-family: var(--font-body); font-size: 14px; color: #111;
  outline: none; transition: border-color .15s;
}
.gdg-sp-text-input:focus { border-color: #1E5EFF; }

/* 9. Player select */
.gdg-sp-select {
  width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 6px;
  background: #fff; font-family: var(--font-body); font-size: 14px; color: #111;
  outline: none; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.gdg-sp-select:focus { border-color: #1E5EFF; }

/* 10. Quantity */
.gdg-sp-qty-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.gdg-sp-qty-wrap { display: flex; align-items: center; gap: 0; margin-top: 8px; }
.gdg-sp-qty-btn {
  width: 36px; height: 36px; border: 1px solid #ddd; border-radius: 6px;
  background: #fff; color: #111; font-size: 18px; font-weight: 400;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .15s;
}
.gdg-sp-qty-btn:hover { background: #f5f5f5; }
.gdg-sp-qty-input {
  width: 52px; height: 36px; border: 1px solid #ddd; border-top: none; border-bottom: none;
  text-align: center; font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: #111; outline: none;
  -moz-appearance: textfield;
}
.gdg-sp-qty-input::-webkit-inner-spin-button,
.gdg-sp-qty-input::-webkit-outer-spin-button { appearance: none; }
.gdg-sp-urgency { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: #E10600; white-space: nowrap; }

/* 11. CTA buttons */
.gdg-sp-cta-group { margin-bottom: 10px; }
.gdg-sp-atc-btn {
  display: block; width: 100%; height: 52px;
  background: #1E5EFF; color: #fff;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  border-radius: 8px; cursor: pointer; transition: background .2s;
  letter-spacing: .02em;
}
.gdg-sp-atc-btn:hover { background: #1550d4; }
.gdg-sp-bin-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 52px;
  background: #111; color: #fff;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  border-radius: 8px; cursor: pointer; transition: background .2s;
  text-decoration: none; margin-bottom: 12px;
}
.gdg-sp-bin-btn:hover { background: #333; color: #fff; }

/* 12. Delivery */
.gdg-sp-delivery {
  display: flex; gap: 12px; align-items: flex-start;
  background: transparent; border-radius: 0; padding: 8px 0;
  margin: 10px 0 0 0;
  border: none;
}
.gdg-sp-delivery__icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.gdg-sp-delivery__text { font-family: var(--font-body); font-size: 13px; color: #444; line-height: 1.6; }
.gdg-sp-delivery__timer { margin-top: 2px; }
.gdg-sp-countdown { color: #E10600; font-weight: 700; }

/* 13. Trust strip */
.gdg-sp-trust-strip {
  display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start;
  gap: 8px; padding: 14px 20px;
  border: 1px solid #e5e7eb; border-radius: 12px;
  margin: 12px 0 0 0; background: #fafafa;
}
@media (min-width: 768px) {
  .gdg-sp-trust-strip {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    width: calc(100% + 2 * var(--pad));
  }
}
.gdg-sp-trust-strip__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; flex: 1; min-width: 0; }
.gdg-sp-trust-strip__item svg { width: 22px; height: 22px; color: #374151; flex-shrink: 0; }
.gdg-sp-trust-strip__title { font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #111827; }
.gdg-sp-trust-strip__sub   { font-family: var(--font-body); font-size: 10px; color: #6b7280; line-height: 1.3; }

/* ── Section 2: Tabs ── */
.gdg-sp-details-section { padding: 56px 0; background: #fff; border-top: 1px solid #f0f0f0; }
.gdg-sp-details-wrap {
  display: grid;
  grid-template-columns: minmax(0,.6fr) minmax(0,.4fr);
  gap: 48px;
  align-items: start;
}
.gdg-sp-tabs {
  margin-top: 24px;
  border-top: 1px solid #e5e7eb;
  padding-top: 0;
}
.gdg-sp-tab-nav {
  display: flex; flex-wrap: wrap;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0; gap: 0;
}
.gdg-sp-tab-btn {
  padding: 12px 20px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #9ca3af; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s; cursor: pointer;
  margin-bottom: -1px; white-space: nowrap;
}
.gdg-sp-tab-btn:hover  { color: var(--color-primary); }
.gdg-sp-tab-btn.is-active { color: var(--color-primary); font-weight: 600; border-bottom-color: var(--color-primary); }
.gdg-sp-tab-count {
  display: inline-block; background: #1E5EFF; color: #fff;
  font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 10px;
  margin-left: 4px;
}
.gdg-sp-tab-panel { display: none; padding-top: 24px; }
.gdg-sp-tab-panel.is-active { display: block; }

/* Tab: Description */
.gdg-sp-tab-heading { font-family: var(--font-body); font-size: 20px; font-weight: 700; color: #111; margin: 0 0 16px; }
.gdg-sp-tab-body    { font-family: var(--font-body); font-size: 15px; color: #444; line-height: 1.7; }
.gdg-sp-feature-list { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.gdg-sp-feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.gdg-sp-feature-list li span { color: #1E5EFF; font-weight: 700; flex-shrink: 0; }
.gdg-sp-view-more { font-family: var(--font-body); font-size: 14px; color: #1E5EFF; display: inline-block; margin-top: 12px; }

/* Tab: Details table */
.gdg-sp-details-table { width: 100%; border-collapse: collapse; font-family: var(--font-body); font-size: 14px; }
.gdg-sp-details-table td { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; }
.gdg-sp-details-table tr:nth-child(even) td { background: #fafafa; }
.gdg-sp-details-table td:first-child { font-weight: 600; color: #111; width: 40%; }
.gdg-sp-details-table td:last-child  { color: #444; }

/* Tab: Shipping */
.gdg-sp-tab-sub   { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: #111; margin: 0 0 12px; }
.gdg-sp-ship-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; font-family: var(--font-body); font-size: 14px; color: #444; line-height: 1.5; }

/* Tab: Reviews (inside tab) */
.gdg-sp-tab-reviews-layout { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start; }
.gdg-sp-tab-rating { display: flex; flex-direction: column; gap: 6px; }
.gdg-sp-tab-rating__big { font-family: var(--font-body); font-size: 48px; font-weight: 700; color: #111; line-height: 1; }
.gdg-sp-stars-row   { display: flex; gap: 2px; }
.gdg-sp-tab-rating__sub { font-family: var(--font-body); font-size: 13px; color: #666; }
.gdg-sp-tab-review-list { display: flex; flex-direction: column; gap: 20px; }

/* Shared review card (tabs + section 4) */
.gdg-sp-review-card  { border-bottom: 1px solid #f0f0f0; padding-bottom: 20px; }
.gdg-sp-review-card:last-child { border-bottom: none; }
.gdg-sp-review-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.gdg-sp-review-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #EBF2FF; color: #1E5EFF;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.gdg-sp-review-card__name     { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111; }
.gdg-sp-review-card__verified { background: #EBF2FF; color: #1E5EFF; font-size: 11px; font-family: var(--font-body); font-weight: 600; padding: 2px 7px; border-radius: 10px; margin-left: 6px; }
.gdg-sp-review-card__date     { font-family: var(--font-body); font-size: 13px; color: #666; margin-left: auto; }
.gdg-sp-stars-sm  { font-size: 14px; color: #F59E0B; letter-spacing: 1px; margin-bottom: 4px; }
.gdg-sp-review-card__title { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111; margin-bottom: 4px; }
.gdg-sp-review-card__body  { font-family: var(--font-body); font-size: 14px; color: #444; line-height: 1.6; margin: 0 0 10px; }
.gdg-sp-review-card__photo { margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
.gdg-sp-review-card__photo img { width: 100%; max-height: 260px; object-fit: cover; display: block; border-radius: 10px; }
.gdg-sp-review-card__detail{ font-family: var(--font-body); font-size: 12px; color: #999; }

/* Write review button */
.gdg-sp-write-review-btn {
  display: block; padding: 10px 20px; border: 1.5px solid #111;
  border-radius: 6px; font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: #111; cursor: pointer; text-align: center; transition: background .15s, color .15s;
  margin-top: 12px;
}
.gdg-sp-write-review-btn:hover { background: #111; color: #fff; }
.gdg-sp-write-review-btn:disabled { opacity: .45; cursor: not-allowed; }

/* Review form */
.gdg-sp-review-form-wrap { margin-top: 32px; border-top: 1px solid #f0f0f0; padding-top: 28px; }
.gdg-sp-review-form { max-width: 600px; }
.gdg-sp-review-form__title { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: #111; margin: 0 0 20px; }
.gdg-sp-review-form__thanks {
  display: flex; align-items: center; gap: 8px;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px;
  padding: 14px 16px; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #15803d;
}
.gdg-sp-review-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gdg-sp-review-form__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.gdg-sp-review-form__field label { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: #374151; }
.gdg-sp-review-form__field label span { color: #e10600; }
.gdg-sp-review-form__field .gdg-input { font-size: 14px; }
.gdg-sp-review-form__field textarea.gdg-input { resize: vertical; height: auto; }
.gdg-sp-review-form__actions { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.gdg-sp-review-form__submit {
  padding: 10px 24px; background: var(--color-primary, #1E5EFF); color: #fff;
  border: none; border-radius: 6px; font-family: var(--font-body); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background .15s;
}
.gdg-sp-review-form__submit:hover { background: #1550d4; }
.gdg-sp-review-form__cancel {
  background: none; border: none; font-family: var(--font-body); font-size: 14px;
  color: #666; cursor: pointer; padding: 0;
}
.gdg-sp-review-form__cancel:hover { color: #111; }

/* Star picker */
.gdg-sp-star-picker { display: flex; gap: 4px; }
.gdg-sp-star-pick {
  background: none; border: none; font-size: 28px; color: #d1d5db;
  cursor: pointer; padding: 0; line-height: 1; transition: color .1s;
}
.gdg-sp-star-pick.is-hover,
.gdg-sp-star-pick.is-selected { color: #F59E0B; }

@media (max-width: 767px) {
  .gdg-sp-review-form__row { grid-template-columns: 1fr; }
}

/* Sidebar banner */
.gdg-sp-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.gdg-sp-sidebar-banner {
  border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #0A1F44 0%, #1a3a6e 100%);
  padding: 36px 28px;
}
.gdg-sp-sidebar-banner__body { display: flex; flex-direction: column; gap: 12px; }
.gdg-sp-sidebar-banner__eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.gdg-sp-sidebar-banner__heading { font-family: var(--font-heading); font-size: 32px; color: #fff; line-height: 1.1; margin: 0; }
.gdg-sp-sidebar-banner__sub { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.5; }
.gdg-sp-sidebar-banner__icons { display: flex; gap: 12px; font-size: 28px; }
.gdg-sp-sidebar-banner__btn {
  display: inline-block; padding: 12px 20px;
  background: #1E5EFF; color: #fff;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  border-radius: 8px; text-decoration: none; transition: background .2s;
}
.gdg-sp-sidebar-banner__btn:hover { background: #1550d4; color: #fff; }

/* ── Section 3: Related / You May Also Like ── */
.gdg-sp-related-section { padding: 56px 0; background: #fafafa; }
.gdg-sp-section-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.gdg-sp-section-title { font-family: var(--font-heading); font-size: 28px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.04em; color: #111; margin: 0; }
.gdg-sp-section-title--reviews { font-size: 24px; margin-bottom: 32px; }
.gdg-sp-section-actions { display: flex; align-items: center; gap: 10px; }
.gdg-sp-section-link { font-family: var(--font-body); font-size: 14px; color: #1E5EFF; }
.gdg-sp-carousel-wrap { position: relative; overflow: hidden; }

.gdg-sp-rel-prev,
.gdg-sp-rel-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.gdg-sp-rel-prev { left: -16px; }
.gdg-sp-rel-next { right: -16px; }
.gdg-sp-rel-prev:hover,
.gdg-sp-rel-next:hover { background: rgba(0,0,0,.7); }
.gdg-sp-carousel {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 4px;
}
.gdg-sp-carousel::-webkit-scrollbar { display: none; }

.gdg-sp-rel-card { width: 200px; flex-shrink: 0; scroll-snap-align: start; }
.gdg-sp-rel-card__img-link {
  display: block; position: relative;
  aspect-ratio: 1/1; border-radius: 8px; overflow: hidden;
  background: #f8f8f8; text-decoration: none; margin-bottom: 10px;
}
.gdg-sp-rel-card__img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gdg-sp-rel-card__img-link:hover img { transform: scale(1.04); }
.gdg-sp-rel-card__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; background: linear-gradient(135deg,#1a3a6e,#0a1f44); color: rgba(255,255,255,.4); }
.gdg-sp-rel-card__wish {
  position: absolute; top: 8px; right: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.9); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s;
}
.gdg-sp-rel-card__wish.is-active { color: #e10600; }
.gdg-sp-rel-card__body  { display: flex; flex-direction: column; gap: 4px; }
.gdg-sp-rel-card__name  { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
a.gdg-sp-rel-card__name:hover { color: #1E5EFF; }
.gdg-sp-rel-card__stars { font-size: 12px; color: #F59E0B; }
.gdg-sp-rel-card__stars span { color: #999; font-size: 11px; }
.gdg-sp-rel-card__price { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: #111; }
.gdg-sp-rel-card__price--sale { color: #E10600; }
.gdg-sp-rel-card__price--orig { font-size: 12px; font-weight: 400; color: #999; text-decoration: line-through; margin-left: 4px; }

/* ── Section 4: Customer Reviews ── */
.gdg-sp-reviews-section { padding: 56px 0; background: #fff; border-top: 1px solid #f0f0f0; }
.gdg-sp-reviews-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }

.gdg-sp-rev-overview { display: flex; flex-direction: column; gap: 8px; }
.gdg-sp-rev-overview__big { font-family: var(--font-body); font-size: 64px; font-weight: 800; color: #111; line-height: 1; }
.gdg-sp-stars-lg { display: flex; gap: 3px; }
.gdg-sp-stars-lg .gdg-sp-star--full,
.gdg-sp-stars-lg .gdg-sp-star--empty { font-size: 24px; }
.gdg-sp-rev-overview__sub { font-family: var(--font-body); font-size: 14px; color: #666; }
.gdg-sp-rev-bars { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.gdg-sp-rev-bar { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 13px; }
.gdg-sp-rev-bar__label { width: 24px; color: #666; text-align: right; font-weight: 600; flex-shrink: 0; }
.gdg-sp-rev-bar__track { flex: 1; height: 8px; background: #f0f0f0; border-radius: 4px; overflow: hidden; }
.gdg-sp-rev-bar__fill  { height: 100%; background: #1E5EFF; border-radius: 4px; }
.gdg-sp-rev-bar__count { width: 28px; color: #666; font-size: 12px; }

.gdg-sp-rev-list { display: flex; flex-direction: column; gap: 0; }

/* Section 4 review card */
.gdg-sp-rev-card { padding: 20px 0; border-bottom: 1px solid #f0f0f0; }
.gdg-sp-rev-card:last-of-type { border-bottom: none; }
.gdg-sp-rev-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.gdg-sp-rev-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #EBF2FF; color: #1E5EFF;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 15px; font-weight: 700; flex-shrink: 0;
}
.gdg-sp-rev-card__info  { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.gdg-sp-rev-card__name  { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111; }
.gdg-sp-rev-card__badge { background: #EBF2FF; color: #1E5EFF; font-family: var(--font-body); font-size: 11px; font-weight: 600; padding: 2px 7px; border-radius: 10px; }
.gdg-sp-rev-card__date  { font-family: var(--font-body); font-size: 13px; color: #666; margin-left: auto; }
.gdg-sp-rev-card__thumb { width: 48px; height: 48px; border-radius: 6px; overflow: hidden; flex-shrink: 0; margin-left: auto; }
.gdg-sp-rev-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gdg-sp-rev-card__thumb-ph { width: 100%; height: 100%; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.gdg-sp-rev-card__stars { font-size: 15px; color: #F59E0B; margin-bottom: 4px; letter-spacing: 1px; }
.gdg-sp-rev-card__title { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111; margin-bottom: 4px; }
.gdg-sp-rev-card__body  { font-family: var(--font-body); font-size: 14px; color: #444; line-height: 1.6; margin: 0 0 10px; }
.gdg-sp-rev-card__photo { margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
.gdg-sp-rev-card__photo img { width: 100%; max-height: 260px; object-fit: cover; display: block; border-radius: 10px; }
.gdg-sp-rev-card__meta  { font-family: var(--font-body); font-size: 12px; color: #999; }

.gdg-sp-load-more {
  display: block; margin: 24px auto 0;
  padding: 12px 32px; border: 1.5px solid #ddd; border-radius: 6px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.gdg-sp-load-more:hover { border-color: #111; background: #fafafa; }

/* ── Sticky ATC bar ── */
.gdg-sp-sticky-bar {
  position: fixed !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0; right: 0;
  background: #fff; border-top: 1px solid #f0f0f0;
  box-shadow: 0 -4px 12px rgba(0,0,0,.1);
  z-index: 999; padding: 10px 0;
  transform: translateY(100%);
  visibility: hidden;
  transition: transform .3s ease, visibility .3s ease;
  pointer-events: none;
}
.gdg-sp-sticky-bar.is-visible {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .gdg-sp-sticky-bar { display: none !important; }
}
.gdg-sp-sticky-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.gdg-sp-sticky-bar__product { display: flex; align-items: center; gap: 12px; min-width: 0; }
.gdg-sp-sticky-bar__img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.gdg-sp-sticky-bar__img-ph { width: 40px; height: 40px; border-radius: 6px; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.gdg-sp-sticky-bar__name  { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 300px; }
.gdg-sp-sticky-bar__price { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111; }
.gdg-sp-sticky-bar__price--sale { color: #E10600; margin-right: 6px; }
.gdg-sp-sticky-bar__price--orig { color: #999; text-decoration: line-through; font-size: 12px; font-weight: 400; }
.gdg-sp-sticky-bar__btn {
  flex-shrink: 0; padding: 0 28px; height: 44px;
  background: #1E5EFF; color: #fff;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  border-radius: 8px; cursor: pointer; transition: background .2s; white-space: nowrap;
}
.gdg-sp-sticky-bar__btn:hover { background: #1550d4; }

/* ── Lightbox ── */
.gdg-sp-lightbox {
  position: fixed; inset: 0; z-index: 10000;
  display: none; align-items: center; justify-content: center;
}
.gdg-sp-lightbox.is-open { display: flex; }
.gdg-sp-lightbox__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.85); }
.gdg-sp-lightbox__content {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center;
}
.gdg-sp-lightbox__img { max-width: 80vw; max-height: 85vh; object-fit: contain; border-radius: 4px; display: block; }
.gdg-sp-lightbox__close {
  position: absolute; top: -40px; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
}
.gdg-sp-lightbox__prev,
.gdg-sp-lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; transition: background .2s;
}
.gdg-sp-lightbox__prev:hover,
.gdg-sp-lightbox__next:hover { background: rgba(255,255,255,.3); }
.gdg-sp-lightbox__prev { left: -56px; }
.gdg-sp-lightbox__next { right: -56px; }

/* ── Shared review bar inside tabs ── */
.gdg-sp-rev-bar { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 13px; }
.gdg-sp-rev-bar span:first-child { width: 20px; text-align: right; color: #666; font-weight: 600; }
.gdg-sp-rev-bar span:last-child  { width: 24px; color: #666; }

/* ── Single Product Responsive ── */
@media (max-width: 1024px) {
  .gdg-sp-main    { grid-template-columns: 1fr; gap: 32px; }
  .gdg-sp-details-wrap { grid-template-columns: 1fr; }
  .gdg-sp-sidebar { position: static; }
  .gdg-sp-reviews-wrap { grid-template-columns: 1fr; }
  .gdg-sp-tab-reviews-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .gdg-sp-main-section   { padding: 24px 0 40px; }
  .gdg-sp-details-section { padding: 40px 0; }
  .gdg-sp-related-section { padding: 40px 0; }
  .gdg-sp-reviews-section { padding: 40px 0; }
  .gdg-sp-trust-strip { gap: 8px 10px; }
  .gdg-sp-trust-strip__item { flex: 1 1 120px; }
  .gdg-sp-rel-card { width: 160px; }
  .gdg-sp-sticky-bar__name { max-width: 160px; }
  .gdg-sp-rev-overview__big { font-size: 48px; }
  .gdg-sp-sidebar-banner { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .gdg-sp-container { padding: 0 16px; }
  .gdg-sp-title { font-size: 22px; }
  .gdg-sp-price-sale,
  .gdg-sp-price-reg { font-size: 24px; }
  .gdg-sp-qty-row { flex-direction: column; align-items: flex-start; }
  .gdg-sp-lightbox__prev { left: -44px; }
  .gdg-sp-lightbox__next { right: -44px; }
}

/* ============================================================
   CART DRAWER  (.gdg-drawer-*)
   ============================================================ */

/* Body lock */
body.gdg-drawer-lock { overflow: hidden; }

/* Overlay */
.gdg-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  height: 100dvh;
  background: rgba(0,0,0,.5);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.gdg-drawer-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* Drawer panel */
.gdg-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 400px;
  background: #fff;
  z-index: 9999;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
.gdg-drawer.is-open { transform: translateX(0); }

/* ── Header ── */
.gdg-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 20px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
  overflow: visible;
}
.gdg-drawer__title {
  font-family: var(--font-body);
  font-size: 18px; font-weight: 700; color: #111; margin: 0;
}
.gdg-drawer__close {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f5f5f5; color: #666;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s, color .15s; flex-shrink: 0;
}
.gdg-drawer__close:hover { background: #e5e5e5; color: #111; }

/* ── Free-shipping progress ── */
.gdg-drawer__progress-bar {
  background: #f9f9f9;
  padding: 12px 20px 10px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.gdg-drawer__progress-text {
  font-family: var(--font-body); font-size: 13px; color: #444;
  margin-bottom: 8px;
}
.gdg-drawer__progress-track {
  position: relative; height: 6px;
  background: #e5e7eb; border-radius: 3px; overflow: hidden;
}
.gdg-drawer__progress-fill {
  height: 100%; background: #1E5EFF; border-radius: 3px;
  transition: width .4s ease;
}
.gdg-drawer__progress-label {
  display: block; text-align: right;
  font-family: var(--font-body); font-size: 11px; color: #999;
  margin-top: 4px;
}

/* ── Scrollable body ── */
.gdg-drawer__body {
  flex: 1; overflow-y: auto; position: relative;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.gdg-drawer__body::-webkit-scrollbar { width: 4px; }
.gdg-drawer__body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

/* ── Loading spinner ── */
.gdg-drawer__loading {
  display: none; /* shown by JS */
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.7); z-index: 2;
}
.gdg-drawer__spinner {
  width: 32px; height: 32px;
  border: 3px solid #e5e7eb;
  border-top-color: #1E5EFF;
  border-radius: 50%;
  animation: gdg-spin .7s linear infinite;
}
@keyframes gdg-spin { to { transform: rotate(360deg); } }

/* ── Cart items ── */
.gdg-drawer__items { transition: opacity .2s; }

.gdg-drawer__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 16px 20px;
  border-bottom: 1px solid #f5f5f5;
}
.gdg-drawer__item:last-child { border-bottom: none; }

.gdg-drawer__item-img {
  display: block; width: 80px; height: 80px;
  border-radius: 8px; overflow: hidden;
  background: #f8f8f8; flex-shrink: 0; text-decoration: none;
}
.gdg-drawer__item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gdg-drawer__item-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 32px; }

.gdg-drawer__item-content { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.gdg-drawer__item-name {
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111;
  text-decoration: none; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gdg-drawer__item-name:hover { color: #1E5EFF; }
.gdg-drawer__item-meta { font-family: var(--font-body); font-size: 12px; color: #666; }
.gdg-drawer__item-price {
  font-family: var(--font-body); font-size: 15px; font-weight: 700; color: #111;
  display: flex; align-items: baseline; gap: 6px;
}
.gdg-drawer__item-price--sale { color: #E10600; }
.gdg-drawer__item-price--orig { font-size: 12px; font-weight: 400; color: #999; text-decoration: line-through; }

.gdg-drawer__item-qty-wrap { display: flex; align-items: center; gap: 0; margin-top: 2px; }
.gdg-drawer__qty-btn {
  width: 28px; height: 28px; border: 1px solid #ddd; border-radius: 4px;
  background: #fff; color: #111; font-size: 16px; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s; flex-shrink: 0;
  line-height: 1;
}
.gdg-drawer__qty-btn:hover { background: #f5f5f5; }
.gdg-drawer__qty-num {
  min-width: 32px; text-align: center;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111;
  border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;
  height: 28px; line-height: 26px;
}

.gdg-drawer__item-remove {
  color: #bbb; cursor: pointer; flex-shrink: 0; padding: 4px;
  transition: color .15s; align-self: flex-start; margin-top: 2px;
}
.gdg-drawer__item-remove:hover { color: #E10600; }

/* ── Empty state ── */
.gdg-drawer__empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 32px; text-align: center; height: 100%;
}
.gdg-drawer__empty-icon { width: 72px; height: 72px; color: #ddd; margin-bottom: 16px; }
.gdg-drawer__empty-title { font-family: var(--font-body); font-size: 16px; color: #666; font-weight: 600; margin: 0 0 6px; }
.gdg-drawer__empty-sub   { font-family: var(--font-body); font-size: 14px; color: #999; margin: 0 0 20px; }
.gdg-drawer__empty-btn {
  display: inline-block; padding: 12px 28px;
  background: #1E5EFF; color: #fff;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  border-radius: 8px; text-decoration: none; transition: background .2s;
}
.gdg-drawer__empty-btn:hover { background: #1550d4; color: #fff; }

/* ── Footer ── */
.gdg-drawer__footer {
  border-top: 1px solid #f0f0f0;
  padding: 16px 20px 20px;
  background: #fff;
  flex-shrink: 0;
}
.gdg-drawer__row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.gdg-drawer__row-label { font-family: var(--font-body); font-size: 14px; color: #666; }
.gdg-drawer__row-value { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: #111; }
.gdg-drawer__row--shipping .gdg-drawer__row-label { font-size: 13px; }
.gdg-drawer__row-calc { font-family: var(--font-body); font-size: 13px; color: #999; }

.gdg-drawer__divider { height: 1px; background: #f0f0f0; margin: 10px 0 12px; }

.gdg-drawer__row--total { margin-bottom: 14px; }
.gdg-drawer__total-label { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: #111; }
.gdg-drawer__total-price { font-family: var(--font-body); font-size: 20px; font-weight: 800; color: #111; }

.gdg-drawer__checkout-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 52px;
  background: #1E5EFF; color: #fff;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  border-radius: 8px; text-decoration: none;
  transition: background .2s; margin-bottom: 14px;
}
.gdg-drawer__checkout-btn:hover { background: #1550d4; color: #fff; }

/* Trust strip */
.gdg-drawer__trust {
  display: flex; justify-content: space-between; gap: 6px;
  padding-top: 12px; border-top: 1px solid #f5f5f5;
}
.gdg-drawer__trust-item { display: flex; align-items: flex-start; gap: 6px; flex: 1; min-width: 0; }
.gdg-drawer__trust-icon { font-size: 16px; flex-shrink: 0; line-height: 1.3; }
.gdg-drawer__trust-title { font-family: var(--font-body); font-size: 10px; font-weight: 600; color: #333; white-space: nowrap; }
.gdg-drawer__trust-sub   { font-family: var(--font-body); font-size: 10px; color: #999; white-space: nowrap; }

/* ── Mobile: full-width ── */
@media (max-width: 480px) {
  .gdg-drawer { width: 100vw; }
}

/* ── ATC button loading state ── */
.single_add_to_cart_button.gdg-atc-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.75;
}
.single_add_to_cart_button.gdg-atc-loading::after {
  content: '';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gdg-spin .6s linear infinite;
}
@keyframes gdg-spin { to { transform: translateY(-50%) rotate(360deg); } }

/* ============================================================
   SHOP / ARCHIVE — v2 rebuild
   ============================================================ */

/* ── Shared container ── */
.gdg-shop-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Hero banner ── */
.gdg-shop-hero {
  display: flex;
  min-height: 220px;
  background: linear-gradient(135deg, #0A1F44 0%, #1a3a6e 100%);
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: calc(var(--announce-h) + var(--header-h));
}
.gdg-shop-hero__left {
  flex: 0 0 55%;
  display: flex;
  align-items: center;
  padding: 40px 0;
  position: relative;
  z-index: 2;
  overflow: visible;
}
.gdg-shop-hero .gdg-shop-container {
  /* Align hero text left edge with the full-width container below.
     The hero container lives inside a 55% flex column, so margin:auto
     never fires. We replicate the centering offset explicitly. */
  margin-left: max(0px, calc((100vw - var(--container)) / 2));
  margin-right: 0;
  padding-left: var(--pad);
  padding-right: 0;
  overflow: visible;
}
.gdg-shop-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.gdg-shop-hero__breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.gdg-shop-hero__breadcrumb a:hover { color: #fff; }
.gdg-shop-hero__breadcrumb span { color: rgba(255,255,255,.35); }
.gdg-shop-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 3vw, 52px);
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: visible;
}
.gdg-shop-hero__desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  max-width: 400px;
}
.gdg-shop-hero__right {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gdg-shop-hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(30,94,255,.25) 0%, transparent 70%);
}
.gdg-shop-hero__logo-text {
  font-family: var(--font-heading);
  font-size: 96px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.08);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  user-select: none;
}
.gdg-shop-hero__silhouette {
  font-size: 72px;
  opacity: .35;
  position: relative;
  z-index: 1;
}

/* ── Stats bar ── */
.gdg-stats-bar {
  background: #f9f9f9;
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0;
}
.gdg-stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gdg-stats-bar__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666;
}
.gdg-stats-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── View toggle ── */
.gdg-view-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gdg-view-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  color: #999;
  background: #fff;
  cursor: pointer;
  transition: all .2s;
}
.gdg-view-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.gdg-view-btn.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* ── Mobile filter bar ── */
.gdg-filter-mobile-bar {
  display: none;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0;
}
.gdg-filter-mobile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
  padding: 8px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  letter-spacing: .06em;
}
.gdg-filter-mobile-count {
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 9999px;
  margin-left: 2px;
}
.gdg-filter-mobile-clear {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-primary);
  margin-left: 12px;
  text-decoration: underline;
}
.gdg-filter-mobile-bar .gdg-shop-container {
  display: flex;
  align-items: center;
}
.gdg-sort-wrap--mobile { display: none; }

/* ── Sidebar v2 ── */
.gdg-sidebar--v2 .gdg-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--color-navy);
}
.gdg-sidebar--v2 .gdg-sidebar__head-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
}
.gdg-sidebar--v2 .gdg-sidebar__clear {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(30,94,255,.12);
  padding: 3px 10px;
  border-radius: 9999px;
}
.gdg-sidebar--v2 .gdg-sidebar__clear:hover { background: rgba(30,94,255,.22); color: #fff; }

/* ── Accordion ── */
.gdg-accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  padding: 0;
  margin-bottom: 12px;
  cursor: pointer;
  color: inherit;
}
.gdg-accordion .gdg-accordion__body { display: block; }
.gdg-accordion:not(.is-open) .gdg-accordion__body { display: none; }

/* ── Price dual range ── */
.gdg-dual-range {
  position: relative;
  height: 22px;
  margin-bottom: 10px;
}
.gdg-dual-range__track {
  position: absolute;
  left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  pointer-events: none;
}
.gdg-dual-range__fill {
  position: absolute;
  top: 0; height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
}
.gdg-range {
  position: absolute;
  width: 100%;
  top: 0; left: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 22px;
  pointer-events: none;
  margin: 0;
}
.gdg-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  cursor: pointer;
  pointer-events: all;
}
.gdg-range::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  cursor: pointer;
  pointer-events: all;
}
.gdg-price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.gdg-price-sep { font-size: 14px; color: #999; flex-shrink: 0; }
.gdg-price-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: 5px 8px;
  gap: 3px;
  flex: 1;
  font-family: var(--font-body);
  font-size: 13px;
  color: #555;
}
.gdg-price-input-wrap input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black);
  background: transparent;
}
.gdg-price-input-wrap:focus-within { border-color: var(--color-primary); }

/* ── Team list max-height ── */
.gdg-team-list {
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.gdg-team-list::-webkit-scrollbar { width: 4px; }
.gdg-team-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
.gdg-filter-view-all {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.gdg-filter-view-all:hover { text-decoration: underline; }
.gdg-filter-check__name { flex: 1; }

/* ── Apply / Reset buttons ── */
.gdg-filter-actions {
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gdg-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.gdg-apply-btn:hover { background: var(--color-primary-dk); }
.gdg-reset-link {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: #666;
  text-decoration: underline;
}
.gdg-reset-link:hover { color: var(--color-black); }

/* ── Active filter tags ── */
.gdg-active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gdg-active-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(30,94,255,.08);
  border: 1px solid rgba(30,94,255,.25);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
}
.gdg-active-tag a { color: var(--color-primary); font-weight: 700; line-height: 1; }

/* ── 5-column and list grid variants ── */
.gdg-products-grid--5col { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.gdg-products-grid--4col { grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* List view */
.gdg-products-grid--list { grid-template-columns: 1fr; gap: 12px; }
.gdg-products-grid--list .gdg-product-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
}
.gdg-products-grid--list .gdg-product-card__img {
  height: 140px;
  aspect-ratio: unset;
  border-radius: var(--radius-card) 0 0 var(--radius-card);
}
.gdg-products-grid--list .gdg-product-card__body { padding: 16px 20px; }
.gdg-products-grid--list .gdg-product-card__name { font-size: 15px; }

/* ── Pagination ── */
.gdg-page-dots {
  color: #ccc;
  padding: 0 4px;
  font-size: 14px;
  align-self: center;
}
.gdg-pagination a.gdg-page-btn { text-decoration: none; }

/* ── Trust strip ── */
.gdg-shop-trust {
  background: #f9f9f9;
  border-top: 1px solid #ebebeb;
  padding: 28px 0;
}
.gdg-shop-trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.gdg-shop-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 160px;
}
.gdg-shop-trust__item svg { width: 26px; height: 26px; stroke: var(--color-primary); flex-shrink: 0; }
.gdg-shop-trust__title { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .06em; color: #111; }
.gdg-shop-trust__sub   { font-family: var(--font-body); font-size: 11px; color: #888; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .gdg-products-grid--5col { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .gdg-shop-layout { grid-template-columns: 200px 1fr; gap: 24px; }
  .gdg-products-grid--5col,
  .gdg-products-grid--4col { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gdg-filter-mobile-bar { display: block; }
  .gdg-shop-hero__title  { font-size: 36px; }
  .gdg-shop-hero__right  { display: none; }
  .gdg-shop-hero__left   { flex: 0 0 100%; }
  .gdg-stats-bar__right  { gap: 10px; }
  .gdg-view-toggle       { display: none; }

  .gdg-shop-layout { grid-template-columns: 1fr; }

  /* Sidebar becomes a slide-in drawer on mobile */
  .gdg-sidebar--v2 {
    position: fixed;
    top: calc(var(--announce-h) + var(--header-h));
    left: 0;
    width: 85vw;
    max-width: 320px;
    height: calc(100dvh - var(--announce-h) - var(--header-h));
    overflow-y: auto;
    z-index: 9000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    background: #fff;
    padding: 20px 16px;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  }
  .gdg-sidebar--v2.is-drawer-open { transform: translateX(0); }

  .gdg-products-grid--5col,
  .gdg-products-grid--4col { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gdg-products-grid--list .gdg-product-card { grid-template-columns: 100px 1fr; }
  .gdg-products-grid--list .gdg-product-card__img { height: 100px; }

  .gdg-shop-trust__inner { justify-content: flex-start; gap: 16px; }
  .gdg-shop-trust__item  { flex: 0 0 calc(50% - 8px); }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

/* Hide theme header / footer on checkout page */
.gdg-checkout-page .gdg-header,
.gdg-checkout-page .site-header,
.gdg-checkout-page #masthead { display: none !important; }

.gdg-checkout-page .gdg-footer,
.gdg-checkout-page .site-footer,
.gdg-checkout-page footer#colophon { display: none !important; }

.gdg-checkout-page .gdg-woo-main,
.gdg-checkout-page .woocommerce,
.gdg-checkout-page .container { max-width: none !important; padding: 0 !important; margin: 0 !important; }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Outer wrap ── */
.gdg-checkout-wrap { font-family: var(--font-body); background: #f9fafb; min-height: 100vh; color: #111; }

/* ── Minimal checkout header ── */
.gdg-checkout-header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  height: 64px;
  display: flex;
  align-items: center;
}
.gdg-checkout-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.gdg-checkout-header__logo {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.gdg-checkout-header__logo:hover { color: #111; }
.gdg-checkout-header__secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
}
.gdg-checkout-notices { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.gdg-checkout-notices:empty { display: none; }

/* ── Main container + 2-col layout ── */
.gdg-checkout-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}
.gdg-checkout-layout {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 48px;
  align-items: start;
}
.gdg-checkout-left  { min-width: 0; }
.gdg-checkout-right { position: sticky; top: 20px; min-width: 0; overflow: hidden; }

/* ── Sections ── */
.gdg-checkout-section {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
}
.gdg-checkout-section__title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}
.gdg-checkout-payment-secure {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
  margin: -10px 0 14px;
}

/* ── Form inputs ── */
.gdg-form-group { display: flex; flex-direction: column; margin-bottom: 14px; }
.gdg-form-group:last-child { margin-bottom: 0; }
.gdg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gdg-form-row--city { grid-template-columns: 4fr 3fr 3fr; }
.gdg-form-group--city  { /* inherits flex 1 */ }
.gdg-form-group--state { /* inherits */ }
.gdg-form-group--zip   { /* inherits */ }

.gdg-form-label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.gdg-label-optional { font-weight: 400; text-transform: none; letter-spacing: 0; }

.gdg-input {
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  color: #111;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.gdg-input::placeholder { color: #999; }
.gdg-input:focus {
  outline: none;
  border-color: #1E5EFF;
  box-shadow: 0 0 0 3px rgba(30,94,255,.10);
}
.gdg-input.is-error {
  border-color: #e10600;
  box-shadow: 0 0 0 3px rgba(225,6,0,.08);
}
.gdg-select { padding-right: 36px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; cursor: pointer; }

.gdg-input-wrap { position: relative; }
.gdg-input--icon-left  { padding-left: 40px; }
.gdg-input--icon-right { padding-right: 40px; }
.gdg-input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.gdg-input-icon--left  { left: 13px; }
.gdg-input-icon--right { right: 13px; pointer-events: auto; }
button.gdg-input-icon { background: none; border: none; padding: 0; cursor: pointer; }
button.gdg-input-icon:hover { color: #555; }

.gdg-error-msg { font-size: 11px; color: #e10600; margin-top: 4px; min-height: 14px; }

.gdg-checkbox-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  margin-top: 6px;
}
.gdg-checkbox-line .gdg-checkbox { position: absolute; opacity: 0; width: 0; height: 0; }
.gdg-checkbox-custom {
  width: 16px;
  height: 16px;
  border: 1.5px solid #ccc;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}
.gdg-checkbox:checked + .gdg-checkbox-custom {
  background: #1E5EFF;
  border-color: #1E5EFF;
}
.gdg-checkbox:checked + .gdg-checkbox-custom::after {
  content: '';
  display: block;
  width: 9px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

/* ── Shipping method cards ── */
.gdg-shipping-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.gdg-shipping-card:last-child { margin-bottom: 0; }
.gdg-shipping-card:hover { border-color: #94b4ff; }
.gdg-shipping-card.is-selected { border-color: #1E5EFF; background: #EBF2FF; }
.gdg-shipping-card__radio {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s;
}
.gdg-shipping-card.is-selected .gdg-shipping-card__radio { border-color: #1E5EFF; }
.gdg-shipping-card.is-selected .gdg-shipping-card__radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #1E5EFF;
  border-radius: 50%;
}
.gdg-shipping-card__info  { flex: 1; }
.gdg-shipping-card__name  { display: block; font-size: 15px; font-weight: 600; color: #111; }
.gdg-shipping-card__desc  { display: block; font-size: 13px; color: #666; margin-top: 1px; }
.gdg-shipping-card__price { font-size: 15px; font-weight: 700; color: #111; white-space: nowrap; }
.gdg-shipping-card__price--free { color: #16A34A; }

/* ── Payment method cards ── */
.gdg-payment-methods { display: flex; flex-direction: column; gap: 8px; }
.gdg-payment-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  display: block;
}
.gdg-payment-card:hover { border-color: #94b4ff; }
.gdg-payment-card.is-selected { border-color: #1E5EFF; background: #EBF2FF; }
.gdg-payment-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gdg-payment-card__radio {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}
.gdg-payment-card.is-selected .gdg-payment-card__radio { border-color: #1E5EFF; }
.gdg-payment-card.is-selected .gdg-payment-card__radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #1E5EFF;
  border-radius: 50%;
}
.gdg-payment-card__name { font-size: 15px; font-weight: 600; color: #111; flex: 1; }
.gdg-payment-card__sub  { font-size: 12px; color: #666; }
.gdg-payment-card__logos { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.gdg-card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 5px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: #fff;
}
.gdg-card-logo--visa  { color: #1a1f71; }
.gdg-card-logo--mc    { color: #eb5a2a; }
.gdg-card-logo--amex  { color: #0073c2; }
.gdg-card-logo--disc  { color: #f76520; }
.gdg-card-logo--more  { color: #666; background: #f4f4f4; }
.gdg-payment-card__ext-logo { display: flex; align-items: center; margin-left: auto; }
.gdg-payment-card__ext-logo svg path { }
.gdg-payment-card__fields {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e8;
}
.gdg-payment-redirect-msg { font-size: 13px; color: #666; margin: 0; }

/* ── Billing address section ── */
.gdg-billing-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: border-color .15s, background .15s;
}
.gdg-billing-option.is-selected { border-color: #1E5EFF; background: #EBF2FF; }
.gdg-billing-option__dot {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.gdg-billing-option.is-selected .gdg-billing-option__dot { border-color: #1E5EFF; }
.gdg-billing-option.is-selected .gdg-billing-option__dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #1E5EFF;
  border-radius: 50%;
}
.gdg-billing-form {
  margin-top: 12px;
  overflow: hidden;
}

/* ── Pay button ── */
.gdg-pay-wrap { margin-top: 20px; }
.gdg-pay-btn {
  width: 100%;
  height: 56px;
  background: #1E5EFF;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
  letter-spacing: 0.1px;
}
.gdg-pay-btn:hover:not(:disabled) { background: #1550d4; }
.gdg-pay-btn:disabled { opacity: .7; cursor: not-allowed; }
.gdg-pay-btn--loading { pointer-events: none; }
.gdg-pay-btn--loading::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gdg-spin .7s linear infinite;
  margin-left: 8px;
}
@keyframes gdg-spin { to { transform: rotate(360deg); } }
.gdg-legal-text {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.gdg-legal-text a { color: #1E5EFF; text-decoration: underline; }

/* ── Order summary (right column) ── */
.gdg-order-summary {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px;
}
.gdg-order-summary__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.gdg-order-summary__title { font-size: 16px; font-weight: 600; color: #111; }
.gdg-order-summary__count { font-weight: 400; color: #666; }
.gdg-order-summary__edit  { font-size: 13px; color: #1E5EFF; text-decoration: none; }
.gdg-order-summary__edit:hover { text-decoration: underline; }

.gdg-order-items { border-top: 1px solid #f0f0f0; }
.gdg-order-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}
.gdg-order-item__img-wrap { position: relative; flex-shrink: 0; }
.gdg-order-item__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #f8f8f8;
  display: block;
}
.gdg-order-item__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #0A1F44;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.gdg-order-item__content { flex: 1; min-width: 0; overflow: hidden; }
.gdg-order-item__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  line-height: 1.35;
  margin-bottom: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: calc(1.35em * 2);
}
.gdg-order-item__name:hover { color: #1E5EFF; }
.gdg-order-item__meta { font-size: 12px; color: #666; margin: 0 0 2px; white-space: normal; word-break: break-word; }
.gdg-order-item__qty  { color: #999; }
.gdg-order-item__price { font-size: 14px; font-weight: 600; color: #111; white-space: nowrap; padding-top: 2px; flex-shrink: 0; min-width: 56px; text-align: right; }

/* ── Promo code ── */
.gdg-promo-bar {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
.gdg-promo-input {
  flex: 1;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  color: #111;
  min-width: 0;
  transition: border-color .15s;
}
.gdg-promo-input::placeholder { color: #999; }
.gdg-promo-input:focus { outline: none; border-color: #1E5EFF; }
.gdg-promo-input.is-error { border-color: #e10600; }
.gdg-promo-btn {
  width: 82px;
  height: 44px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
}
.gdg-promo-btn:hover { background: #333; }
.gdg-promo-btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── Price breakdown ── */
.gdg-price-breakdown { padding: 4px 0; }
.gdg-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #444;
  padding: 7px 0;
}
.gdg-price--free { color: #16A34A; font-weight: 600; }
.gdg-price-divider { border: none; border-top: 1px solid #f0f0f0; margin: 8px 0; }
.gdg-price-row--total { padding: 10px 0 0; }
.gdg-price-row--total > span:first-child { font-size: 16px; font-weight: 700; color: #111; }
.gdg-price-row--total > span:last-child  { font-size: 24px; font-weight: 700; color: #111; }

/* ── Trust badges ── */
.gdg-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 16px;
  padding: 16px 0;
  border-top: 1px solid #f0f0f0;
}
.gdg-trust-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.gdg-trust-badge__icon { display: flex; align-items: center; justify-content: center; margin-bottom: 2px; }
.gdg-trust-badge__title { font-size: 12px; font-weight: 600; color: #111; }
.gdg-trust-badge__sub   { font-size: 11px; color: #666; line-height: 1.3; }

.gdg-checkout-legal {
  font-size: 11px;
  color: #999;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.gdg-checkout-legal a { color: #666; text-decoration: underline; }

/* ── Mobile summary toggle ── */
.gdg-mobile-summary { display: none; }
.gdg-mobile-summary__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: #EBF2FF;
  border: none;
  border-top: 1px solid #d0dfff;
  border-bottom: 1px solid #d0dfff;
  font-family: inherit;
  font-size: 14px;
  color: #1E5EFF;
  font-weight: 600;
  cursor: pointer;
}
.gdg-mobile-summary__left { display: flex; align-items: center; gap: 8px; }
.gdg-mobile-summary__label { font-size: 14px; }
.gdg-mobile-summary__chevron { transition: transform .25s; }
.gdg-mobile-summary__toggle.is-open .gdg-mobile-summary__chevron { transform: rotate(180deg); }
.gdg-mobile-summary__total { font-size: 15px; font-weight: 700; color: #111; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .gdg-checkout-layout { grid-template-columns: 1fr; }
  .gdg-checkout-right  { position: static; }
}

@media (max-width: 767px) {
  .gdg-checkout-header__inner { padding: 0 16px; }
  .gdg-checkout-header__secure span:last-child { display: none; }
  .gdg-checkout-main { padding: 16px; }
  .gdg-checkout-section { padding: 18px; }
  .gdg-form-row { grid-template-columns: 1fr 1fr; }
  .gdg-form-row--city { grid-template-columns: 1fr 1fr; }
  .gdg-form-group--city  { grid-column: 1 / -1; }
  .gdg-checkout-right { display: none; }
  .gdg-checkout-right.gdg-mobile-visible { display: block; order: -1; }
  .gdg-mobile-summary { display: block; }
  .gdg-checkout-layout { grid-template-columns: 1fr; }
  .gdg-trust-badges { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .gdg-price-row--total > span:last-child { font-size: 20px; }
}

/* ==========================================================================
   QUICK ADD POPUP
   ========================================================================== */

.gdg-product-card { position: relative; overflow: visible !important; }
.gdg-product-card__img { position: relative; overflow: hidden; }

/* Stretch product name link to cover full card */
.gdg-product-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Raise interactive elements above the stretched overlay.
   No position override — these are already position:absolute from their own rules. */
.gdg-product-card__atc,
.gdg-quick-add-btn,
.gdg-product-card__wish,
.gdg-product-card__badges,
.gdg-sp-atc-btn,
.gdg-sp-size-btn,
.single_add_to_cart_button {
  z-index: 3;
  pointer-events: auto;
}

.gdg-quick-add-popup {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: #fff;
  border-top: 2px solid #1E5EFF;
  padding: 14px 12px 12px;
  z-index: 20;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.gdg-quick-add-popup.is-active {
  display: block;
  animation: gdgPopupSlideUp .18s ease;
}
@keyframes gdgPopupSlideUp {
  from { transform: translateY(6px); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.gdg-quick-add-popup__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #999;
  margin-bottom: 8px;
  text-align: center;
}
.gdg-quick-add-popup__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-bottom: 10px;
}
.gdg-quick-add-popup__size {
  min-width: 34px;
  height: 30px;
  padding: 0 7px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  line-height: 1;
}
.gdg-quick-add-popup__size:hover {
  border-color: #1E5EFF;
  color: #1E5EFF;
}
.gdg-quick-add-popup__size.is-selected {
  background: #1E5EFF;
  border-color: #1E5EFF;
  color: #fff;
}
.gdg-quick-add-popup__atc {
  width: 100%;
  height: 36px;
  background: #1E5EFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  cursor: pointer;
  transition: background .2s, opacity .2s;
}
.gdg-quick-add-popup__atc:disabled {
  background: #b8cdf8;
  cursor: not-allowed;
}
.gdg-quick-add-popup__atc:not(:disabled):hover {
  background: #1550d4;
}
.gdg-quick-add-popup__atc.is-loading {
  opacity: .7;
  pointer-events: none;
}

/* ── Quick Add popup header (title + close btn) ── */
.gdg-quick-add-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.gdg-quick-add-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  flex-shrink: 0;
  touch-action: manipulation;
}
.gdg-quick-add-close:hover { background: #e0e0e0; }

/* ── Quick Add overlay + sheet (mobile = bottom sheet / desktop = modal) ── */

/* Mobile: always hidden — backdrop not needed on mobile */
#gdg-quick-add-overlay {
  display: none !important;
}

/* Mobile default: bottom sheet */
#gdg-quick-add-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 24px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  pointer-events: none;
}
#gdg-quick-add-sheet.is-active {
  transform: translateY(0);
  pointer-events: auto;
}

/* Desktop: centered modal — overlay receives clicks to close */
@media (min-width: 768px) {
  #gdg-quick-add-sheet {
    top: 50%; left: 50%;
    right: auto; bottom: auto;
    transform: translate(-50%, -48%) scale(0.96);
    opacity: 0;
    pointer-events: none;
    width: 460px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    transition: transform .25s ease, opacity .25s ease;
  }
  #gdg-quick-add-sheet.is-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  #gdg-quick-add-overlay {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  #gdg-quick-add-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }
}

.gdg-quick-add-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.gdg-quick-add-sheet__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #888;
  text-transform: uppercase;
}
.gdg-quick-add-sheet__close {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #555;
  touch-action: manipulation;
}
.gdg-quick-add-sheet__close:hover { background: #e0e0e0; }

.gdg-quick-add-sheet__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.gdg-size-chip {
  width: 52px; height: 52px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(30,94,255,.2);
  user-select: none;
  -webkit-user-select: none;
}
.gdg-size-chip:hover  { border-color: #1E5EFF; color: #1E5EFF; }
.gdg-size-chip.selected { background: #111; color: #fff; border-color: #111; }

.gdg-quick-add-sheet__atc {
  width: 100%; height: 52px;
  border: none;
  border-radius: 8px;
  font-size: 15px; font-weight: 700;
  cursor: not-allowed;
  background: #ccc;
  color: #fff;
  transition: background .2s;
  touch-action: manipulation;
}
.gdg-quick-add-sheet__atc:not([disabled]) {
  background: #1E5EFF;
  cursor: pointer;
}
.gdg-quick-add-sheet__atc:not([disabled]):hover { background: #1550d4; }

@media (max-width: 767px) {
  .gdg-quick-add-popup {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    border-radius: 16px 16px 0 0 !important;
    z-index: 999999 !important;
    padding: 20px 16px 28px !important;
    box-shadow: 0 -4px 24px rgba(0,0,0,.2) !important;
    pointer-events: all !important;
    touch-action: manipulation !important;
  }
  .gdg-quick-add-overlay { z-index: 999998 !important; }
  .gdg-quick-add-popup__sizes { gap: 10px !important; }
  .gdg-quick-add-popup__size {
    min-width: 52px !important;
    height: 52px !important;
    font-size: 14px !important;
    pointer-events: all !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(30,94,255,.2) !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    cursor: pointer !important;
  }
  .gdg-quick-add-popup__atc {
    height: 52px !important;
    font-size: 15px !important;
    margin-top: 14px !important;
    pointer-events: all !important;
    touch-action: manipulation !important;
    cursor: pointer !important;
  }
}

/* ==========================================================================
   MOBILE FIXES ≤ 767px
   ========================================================================== */

@media (max-width: 767px) {

  /* Update CSS vars so all dependent elements (mobile nav, hero margin) auto-adjust */
  :root { --header-h: 56px; }

  /* ── 1. Announce bar ── */
  /* On mobile WP admin bar becomes position:absolute — remove the fixed offset it adds */
  body.admin-bar .gdg-announce { top: 0 !important; }
  body.admin-bar .gdg-header  { top: var(--announce-h) !important; }

  /* Hide right-side links (USD/English/Help/Track Order) but keep close button */
  .gdg-announce__right > *:not(.gdg-announce__close) { display: none; }
  .gdg-announce__right { gap: 0; }
  .gdg-announce { padding: 0 44px 0 16px; justify-content: center; }
  .gdg-announce__text { font-size: 11px; line-height: 1.3; text-align: center; flex: 1; }
  /* Show short text, hide long text */

  /* ── 2. Header — flex: [hamburger] [logo left-aligned] [→ auto spacer →] [actions] ── */

  .gdg-header { height: 56px; }

  .gdg-header__inner {
    display: flex !important;
    align-items: center !important;
    padding: 0 12px !important;
    height: 56px !important;
    gap: 8px !important;
    position: static !important;
  }

  /* Hide desktop nav */
  .gdg-header__inner > .gdg-nav { display: none !important; }

  /* LEFT: hamburger — last in DOM, pushed to front via order */
  .gdg-mobile-toggle {
    order: 1 !important;
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* MIDDLE: logo snug against hamburger, left-aligned text */
  .gdg-logo {
    order: 2 !important;
    position: static !important;
    transform: none !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 0 !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    max-width: 160px !important;
  }
  .gdg-logo a {
    max-width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  .gdg-logo__icon { display: none !important; }
  .gdg-logo__text {
    font-size: 13px !important;
    letter-spacing: .05em !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .gdg-logo .custom-logo { max-height: 28px !important; width: auto !important; }

  /* RIGHT: actions pushed to far right via margin-left: auto */
  .gdg-header__actions {
    order: 3 !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
  }

  /* Hide account and wishlist on mobile */
  .gdg-action--account,
  .gdg-action--wishlist { display: none !important; }

  /* 36×36 tap targets — slightly smaller than 40 to allow 4px gap */
  .gdg-action {
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  /* ── Hero gap fix ── */
  /* WP admin bar adds html { margin-top: 46px } on mobile, creating a
     46px blank strip between the fixed header and hero sections. */
  body.admin-bar .gdg-hero,
  body.admin-bar .gdg-shop-hero {
    margin-top: calc(var(--announce-h) + var(--header-h) - 46px) !important;
  }

  /* ── 3. Hero CTA buttons ── */
  .gdg-hero__cta { flex-direction: column; gap: 10px; }
  .gdg-hero__cta .btn { width: 100%; justify-content: center; }

  /* ── 4. Trust badges ── */
  .gdg-trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gdg-trust-item:last-child { grid-column: 1 / -1; }
  .gdg-trust-item { padding: 12px 8px; }
  .gdg-trust-item__title { font-size: 12px; }
  .gdg-trust-item__desc  { font-size: 11px; }

  /* ── 5. Collection page ── */

  /* Task 1: hide "X Leagues · Y Products" stats bar entirely */
  .gdg-stats-bar { display: none !important; }

  /* Task 2: filter + sort on one row inside mobile filter bar */
  .gdg-filter-mobile-bar {
    display: flex !important;
    padding: 0 !important;
    border-bottom: 1px solid #ebebeb !important;
  }
  .gdg-filter-mobile-bar .gdg-shop-container {
    padding: 10px 16px !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .gdg-filter-mobile-btn {
    background: #111 !important;
    color: #fff !important;
    border-color: #111 !important;
    flex-shrink: 0 !important;
    padding: 7px 12px !important;
    font-size: 12px !important;
  }
  .gdg-sort-wrap--mobile {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin-left: auto !important;
  }
  .gdg-sort-wrap--mobile .gdg-sort-label {
    font-size: 12px !important;
    color: #666 !important;
    white-space: nowrap !important;
  }
  .gdg-sort-wrap--mobile .gdg-sort-select {
    height: 34px !important;
    max-width: 120px !important;
    font-size: 12px !important;
    padding: 0 24px 0 8px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    background: #fff !important;
  }

  /* Task 3: shorter hero banner */
  .gdg-shop-hero {
    min-height: auto !important;
  }
  .gdg-shop-hero__left {
    padding: 16px 0 !important;
  }
  .gdg-shop-hero__right { display: none !important; }
  .gdg-shop-hero__breadcrumb {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }
  .gdg-shop-hero__title {
    font-size: 22px !important;
    line-height: 1.15 !important;
    margin-bottom: 6px !important;
    white-space: normal !important;
  }
  .gdg-shop-hero__desc {
    font-size: 12px !important;
    line-height: 1.4 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  /* ── Fix 1: Non-sticky header — both announce + header scroll with page ──
     Include body.admin-bar variants to win specificity over line 4700-4701
     where `body.admin-bar .gdg-header { top: var(--announce-h) !important }`
     would otherwise push the header down 36px as a relative offset. */
  .gdg-announce,
  body.admin-bar .gdg-announce {
    position: relative !important;
    top: auto !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .gdg-header,
  body.admin-bar .gdg-header {
    position: relative !important;
    top: auto !important;
    margin: 0 !important;
    width: 100% !important;
  }
  /* Remove the margin-top compensation that existed for the fixed header */
  .gdg-shop-hero,
  body.admin-bar .gdg-shop-hero,
  .gdg-hero,
  body.admin-bar .gdg-hero {
    margin-top: 0 !important;
  }
  /* Mobile nav: JS sets top + max-height via setProperty on every open */
  .gdg-mobile-nav {
    max-height: 100dvh;
  }

  /* ── Fix 2: Remove gap between filter bar and "Showing X of X" / grid ──
     Root cause: .gdg-shop-wrap { padding: 48px 0 80px } creates 48px top gap.
     Class confirmed from archive-product.php: <p class="gdg-shop-count"> */
  .gdg-shop-wrap {
    padding-top: 0 !important;
    padding-bottom: 40px !important;
  }
  .gdg-shop-toolbar {
    padding: 8px 16px 4px !important;
    margin-bottom: 0 !important;
    min-height: unset !important;
  }
  .gdg-shop-count {
    display: block !important;
    font-size: 12px !important;
    color: #999 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .gdg-products-grid {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* ── Fix 3: Trust strip 2×2 grid on mobile ── */
  .gdg-shop-trust {
    border-top: 1px solid #ebebeb !important;
    padding: 0 !important;
  }
  .gdg-shop-trust__inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
    padding: 0 !important;
    justify-content: unset !important;
  }
  .gdg-shop-trust__item {
    flex: unset !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 16px 8px !important;
    border-right: 1px solid #ebebeb !important;
    border-bottom: 1px solid #ebebeb !important;
    gap: 8px !important;
  }
  .gdg-shop-trust__item:nth-child(2n) {
    border-right: none !important;
  }
  .gdg-shop-trust__item:nth-last-child(-n+2) {
    border-bottom: none !important;
  }
  /* 5th item (odd last child) spans full width */
  .gdg-shop-trust__item:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important;
    border-right: none !important;
    border-bottom: none !important;
  }
  .gdg-shop-trust__item svg {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0 !important;
  }
  .gdg-shop-trust__title {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
  }
  .gdg-shop-trust__sub {
    font-size: 10px !important;
    color: #888 !important;
    line-height: 1.4 !important;
  }
}

/* ==========================================================================
   CHECKOUT — Hide WC coupon toggle bar (belt-and-suspenders)
   ========================================================================== */
.woocommerce-form-coupon-toggle,
.woocommerce-form-coupon {
  display: none !important;
}

/* ==========================================================================
   CHECKOUT MOBILE — bottom bar (Pay + Trust + Policy)
   Desktop: hidden — same content lives in the sidebar.
   Mobile : shown at the bottom; sidebar version hidden.
   ========================================================================== */
.gdg-checkout-bottom {
  display: none;
}

@media (max-width: 767px) {
  .gdg-sidebar-bottom {
    display: none !important;
  }

  .gdg-checkout-bottom {
    display: block;
    padding: 16px 16px 32px;
    background: #fff;
  }

  .gdg-checkout-bottom .gdg-pay-btn {
    width: 100% !important;
    margin-bottom: 16px !important;
  }

  .gdg-checkout-bottom .gdg-trust-badges {
    margin-bottom: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE PRODUCT — MOBILE FIXES ≤ 767px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Fix 0 — Remove header-offset padding (header scrolls with page on mobile) */
  .gdg-sp-page {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* Fix 1 — Breadcrumb: minimal breathing room only */
  .gdg-sp-breadcrumb {
    margin-top: 0;
    padding-top: 12px;
  }

  /* Reduce gap breadcrumb → gallery */
  .gdg-sp-main-section {
    padding-top: 8px;
  }

  /* Fix 2 — Delivery icon align */
  .gdg-sp-delivery {
    margin-top: 8px;
    padding: 6px 0;
    align-items: center;
    gap: 8px;
  }
  .gdg-sp-delivery__icon {
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    margin-top: 0;
  }

  /* Trust strip — 3 items hàng ngang, ẩn item 4 & 5 */
  .gdg-sp-trust-strip {
    margin-top: 10px;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    gap: 0;
    padding: 12px 8px;
    border-radius: 8px;
    border-bottom: none;
  }
  .gdg-sp-trust-strip__item:nth-child(4),
  .gdg-sp-trust-strip__item:nth-child(5) {
    display: none;
  }
  .gdg-sp-trust-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 4px;
    width: auto;
  }
  .gdg-sp-trust-strip__item svg {
    display: block;
    width: 20px; height: 20px;
    margin: 0 auto;
    flex-shrink: 0;
  }
  .gdg-sp-trust-strip__title {
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.03em;
  }
  .gdg-sp-trust-strip__sub {
    font-size: 8px; color: #6b7280;
  }

  .gdg-sp-details-section {
    padding-top: 16px;
  }

  /* Fix 3 — Tabs: kéo sát trust strip, bỏ divider */
  .gdg-sp-tabs {
    margin-top: 12px;
    border-top: none;
  }

  /* Fix 3 — Tabs: horizontally scrollable, underline style */
  .gdg-sp-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gdg-sp-tab-nav::-webkit-scrollbar { display: none; }
  .gdg-sp-tab-btn {
    flex: 1;
    min-width: fit-content;
    padding: 10px 8px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    text-align: center; white-space: nowrap;
    border-bottom: none;
    margin-bottom: 0;
    color: #6b7280;
    background: none;
    border-top: none; border-left: none; border-right: none;
  }
  .gdg-sp-tab-btn.is-active {
    color: var(--color-primary);
    box-shadow: inset 0 -2px 0 0 var(--color-primary);
  }
  .gdg-sp-tab-panel {
    padding: 16px 0;
    font-size: 14px; line-height: 1.6;
  }


/* ═══════════════════════════════════════════════════════════
   GLOBAL TYPOGRAPHY — Bebas Neue headings / Inter body
   ═══════════════════════════════════════════════════════════ */

/* Specific heading selectors (complement h1-h6 base rule) */
.gdg-section-title,
.gdg-hero__title,
.gdg-drawer__title,
.gdg-mega__title,
.gdg-sp-related__title,
.gdg-sp-promo__title,
.gdg-sp-reviews__title {
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
  line-height: 0.95;
}

/* Buttons — Inter for legibility */
button,
.gdg-btn,
.gdg-product-card__atc,
.gdg-sp-atc-btn,
.gdg-sp-buy-btn,
.gdg-drawer__checkout-btn,
.gdg-sp-bin-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Nav links */
.gdg-nav__link,
.gdg-mobile-nav a,
.gdg-mega__team-link {
  font-family: var(--font-body);
  font-weight: 600;
}

/* Prices */
.gdg-product-card__price,
.gdg-sp-price,
.gdg-drawer__item-price,
.gdg-checkout__total {
  font-family: var(--font-body);
  font-weight: 700;
}

/* Labels, badges, tags */
.gdg-badge,
.gdg-product-card__league,
.gdg-sp-tag,
.gdg-filter-label,
.gdg-trust-label {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ── Related carousel: horizontal scroll on mobile ── */
@media (max-width: 767px) {
  .gdg-sp-carousel-wrap {
    position: relative;
    overflow: hidden;
  }
  .gdg-sp-carousel {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gdg-sp-carousel::-webkit-scrollbar { display: none; }
  .gdg-sp-rel-card {
    min-width: 140px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ── Single product: desktop spacing ── */
@media (min-width: 768px) {
  /* Restore header offset — overrides the mobile !important zero */
  .gdg-sp-page {
    padding-top: calc(var(--header-h) + var(--announce-h) + 20px) !important;
    margin-top: 0 !important;
  }

  /* Breadcrumb — no divider, breathing room */
  .gdg-sp-breadcrumb {
    border-bottom: none;
    box-shadow: none;
    padding-bottom: 12px;
  }

  /* Product layout — tight gap below breadcrumb */
  .gdg-sp-layout {
    padding-top: 16px;
    margin-top: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL LAYOUT UTILITY
   ═══════════════════════════════════════════════════════════ */

.page-container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding-left: var(--container-padding-desktop);
  padding-right: var(--container-padding-desktop);
}

/* ── Collection toolbar refinement ── */
.gdg-stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
}
.gdg-stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
.gdg-stats-bar__text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
}
.gdg-view-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--color-gray-500);
  transition: all var(--transition);
}
.gdg-view-btn.is-active,
.gdg-view-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.gdg-view-toggle { display: flex; gap: 4px; }

/* ── Newsletter responsive ── */
@media (max-width: 768px) {
  .gdg-newsletter__inner--two-col {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 var(--container-padding-mobile);
  }
  .gdg-newsletter__inner--two-col .gdg-newsletter__form {
    flex-direction: column;
  }
  .gdg-newsletter__inner--two-col .gdg-newsletter__input  { border-radius: var(--radius); }
  .gdg-newsletter__inner--two-col .gdg-newsletter__btn    { border-radius: var(--radius); }
}

/* ── Collection page responsive ── */
@media (max-width: 1024px) {
  .gdg-shop-layout { grid-template-columns: 1fr; }
  .gdg-sidebar:not(.gdg-sidebar--v2) { position: static; }
}
@media (max-width: 767px) {
  .gdg-shop-layout { display: block; }
  .gdg-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gdg-shop-wrap { padding: 16px 0 48px; }

  .gdg-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 8999;
  }
  .gdg-filter-overlay.is-active { display: block; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARD — TITLE & PRICE CANONICAL RULES
   ═══════════════════════════════════════════════════════════ */

/* ── Price aliases: WooCommerce ins/del + custom selectors ── */
.gdg-product-card__price-current,
.gdg-product-card__price ins,
.gdg-product-card__price > .amount,
.gdg-product-card__price > span:first-child,
.gdg-price-current {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A0A0A;
  text-decoration: none;
}

/* Sale state — current price turns red */
.gdg-product-card--sale .gdg-product-card__price-current,
.gdg-product-card--sale .gdg-product-card__price ins,
.gdg-price-current--sale {
  color: #E10600;
}

/* Compare / strikethrough aliases */
.gdg-product-card__price-compare,
.gdg-product-card__price del,
.gdg-product-card__price .gdg-price-original,
.gdg-price-original {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #9CA3AF;
  text-decoration: line-through;
}

/* Discount % badge aliases */
.gdg-product-card__discount,
.gdg-price-discount {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #E10600;
}

/* ── Global price: single product page ── */
.gdg-sp-price-current,
.gdg-sp-price ins,
.gdg-sp-price .woocommerce-Price-amount,
body.single-product .price .amount,
body.single-product ins .amount,
.woocommerce-Price-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: #0A0A0A;
}
.gdg-sp--sale .gdg-sp-price-current,
.gdg-sp--sale .gdg-sp-price ins,
body.single-product.sale ins .amount {
  color: #E10600;
}
.gdg-sp-price-compare,
.gdg-sp-price del,
body.single-product del .amount {
  color: #9CA3AF;
  text-decoration: line-through;
}

/* ── Global price: cart drawer ── */
.gdg-drawer__item-price,
.gdg-drawer__subtotal-value,
.gdg-drawer__total-value,
.gdg-drawer__row-value,
.gdg-drawer__total-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #0A0A0A;
}

/* ── Global price: checkout ── */
.gdg-checkout__item-price,
.gdg-checkout__total-value,
.gdg-order-summary__total {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #0A0A0A;
}

/* ── Mobile overrides ── */
@media (max-width: 767px) {
  .gdg-product-card__name,
  .gdg-product-card__title {
    font-size: 14px;
  }
  .gdg-product-card__price-current,
  .gdg-product-card__price ins,
  .gdg-price-current {
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL CONTAINER ALIGNMENT — tất cả section cùng lề
   ═══════════════════════════════════════════════════════════ */

.gdg-container,
.gdg-hero__inner,
.gdg-section__inner,
.gdg-shop-hero__content,
.gdg-newsletter__inner,
.gdg-footer__inner,
.gdg-trust-bar__inner,
.gdg-leagues__inner,
.gdg-categories__inner,
.gdg-trending__inner {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

@media (max-width: 767px) {
  #gdgThumbStrip,
  .gdg-sp-gallery__thumbs {
    display: none;
  }
}

/* ── Size Chart ── */

