/* ================================================================
   WSU BrandShop – Storefront Styles
   Aligned to The Vanguard Brand & Identity Guide (2025)
   Primary: Ochre Oxide #551516 | Accent: Ochre Yellow #CB892C
   ================================================================ */

/* ══════════════════════════════════════════
   Header — lean overrides (Phoenix theme owns layout)
══════════════════════════════════════════ */
/* Badge numbers above coloured dots */
.ecommerce-topbar .navbar-nav-icons .nav-link.icon-indicator {
  position: relative;
  overflow: visible;
}
.ecommerce-topbar .icon-indicator-number {
  z-index: 2;
  pointer-events: none;
  line-height: 1;
  min-width: 1rem;
  width: auto;
  padding: 0 2px;
  box-sizing: border-box;
}

.ecommerce-topbar .navbar-logo,
.ecommerce-topbar img {
  max-height: 42px;
}

/* Wishlist hearts */
.btn-wish,
.btn-wish.btn-wish-primary {
  color: var(--wsu-wish, #CB892C) !important;
  border-color: var(--wsu-wish, #CB892C) !important;
}
/* Keep wishlist control above Bootstrap stretched-link overlay */
.product-card .btn-wish {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  pointer-events: auto;
  cursor: pointer;
}
.product-card .stretched-link::after {
  z-index: 1;
}
.btn-wish:hover,
.btn-wish:focus,
.btn-wish.btn-wish-primary:hover,
.btn-wish.btn-wish-primary:focus,
.btn-wish.btn-wish-primary.active {
  background-color: var(--wsu-wish, #CB892C) !important;
  border-color: var(--wsu-wish, #CB892C) !important;
  color: #fff !important;
}
.ecommerce-topbar a[title="Wishlist"] .feather,
.ecommerce-topbar a[href*="wishlist.php"] [data-feather="heart"],
.ecommerce-topbar a[href*="wishlist.php"] svg {
  color: var(--wsu-wish, #CB892C) !important;
  stroke: var(--wsu-wish, #CB892C) !important;
}
.text-wish,
.fa-heart.text-danger,
.fa-heart.text-wish,
.product-card .fa-heart,
a[href*="wishlist"] .fa-heart {
  color: var(--wsu-wish, #CB892C) !important;
}

/* Topbar width follows homepage banner container */
.ecommerce-topbar {
  width: 100%;
}

.category-dropdown-menu {
  min-width: min(720px, 92vw);
}

/* Brand hover on icon strip (keep Phoenix size/spacing) */
.icon-nav-item .icon-container .uil {
  line-height: 1;
}
.icon-nav-item:hover .icon-container {
  background: var(--wsu-primary, var(--phoenix-primary)) !important;
  color: #fff !important;
}
.icon-nav-item:hover .icon-container .uil,
.icon-nav-item:hover .icon-container i {
  color: #fff !important;
}

/* Even gap under Deals / category icon strip */
.wsu-cat-icon-wrap {
  --wsu-nav-gap: 1.25rem;
  padding-top: var(--wsu-nav-gap);
  padding-bottom: var(--wsu-nav-gap);
  position: relative;
  z-index: 2;
}

/* ── Legacy topbar helpers (kept for other pages if referenced) ── */
.wsu-full-row {
  width: 100%;
  max-width: 100%;
  padding-left:  clamp(0.75rem, 3vw, 2.5rem);
  padding-right: clamp(0.75rem, 3vw, 2.5rem);
  margin: 0;
  box-sizing: border-box;
}

.wsu-topbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 6px 0;
}
.wsu-topbar-logo   { flex-shrink: 0; }
.wsu-topbar-search { flex: 1 1 auto; min-width: 0; margin-left: clamp(0.75rem, 3vw, 2rem); }
.wsu-topbar-icons  { flex-shrink: 0; }

.wsu-search-cat-row { min-height: 42px; }
.wsu-search-cat-row .ecommerce-search-box .search-input {
  min-height: 42px;
}

/* 4-line categories icon (topbar) */
.wsu-menu-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 18px;
  height: 16px;
}
.wsu-menu-lines span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--wsu-primary);
  transition: background 0.2s;
}
.cat-hover-btn--icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0 !important;
  justify-content: center;
  align-items: center;
  border-radius: 8px !important;
}
.cat-hover-dropdown--topbar .category-dropdown-menu {
  left: 0;
}
.cat-hover-dropdown:hover .cat-hover-btn--icon .wsu-menu-lines span,
.cat-hover-dropdown:focus-within .cat-hover-btn--icon .wsu-menu-lines span {
  background: #fff;
}

/* Mobile: stack search below logo+icons */
@media (max-width: 767px) {
  .wsu-topbar-inner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 0;
  }
  .wsu-topbar-search {
    order: 3;
    flex: 0 0 100%;
    margin-left: 0;
    padding-bottom: 6px;
  }
  .wsu-topbar-search .search-box { width: 100%; }
  .wsu-topbar-icons { order: 2; }
  .wsu-topbar-logo  { order: 1; }
}
@media (max-width: 480px) {
  .wsu-topbar-inner { gap: 4px; }
}

/* ── Search box — self-contained fallback (works even without Phoenix CSS) ── */
.ecommerce-search-box {
  position: relative;
}
.ecommerce-search-box form.position-relative {
  position: relative;
}
.ecommerce-search-box .search-box-icon {
  position: absolute;
  top: 50%;
  left: 0.85rem;
  right: auto;
  transform: translateY(-50%);
  color: #9a9a9a;
  font-size: 0.9rem;
  line-height: 1;
  pointer-events: none;
  z-index: 4;
  width: 1rem;
  text-align: center;
}
/* Hide native clear control so it doesn't stack on the AI button */
.ecommerce-search-box input[type="search"]::-webkit-search-decoration,
.ecommerce-search-box input[type="search"]::-webkit-search-cancel-button,
.ecommerce-search-box input[type="search"]::-webkit-search-results-button,
.ecommerce-search-box input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}
.ecommerce-search-box .search-input {
  padding-left: 2.35rem;
  padding-right: 2.6rem;
  height: 40px;
  border-radius: 980px;
  border: 1.5px solid var(--bs-border-color, #dee2e6);
  background: var(--bs-body-tertiary-bg, #f5f5f5);
  font-size: 0.875rem;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.ecommerce-search-box .search-input:focus {
  border-color: rgba(85,21,22,0.35);
  background: var(--bs-body-bg, #fff);
  box-shadow: 0 0 0 3px rgba(85,21,22,0.08);
  outline: none;
}
.wsu-ai-search-btn {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  left: auto;
  transform: translateY(-50%);
  z-index: 5;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #551516;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}
.wsu-ai-search-btn .wsu-ai-search-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.wsu-ai-search-btn:hover,
.wsu-ai-search-btn:focus-visible {
  background: rgba(85, 21, 22, 0.08);
  outline: none;
}
.wsu-search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 1050;
  max-height: min(70vh, 28rem);
  overflow: auto;
  padding: 0.65rem 0.75rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--bs-border-color, #dee2e6);
  background: var(--bs-body-bg, #fff);
  text-align: left;
}
.wsu-search-suggest__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bs-secondary-color, #6c757d);
  margin-bottom: 0.35rem;
}
.wsu-search-suggest__ai-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bs-secondary-color, #6c757d);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.wsu-ai-search-icon-inline {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 3l1.2 4.2L17.5 8.5 13.2 9.8 12 14l-1.2-4.2L6.5 8.5l4.3-1.3L12 3z'/%3E%3Cpath fill='%23000' d='M18.5 13l.7 2.3 2.3.7-2.3.7-.7 2.3-.7-2.3-2.3-.7 2.3-.7.7-2.3z'/%3E%3Cpath fill='%23000' d='M6.2 14.2l.55 1.7 1.7.55-1.7.55-.55 1.7-.55-1.7-1.7-.55 1.7-.55.55-1.7z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 3l1.2 4.2L17.5 8.5 13.2 9.8 12 14l-1.2-4.2L6.5 8.5l4.3-1.3L12 3z'/%3E%3Cpath fill='%23000' d='M18.5 13l.7 2.3 2.3.7-2.3.7-.7 2.3-.7-2.3-2.3-.7 2.3-.7.7-2.3z'/%3E%3Cpath fill='%23000' d='M6.2 14.2l.55 1.7 1.7.55-1.7.55-.55 1.7-.55-1.7-1.7-.55 1.7-.55.55-1.7z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.wsu-search-suggest__ai {
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--bs-border-color, #eee);
}
.wsu-search-suggest__tip,
.wsu-search-suggest__err,
.wsu-search-suggest__empty,
.wsu-search-suggest__loading {
  font-size: 0.8125rem;
  color: var(--bs-body-color, #333);
  margin: 0 0 0.5rem;
}
.wsu-search-suggest__err { color: #a33; }
.wsu-search-chip {
  display: inline-block;
  margin: 0 0.35rem 0.35rem 0;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--bs-border-color, #dee2e6);
  background: var(--bs-body-tertiary-bg, #f5f5f5);
  font-size: 0.75rem;
  color: inherit;
  cursor: pointer;
}
.wsu-search-chip--primary {
  border-color: rgba(85, 21, 22, 0.35);
  background: rgba(85, 21, 22, 0.08);
  color: #551516;
  font-weight: 600;
}
.wsu-search-suggest__section { margin-bottom: 0.65rem; }
.wsu-search-suggest__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0.35rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
  font-size: 0.875rem;
}
.wsu-search-suggest__row:hover,
.wsu-search-suggest__row:focus-visible {
  background: var(--bs-body-tertiary-bg, #f5f5f5);
  outline: none;
}
.wsu-search-suggest__name { font-weight: 600; }
.wsu-search-suggest__price {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--bs-secondary-color, #6c757d);
}
.wsu-search-suggest__all {
  display: block;
  margin-top: 0.25rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--bs-border-color, #eee);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #551516;
  text-decoration: none;
}
[data-bs-theme="dark"] .wsu-search-suggest {
  background: #1b1b1b;
  border-color: rgba(255,255,255,0.12);
}
[data-bs-theme="dark"] .wsu-ai-search-btn { color: #e8b4b4; }
[data-bs-theme="dark"] .wsu-search-chip--primary {
  color: #e8b4b4;
  background: rgba(232, 180, 180, 0.12);
}
[data-bs-theme="dark"] .ecommerce-search-box .search-input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #e0e0e0;
}
[data-bs-theme="dark"] .ecommerce-search-box .search-input:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(203,137,44,0.5);
  box-shadow: 0 0 0 3px rgba(203,137,44,0.12);
}
[data-bs-theme="dark"] .ecommerce-search-box .search-box-icon {
  color: #777;
}

/* ── Boxicons global sizing (line icons need slightly larger em to match visual weight) ── */
[class^="bx-"], [class*=" bx-"] { vertical-align: middle; }
.bx { font-size: 1.1em; }

/* ── Custom Properties ── */
:root {
  --wsu-primary:      #551516;   /* Ochre Oxide – masterbrand dark maroon */
  --wsu-primary-dark: #3a0e0f;   /* Deeper maroon for hover/gradients */
  --wsu-amber:        #CB892C;   /* Ochre Yellow – primary CTA accent */
  --wsu-amber-dark:   #a06b1e;
  --wsu-wish:         #CB892C;   /* Wishlist heart accent (Ochre Yellow) */
  --wsu-orange:       #BC5027;   /* Ochre Amber – burnt orange */
  --wsu-purple:       #9773A4;   /* Ochre iSinuka */
  --wsu-earth:        #496049;   /* Ochre Earth – dark green */
  --wsu-red:          #831E1E;   /* Ochre Red */
  --wsu-dune:         #B45649;   /* Ochre Dune – salmon */
  --wsu-stone:        #827144;   /* Ochre Stone – olive */
  --wsu-light:        #E2E7E8;   /* Ochre iKota – off-white */
  --wsu-text:         #1a1a1a;
}

/* ── Typography — Phoenix template (Nunito Sans) ── */
:root {
  --font-sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-mono: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--phoenix-font-sans-serif, var(--font-sans));
  font-size: var(--phoenix-body-font-size, 1rem);
  line-height: var(--phoenix-body-line-height, 1.5);
  letter-spacing: normal;
  color: var(--wsu-text);
}

/* Let Phoenix heading sizes win; keep brand color only where we set it */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--phoenix-font-sans-serif, var(--font-sans));
}

/* ── Override Bootstrap/Phoenix primary → Ochre Oxide ── */
.btn-primary {
  background-color: var(--wsu-primary) !important;
  border-color: var(--wsu-primary) !important;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: var(--wsu-primary-dark) !important;
  border-color: var(--wsu-primary-dark) !important;
}
.text-primary { color: var(--wsu-primary) !important; }
.bg-primary   { background-color: var(--wsu-primary) !important; }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.wsu-hero-section {
  background-color: var(--wsu-primary);
  position: relative;
  overflow: hidden;
}

/* Diagonal geometric accents — inspired by the Vanguard graphic language */
.wsu-hero-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg,
    rgba(203,137,44,0.18) 0%,
    rgba(188,80,39,0.12) 35%,
    transparent 65%);
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 1;
}
.wsu-hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 360px;
  height: 360px;
  background: linear-gradient(45deg,
    rgba(151,115,164,0.12) 0%,
    transparent 60%);
  transform: rotate(20deg);
  pointer-events: none;
  z-index: 1;
}

