/* ====================================================
   TOP25SCOUTS STOREFRONT — CUSTOM STYLES
   Bootstrap v5.1.3 | Premium Athletic Brand
   ==================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties (Brand Tokens) --- */
:root {
  /* Brand Colors — Black & White Theme */
  --t25-orange: #111111;
  --t25-orange-dark: #000000;
  --t25-orange-light: #333333;
  --t25-navy: #111111;
  --t25-navy-mid: #1c1c1c;
  --t25-navy-light: #2a2a2a;
  --t25-charcoal: #111111;
  --t25-gray-dark: #2C2C2C;
  --t25-gray-mid: #6B6B6B;
  --t25-gray-light: #ADADAD;
  --t25-gray-pale: #F4F4F4;
  --t25-white: #FFFFFF;
  --t25-off-white: #F9F9F9;

  /* Typography */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-ui: 'Inter', sans-serif;

  /* Spacing */
  --section-gap: 80px;
  --section-gap-sm: 48px;
  --card-radius: 2px;
  --btn-radius: 2px;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-med: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-navbar: 0 2px 20px rgba(0,0,0,0.15);
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--t25-charcoal);
  background-color: var(--t25-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ====================================================
   ANNOUNCEMENT BAR
   ==================================================== */
.t25-shell {
  width: 100%;
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
}

.announcement-bar {
  background-color: #111111;
  color: var(--t25-white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
  max-width: 1580px;
    margin: auto;
    z-index: 7;
    position: relative;
}

.announcement-bar-inner {
  padding-left: 24px;
  padding-right: 24px;
}

.announcement-bar a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-bar a:hover {
  color: var(--t25-white);
}
#product_item .font-13.fw-medium span:first-child {
    display: none; 
}
/* ====================================================
   NAVBAR
   ==================================================== */
.site-navbar {
  background-color: var(--t25-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: var(--shadow-navbar);
  transition: box-shadow var(--transition-med);
  max-width: 1580px;
  margin: auto;
}

.site-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.navbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  height: 68px;
}

/* Logo */
.navbar-brand-logo {
  display: flex;
  align-items: center;
  padding: 0;
  height: 100%;
}

.navbar-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #111111;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--t25-white);
  stroke: var(--t25-white);
}

.logo-text-primary {
  color: #111111;
}

.logo-text-accent {
  color: #111111;
}

/* Nav Links */
.navbar-nav-center {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  justify-content: center;
}

.nav-center-item {
  display: flex;
  align-items: stretch;
  position: relative;
}

.nav-center-link {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t25-charcoal);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

/* 🔥 New Drops special style */
.nav-fire {
  letter-spacing: 0.04em;
}

.nav-center-link:hover,
.nav-center-link.active {
  color: #111111;
  border-bottom-color: #111111;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--t25-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid #111111;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-center-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 9px 20px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--t25-charcoal);
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
}

.nav-dropdown-item:hover {
  color: #111111;
  background-color: var(--t25-gray-pale);
  padding-left: 26px;
}

/* Right Icons */
.navbar-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--t25-charcoal);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.nav-icon-btn:hover {
  color: #111111;
  background-color: var(--t25-gray-pale);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#site-navbar .topscouts-header-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #111111;
  color: var(--t25-white);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 3px;
}

/* Mobile Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t25-charcoal);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--t25-white);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 16px 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 1025;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med);
}

.mobile-menu.open {
  display: block;
  max-height: 500px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 24px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t25-charcoal);
  border-bottom: 1px solid var(--t25-gray-pale);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  color: #111111;
  padding-left: 32px;
  background-color: var(--t25-gray-pale);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--t25-white);
  border-radius: 50px;
  padding: 6px 6px 6px 24px;
  gap: 8px;
}

.search-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--t25-charcoal);
  outline: none;
}

.search-input-wrap input::placeholder {
  color: var(--t25-gray-light);
}

.search-submit-btn {
  background: #111111;
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.search-submit-btn:hover {
  background: #000000;
}

.search-close-btn {
  margin-top: 20px;
  display: block;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-ui);
  font-size: 13px;
  cursor: pointer;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn-primary-t25 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111111;
  color: var(--t25-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid #111111;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary-t25:hover {
  background: #000000;
  border-color: #000000;
  color: var(--t25-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
}

.btn-outline-t25 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--t25-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 36px;
  border: 2px solid var(--t25-white);
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-outline-t25:hover {
  background: var(--t25-white);
  color: #111111;
  transform: translateY(-1px);
}

.btn-dark-t25 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111111;
  color: var(--t25-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid #111111;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-dark-t25:hover {
  background: #000000;
  border-color: #000000;
  color: var(--t25-white);
  transform: translateY(-1px);
}

.btn-add-cart {
  width: 100%;
  background: #111111;
  color: var(--t25-white);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px;
  border: 2px solid #111111;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-add-cart:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero-section {
  position: relative;
  height: 92vh;
  min-height: 580px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #000000;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* opacity: 0.5; */
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.78) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