.wsu-hero-slide {
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: 70px 0;
  position: relative;
  z-index: 2;
}
.wsu-hero-slide.has-image {
  background-size: cover;
  background-position: center;
}
.wsu-hero-slide.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(60,10,12,0.88) 0%,
    rgba(60,10,12,0.55) 55%,
    transparent 100%);
  z-index: 0;
}
.wsu-hero-content { position: relative; z-index: 3; }

/* Large decorative background icon per slide */
.wsu-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.wsu-hero-deco i {
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  font-size: 22rem;
  color: #fff;
  opacity: 0.055;
  transform: rotate(-8deg);
  line-height: 1;
}

/* Dark overlay for slides that use a real background image */
.wsu-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(40,8,8,0.88) 0%, rgba(40,8,8,0.55) 55%, transparent 100%);
  z-index: 1;
}

/* Swiper arrows styled for the hero */
.wsu-hero-swiper .swiper-button-prev,
.wsu-hero-swiper .swiper-button-next {
  color: #fff;
  background: rgba(0,0,0,0.28);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.wsu-hero-swiper .swiper-button-prev:hover,
.wsu-hero-swiper .swiper-button-next:hover { background: rgba(203,137,44,0.7); }
.wsu-hero-swiper .swiper-button-prev::after,
.wsu-hero-swiper .swiper-button-next::after { font-size: 1rem; font-weight: 800; }
.wsu-hero-swiper .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.45);
  opacity: 1;
}
.wsu-hero-swiper .swiper-pagination-bullet-active {
  background: var(--wsu-amber);
  width: 26px;
  border-radius: 5px;
  transition: width 0.25s;
}

/* Amber badge variant (used on green/navy slides) */
.wsu-badge-amber {
  background: var(--wsu-amber) !important;
}

/* Kicker / badge */
.wsu-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(203,137,44,0.18);
  border: 1px solid rgba(203,137,44,0.5);
  color: #CB892C;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.wsu-hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
}
.wsu-hero-title .highlight { color: var(--wsu-amber); }

.wsu-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  letter-spacing: -0.005em;
  max-width: 480px;
  margin-bottom: 28px;
}

/* CTA Buttons — Apple-style pill */
.wsu-hero-btn {
  display: inline-flex;
  align-items: center;
  background: var(--wsu-amber);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 980px;
  padding: 11px 26px;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  white-space: nowrap;
}
.wsu-hero-btn:hover {
  background: var(--wsu-amber-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(203,137,44,0.38);
}
.wsu-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.38);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  border-radius: 980px;
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.wsu-hero-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* Trust bar */
.wsu-hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.wsu-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.wsu-hero-trust-item i { color: var(--wsu-amber); }