#home-hero .hero-gradient {
  background: linear-gradient(to right, rgb(0 0 0 / 97%) 0%, rgb(0 0 0 / 84%) 40%, rgb(0 0 0 / 72%) 70%, rgb(0 0 0 / 57%) 100%);
}

#promo-section .hero-gradient {
  background: linear-gradient(to right, rgb(0 0 0 / 78%) 0%, rgb(0 0 0 / 78%) 40%, rgb(0 0 0 / 52%) 70%, rgb(0 0 0 / 76%) 100%) !important;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.65);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--t25-white);
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--t25-white);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary-t25,
.hero-ctas .btn-outline-t25 {
  font-family: var(--font-heading) !important;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ====================================================
   SECTION HEADERS
   ==================================================== */
.section-header {
  margin-bottom: 40px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #888888;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--t25-gray-mid);
  font-weight: 400;
  max-width: 520px;
}

/* ====================================================
   FEATURED COLLECTIONS
   ==================================================== */
.collections-section {
  padding: var(--section-gap) 0;
  background: var(--t25-off-white);
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4/5;
  background: #111111;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  opacity: 0.8;
}

.collection-card:hover img {
  transform: scale(1.06);
  opacity: 0.7;
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.collection-card-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.collection-card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--t25-white);
  margin-bottom: 14px;
  line-height: 1.1;
}

.collection-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t25-white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: all var(--transition-fast);
}

.collection-card-link:hover {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.7);
  gap: 10px;
}

.collection-card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Large collection card */
.collection-card.large {
  aspect-ratio: 4/5;
  height: 100%;
}

/* ====================================================
   PRODUCT CARDS
   ==================================================== */
.products-section {
  padding: var(--section-gap) 0;
}

.product-card {
  background: var(--t25-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition-med);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--t25-gray-pale);
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111111;
  color: var(--t25-white);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-badge.new {
  background: #111111;
}

.product-badge.sale {
  background: #DC2626;
}

/* View Details button (replaces quick-add) */
.product-card-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: var(--t25-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
  transform: translateY(100%);
  transition: transform var(--transition-fast);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-card:hover .product-card-quick-add {
  transform: translateY(0);
}

.product-card-quick-add:hover {
  background: #000000;
  color: var(--t25-white);
}

.product-card-body {
  padding: 16px 16px 20px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1.2;
}

.product-card-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--t25-gray-mid);
  margin-bottom: 10px;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #111111;
}

.price-original {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--t25-gray-light);
  text-decoration: line-through;
}

.price-save {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: #DC2626;
  background: #FEE2E2;
  padding: 2px 7px;
  border-radius: 2px;
}

/* Color Swatches */
.color-swatches {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.swatch:hover,
.swatch.active {
  border-color: #111111;
  transform: scale(1.15);
}

/* ====================================================
   PROMO BANNER SECTION
   ==================================================== */
.promo-section {
  background: #111111;
  overflow: hidden;
}

.promo-split {
  display: flex;
  min-height: 480px;
}

.promo-image-side {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.promo-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform var(--transition-slow);
}

.promo-section:hover .promo-image-side img {
  transform: scale(1.03);
}

.promo-content-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: #111111;
}

.promo-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.5);
}

.promo-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--t25-white);
  line-height: 0.95;
  margin-bottom: 20px;
}

.promo-title .highlight {
  color: var(--t25-white);
}

.promo-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.promo-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--t25-white);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials-section {
  padding: var(--section-gap) 0;
  background: var(--t25-gray-pale);
}

.testimonial-card {
  background: var(--t25-white);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: all var(--transition-med);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 900;
  color: #111111;
  opacity: 0.08;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #FBBF24;
  color: #FBBF24;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--t25-charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--t25-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
}

.testimonial-role {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--t25-gray-mid);
  letter-spacing: 0.04em;
}

/* ====================================================
   NEWSLETTER SECTION
   ==================================================== */
.newsletter-section {
  background: #111111;
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: 'T25';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 280px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: -10px;
  user-select: none;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--t25-white);
  margin-bottom: 12px;
}

.newsletter-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--t25-charcoal);
  outline: none;
  background: white;
}

.newsletter-input::placeholder {
  color: var(--t25-gray-light);
}

.newsletter-submit {
  background: var(--t25-white);
  color: #111111;
  border: none;
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: #e8e8e8;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.site-footer > .container-fluid {
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--t25-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .accent {
  color: var(--t25-white);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--t25-white);
  border-color: var(--t25-white);
  color: #111111;
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t25-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a,
.footer-links li span {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--t25-white);
  text-decoration: none;
}

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 40px 0 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-icon {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 8px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* ====================================================
   CART DRAWER
   ==================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--t25-white);
  z-index: 1501;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-med);
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-count-badge {
  background: #111111;
  color: white;
  font-size: 12px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--t25-gray-pale);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.cart-drawer-close:hover {
  background: #111111;
  color: white;
}

.cart-drawer-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--t25-gray-pale);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--t25-gray-pale);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 4px;
  line-height: 1.2;
}

.cart-item-variant {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--t25-gray-mid);
  margin-bottom: 10px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--t25-charcoal);
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  background: #111111;
  border-color: #111111;
  color: white;
}