/* Decorative right-column graphic */
.wsu-hero-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.wsu-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(203,137,44,0.25);
}
.wsu-hero-ring-1 { width: 280px; height: 280px; }
.wsu-hero-ring-2 {
  width: 200px; height: 200px;
  background: rgba(203,137,44,0.06);
  border: 1px solid rgba(203,137,44,0.15);
}
.wsu-hero-icon-wrap {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(203,137,44,0.12);
  border: 2px solid rgba(203,137,44,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--wsu-amber);
}

/* Floating badge chips */
.wsu-hero-float {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 7px 13px;
  font-size: 0.73rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: wsuFloat 3s ease-in-out infinite;
}
.wsu-float-1 { top: 25px;   right: 10px;  animation-delay: 0s; }
.wsu-float-2 { bottom: 50px; left: -5px;  animation-delay: 1.1s; }
.wsu-float-3 { bottom: 110px; right: 5px; animation-delay: 2.2s; }
.wsu-hero-float i { color: var(--wsu-amber); }

@keyframes wsuFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Graphic colour variants per slide theme ── */

/* Slide 3: Stationery — green */
.wsu-graphic-green .wsu-hero-ring {
  border-color: rgba(100,220,100,0.22);
}
.wsu-graphic-green .wsu-hero-ring-2 {
  background: rgba(100,220,100,0.06);
  border-color: rgba(100,220,100,0.14);
}
.wsu-graphic-green .wsu-hero-icon-wrap {
  background: rgba(100,220,100,0.14);
  border-color: rgba(100,220,100,0.32);
  color: #7ed87e;
}
.wsu-graphic-green .wsu-hero-float i { color: #7ed87e; }

/* Slide 4: Gifts — gold/amber warm */
.wsu-graphic-gold .wsu-hero-ring {
  border-color: rgba(255,200,60,0.26);
}
.wsu-graphic-gold .wsu-hero-ring-2 {
  background: rgba(255,200,60,0.07);
  border-color: rgba(255,200,60,0.16);
}
.wsu-graphic-gold .wsu-hero-icon-wrap {
  background: rgba(255,200,60,0.14);
  border-color: rgba(255,200,60,0.35);
  color: #f5c842;
}
.wsu-graphic-gold .wsu-hero-float i { color: #f5c842; }

/* Slide 5: Sports — blue/navy */
.wsu-graphic-blue .wsu-hero-ring {
  border-color: rgba(100,160,255,0.24);
}
.wsu-graphic-blue .wsu-hero-ring-2 {
  background: rgba(100,160,255,0.06);
  border-color: rgba(100,160,255,0.14);
}
.wsu-graphic-blue .wsu-hero-icon-wrap {
  background: rgba(100,160,255,0.14);
  border-color: rgba(100,160,255,0.32);
  color: #7eb8ff;
}
.wsu-graphic-blue .wsu-hero-float i { color: #7eb8ff; }

/* ══════════════════════════════════════════
   FEATURE STRIP
══════════════════════════════════════════ */
.wsu-feature-strip {
  border-top: 3px solid var(--wsu-amber);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: var(--bs-body-bg, #fff);
}
.wsu-feature-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  border-right: 1px solid rgba(0,0,0,0.07);
  height: 100%;
}
.wsu-feature-item:last-child { border-right: none; }
.wsu-feature-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(85,21,22,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: var(--wsu-primary);
  flex-shrink: 0;
}
.wsu-feature-title { font-family: var(--font-sans); font-weight: 600; font-size: 0.84rem; line-height: 1.25; letter-spacing: -0.01em; color: var(--wsu-text); }
.wsu-feature-sub   { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 400; color: #888; margin-top: 2px; }

/* ══════════════════════════════════════════
   SECTION HEADINGS
══════════════════════════════════════════ */
.wsu-section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wsu-primary);
  margin-bottom: 0;
  font-family: var(--font-sans);
}
.wsu-section-heading::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--wsu-amber);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════ */
.wsu-product-card {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.wsu-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(85,21,22,0.12) !important;
}
.wsu-product-card .product-img-wrap {
  overflow: hidden;
  background: var(--wsu-light);
}
.wsu-product-card .product-img-wrap img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  transition: transform 0.3s;
}
.wsu-product-card:hover .product-img-wrap img { transform: scale(1.05); }

.wsu-product-card .product-name {
  font-family: var(--phoenix-font-sans-serif, var(--font-sans));
  font-size: 0.8rem; /* Phoenix h6 */
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
  color: var(--wsu-text);
  transition: color 0.15s ease;
}
.wsu-product-card:hover .product-name,
.wsu-product-card:hover a,
.wsu-product-card a:hover {
  color: var(--wsu-wish, #CB892C) !important;
}

/* Phoenix product cards — hover highlight + hyperlink */
.product-card .product-name,
.product-card a.stretched-link,
.product-card a {
  transition: color 0.15s ease;
}
.product-card:hover .product-name,
.product-card:hover a.stretched-link,
.product-card:hover a:not(.btn-wish),
.product-card a.stretched-link:hover,
.product-card a:not(.btn-wish):hover {
  color: var(--wsu-wish, #CB892C) !important;
}
.wsu-product-card .product-price {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--wsu-primary);
}
.wsu-product-card .product-compare {
  font-size: 0.78rem;
  font-weight: 400;
  text-decoration: line-through;
  color: #bbb;
}
.wsu-product-card .product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--wsu-orange);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 980px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wsu-product-card .btn-add-cart {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--wsu-primary);
  color: #fff;
  border: none;
  border-radius: 980px;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-top: 10px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
}
.wsu-product-card .btn-add-cart:hover {
  background: var(--wsu-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
   SWIPER / SLIDER OVERRIDES
══════════════════════════════════════════ */
.wsu-slider .swiper-button-prev,
.wsu-slider .swiper-button-next {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(85,21,22,0.15);
  color: var(--wsu-primary);
  border: 1px solid rgba(85,21,22,0.1);
}
.wsu-slider .swiper-button-prev::after,
.wsu-slider .swiper-button-next::after { font-size: 0.82rem; font-weight: 900; }
.wsu-slider .swiper-button-disabled { opacity: 0.25; }

/* ══════════════════════════════════════════
   PROMO CARDS
══════════════════════════════════════════ */
.wsu-promo-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: center;
  padding: 32px 30px;
  color: #fff;
}
/* Diagonal light stripe overlay — inspired by Vanguard graphic language */
.wsu-promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.06) 0%,
    transparent 45%,
    rgba(255,255,255,0.03) 100%);
  pointer-events: none;
}
.wsu-promo-primary {
  background: linear-gradient(135deg, var(--wsu-primary) 0%, var(--wsu-primary-dark) 100%);
}
.wsu-promo-amber {
  background: linear-gradient(135deg, var(--wsu-orange) 0%, #7a3015 100%);
}
.wsu-promo-card .bg-icon {
  position: absolute;
  right: 24px;
  top: 50%; transform: translateY(-50%);
  font-size: 6rem;
  opacity: 0.07;
  color: #fff;
  pointer-events: none;
}
.wsu-promo-card .promo-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}
.wsu-promo-card .promo-text {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-bottom: 18px;
  line-height: 1.6;
}
.wsu-promo-code {
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  padding: 1px 7px;
  color: var(--wsu-amber);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.wsu-promo-btn {
  display: inline-block;
  background: var(--wsu-amber);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
}
.wsu-promo-btn:hover {
  background: var(--wsu-amber-dark);
  color: #fff;
  transform: translateY(-1px);
}
.wsu-promo-btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  padding: 8px 22px;
  font-size: 0.88rem;
  background: transparent;
  text-decoration: none;
  transition: all 0.2s;
}
.wsu-promo-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.wsu-cta-section {
  background: var(--wsu-primary);
  border-radius: 10px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
/* Diagonal stripe — Vanguard graphic device */
.wsu-cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: linear-gradient(135deg, rgba(203,137,44,0.15) 0%, transparent 60%);
  transform: rotate(-20deg);
  pointer-events: none;
}
.wsu-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: linear-gradient(45deg, rgba(151,115,164,0.1) 0%, transparent 55%);
  transform: rotate(15deg);
  pointer-events: none;
}
.wsu-cta-section .position-relative { z-index: 1; }
.wsu-cta-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--font-sans);
}
.wsu-cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  margin-bottom: 28px;
}
.wsu-cta-stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--wsu-amber);
  line-height: 1;
  font-family: var(--font-sans);
}
.wsu-cta-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 3px; }

/* Category icon strip uses Phoenix theme classes (.icon-nav-item) — no overrides */

/* ══════════════════════════════════════════
   CATEGORY DROPDOWN MENU
══════════════════════════════════════════ */
.category-dropdown-menu {
  min-width: 700px;
  padding: 0 !important;
}
.category-dropdown-menu .cat-group-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--wsu-primary);
  padding: 6px 10px 4px;
  border-bottom: 1px solid rgba(85,21,22,0.1);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.category-dropdown-menu .cat-group-title i {
  color: var(--wsu-amber);
  font-size: 0.85rem;
}
.category-dropdown-menu .cat-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.82rem;
  color: var(--wsu-text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
}
.category-dropdown-menu .cat-link:hover {
  background: rgba(85,21,22,0.07);
  color: var(--wsu-primary);
}
.category-dropdown-menu .cat-link i {
  width: 18px;
  text-align: center;
  color: var(--wsu-amber);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.category-dropdown-menu .cat-view-all {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--wsu-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.83rem;
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 0 0 6px 6px;
}
.category-dropdown-menu .cat-view-all:hover { background: var(--wsu-primary-dark); }

/* ══════════════════════════════════════════
   CATEGORY HOVER DROPDOWN
══════════════════════════════════════════ */

.cat-hover-dropdown { position: relative; }

.cat-hover-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wsu-primary) !important;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 7px 14px !important;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  background: rgba(85,21,22,0.06);
}
.cat-hover-btn .fas.fa-bars { color: var(--wsu-primary); }
.cat-hover-dropdown:hover .cat-hover-btn,
.cat-hover-dropdown:focus-within .cat-hover-btn {
  background: var(--wsu-primary);
  color: #fff !important;
  border-color: var(--wsu-primary);
}
.cat-hover-dropdown:hover .cat-hover-btn .fas,
.cat-hover-dropdown:focus-within .cat-hover-btn .fas {
  color: #fff !important;
}

/* Show dropdown on hover */
.cat-hover-dropdown .category-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1080;
  margin-top: 2px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(85,21,22,0.15), 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid rgba(85,21,22,0.1) !important;
  animation: catDropIn 0.18s ease;
}
.cat-hover-dropdown:hover .category-dropdown-menu,
.cat-hover-dropdown:focus-within .category-dropdown-menu {
  display: block;
}

@keyframes catDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .cat-hover-dropdown .category-dropdown-menu { min-width: calc(100vw - 20px) !important; left: 0 !important; right: auto !important; }
  .cat-hover-dropdown--topbar .category-dropdown-menu { max-width: calc(100vw - 24px); }
  .category-dropdown-menu .card { min-width: unset !important; }
  /* On touch devices, keep click behaviour working via Bootstrap fallback */
  .cat-hover-dropdown .category-dropdown-menu.show { display: block !important; }
}

/* ══════════════════════════════════════════
   PROMO BACKGROUND-IMAGE CAROUSEL
══════════════════════════════════════════ */
.wsu-bg-carousel { position: relative; overflow: hidden; }
.wsu-bg-swiper   { width: 100%; }

.wsu-bg-slide {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Large decorative icon */
.wsu-bg-slide-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.wsu-bg-slide-deco i {
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  font-size: 20rem;
  color: #fff;
  opacity: 0.06;
  transform: rotate(-8deg);
  line-height: 1;
}

.wsu-bg-slide-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
  color: #fff;
  max-width: 580px;
}

/* Badge */
.wsu-bg-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(4px);
}
.wsu-bg-badge-amber {
  background: rgba(203,137,44,0.22);
  border-color: rgba(203,137,44,0.45);
}

/* Title */
.wsu-bg-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.025em;
}
.wsu-bg-title span { color: #CB892C; }

/* Subtitle */
.wsu-bg-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.85rem;
  line-height: 1.65;
  max-width: 460px;
}

/* Nav arrows */
.wsu-bg-carousel .swiper-button-prev,
.wsu-bg-carousel .swiper-button-next {
  color: #fff;
  background: rgba(0,0,0,0.35);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.wsu-bg-carousel .swiper-button-prev:hover,
.wsu-bg-carousel .swiper-button-next:hover { background: rgba(203,137,44,0.7); }
.wsu-bg-carousel .swiper-button-prev::after,
.wsu-bg-carousel .swiper-button-next::after { font-size: 1rem; font-weight: 800; }

/* Pagination dots */
.wsu-bg-carousel .swiper-pagination { bottom: 18px; }
.wsu-bg-carousel .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.45);
  opacity: 1;
  transition: background 0.2s, width 0.25s;
}
.wsu-bg-carousel .swiper-pagination-bullet-active {
  background: #CB892C;
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .wsu-bg-slide { min-height: 320px; }
  .wsu-bg-slide-content { padding: 3rem 0; }
  .wsu-bg-slide-deco i { font-size: 12rem; }
  .wsu-bg-subtitle { font-size: 0.9rem; }
}
@media (max-width: 575px) {
  .wsu-bg-title { font-size: 1.6rem; }
  .wsu-bg-slide-deco i { display: none; }
}