.qty-display {
  min-width: 36px;
  height: 28px;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  align-self: flex-start;
  flex-shrink: 0;
}

.cart-remove-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--t25-gray-light);
  padding: 0;
  margin-left: 8px;
  transition: color var(--transition-fast);
}

.cart-remove-btn:hover {
  color: #DC2626;
}

.cart-remove-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.cart-drawer-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: var(--t25-off-white);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cart-subtotal-label {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--t25-gray-mid);
  font-weight: 500;
}

.cart-subtotal-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #111111;
}

.cart-note {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--t25-gray-mid);
  margin-bottom: 20px;
}

.cart-checkout-btn {
  width: 100%;
  background: #111111;
  color: white;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: 12px;
}

.cart-checkout-btn:hover {
  background: #000000;
  color: var(--t25-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cart-continue-btn {
  width: 100%;
  background: transparent;
  color: var(--t25-gray-mid);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  padding: 10px;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  text-align: center;
}

.cart-continue-btn:hover {
  color: #111111;
}

/* ====================================================
   COLLECTION / SHOP PAGE
   ==================================================== */
.shop-hero {
  background: #111111;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: 'SHOP';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
}

.shop-hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--t25-white);
  margin-bottom: 10px;
}

.shop-hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}

/* Filter Bar */
.filter-bar {
  background: var(--t25-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 14px 0;
  position: sticky;
  top: 68px;
  z-index: 100;
}

.filter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-group {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t25-gray-mid);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50px;
  background: transparent;
  color: var(--t25-charcoal);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: #111111;
  border-color: #111111;
  color: white;
}

.filter-btn-sale {
  color: #DC2626 !important;
  border-color: #DC2626 !important;
}

.filter-btn-sale:hover,
.filter-btn-sale.active {
  color: var(--t25-white) !important;
  background: #DC2626 !important;
  border-color: #DC2626 !important;
}

.sort-select {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 7px 12px;
  color: var(--t25-charcoal);
  background: white;
  cursor: pointer;
  outline: none;
}

.products-count {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--t25-gray-mid);
  white-space: nowrap;
}

/* ====================================================
   PRODUCT DETAIL PAGE
   ==================================================== */
.product-detail-section {
  padding: 48px 0 80px;
}

.product-breadcrumb {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--t25-gray-mid);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-breadcrumb a {
  color: var(--t25-gray-mid);
  transition: color var(--transition-fast);
}

.product-breadcrumb a:hover {
  color: #111111;
}

.breadcrumb-sep {
  color: var(--t25-gray-light);
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 88px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--t25-gray-pale);
  margin-bottom: 12px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform var(--transition-slow);
}

.gallery-main:hover img {
  transform: scale(1.04);
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition-fast);
  background: var(--t25-gray-pale);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: #111111;
}

/* Product Info */
.product-info {
  padding-left: 40px;
}

.product-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: #111111;
  line-height: 1;
  margin-bottom: 16px;
}

.product-detail-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.product-detail-price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #111111;
}

.product-detail-price-orig {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--t25-gray-light);
  text-decoration: line-through;
}

.product-reviews-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: #FBBF24;
  color: #FBBF24;
}

.review-count {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--t25-gray-mid);
}

/* Size Selector */
.option-group {
  margin-bottom: 24px;
}

.option-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t25-charcoal);
  margin-bottom: 10px;
  display: flex;
  /* justify-content: space-between; */
}

.size-guide-link {
  font-weight: 400;
  color: #555555;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  width: 52px;
  height: 44px;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 4px;
  background: white;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--t25-charcoal);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
}

.size-btn:hover {
  border-color: #111111;
  background: #111111;
  color: white;
}

.size-btn.active {
  border-color: #111111;
  background: #111111;
  color: white;
}

.size-btn.unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity */
.quantity-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.qty-selector {
  display: flex;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.qty-selector .qty-btn {
  width: 44px;
  height: 52px;
  border: none;
  border-radius: 0;
}

.qty-selector .qty-display {
  height: 52px;
  border: none;
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-ui);
}

.btn-add-cart-lg {
  flex: 1;
  background: #111111;
  color: var(--t25-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 32px;
  height: 52px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-add-cart-lg:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-wishlist {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-wishlist:hover {
  border-color: #DC2626;
  color: #DC2626;
}

.btn-wishlist svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

/* Accordions */
.product-accordion .accordion-button {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111111;
  background: transparent;
  padding: 16px 0;
  box-shadow: none;
}

.product-accordion .accordion-button:not(.collapsed) {
  color: #111111;
  background: transparent;
  box-shadow: none;
}

.product-accordion .accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 22px;
  font-weight: 300;
  transform: none !important;
  color: var(--t25-gray-mid);
  opacity: 1;
}

.product-accordion .accordion-button:not(.collapsed)::after {
  content: '−';
  color: #111111;
}

.product-accordion .accordion-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--t25-gray-mid);
  padding: 0 0 16px;
  line-height: 1.7;
}

.product-accordion .accordion-item {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--t25-gray-mid);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  stroke: #111111;
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}

/* Scout StoreFlo product detail bridge */
.t25-scout-pdp {
  padding-top: 32px;
}

.t25-scout-pdp-shell {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.t25-scout-pdp #productImageCarousel > .row {
  flex-direction: column-reverse !important;
  margin: 0;
}

.t25-scout-pdp .t25-gallery-main-col,
.t25-scout-pdp .t25-gallery-thumbs-col {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
  padding: 0 !important;
}

.t25-scout-pdp .colorimg {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--t25-gray-pale);
  margin-bottom: 12px;
}

.t25-scout-pdp .product-main-carousel-image {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.t25-scout-pdp #thumbnail-container {
  height: auto !important;
  overflow: visible !important;
}

.t25-scout-pdp #thumbnail-container .imgthumbs {
  position: static;
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  margin: 0 !important;
  overflow-x: auto;
  scrollbar-width: none;
}

.t25-scout-pdp #thumbnail-container .imgthumbs::-webkit-scrollbar {
  display: none;
}

.t25-scout-pdp #thumbnail-container .imgthumbs button {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px;
  max-width: 72px;
  border: 2px solid transparent !important;
  border-radius: 4px !important;
  background: var(--t25-gray-pale) !important;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
}

.t25-scout-pdp #thumbnail-container .imgthumbs button.active,
.t25-scout-pdp #thumbnail-container .imgthumbs button:hover {
  border-color: #111111 !important;
}

.t25-scout-pdp #thumbnail-container .imgthumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t25-scout-pdp .product-info {
  top: 88px;
}

.t25-scout-pdp .product-breadcrumb {
  margin-bottom: 28px;
}

.t25-scout-pdp .breadcrumb {
  font-family: var(--font-ui);
  font-size: 12px;
  gap: 8px;
}

.t25-scout-pdp .breadcrumb-item,
.t25-scout-pdp .breadcrumb-item a {
  color: var(--t25-gray-mid);
}

.t25-scout-pdp .t25-pdp-meta {
  font-family: var(--font-ui);
}

.t25-scout-pdp .t25-pdp-sku {
  font-size: 12px;
  color: var(--t25-gray-mid);
  text-transform: uppercase;
}

.t25-scout-pdp .productpricing-infoo {
  display: none !important;
}

.t25-scout-pdp .product-detail-price-row {
  margin-bottom: 24px !important;
}

.t25-scout-pdp .product-detail-price,
.t25-scout-pdp .product-detail-price small {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #111111;
}

.t25-scout-pdp .option-label {
  align-items: center;
  gap: 6px;
}

.t25-scout-pdp .option-label .blue-light {
  color: #111111;
  font-weight: 700 !important;
}

.t25-scout-pdp .colors-radio label {
  width: 32px;
  height: 32px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  background: white;
  cursor: pointer;
}

.t25-scout-pdp .colors-radio input:checked + label,
.t25-scout-pdp .colors-radio label:hover {
  border-color: #111111;
}

.t25-scout-pdp .colors-radio label img,
.t25-scout-pdp .colors-radio label #p-hex-color {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t25-scout-pdp .sizes-radio label.size-btn {
  border-radius: 4px !important;
}

.t25-scout-pdp #product_qty {
  margin-bottom: 12px !important;
}

.t25-scout-pdp #quantity-selector.qty-selector {
  width: fit-content;
  gap: 0 !important;
}

.t25-scout-pdp #quantity-selector .quantity-input-wrap {
  padding: 0;
}

.t25-scout-pdp #quantity-selector .qty-btn {
  background: white;
}

.t25-scout-pdp #add_cart.quantity-row {
  display: block;
}

.t25-scout-pdp #add_cart .row {
  margin: 0;
}

.t25-scout-pdp #add_cart .col-12 {
  padding: 0;
}

.t25-scout-pdp #add_cart .btn-add-cart-lg {
  border-radius: 4px !important;
}

.t25-scout-pdp .trust-badges i {
  font-size: 18px;
  color: #111111;
  line-height: 1;
}

.t25-scout-pdp .product-accordion {
  margin-top: 24px;
}

/* ====================================================
   MODAL LIGHTBOX
   ==================================================== */
.t25-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.t25-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.t25-modal-content {
  background: var(--t25-white);
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  transform: translateY(20px);
  transition: transform var(--transition-med);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.t25-modal-overlay.active .t25-modal-content {
  transform: translateY(0);
}
.t25-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--t25-gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.t25-modal-title {
  font-family: var(--font-heading);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--t25-navy);
}
.t25-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--t25-gray-dark);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t25-modal-close:hover {
  color: var(--t25-orange);
}
.t25-modal-body {
  padding: 24px;
}
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
}
.size-guide-table th {
  background: var(--t25-pale);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--t25-navy);
  padding: 12px;
  text-align: left;
}
.size-guide-table td {
  padding: 12px;
  border-bottom: 1px solid var(--t25-gray-light);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--t25-charcoal);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 991px) {
  :root {
    --section-gap: 56px;
    --section-gap-sm: 32px;
  }

  .navbar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .navbar-nav-center {
    display: none;
  }

  .navbar-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .navbar-icons > * {
    pointer-events: auto;
  }

  .hamburger-btn {
    display: flex;
    position: absolute;
    left: 0;
  }

  .promo-split {
    flex-direction: column;
  }

  .promo-image-side {
    height: 300px;
  }

  .promo-content-side {
    padding: 40px 32px;
  }

  .product-info {
    padding-left: 0;
    margin-top: 32px;
  }

  .filter-bar {
    top: 68px;
    overflow-x: auto;
  }

  .filter-bar-inner {
    flex-wrap: nowrap;
    min-width: max-content;
    padding: 0 4px;
  }
}