/* ══════════════════════════════════════════
   PHOENIX UTILITY FALLBACKS
   Define spacing & font-size utilities that
   Phoenix adds but Bootstrap CDN omits.
   Without these, mb-6 and fs-9 do nothing.
══════════════════════════════════════════ */
.mb-6  { margin-bottom: 3.5rem   !important; }
.mb-7  { margin-bottom: 4.5rem   !important; }
.mb-8  { margin-bottom: 5.5rem   !important; }
.mb-9  { margin-bottom: 6.5rem   !important; }
.mt-6  { margin-top:    3.5rem   !important; }
.mt-7  { margin-top:    4.5rem   !important; }
.py-6  { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
.py-9  { padding-top: 6.5rem !important; padding-bottom: 6.5rem !important; }
.pb-9  { padding-bottom: 6.5rem  !important; }
.pt-5  { padding-top: 3rem       !important; }

/* Font-size scale (Phoenix fs-7 → fs-11) */
.fs-7  { font-size: 0.94rem  !important; }
.fs-8  { font-size: 0.875rem !important; }
.fs-9  { font-size: 0.8rem   !important; }
.fs-10 { font-size: 0.7rem   !important; }
.fs-11 { font-size: 0.625rem !important; }

/* ══════════════════════════════════════════
   FULL-WIDTH LAYOUT
   Keep page content fluid where needed, but let
   Phoenix .container-small use its real max-widths
   (540 / 720 / 960 / 1216) so topbar, category nav,
   and icon strip center like homepage.html
══════════════════════════════════════════ */
/* intentionally no .container-small fluid override */

/* Homepage content wrapper */
.ecommerce-homepage > .wsu-content-wrap {
  width: 100%;
  padding: 2.5rem clamp(1rem, 3.5vw, 2.5rem) 0;
}
@media (max-width: 767px) {
  .ecommerce-homepage > .wsu-content-wrap { padding-top: 1.5rem; }
}
@media (max-width: 575px) {
  .ecommerce-homepage > .wsu-content-wrap { padding-top: 1.25rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — DESKTOP & TABLET (≤ 991px)
══════════════════════════════════════════ */
@media (max-width: 991px) {
  .wsu-promo-card { min-height: 180px; }
  .wsu-promo-card .bg-icon { font-size: 4rem; }
  /* Hero graphic shrinks slightly on tablet */
  .wsu-hero-graphic { width: 240px; height: 240px; }
  .wsu-hero-ring-1  { width: 220px; height: 220px; }
  .wsu-hero-ring-2  { width: 160px; height: 160px; }
  .wsu-hero-icon-wrap { width: 88px; height: 88px; font-size: 2.4rem; }
  .wsu-hero-float   { font-size: 0.66rem; padding: 5px 10px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 767px)
══════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Section heading rows — wrap so link never overflows onto heading */
  .wsu-content-wrap .d-flex.justify-content-between.mb-3 {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }
  /* Hero */
  .wsu-hero-slide   { padding: 44px 0 52px; min-height: 0; }
  .wsu-hero-title   { font-size: 1.9rem; margin-bottom: 10px; }
  .wsu-hero-subtitle { font-size: 0.95rem; margin-bottom: 20px; }
  .wsu-hero-badge   { font-size: 0.66rem; padding: 4px 11px; margin-bottom: 13px; }
  .wsu-hero-trust   { gap: 12px; margin-top: 16px; }
  .wsu-hero-trust-item { font-size: 0.74rem; }
  .wsu-hero-btn, .wsu-hero-btn-outline { font-size: 0.85rem; padding: 10px 20px; }
  /* Hero arrows — smaller, keep visible */
  .wsu-hero-swiper .swiper-button-prev,
  .wsu-hero-swiper .swiper-button-next { width: 32px; height: 32px; }
  .wsu-hero-swiper .swiper-button-prev::after,
  .wsu-hero-swiper .swiper-button-next::after { font-size: 0.7rem; }
  /* Feature strip — border-bottom separates rows */
  .wsu-feature-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 14px 16px; }
  .col-6:nth-child(odd) .wsu-feature-item { border-right: 1px solid rgba(0,0,0,0.07); }
  /* Section headings */
  .wsu-section-heading { font-size: 1.05rem; }
  /* Product card images */
  .wsu-product-card .product-img-wrap img { height: 140px; }
  /* Promo cards */
  .wsu-promo-card { min-height: 160px; padding: 24px 20px; }
  /* CTA */
  .wsu-cta-section { padding: 36px 20px; border-radius: 8px; }
  .wsu-cta-section h2 { font-size: 1.5rem; }
  .wsu-cta-section p { font-size: 0.88rem; }
  /* Product slider arrows — hide on mobile (swipe to navigate) */
  .wsu-slider .swiper-button-prev,
  .wsu-slider .swiper-button-next { display: none !important; }
  /* Icon strip: keep Phoenix padding/gaps on mobile */
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 575px)
══════════════════════════════════════════ */
@media (max-width: 575px) {
  .wsu-hero-title   { font-size: 1.55rem; letter-spacing: -0.025em; }
  .wsu-hero-deco i  { font-size: 14rem; }
  .wsu-promo-card .bg-icon { display: none; }
  /* Stack hero CTA buttons vertically — stretch to full width */
  .wsu-hero-content .d-flex.gap-2 { flex-direction: column; align-items: stretch; }
  .wsu-hero-btn, .wsu-hero-btn-outline { width: 100%; justify-content: center; }
  /* Feature strip — always 1 column */
  .wsu-feature-strip .col-6 { flex: 0 0 100%; max-width: 100%; }
  .col-6:nth-child(odd) .wsu-feature-item { border-right: none; }
  /* Product cards — 1 per view on very small phones */
  .wsu-product-card .product-img-wrap img { height: 160px; }
  /* CTA stats wrap nicely */
  .wsu-cta-section .d-flex.justify-content-center { gap: 0 !important; flex-direction: column; align-items: center; }
  .wsu-cta-section .d-flex.justify-content-center > div {
    border: none !important;
    padding: 8px 0 !important;
  }
  /* Category dropdown full-width on mobile */
  .category-dropdown-menu { min-width: calc(100vw - 16px) !important; left: -1rem !important; }
  .category-dropdown-menu .card { min-width: unset !important; }
}

/* ══════════════════════════════════════════
   HEADER ICON BUTTONS (notification & user)
══════════════════════════════════════════ */

/* Base icon button — replaces plain <a> icon links */
.wsu-icon-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: none !important;
  background: transparent !important;
  color: var(--bs-body-color, #4d5969) !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  transition: background 0.18s, color 0.18s !important;
  padding: 0 !important;
  /* Kill all browser/Bootstrap focus chrome */
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  text-decoration: none !important;
}
.wsu-icon-btn:focus,
.wsu-icon-btn:focus-visible,
.wsu-icon-btn:active,
.wsu-icon-btn:focus-within {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.wsu-icon-btn:hover {
  background: rgba(85,21,22,0.09) !important;
  color: var(--wsu-primary) !important;
  box-shadow: none !important;
}
.wsu-icon-btn.has-badge { color: var(--wsu-primary) !important; }

/* ── Bell ring animation ── */
@keyframes wsuBellRing {
  0%,100% { transform: rotate(0); }
  10%      { transform: rotate(14deg); }
  20%      { transform: rotate(-12deg); }
  30%      { transform: rotate(10deg); }
  40%      { transform: rotate(-8deg); }
  50%      { transform: rotate(5deg); }
  60%      { transform: rotate(-3deg); }
  70%      { transform: rotate(0); }
}
.wsu-bell-ring {
  display: inline-block;
  animation: wsuBellRing 2.8s ease-in-out infinite;
  transform-origin: top center;
}

/* ── Notification badge dot ── */
.wsu-badge-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--wsu-amber);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  border: 2px solid var(--bs-body-bg, #fff);
  pointer-events: none;
}

/* ── Shared dropdown panel ── */
.wsu-dropdown {
  border-radius: 14px !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.06) !important;
  padding: 0 !important;
  overflow: hidden;
  font-family: var(--font-sans);
  z-index: 1060 !important; /* above sticky header (1040) */
  margin-top: 8px !important;
  /* Keep within viewport — never overflow right or left edge */
  right: 0 !important;
  left: auto !important;
  max-width: calc(100vw - clamp(0.75rem, 3vw, 2.5rem) * 2) !important;
  transform: none !important;
}
/* On very small screens shrink to viewport width */
@media (max-width: 400px) {
  .wsu-dropdown {
    width: calc(100vw - 1.5rem) !important;
    right: 0 !important;
  }
}

/* ── Dropdown header row ── */
.wsu-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.wsu-dropdown-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wsu-primary);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}
.wsu-dropdown-title i { color: var(--wsu-amber); font-size: 1rem; }
.wsu-dropdown-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wsu-amber);
  text-decoration: none;
  transition: color 0.15s;
}
.wsu-dropdown-link:hover { color: var(--wsu-amber-dark); }

/* ── Divider ── */
.wsu-dropdown-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin: 0;
}

/* ── Generic dropdown items (user menu links) ── */
.wsu-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--wsu-text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.wsu-dropdown-item i { font-size: 1rem; color: var(--wsu-amber); flex-shrink: 0; }
.wsu-dropdown-item:hover {
  background: rgba(85,21,22,0.06);
  color: var(--wsu-primary);
}
.wsu-dropdown-item:hover i { color: var(--wsu-primary); }