@media (max-width: 767px) {
  .announcement-bar {
    font-size: 9px;
    padding: 8px 10px;
    letter-spacing: 0.05em;
    line-height: 1.4;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 72px);
  }

  .section-title {
    font-size: clamp(28px, 8vw, 52px);
  }

  /* Collection Card Mobile Optimizations */
  .collection-card-overlay {
    padding: 16px;
  }
  .collection-card-label {
    display: none;
  }
  .collection-card-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .collection-card-link {
    font-size: 11px;
  }

  .promo-title {
    font-size: clamp(32px, 8vw, 64px);
  }

  .newsletter-title {
    font-size: clamp(28px, 8vw, 56px);
  }

  .product-card-title {
    font-size: 15px;
  }

  .product-card-price .price-current {
    font-size: 17px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn-primary-t25,
  .hero-ctas .btn-outline-t25 {
    text-align: center;
    justify-content: center;
  }

  .promo-stats {
    gap: 20px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
    border-radius: 8px;
  }

  .newsletter-input {
    border-radius: 4px;
  }

  .newsletter-submit {
    border-radius: 4px;
    padding: 14px;
  }

  .cart-drawer {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ====================================================
   UTILITY CLASSES
   ==================================================== */
.text-orange { color: #111111 !important; }
.text-navy { color: #111111 !important; }
.bg-navy { background-color: #111111 !important; }
.bg-orange { background-color: #111111 !important; }
.bg-pale { background-color: var(--t25-gray-pale) !important; }

.section-gap { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }
.section-gap-top { padding-top: var(--section-gap); }
.section-gap-bottom { padding-bottom: var(--section-gap); }

/* Page transitions */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Scrollbar Styling */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.35); }

/* ====================================================
   LARAVEL THEME COMPATIBILITY OVERRIDES
   Keep TopScouts UI classes ahead of the shared StoreFlo CSS.
   ==================================================== */
body {
  font-family: var(--font-body) !important;
}

.site-navbar,
.hero-section,
.collections-section,
.products-section,
.testimonials-section,
.newsletter-section,
.site-footer,
.cart-drawer,
.search-overlay {
  font-family: var(--font-body) !important;
}

.announcement-bar {
  font-family: var(--font-ui) !important;
}

.hero-title,
.hero-title .accent,
.section-title,
.shop-hero-title,
.product-detail-title,
.newsletter-title,
.footer-logo,
.product-card-title,
.testimonial-name {
  color: inherit;
  font-family: var(--font-heading) !important;
}

.hero-title,
.hero-title .accent,
.shop-hero-title,
.newsletter-title {
  color: var(--t25-white) !important;
}

.section-title,
.product-detail-title,
.product-card-title,
.testimonial-name {
  color: var(--t25-charcoal) !important;
}

.footer-logo,
.footer-col-title {
  color: var(--t25-white) !important;
}

.footer-col-title {
  font-family: var(--font-ui) !important;
}

.site-footer .btn-primary-t25 {
  font-family: var(--font-heading) !important;
}

.hero-eyebrow,
.section-eyebrow,
.nav-center-link,
.mobile-nav-link,
.btn-primary-t25,
.btn-outline-t25,
.btn-dark-t25,
.product-badge,
.product-card-quick-add,
.newsletter-submit,
.payment-icon {
  font-family: var(--font-ui) !important;
}

.btn-primary-t25,
.btn-outline-t25,
.btn-dark-t25,
.product-card-quick-add,
.collection-card-link,
.cart-checkout-btn,
.cart-continue-btn,
.newsletter-submit {
  text-decoration: none !important;
}

.btn-primary-t25:hover,
.btn-primary-t25:focus,
.btn-outline-t25:hover,
.btn-outline-t25:focus,
.btn-dark-t25:hover,
.btn-dark-t25:focus,
.product-card-quick-add:hover,
.product-card-quick-add:focus,
.collection-card:hover .collection-card-link,
.collection-card-link:hover,
.collection-card-link:focus,
.cart-checkout-btn:hover,
.cart-checkout-btn:focus,
.cart-continue-btn:hover,
.cart-continue-btn:focus,
.newsletter-submit:hover,
.newsletter-submit:focus {
  text-decoration: none !important;
}

/* TopScouts header replaces the older StoreFlo menu shell. */
.top-nav.navbar,
#header-nav {
  display: none !important;
}

#site-navbar .navbar-logo-img {
  max-height: 52px;
}

#site-navbar .nav-icon-btn {
  text-decoration: none !important;
}

#site-navbar .navbar-brand-logo,
#site-navbar .navbar-brand-logo:hover,
#site-navbar .navbar-brand-logo:focus,
#site-navbar .nav-center-link,
#site-navbar .nav-center-link:hover,
#site-navbar .nav-center-link:focus,
#site-navbar .nav-center-link.active,
#site-navbar .mobile-nav-link,
#site-navbar .mobile-nav-link:hover,
#site-navbar .mobile-nav-link:focus {
  text-decoration: none !important;
}

#site-navbar .nav-icon-btn:hover,
#site-navbar .nav-icon-btn:focus {
  text-decoration: none !important;
}

/* Restyle the existing Laravel offcanvas cart as the TopScouts mini cart. */
#cartcanvasRight.offcanvas {
  width: 100%;
  max-width: 584px;
  border-left: 0;
  box-shadow: -8px 0 32px rgba(0,0,0,0.18);
  font-family: var(--font-body) !important;
}

#cartcanvasRight .offcanvas-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

#cartcanvasRight #cartcanvasRightLabel {
  font-family: var(--font-heading) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--t25-charcoal) !important;
}

#cartcanvasRight .offcanvas-body {
  padding: 20px 24px;
}

#cartcanvasRight .offcanvas-body > .row {
  padding: 16px 0 !important;
  border-color: rgba(0,0,0,0.08) !important;
}

#cartcanvasRight .offcanvas-body img {
  aspect-ratio: 1;
  object-fit: cover;
}

#cartcanvasRight .product-name,
#cartcanvasRight a.fw-semibold {
  color: var(--t25-charcoal) !important;
  font-family: var(--font-body) !important;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none !important;
}

#cartcanvasRight .link-primary {
  color: var(--t25-gray-mid) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#cartcanvasRight .removecartitem {
  border-radius: 999px;
}

#cartcanvasRight .canvas-footer {
  padding: 20px 24px 28px !important;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06) !important;
}

#cartcanvasRight .canvas-footer .btn-primary {
  background: #111111 !important;
  border-color: #111111 !important;
  border-radius: 2px;
  color: var(--t25-white) !important;
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
}

#cartcanvasRight .canvas-footer .link-secondary {
  color: var(--t25-charcoal) !important;
  font-family: var(--font-ui) !important;
  text-decoration: none !important;
}

#cartcanvasRight .cart-drawer-footer .cart-checkout-btn,
#cartcanvasRight .cart-drawer-footer .cart-continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

#cartcanvasRight .cart-drawer-footer .cart-checkout-btn,
#cartcanvasRight .cart-drawer-footer .cart-checkout-btn:visited,
#cartcanvasRight .cart-drawer-footer .cart-checkout-btn:hover,
#cartcanvasRight .cart-drawer-footer .cart-checkout-btn:focus,
#cartcanvasRight .cart-drawer-footer .cart-checkout-btn:active {
  color: var(--t25-white) !important;
}

/* Category/search listing UI */
.topscouts-list-page {
  background: var(--t25-white);
}

.topscouts-list-page > section:not(.shop-hero),
.topscouts-list-page > .mb-lg-5,
.topscouts-list-page > .filter-bar + section {
  padding-top: 45px;
}

#ajax-facet-product-container .categorislist,
#ajax-facet-category-product .categorislist,
#ajax-facet-product-container .m-buttons,
#ajax-facet-category-product .m-buttons {
  display: none !important;
}

#ajax-facet-product-container #data-wrapper,
#ajax-facet-category-product #data-wrapper,
#ajax-facet-category-product #categories-list {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

#ajax-facet-product-container #data-wrapper,
#ajax-facet-category-product #data-wrapper,
#ajax-facet-category-product #categories-list {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.shop-breadcrumb {
  font-size: 12px;
  font-family: var(--font-ui);
  color: rgba(255,255,255,0.45);
}

.shop-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none !important;
}

.shop-breadcrumb li:last-child {
  color: rgba(255,255,255,0.7);
}

.filter-bar .t25-shell,
.shop-hero .t25-shell,
.products-section .t25-shell,
.topscouts-list-page > section .container-fluid {
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
}

.topscouts-list-page .bs-title {
  margin-bottom: 24px !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(30px, 4vw, 48px) !important;
  color: var(--t25-charcoal) !important;
  text-transform: uppercase;
}

.topscouts-list-page .bs-title span {
  background: #ffffff !important;
  padding: 0 !important;
}

.topscouts-list-page .row > [class*="col"] {
  margin-bottom: 28px;
}

#ajax-facet-product-container #wrapoo,
#ajax-facet-category-product #data-wrapper #wrapoo,
#ajax-facet-category-product #categories-list > .row.row-cols-2 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

@media (min-width: 992px) {
  .topscouts-list-page .row > [class*="col"]:has(> .product-cat),
  #ajax-facet-product-container #wrapoo > .col,
  #ajax-facet-category-product #data-wrapper #wrapoo > .col,
  #ajax-facet-category-product #categories-list > .row.row-cols-2 > .col {
    flex: 0 0 auto;
    width: 25%;
  }
}