/* Danger variant (sign out) */
.wsu-dropdown-item-danger { color: #c0392b; }
.wsu-dropdown-item-danger i { color: #c0392b; }
.wsu-dropdown-item-danger:hover {
  background: rgba(192,57,43,0.08);
  color: #c0392b;
}
.wsu-dropdown-item-danger:hover i { color: #c0392b; }

/* ══════════════════════════════════════════
   NOTIFICATION LIST
══════════════════════════════════════════ */
.wsu-notif-list {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(85,21,22,0.15) transparent;
}
.wsu-notif-list::-webkit-scrollbar { width: 4px; }
.wsu-notif-list::-webkit-scrollbar-thumb { background: rgba(85,21,22,0.15); border-radius: 2px; }

/* Empty state */
.wsu-notif-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  color: #aaa;
  font-size: 0.8rem;
  gap: 10px;
}
.wsu-notif-empty i { font-size: 2.2rem; color: rgba(85,21,22,0.2); }
.wsu-notif-empty p { margin: 0; }

/* Notification item */
.wsu-notif-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.14s;
  cursor: default;
}
.wsu-notif-item:last-child { border-bottom: none; }
.wsu-notif-item:hover { background: rgba(85,21,22,0.04); }
.wsu-notif-item.is-new { background: rgba(203,137,44,0.06); }
.wsu-notif-item.is-new:hover { background: rgba(203,137,44,0.1); }

/* Icon column */
.wsu-notif-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(85,21,22,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wsu-primary);
  font-size: 1rem;
  margin-top: 1px;
}
.wsu-notif-item.is-new .wsu-notif-icon {
  background: rgba(203,137,44,0.14);
  color: var(--wsu-amber);
}

/* Body */
.wsu-notif-body { flex: 1; min-width: 0; }
.wsu-notif-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wsu-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.wsu-notif-msg {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wsu-notif-time {
  display: flex;
  align-items: center;
  font-size: 0.68rem;
  color: #aaa;
  margin-top: 4px;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   USER DROPDOWN — AVATAR & PANELS
══════════════════════════════════════════ */

/* Small avatar shown inside the button */
.wsu-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--wsu-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

/* Larger avatar inside the dropdown hero */
.wsu-avatar-lg {
  width: 48px;
  height: 48px;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* Logged-in hero strip */
.wsu-user-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, rgba(85,21,22,0.06) 0%, rgba(203,137,44,0.06) 100%);
}
.wsu-user-info { flex: 1; min-width: 0; }
.wsu-user-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wsu-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wsu-user-email {
  font-size: 0.72rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

/* Guest hero */
.wsu-guest-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 18px;
  background: linear-gradient(135deg, rgba(85,21,22,0.05) 0%, rgba(203,137,44,0.05) 100%);
  text-align: center;
}
.wsu-guest-icon {
  font-size: 2.8rem;
  color: rgba(85,21,22,0.25);
  line-height: 1;
  margin-bottom: 8px;
}
.wsu-guest-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--wsu-primary);
  margin-bottom: 3px;
}
.wsu-guest-sub {
  font-size: 0.76rem;
  color: #888;
  line-height: 1.4;
}

/* Login / Register CTA buttons inside dropdown */
.wsu-btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 980px;
  background: var(--wsu-primary);
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  letter-spacing: -0.01em;
}
.wsu-btn-login:hover {
  background: var(--wsu-primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
}
.wsu-btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 980px;
  border: 1.5px solid var(--wsu-primary);
  background: transparent;
  color: var(--wsu-primary) !important;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  letter-spacing: -0.01em;
}
.wsu-btn-register:hover {
  background: var(--wsu-primary);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Admin Panel link — distinctive amber accent */
.wsu-dropdown-item-admin { color: var(--wsu-amber) !important; font-weight: 600; }
.wsu-dropdown-item-admin i { color: var(--wsu-amber) !important; }
.wsu-dropdown-item-admin:hover {
  background: rgba(203,137,44,0.1) !important;
  color: var(--wsu-amber-dark) !important;
}

/* Admin button in guest panel */
.wsu-btn-admin {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 980px;
  background: linear-gradient(135deg, var(--wsu-primary) 0%, #7a1e1f 100%);
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.18s, transform 0.15s;
  border: none;
}
.wsu-btn-admin:hover {
  opacity: 0.88;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Dark-mode adjustments */
[data-bs-theme="dark"] .wsu-icon-btn:hover,
[data-bs-theme="dark"] .wsu-icon-btn:focus-visible {
  background: rgba(203,137,44,0.15);
  color: var(--wsu-amber);
}
[data-bs-theme="dark"] .wsu-dropdown {
  background: #1e1e2e !important;
  border-color: rgba(255,255,255,0.08) !important;
}
[data-bs-theme="dark"] .wsu-dropdown-divider { background: rgba(255,255,255,0.07); }
[data-bs-theme="dark"] .wsu-dropdown-item { color: #d0d0e0; }
[data-bs-theme="dark"] .wsu-dropdown-item:hover { background: rgba(203,137,44,0.1); color: #fff; }
[data-bs-theme="dark"] .wsu-notif-item:hover  { background: rgba(203,137,44,0.07); }
[data-bs-theme="dark"] .wsu-notif-msg  { color: #999; }
[data-bs-theme="dark"] .wsu-user-hero,
[data-bs-theme="dark"] .wsu-guest-hero {
  background: linear-gradient(135deg, rgba(85,21,22,0.18) 0%, rgba(203,137,44,0.12) 100%);
}
[data-bs-theme="dark"] .wsu-notif-icon { background: rgba(203,137,44,0.12); color: var(--wsu-amber); }

/* ══════════════════════════════════════════
   PRODUCT DETAILS — GALLERY THUMBNAILS
   Phoenix only fixes .product-thumb-container's
   height at the xl breakpoint and never clips the
   <img>, so a portrait product photo overflows the
   rounded thumbnail box at every other width.
══════════════════════════════════════════ */
#swiper-products-thumb .product-thumb-container {
  height: 82px;
  overflow: hidden;
}
#swiper-products-thumb .product-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════
   PRODUCTS FILTER PAGE
══════════════════════════════════════════ */

/* Phoenix product card — border lives on the inner image box (matches
   the Phoenix template); the outer card itself stays borderless. */
.product-card {
  transition: transform .2s;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-2px);
}
.product-card:hover .border-translucent {
  border-color: var(--wsu-wish, #CB892C) !important;
}

/* Uniform square thumbs — padding square + absolute cover (ignores intrinsic image size) */
.product-card .product-img-box,
#product-results-grid .product-img-box {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--phoenix-body-highlight-bg, var(--bs-secondary-bg, #f5f7fa));
}
.product-card .product-img-box::before,
#product-results-grid .product-img-box::before {
  content: '';
  display: block;
  width: 100%;
  padding-top: 100%; /* forces 1:1 regardless of image */
}
.product-card .product-img-box > picture,
.product-card .product-img-box > img,
#product-results-grid .product-img-box > picture,
#product-results-grid .product-img-box > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
}
.product-card .product-img-box img,
.product-card .product-img-box picture img,
#product-results-grid .product-img-box img,
#product-results-grid .product-img-box picture img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center;
  display: block !important;
}
.product-card > .d-flex,
#product-results-grid .product-card > .d-flex {
  min-height: 100%;
}
.product-card .product-name,
#product-results-grid .product-name {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.4em;
  min-height: 2.4em;
  max-height: 2.4em;
  line-height: 1.2;
  margin-bottom: 0.5rem !important;
}
.product-card .product-price-block,
#product-results-grid .product-price-block {
  height: 2.75rem;
  min-height: 2.75rem;
  max-height: 2.75rem;
  overflow: hidden;
}
.product-card .product-card-rating,
#product-results-grid .product-card-rating {
  height: 1.35em;
  min-height: 1.35em;
  overflow: hidden;
  margin-bottom: 0.5rem !important;
}
/* Compact status pill — bottom-left so it clears the wishlist heart */
.product-card .product-status-badge,
#product-results-grid .product-status-badge {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 1.1rem);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}
.product-card .product-status-badge--oos,
#product-results-grid .product-status-badge--oos {
  color: #fff;
  background: rgba(33, 37, 41, 0.88);
  backdrop-filter: blur(2px);
}
.product-card .product-status-badge--sale,
#product-results-grid .product-status-badge--sale {
  color: #fff;
  background: #198754;
}
.product-card-container {
  height: 100%;
}
#product-results-grid [data-product-card] {
  display: flex;
}
#product-results-grid [data-product-card] > .product-card {
  width: 100%;
}
.products-slider .swiper-wrapper {
  align-items: stretch;
}
.products-slider .swiper-slide {
  height: auto !important;
  display: flex;
  box-sizing: border-box;
}
.products-slider .swiper-slide > .product-card,
.products-slider .swiper-slide > .product-card-container {
  width: 100%;
  height: 100%;
}