.topscouts-list-page .row > [class*="col"]:has(> .product-cat),
#ajax-facet-product-container .row > [class*="col"]:has(> .product-cat),
#ajax-facet-category-product .row > [class*="col"]:has(> .product-cat) {
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: all var(--transition-med);
}

.topscouts-list-page .row > [class*="col"]:has(> .product-cat)::before,
#ajax-facet-product-container .row > [class*="col"]:has(> .product-cat)::before,
#ajax-facet-category-product .row > [class*="col"]:has(> .product-cat)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--t25-white);
  border-radius: var(--card-radius);
  box-shadow: none;
  transition: all var(--transition-med);
}

.topscouts-list-page .row > [class*="col"]:has(> .product-cat):hover,
#ajax-facet-product-container .row > [class*="col"]:has(> .product-cat):hover,
#ajax-facet-category-product .row > [class*="col"]:has(> .product-cat):hover {
  transform: translateY(-4px);
}

.topscouts-list-page .row > [class*="col"]:has(> .product-cat):hover::before,
#ajax-facet-product-container .row > [class*="col"]:has(> .product-cat):hover::before,
#ajax-facet-category-product .row > [class*="col"]:has(> .product-cat):hover::before {
  box-shadow: var(--shadow-card-hover);
}

.topscouts-list-page .row > [class*="col"]:has(> .product-cat) > *,
#ajax-facet-product-container .row > [class*="col"]:has(> .product-cat) > *,
#ajax-facet-category-product .row > [class*="col"]:has(> .product-cat) > * {
  position: relative;
  z-index: 1;
}

.topscouts-list-page .product-cat,
#ajax-facet-product-container .product-cat,
#ajax-facet-category-product .product-cat {
  position: relative;
  display: block;
  order: 1;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 0 !important;
  border: 0 !important;
  border-radius: var(--card-radius) var(--card-radius) 0 0 !important;
  background: var(--t25-gray-pale);
  box-shadow: none !important;
  transform: none;
  transition: none;
}

.topscouts-list-page .product-cat img,
#ajax-facet-product-container .product-cat img,
#ajax-facet-category-product .product-cat img {
  width: 100%;
  height: 100%;
  max-height: none !important;
  object-fit: cover;
  border-radius: 0 !important;
  transform: scale(1);
  transition: transform var(--transition-slow);
}

.topscouts-list-page .product-cat::before,
#ajax-facet-product-container .product-cat::before,
#ajax-facet-category-product .product-cat::before {
  content: none;
}

.topscouts-list-page .product-cat::after,
#ajax-facet-product-container .product-cat::after,
#ajax-facet-category-product .product-cat::after {
  content: "View Details  \2192";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.9);
  color: var(--t25-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  opacity: 1;
  transform: translateY(100%);
  transition: transform var(--transition-fast);
}

.topscouts-list-page .row > [class*="col"]:has(> .product-cat):hover .product-cat img,
#ajax-facet-product-container .row > [class*="col"]:has(> .product-cat):hover .product-cat img,
#ajax-facet-category-product .row > [class*="col"]:has(> .product-cat):hover .product-cat img {
  transform: scale(1.05);
}

.topscouts-list-page .row > [class*="col"]:has(> .product-cat):hover .product-cat::after,
#ajax-facet-product-container .row > [class*="col"]:has(> .product-cat):hover .product-cat::after,
#ajax-facet-category-product .row > [class*="col"]:has(> .product-cat):hover .product-cat::after {
  transform: translateY(0);
}

.topscouts-list-page .product-title,
#ajax-facet-product-container .product-title,
#ajax-facet-category-product .product-title {
  order: 2;
  margin: 0 0 6px !important;
  padding: 16px 16px 0;
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.topscouts-list-page .product-title a,
#ajax-facet-product-container .product-title a,
#ajax-facet-category-product .product-title a {
  color: #111111 !important;
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  text-transform: uppercase;
}

.topscouts-list-page .product-title + .font-13:not(.product_sku_no),
#ajax-facet-product-container .product-title + .font-13:not(.product_sku_no),
#ajax-facet-category-product .product-title + .font-13:not(.product_sku_no) {
  order: 4;
  color: var(--t25-charcoal);
  font-family: var(--font-heading) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.1;
  text-align: left;
  padding: 0 16px;
  margin: 0 !important;
  padding-bottom: 20px;
}

.topscouts-list-page .product-title + .font-13:not(.product_sku_no):last-child,
#ajax-facet-product-container .product-title + .font-13:not(.product_sku_no):last-child,
#ajax-facet-category-product .product-title + .font-13:not(.product_sku_no):last-child {
  padding-bottom: 20px;
  margin-bottom: 0;
}

.topscouts-list-page .product_sku_no,
#ajax-facet-product-container .product_sku_no,
#ajax-facet-category-product .product_sku_no,
#ajax-facet-product-container .product-title + .font-13 + .font-13,
#ajax-facet-category-product .product-title + .font-13 + .font-13 {
  order: 3;
  color: var(--t25-gray-mid);
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-align: left;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 0 !important;
  margin: 0px 0 10px !important;
  text-transform: uppercase;
}