/* Replace Phoenix blue (#3874ff) with wishlist amber on products listing */
.product-filter-container {
  --phoenix-primary: var(--wsu-wish, #CB892C);
  --phoenix-primary-rgb: 203, 137, 44;
  --phoenix-primary-text-emphasis: var(--wsu-amber-dark, #a06b1e);
  --phoenix-primary-bg-subtle: rgba(203, 137, 44, 0.12);
  --phoenix-primary-border-subtle: rgba(203, 137, 44, 0.35);
  --phoenix-link-color: var(--wsu-wish, #CB892C);
  --phoenix-link-color-rgb: 203, 137, 44;
  --phoenix-link-hover-color: var(--wsu-amber-dark, #a06b1e);
  --bs-primary: var(--wsu-wish, #CB892C);
  --bs-primary-rgb: 203, 137, 44;
  --bs-link-color: var(--wsu-wish, #CB892C);
  --bs-link-hover-color: var(--wsu-amber-dark, #a06b1e);
}
.product-filter-container a:not(.btn):not(.page-link):not(.btn-wish),
.product-filter-container .product-name,
.product-filter-container .stretched-link {
  color: var(--wsu-wish, #CB892C);
}
.product-filter-container a:not(.btn):not(.page-link):not(.btn-wish):hover,
.product-filter-container .stretched-link:hover,
.product-filter-container .product-card:hover .product-name {
  color: var(--wsu-amber-dark, #a06b1e) !important;
}
.product-filter-container .btn-phoenix-primary,
.product-filter-container .btn-primary {
  --phoenix-btn-color: #fff;
  --phoenix-btn-bg: var(--wsu-wish, #CB892C);
  --phoenix-btn-border-color: var(--wsu-wish, #CB892C);
  --phoenix-btn-hover-color: #fff;
  --phoenix-btn-hover-bg: var(--wsu-amber-dark, #a06b1e);
  --phoenix-btn-hover-border-color: var(--wsu-amber-dark, #a06b1e);
  --phoenix-btn-active-color: #fff;
  --phoenix-btn-active-bg: var(--wsu-amber-dark, #a06b1e);
  --phoenix-btn-active-border-color: var(--wsu-amber-dark, #a06b1e);
  color: #fff !important;
  background-color: var(--wsu-wish, #CB892C) !important;
  border-color: var(--wsu-wish, #CB892C) !important;
}
.product-filter-container .btn-phoenix-primary:hover,
.product-filter-container .btn-phoenix-primary:focus,
.product-filter-container .btn-primary:hover,
.product-filter-container .btn-primary:focus {
  color: #fff !important;
  background-color: var(--wsu-amber-dark, #a06b1e) !important;
  border-color: var(--wsu-amber-dark, #a06b1e) !important;
}
.product-filter-container .form-check-input:checked {
  background-color: var(--wsu-wish, #CB892C) !important;
  border-color: var(--wsu-wish, #CB892C) !important;
}
.product-filter-container .form-check-input:focus {
  border-color: var(--wsu-wish, #CB892C);
  box-shadow: 0 0 0 0.2rem rgba(203, 137, 44, 0.25);
}
.product-filter-container .pagination .page-link {
  color: var(--wsu-wish, #CB892C);
}
.product-filter-container .pagination .page-item.active .page-link {
  color: #fff !important;
  background-color: var(--wsu-wish, #CB892C) !important;
  border-color: var(--wsu-wish, #CB892C) !important;
}
.product-filter-container .pagination .page-link:hover {
  color: var(--wsu-amber-dark, #a06b1e);
}

/* Utility: line clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fs-10 { font-size: .7rem !important; }

/* Filter sidebar collapse indicator arrow rotation */
.collapse-indicator .toggle-icon {
  transition: transform .2s;
}
.collapse-indicator[aria-expanded="false"] .toggle-icon {
  transform: rotate(-90deg);
}

/* Offcanvas filter overlay on mobile */
@media (max-width: 991.98px) {
  .phoenix-offcanvas-filter.phoenix-offcanvas {
    position: fixed;
    top: 0 !important;
    left: -280px;
    width: 280px;
    height: 100%;
    z-index: 1045;
    padding: 20px 16px;
    overflow-y: auto;
    background: var(--bs-body-bg);
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
    transition: left .3s ease;
  }
  .phoenix-offcanvas-filter.phoenix-offcanvas.show {
    left: 0;
  }
}

/* On desktop: filters flow with the page (no inner scrollbar) */
@media (min-width: 992px) {
  .phoenix-offcanvas-filter {
    position: static;
    top: auto;
    max-height: none;
    height: auto;
    overflow: visible;
    padding-right: 0;
  }
}

/* Sort/results bar */
.product-filter-container .form-select {
  font-size: .85rem;
}

/* Track order — heading + look-up inline */
.track-page-header__title {
  min-width: min(100%, 14rem);
  flex: 1 1 14rem;
}
.track-lookup-inline {
  flex: 0 1 auto;
  max-width: 100%;
}
.track-lookup-inline__field {
  min-width: 11rem;
  max-width: 16rem;
  flex: 1 1 11rem;
}
.btn-outline-wsu {
  color: var(--wsu-primary, #551516);
  border: 1.5px solid var(--wsu-primary, #551516);
  background: transparent;
  font-weight: 600;
}
.btn-outline-wsu:hover,
.btn-outline-wsu:focus-visible {
  color: #fff;
  background: var(--wsu-primary, #551516);
  border-color: var(--wsu-primary-dark, #3a0e0f);
  box-shadow: 0 0 0 .2rem rgba(85, 21, 22, .15);
}
.btn-outline-wsu:active {
  color: #fff;
  background: var(--wsu-primary-dark, #3a0e0f);
  border-color: var(--wsu-primary-dark, #3a0e0f);
}
[data-bs-theme="dark"] .btn-outline-wsu {
  color: #e8c4c4;
  border-color: rgba(232, 196, 196, .55);
}
[data-bs-theme="dark"] .btn-outline-wsu:hover,
[data-bs-theme="dark"] .btn-outline-wsu:focus-visible {
  color: #fff;
  background: var(--wsu-primary, #551516);
  border-color: var(--wsu-amber, #CB892C);
}
@media (max-width: 575.98px) {
  .track-lookup-inline {
    width: 100%;
  }
  .track-lookup-inline__field {
    max-width: none;
    min-width: 0;
    flex: 1 1 100%;
  }
  .track-lookup-inline .btn {
    width: 100%;
  }
}

/* Products page toolbar — AI search + sort (pull right) */
.products-toolbar__controls {
  flex: 1 1 auto;
  min-width: 0;
}
.products-toolbar-search {
  flex: 1 1 14rem;
  max-width: 22rem;
  min-width: 12rem;
}
.products-toolbar-search .search-input {
  height: 36px;
  font-size: .8125rem;
}
.products-toolbar__sort {
  flex-shrink: 0;
}
@media (max-width: 575.98px) {
  .products-toolbar__controls {
    width: 100%;
  }
  .products-toolbar-search {
    max-width: none;
    flex: 1 1 100%;
  }
  .products-toolbar__sort {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Pagination spacing */
.product-filter-container .pagination .page-link {
  padding: .35rem .65rem;
  font-size: .85rem;
}

[data-bs-theme="dark"] .product-card {
  border-color: rgba(255,255,255,.08);
  background: var(--bs-body-bg);
}

/* Product details — Phoenix-style colour / size variants */
.product-color-variants .product-color-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: var(--bs-body-bg, #fff);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.product-color-variants .product-color-swatch:focus-visible {
  outline: 2px solid var(--phoenix-primary, var(--bs-primary));
  outline-offset: 2px;
}
.product-color-variants .product-color-swatch__chip {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: .15rem;
  background-color: var(--swatch-color, #ccc);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}
.product-color-variants .product-color-swatch__label {
  font-size: .7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--bs-body-color);
  text-transform: uppercase;
}
.product-color-variants .product-color-swatch.active {
  border-color: var(--phoenix-primary, var(--bs-primary)) !important;
  box-shadow: 0 0 0 1px var(--phoenix-primary, var(--bs-primary));
}
#variant-selectors .variant-select {
  min-width: 5.5rem;
}

/* Checkout navigation */
.checkout-nav__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: .85rem 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(85, 21, 22, .12);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(85, 21, 22, .06) 0%, rgba(203, 137, 44, .08) 48%, rgba(255, 255, 255, .92) 100%);
  box-shadow: 0 .35rem 1.25rem rgba(85, 21, 22, .06);
}
.checkout-nav__back {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  min-width: min(100%, 16rem);
  padding: .65rem .9rem;
  border-radius: .75rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--wsu-primary, #551516) 0%, var(--wsu-primary-dark, #3a0e0f) 100%);
  box-shadow: 0 .4rem 1rem rgba(85, 21, 22, .28);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.checkout-nav__back:hover,
.checkout-nav__back:focus-visible {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 .55rem 1.35rem rgba(85, 21, 22, .34);
}
.checkout-nav__back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-size: .9rem;
}
.checkout-nav__back-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.checkout-nav__back-label {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.checkout-nav__back-hint {
  font-size: .72rem;
  opacity: .82;
  font-weight: 500;
}
.checkout-nav__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
}
.checkout-nav__link {
  display: inline-flex;
  align-items: center;
  padding: .55rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(85, 21, 22, .14);
  background: rgba(255, 255, 255, .82);
  color: var(--wsu-primary, #551516);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.checkout-nav__link:hover,
.checkout-nav__link:focus-visible {
  background: #fff;
  border-color: var(--wsu-primary, #551516);
  color: var(--wsu-primary, #551516);
  transform: translateY(-1px);
}
.checkout-nav__link--accent {
  border-color: rgba(203, 137, 44, .45);
  background: rgba(203, 137, 44, .12);
  color: var(--wsu-amber-dark, #a06b1e);
}
.checkout-nav__link--accent:hover,
.checkout-nav__link--accent:focus-visible {
  border-color: var(--wsu-amber, #CB892C);
  background: rgba(203, 137, 44, .2);
  color: var(--wsu-amber-dark, #a06b1e);
}
.checkout-nav__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .85rem;
  list-style: none;
  margin: .9rem 0 0;
  padding: 0;
}
.checkout-nav__step {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--bs-secondary-color, #6c757d);
}
.checkout-nav__step + .checkout-nav__step::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  margin-right: .85rem;
  background: linear-gradient(90deg, rgba(85, 21, 22, .25), rgba(203, 137, 44, .45));
}
.checkout-nav__step-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: inherit;
  text-decoration: none;
}
.checkout-nav__step-link:hover {
  color: var(--wsu-primary, #551516);
}
.checkout-nav__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(85, 21, 22, .18);
  background: #fff;
  font-size: .72rem;
  font-weight: 700;
}
.checkout-nav__step.is-current {
  color: var(--wsu-primary, #551516);
}
.checkout-nav__step.is-current .checkout-nav__step-num {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--wsu-amber, #CB892C), var(--wsu-amber-dark, #a06b1e));
  box-shadow: 0 .2rem .55rem rgba(203, 137, 44, .35);
}
.checkout-summary-edit {
  display: inline-flex;
  align-items: center;
  padding: .25rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(85, 21, 22, .15);
  background: rgba(85, 21, 22, .04);
  color: var(--wsu-primary, #551516);
  font-size: .75rem;
  font-weight: 650;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.checkout-summary-edit:hover,
.checkout-summary-edit:focus-visible {
  background: rgba(85, 21, 22, .1);
  border-color: rgba(85, 21, 22, .3);
  color: var(--wsu-primary, #551516);
}
@media (max-width: 575.98px) {
  .checkout-nav__bar {
    padding: .9rem;
  }
  .checkout-nav__back {
    width: 100%;
  }
  .checkout-nav__actions {
    width: 100%;
  }
  .checkout-nav__link {
    flex: 1 1 auto;
    justify-content: center;
  }
}
[data-bs-theme="dark"] .checkout-nav__bar {
  border-color: rgba(255, 255, 255, .1);
  background: linear-gradient(135deg, rgba(85, 21, 22, .35) 0%, rgba(203, 137, 44, .12) 50%, rgba(255, 255, 255, .04) 100%);
}
[data-bs-theme="dark"] .checkout-nav__link {
  background: rgba(0, 0, 0, .2);
  border-color: rgba(255, 255, 255, .12);
  color: #f3e7e7;
}
[data-bs-theme="dark"] .checkout-nav__step-num {
  background: rgba(0, 0, 0, .25);
  border-color: rgba(255, 255, 255, .14);
}

/* Checkout — payment method cards with logos */
.checkout-pay-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.checkout-pay-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--phoenix-border-color-translucent, rgba(0, 0, 0, .1));
  border-radius: 0.65rem;
  background: var(--bs-body-bg, #fff);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.checkout-pay-option:hover {
  border-color: rgba(85, 21, 22, .35);
}
.checkout-pay-option.is-selected {
  border-color: var(--wsu-primary, #551516);
  box-shadow: 0 0 0 1px var(--wsu-primary, #551516);
  background: rgba(85, 21, 22, .04);
}
.checkout-pay-option.is-coming-soon,
.checkout-pay-option.is-disabled {
  opacity: 0.55;
  filter: grayscale(0.85);
  cursor: not-allowed;
  pointer-events: none;
  background: var(--bs-secondary-bg, #f1f3f5);
  border-style: dashed;
}
.checkout-pay-option.is-coming-soon:hover,
.checkout-pay-option.is-disabled:hover {
  border-color: var(--phoenix-border-color-translucent, rgba(0, 0, 0, .12));
  box-shadow: none;
}
.checkout-pay-soon {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: #6c757d;
  white-space: nowrap;
}
.checkout-pay-input {
  margin-top: 0.85rem;
  flex-shrink: 0;
}
.checkout-pay-option__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-top: 0.15rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-body-tertiary-bg, #f5f5f5);
  color: var(--wsu-primary, #551516);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.checkout-pay-option.is-selected .checkout-pay-option__icon {
  background: rgba(85, 21, 22, .1);
}
.checkout-pay-option__body {
  min-width: 0;
  flex: 1 1 auto;
}
.checkout-pay-option__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-weight: 700;
  line-height: 1.3;
}
.checkout-pay-option__hint {
  display: block;
  font-size: 0.78rem;
  color: var(--bs-secondary-color, #6c757d);
  margin-top: 0.15rem;
}
.checkout-pay-option__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
}
.checkout-pay-logo {
  height: 1.55rem;
  width: auto;
  display: block;
  border-radius: 0.25rem;
}
.checkout-pay-logo--wide {
  height: 1.35rem;
  max-width: 5.5rem;
  object-fit: contain;
}
.checkout-pay-logo--icon {
  height: 1.35rem;
  width: 1.35rem;
  border-radius: 0.2rem;
}
.checkout-pay-badge {
  display: inline-flex;
  align-items: center;
  height: 1.55rem;
  padding: 0 0.45rem;
  border-radius: 0.25rem;
  background: #0b2e59;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.checkout-summary-thumb {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0.4rem;
  border: 1px solid var(--phoenix-border-color-translucent, rgba(0, 0, 0, .08));
  background: var(--bs-body-tertiary-bg, #f8f9fa);
}
[data-bs-theme="dark"] .checkout-pay-option {
  background: rgba(255, 255, 255, .03);
}
[data-bs-theme="dark"] .checkout-pay-option.is-selected {
  background: rgba(203, 137, 44, .1);
  border-color: var(--wsu-wish, #CB892C);
  box-shadow: 0 0 0 1px var(--wsu-wish, #CB892C);
}