.topscouts-list-page .btn.btn-primary {
  background: #111111 !important;
  border-color: #111111 !important;
  border-radius: 2px !important;
  color: var(--t25-white) !important;
  font-family: var(--font-ui) !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

/* Product detail: map the live Vue selectors to the TopScouts static controls. */
#buttons-main-section {
  padding: 48px 0 80px;
}

#buttons-main-section > section {
  margin-top: 0 !important;
}

#productImageCarousel {
  top: 88px;
}

#productImageCarousel .product-main-carousel-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border: 0 !important;
  border-radius: 4px !important;
  background: var(--t25-gray-pale) !important;
  transition: transform var(--transition-slow);
}

#productImageCarousel .product-main-carousel-image:hover {
  transform: scale(1.04);
}

#thumbnail-container {
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

#thumbnail-container .carousel-indicators.imgthumbs {
  position: static;
  margin: 0 !important;
  display: flex;
  gap: 8px !important;
}

#thumbnail-container .carousel-indicators.imgthumbs button {
width: 72px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--transition-fast);
    background: var(--t25-gray-pale);
}

#thumbnail-container .carousel-indicators.imgthumbs button.active,
#thumbnail-container .carousel-indicators.imgthumbs button:hover {
  border-color: #111111 !important;
}
div#featured_option img {
    margin-left: auto;
    margin-right: auto;
}
#thumbnail-container .carousel-indicators.imgthumbs button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0 !important;
}

#app #product_color .font-13,
#app #product_size .font-13,
#app #product_qty .quantity-label {
  font-family: var(--font-ui) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t25-charcoal) !important;
  margin-bottom: 10px;
}

#app #product_color .blue-light,
#app #product_size .text-info,
#app #product_qty .quantity-min-note {
  color: var(--t25-gray-mid) !important;
  font-weight: 400 !important;
  letter-spacing: 0;
  text-transform: none;
}

#app #color-swatches .colors-radio label {
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  border: 1.5px solid rgba(0,0,0,0.18) !important;
  border-radius: 1px !important;
  background: var(--t25-white);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

#app #color-swatches .colors-radio label:hover,
#app #color-swatches .colors-radio .color-radio:checked + label {
  border-color: #111111 !important;
  box-shadow: 0 0 0 2px #111111 !important;
  transform: translateY(-1px);
}

#app #color-swatches .colors-radio label img,
#app #color-swatches .colors-radio label #p-hex-color {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px !important;
}

#app #size-swatches {
  gap: 8px !important;
}

#app #size-swatches .sizes-radio label {
  min-width: 52px !important;
  width: auto !important;
  height: 44px !important;
  padding: 0 14px !important;
  border: 1.5px solid rgba(0,0,0,0.18) !important;
  border-radius: 4px !important;
  background: var(--t25-white) !important;
  color: var(--t25-charcoal) !important;
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

#app #size-swatches .sizes-radio label:hover,
#app #size-swatches .sizes-radio .size-radio:checked + label {
  border-color: #111111 !important;
  background: #111111 !important;
  color: var(--t25-white) !important;
}

#app #size-swatches .sizes-radio .size-radio:disabled + label {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

#app #quantity-selector {
  gap: 0 !important;
  align-items: stretch !important;
}

#app #product_qty .quantity-btn {
  width: 44px !important;
  height: 54px !important;
  border: 1.5px solid rgba(0,0,0,0.15) !important;
  border-radius: 0 !important;
  background: var(--t25-white) !important;
  color: var(--t25-charcoal) !important;
}

#app #product_qty .quantity-btn:hover {
  background: #111111 !important;
  color: var(--t25-white) !important;
}
a.product-card:hover {
    text-decoration: none;
}
#app #product_qty .quantity-input-wrap {
  width: 56px !important;
}

#app #product_qty .quantity-input {
  height: 100% !important;
  border: 1.5px solid rgba(0, 0, 0, 0) !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 !important;
  color: var(--t25-charcoal) !important;
  font-family: var(--font-ui) !important;
}

#app #add_cart .add-to-cart {
  min-height: 56px;
  border-radius: 4px !important;
  background: #111111 !important;
  border-color: #111111 !important;
  color: var(--t25-white) !important;
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .topscouts-list-page > section:not(.shop-hero),
  .topscouts-list-page > .mb-lg-5 {
    padding-top: 44px;
  }
#buttons-main-section {
    padding: 25px 0 0px;
}
.product-info{
    margin-top: 0;
}
  .topscouts-list-page .product-title,
  #ajax-facet-product-container .product-title,
  #ajax-facet-category-product .product-title {
    font-size: 16px !important;
  }

  .topscouts-list-page .product-cat::after,
  #ajax-facet-product-container .product-cat::after,
  #ajax-facet-category-product .product-cat::after {
    display: none;
  }
}

@media (max-width: 767px) {
  #cartcanvasRight.offcanvas {
    max-width: 100%;
  }

  #site-navbar .navbar-logo-img {
    max-height: 44px;
  }
}

.orderdetail-theme-scope a.tbl-btn.btn-primary {
  width: 120px !important;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  line-height: 1.2;
}
