/* Fntroo Brutalist Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --border-color: #333333;
  --border-light: #222222;
  --font-primary: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --header-height: 70px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important; /* Strict brutalist rule: 0px border radius */
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.homepage-body {
  overflow: hidden;
  height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

button {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

/* Typography Utilities */
.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

/* Layout Utilities */
.container-full {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 768px) {
  .container-full {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Global Announcement Bar */
.announcement-bar {
  background-color: #1a1a1a;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: center;
  padding: 7px 10px;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 0.12em;
  z-index: 1000;
  position: relative;
}

/* Transparent Overlay Header */
.main-header {
  position: absolute;
  top: 31px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .main-header {
    padding: 0 20px;
    top: 29px;
  }
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
}

.header-logo-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  display: block;
}

.header-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-right a, .cart-trigger {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 18px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

/* Fullscreen Split Hero (Homepage) */
.hero-split-container {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-split-container {
    flex-direction: column;
    height: 100vh;
  }
}

.hero-column {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100%;
  border-right: 1px solid var(--border-color);
}

.hero-column:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .hero-column {
    height: 50vh;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.hero-column:hover .hero-bg-img {
  transform: scale(1.03);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-primary);
}

.hero-title {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hero-shop-link {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 4px;
  display: inline-block;
  margin-top: 8px;
}

/* Central Campaign Overlay */
.hero-campaign-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: var(--text-primary);
  pointer-events: auto;
}

.campaign-title {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.campaign-link {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  display: inline-block;
}

.campaign-link:hover {
  border-color: var(--text-primary);
  opacity: 1;
}

@media (max-width: 768px) {
  .campaign-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .campaign-link {
    font-size: 11px;
  }
}

/* ==========================================================================
   Scroll-Snapping Cross-Fade Layout
   ========================================================================== */

/* Fixed Backgrounds Container */
.homepage-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none; /* Let click events fall through to the transparent scroll triggers */
  overflow: hidden;
}

.homepage-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.homepage-bg-image.active {
  opacity: 1;
}

/* Background Image Scale and brightness adjustments */
.homepage-bg-image .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55); /* Clean editorial darkened look */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom positioning for mobile viewports to frame character/t-shirts perfectly */
@media (max-width: 768px) {
  #bg-2 .hero-bg-img {
    object-position: left center !important;
  }
  #bg-3 .hero-bg-img {
    object-position: center center !important;
  }
  #bg-4 .hero-bg-img {
    object-position: center center !important;
  }
}

.homepage-bg-image:hover .hero-bg-img {
  transform: scale(1.03);
}

/* Fixed Campaign Overlay aligned at the bottom */
.hero-campaign-overlay.fixed-overlay {
  position: fixed;
  top: auto;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: var(--text-primary);
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

/* Transparent scroll container overlaying the backgrounds */
.scroll-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  z-index: 2; /* Sits on top of the fixed background container */
}

/* Scroll Snap Slides (fully transparent) */
.scroll-slide {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent; /* transparent to show the fixed layer underneath */
}

/* Slide 1 transparent hitboxes for click-through */
.transparent-click-zones {
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.transparent-click-zones .clickable-zone {
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  z-index: 10;
}

/* Footer slide specific overrides */
.scroll-slide.footer-slide {
  height: auto;
  min-height: 100vh;
  justify-content: flex-end;
  scroll-snap-align: end;
  background-color: var(--bg-primary); /* solid black background to block out fixed images */
  z-index: 5; /* Higher than background and overlays */
}


/* Floating Actions - Editorial Circles */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50% !important; /* Circle exception */
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  transition: all 0.2s ease;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50% !important; /* Circle exception */
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  transition: all 0.2s ease;
}

.scroll-top-btn:hover, .whatsapp-float:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

/* Collection Grid Layout (Shop All) */
.page-title-section {
  padding: 60px 40px 30px 40px;
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .page-title-section {
    padding: 40px 20px 20px 20px;
  }
}

.page-title {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.product-card {
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-primary);
}

.product-card-image-wrap {
  width: 100%;
  padding-bottom: 100%; /* Perfect 1:1 square ratio */
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d;
}

.product-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-img.img-hover {
  opacity: 0;
  z-index: 2;
}

/* Crisp instant swap hover behavior */
.product-card:hover .product-card-img.img-hover {
  opacity: 1;
}

.product-card-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.product-card-title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.product-card-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
}

/* Product Detail Page (PDP) Layout */
.pdp-container {
  display: flex;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
}

@media (max-width: 900px) {
  .pdp-container {
    flex-direction: column;
  }
}

.pdp-media-column {
  width: 60%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-color);
}

@media (max-width: 900px) {
  .pdp-media-column {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}

.pdp-media-item {
  width: 100%;
  aspect-ratio: 1 / 1; /* Perfect 1:1 square ratio */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  background-color: #0d0d0d;
}

.pdp-media-item:last-child {
  border-bottom: none;
}

.pdp-media-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* PDP Media Row for side-by-side vertical images */
.pdp-media-row {
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1; /* Keep the row a perfect square shape */
  border-bottom: 1px solid var(--border-color);
}

.pdp-media-row:last-child {
  border-bottom: none;
}

.pdp-media-row .pdp-media-item.half-width {
  width: 50%;
  height: 100%;
  aspect-ratio: auto; /* override 1/1 square constraint */
  border-right: 1px solid var(--border-color);
  border-bottom: none; /* override default bottom border */
}

.pdp-media-row .pdp-media-item.half-width:last-child {
  border-right: none;
}

.pdp-media-row .pdp-media-item.half-width img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Sticky Details Panel */
.pdp-details-column {
  width: 40%;
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .pdp-details-column {
    width: 100%;
    position: static;
    height: auto;
    padding: 20px 20px;
  }
}

.pdp-title {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.pdp-price {
  font-family: var(--font-mono);
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

/* Variant Buttons & Sizing Menus */
.pdp-option-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.size-selector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.size-btn {
  border: 1px solid var(--border-color);
  background: none;
  color: var(--text-primary);
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  transition: all 0.2s ease;
}

.size-btn:hover {
  border-color: var(--text-primary);
}

.size-btn.selected {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
  font-weight: 700;
}

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

/* Add to Cart Button */
.add-to-cart-btn {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid var(--text-primary);
  width: 100%;
  padding: 18px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* Flat Brutalist Accordions (border-bottom only) */
.pdp-accordions {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
  color: var(--text-primary);
}

.accordion-icon {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 20px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Cart Slide-out Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  height: 100%;
  background-color: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 500px) {
  .cart-drawer {
    width: 100%;
  }
}

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

.cart-drawer-header {
  padding: 30px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.cart-close-btn {
  font-size: 20px;
  color: var(--text-primary);
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-empty-message {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 50px;
}

/* Cart Item Card */
.cart-item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img-wrap {
  width: 80px;
  height: 100px;
  background-color: #0d0d0d;
  flex-shrink: 0;
}

.cart-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.cart-item-title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.cart-item-variant {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-secondary);
}

.cart-item-price {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-primary);
}

.cart-item-quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  width: fit-content;
  margin-top: 8px;
}

.qty-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
}

.qty-val {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 0 10px;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.cart-item-remove {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--text-secondary);
  align-self: flex-start;
  margin-top: 4px;
}

.cart-drawer-footer {
  padding: 30px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.checkout-btn {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid var(--text-primary);
  width: 100%;
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.checkout-btn:hover {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

/* Global Footer Styles (footer page reference) */
/* Theme-Adaptive Footer Styling (per reference image options, keeping current design theme-adaptivity) */
.site-footer {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
  padding: 80px 40px 40px 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 20px 20px 20px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-column-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* Newsletter styling adapted to theme */
.site-footer .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 100%;
}

.site-footer .newsletter-input {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 0;
  font-family: var(--font-primary);
  font-size: 12px;
  outline: none;
  width: 100%;
}

.site-footer .newsletter-input::placeholder {
  color: var(--text-secondary);
}

.site-footer .newsletter-input:focus {
  border-color: var(--text-primary);
}

.site-footer .newsletter-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
}

.site-footer .newsletter-checkbox {
  margin-top: 2px;
  accent-color: var(--text-primary);
  cursor: pointer;
}

.site-footer .newsletter-checkbox-label {
  font-family: var(--font-primary);
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
  text-transform: none;
  cursor: pointer;
  user-select: none;
}

.site-footer .newsletter-submit {
  width: 100%;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid var(--text-primary);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.site-footer .newsletter-submit:hover {
  background-color: transparent;
  color: var(--text-primary);
}

/* Footer Bottom Layout */
.site-footer .footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footer-payment-image {
  max-height: 35px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-payment-image:hover {
  opacity: 1;
}

.footer-brand-title {
  display: none;
}

/* Payment Icons Badges styling */
.footer-payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 38px;
  border-radius: 2px;
  font-family: var(--font-primary);
  font-size: 8px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  user-select: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

.payment-badge.amex {
  background-color: #1b5394;
  color: #ffffff;
  font-size: 7px;
  border: 1px solid #16467d;
}

.payment-badge.applepay {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid var(--border-color);
}

.payment-badge.googlepay {
  background-color: #ffffff;
  color: #3c4043;
  border: 1px solid var(--border-color);
}

.payment-badge.mastercard {
  background-color: #ffffff;
  color: #eb001b;
  border: 1px solid var(--border-color);
}

.payment-badge.shoppay {
  background-color: #5a31f4;
  color: #ffffff;
  font-size: 6px;
  font-style: italic;
}

.payment-badge.visa {
  background-color: #ffffff;
  color: #1a1f71;
  border: 1px solid var(--border-color);
}

.scroll-top-arrow {
  font-size: 18px;
  line-height: 1;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.scroll-top-arrow:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   Light Theme Overrides (Shop, PDP, Category Pages)
   ========================================================================== */
body.theme-light {
  --bg-primary: #ffffff;
  --bg-secondary: #fbfbfb;
  --text-primary: #000000;
  --text-secondary: #777777;
  --border-color: #e5e5e5;
  --border-light: #f5f5f5;
}

/* Light Theme Header Styling */
body.theme-light .announcement-bar {
  background-color: #000000;
  color: #ffffff;
  border-bottom: none;
}

body.theme-light .main-header {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  color: #000000;
}

body.theme-light .header-logo {
  filter: invert(1); /* Invert white logo to black transparent logo */
}

body.theme-light .nav-links a,
body.theme-light .header-right a,
body.theme-light .cart-trigger {
  color: #000000;
}

body.theme-light .mobile-nav-toggle button {
  color: #000000;
}

/* Light Theme Catalog Card Grid Styling */
body.theme-light .product-card {
  border-right: none;
  border-bottom: none;
  padding: 2.5px;
}

body.theme-light .product-card-image-wrap {
  background-color: #ffffff; /* Pure white background to match catalogue images */
}

body.theme-light .product-card-info {
  padding: 15px 5px;
}

body.theme-light .product-card-title {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.05em;
}

body.theme-light .product-card-price {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: #000000;
}

body.theme-light .product-card-color {
  display: block;
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Light Theme Catalog Filter Bar */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid var(--border-color);
  font-size: 11px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.filter-left {
  display: flex;
  gap: 25px;
}

.filter-item {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-weight: 400;
}

.filter-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.grid-view-toggles {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.grid-view-toggles i {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.grid-view-toggles i.active, .grid-view-toggles i:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .filter-bar {
    padding: 15px 20px;
  }
  .filter-left {
    gap: 15px;
  }
  .filter-right {
    display: none; /* Hide item count and sort on mobile for clean UI */
  }
}

/* Light Theme PDP Styling */
body.theme-light .pdp-media-column {
  border-right: 1px solid var(--border-color);
}

body.theme-light .pdp-media-item {
  border-bottom: 1px solid var(--border-color);
  background-color: #ffffff; /* Pure white background to match catalogue images */
}

body.theme-light .size-btn {
  border: 1px solid #000000;
  color: #000000;
}

body.theme-light .size-btn:hover {
  background-color: #f2f2f2;
}

body.theme-light .size-btn.selected {
  background-color: #000000;
  color: #ffffff;
}

body.theme-light .add-to-cart-btn {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

body.theme-light .add-to-cart-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

body.theme-light .accordion-trigger {
  color: #000000;
}

/* Light Theme Cart Drawer */
body.theme-light .cart-drawer {
  background-color: #ffffff;
}

body.theme-light .cart-drawer-header {
  border-bottom: 1px solid #e5e5e5;
}

body.theme-light .cart-drawer-footer {
  border-top: 1px solid #e5e5e5;
  background-color: #ffffff;
}

body.theme-light .cart-item-quantity-controls {
  border: 1px solid #e5e5e5;
}

body.theme-light .qty-val {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

/* ==========================================================================
   Interactive Filter Dropdowns & PDP Sizing Table
   ========================================================================== */

.filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-top: 5px;
}

.filter-item.active .filter-dropdown {
  display: block;
}

.filter-dropdown-option {
  padding: 10px 15px;
  font-size: 11px;
  font-family: var(--font-primary);
  text-transform: uppercase;
  color: #000000;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  text-align: left;
}

.filter-dropdown-option:hover {
  background-color: #f5f5f5;
}

.filter-dropdown-option.selected {
  font-weight: 700;
  background-color: #f2f2f2;
}

/* Size Chart Table Styling */
.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-family: var(--font-primary);
  font-size: 12px;
  text-align: left;
}

.size-chart-table th, .size-chart-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e5e5;
  font-weight: normal;
  color: #000000;
}

.size-chart-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #777777;
  text-transform: uppercase;
}

.size-chart-table tbody tr:last-child td {
  border-bottom: none;
}

/* PDP Share Links Styling */
.pdp-share-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  font-size: 16px;
  color: #777777;
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}

.pdp-share-links a:hover {
  color: #000000;
}

/* About Page Styling */
.about-page-body {
  background-color: #000000;
  color: #ffffff;
}

.about-page-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/about_page_image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 80px 20px;
}

.about-story-card {
  max-width: 720px;
  width: 100%;
  text-align: center;
  padding: 50px 40px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: auto;
}

.about-title {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 5px;
}

.about-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

/* Ensure about page links inside transparent header are readable */
.about-page-body .main-header {
  position: absolute;
  top: 31px;
  left: 0;
  width: 100%;
  background-color: transparent;
  color: #ffffff;
  border-bottom: none;
}

.about-page-body .header-logo {
  filter: none;
}

.about-page-body .nav-links a,
.about-page-body .header-right a,
.about-page-body .cart-trigger {
  color: #ffffff;
}

.about-page-body .mobile-nav-toggle button {
  color: #ffffff;
}

@media (max-width: 768px) {
  .about-story-card {
    padding: 30px 20px;
    gap: 20px;
  }
  .about-title {
    font-size: 20px;
  }
  .about-text {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* Minimal Policy Pop-up Modal */
.policy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.policy-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.policy-modal-container {
  background-color: #ffffff;
  color: #000000;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  padding: 30px;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-modal-overlay.active .policy-modal-container {
  transform: translateY(0);
}

.policy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}

.policy-modal-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.policy-modal-close {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #000000;
  transition: opacity 0.2s;
}

.policy-modal-close:hover {
  opacity: 0.6;
}

.policy-modal-content {
  overflow-y: auto;
  padding-top: 20px;
  padding-right: 5px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--font-primary);
  color: #333333;
}

.policy-modal-content p {
  margin-bottom: 12px;
}

.policy-modal-content strong {
  font-weight: 600;
}

/* Minimalist Scrollbar for Policy Modal */
.policy-modal-content::-webkit-scrollbar {
  width: 4px;
}

.policy-modal-content::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.policy-modal-content::-webkit-scrollbar-thumb {
  background: #cccccc;
}

.policy-modal-content::-webkit-scrollbar-thumb:hover {
  background: #999999;
}

/* ==========================================================================
   Mobile Responsiveness Enhancements (Funtroo Style)
   ========================================================================== */

/* Mobile Nav Drawer overlay styles */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  z-index: 10002; /* Above modal overlay */
  display: flex;
  flex-direction: column;
  padding: 40px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

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

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-primary);
  transition: opacity 0.2s;
}

.mobile-drawer-close:hover {
  opacity: 0.6;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-drawer-links a {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.mobile-drawer-links a.mono {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-drawer-links a:hover {
  opacity: 0.6;
}

/* Mobile responsive media overrides */
@media (max-width: 768px) {
  /* Catalog Page: Horizontal Scrollable Filter Bar */
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 15px 20px;
    height: auto;
  }
  
  .filter-left {
    overflow-x: auto;
    white-space: nowrap;
    gap: 12px;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  
  .filter-item {
    flex: 0 0 auto;
    font-size: 11px;
  }
  
  .filter-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid var(--border-light);
    padding-top: 10px;
  }
  
  /* Catalog Page Grid: Force 2 Columns on Mobile */
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 5px !important;
    padding: 5px !important;
  }

  body.theme-light .product-card {
    padding: 2.5px !important;
  }

  /* Product Page: Horizontal Snapped Slider Carousel */
  .pdp-media-column {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important; /* Perfect square mobile slider */
    height: auto !important;
    border-bottom: 1px solid var(--border-color);
    -webkit-overflow-scrolling: touch;
  }
  
  .pdp-media-item {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    scroll-snap-align: start !important;
    border-bottom: none !important;
    border-right: 1px solid var(--border-color);
  }
  
  .pdp-media-item img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  
  .pdp-media-row {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    scroll-snap-align: start !important;
    display: flex !important;
    border-bottom: none !important;
  }
  
  .pdp-media-row .pdp-media-item.half-width {
    flex: 0 0 50% !important;
    width: 50% !important;
    height: 100% !important;
    scroll-snap-align: none !important;
    border-bottom: none !important;
    border-right: 1px solid var(--border-color) !important;
  }
  
  .pdp-media-row .pdp-media-item.half-width:last-child {
    border-right: none !important;
  }
  
  /* Sizing Table Font Scale Fix */
  .size-chart-table th, .size-chart-table td {
    padding: 6px !important;
    font-size: 10px !important;
  }

  /* Header Logo smaller on mobile */
  .header-logo {
    width: auto !important;
  }

  /* Collapsible Footer Accordion */
  .site-footer .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  
  .site-footer .footer-column {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0 !important;
  }
  
  .site-footer .footer-column:last-child {
    border-bottom: none !important;
    padding-top: 30px !important;
    order: 10 !important; /* Moves signup/newsletter block to the very bottom */
  }
  
  .site-footer .footer-column-title {
    margin-bottom: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer;
    font-size: 12px !important;
    letter-spacing: 0.1em !important;
  }
  
  .site-footer .footer-column:not(:last-child) .footer-column-title::after {
    content: "+";
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 300;
    transition: transform 0.2s ease;
  }
  
  .site-footer .footer-column.active:not(:last-child) .footer-column-title::after {
    content: "-";
  }
  
  .site-footer .footer-column:not(:last-child) .footer-links {
    display: none;
    margin-top: 15px;
    padding-left: 5px;
  }
  
  .site-footer .footer-column.active:not(:last-child) .footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* Default Header Icon / Text Layouts (Desktop) */
.header-svg-icon {
  display: none;
}
.header-svg-cart-wrapper {
  display: none;
}
.desktop-text {
  display: inline;
}

/* Mobile Header & Drawer Styles overrides */
@media (max-width: 900px) {
  .scroll-container {
    scroll-snap-type: y mandatory !important;
    overflow-y: scroll !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .scroll-slide {
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
  }

  .main-header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    justify-content: stretch !important;
    padding: 0 20px !important;
    top: 29px !important;
  }
  
  .mobile-nav-toggle {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    font-size: 20px !important; /* Increased by 2px from 18px */
  }
  
  .header-logo-container {
    position: static !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .header-logo-container a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .desktop-text {
    display: none !important;
  }
  .header-svg-icon {
    display: block !important;
    height: 18px;
    width: auto;
    filter: none !important; /* SVG files are white by default, keep normal for dark themes */
  }
  /* Invert white SVG icons to black on light theme pages for visibility */
  body.theme-light .header-svg-icon:not(.game-icon) {
    filter: invert(1) !important;
  }
  
  .header-svg-cart-wrapper {
    display: inline-flex !important;
    position: relative;
    align-items: center;
  }
  
  .header-svg-cart-wrapper .cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 700;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border: 1px solid var(--bg-primary);
  }
  
  .header-right {
    display: flex !important;
    gap: 18px;
    align-items: center;
    justify-content: flex-end !important;
  }
  
  .header-right a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Left-aligned monospace typography inside flyout mobile drawer */
  .mobile-drawer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    align-items: flex-start !important; /* Align everything to the left */
    margin-top: 40px !important;
  }

  .mobile-drawer-links a {
    font-family: var(--font-mono) !important;
    font-size: 13px !important; /* Increased by 2px */
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    color: var(--text-primary) !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease !important;
  }

  .mobile-drawer-links a:hover {
    opacity: 0.6 !important;
  }
}

/* Highlight the SALE navigation option in red across desktop and mobile */
.nav-links a[href*="collection=sale"],
.mobile-drawer-links a[href*="collection=sale"] {
  color: #ff3b30 !important;
}

.nav-links a[href*="collection=sale"]:hover,
.mobile-drawer-links a[href*="collection=sale"]:hover {
  opacity: 0.8 !important;
  color: #ff3b30 !important;
}

/* Dynamic Search Overlay Styles */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 80px 40px 40px 40px;
}

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

.search-close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
}

.search-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#search-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 32px;
  text-transform: uppercase;
  padding: 10px 0;
  margin-bottom: 40px;
  outline: none;
  letter-spacing: 0.05em;
}

#search-input::placeholder {
  color: var(--border-color);
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px; /* Matches catalog 5px grid density */
  overflow-y: auto;
  flex: 1;
  padding-bottom: 40px;
}

.search-results-grid::-webkit-scrollbar {
  width: 4px;
}

.search-results-grid::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
}

@media (max-width: 900px) {
  .search-overlay {
    padding: 60px 20px 20px 20px;
  }
  .search-close-btn {
    top: 20px;
    right: 20px;
    font-size: 20px;
  }
  #search-input {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

/* Dynamic Shoppable Hotspots Styling */
.hotspot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  cursor: pointer;
  pointer-events: auto;
  /* background-color: rgba(255, 255, 255, 0.05); // Uncomment to debug coordinates visually */
}

/* Floating cursor label */
.hotspot-cursor-label {
  position: fixed;
  pointer-events: none;
  background-color: transparent; /* No container background */
  color: #ffffff; /* Pure white text */
  padding: 0; /* No padding */
  z-index: 20000;
  opacity: 0;
  transform: translateX(-10px); /* Tighter slide offset */
  clip-path: inset(0 100% 0 0); /* Masked from right side */
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              clip-path 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  border: none; /* No border */
  box-shadow: none; /* No shadow */
  display: flex;
  flex-direction: column;
  gap: 1px; /* Tighter vertical gap */
  pointer-events: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Subtle shadow on text for legibility against busy backgrounds */
}

.hotspot-cursor-label.active {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0); /* Fully slide-revealed */
}

.hotspot-title {
  font-family: var(--font-primary);
  font-size: 11px; /* Tighter font size */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em; /* Tighter letter spacing */
  line-height: 1.1;
  color: #ffffff;
}

.hotspot-subtext {
  font-family: var(--font-mono);
  font-size: 7.5px; /* Tighter font size */
  color: rgba(255, 255, 255, 0.7); /* Muted semi-transparent white */
  text-transform: uppercase;
  letter-spacing: 0.04em; /* Tighter letter spacing */
  line-height: 1.1;
}
/* Logo helper sizing rules */
.logo-wordmark {
  height: 25px !important; /* Reduced by 10% from 28px */
  width: auto !important;
}

.logo-monogram {
  height: 34px !important; /* Increased by 20% from 28px */
  width: 34px !important;
  max-width: 34px !important;
}

/* Mobile menu toggle centering */
.mobile-nav-toggle button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

@media (max-width: 900px) {
  .logo-wordmark {
    height: 16px !important; /* Reduced by 10% from 18px */
  }
  .logo-monogram {
    height: 22px !important; /* Increased by 20% from 18px */
    width: 22px !important;
    max-width: 22px !important;
  }
}

/* Plinko Game active slot styling overrides */
.plinko-slot.active.slot-10 {
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  box-shadow: inset 0 -15px 20px rgba(255, 255, 255, 0.15) !important;
  border-bottom: 2px solid #ffffff !important;
}

.plinko-slot.active.slot-20 {
  background-color: rgba(0, 85, 255, 0.1) !important;
  color: #3b82f6 !important;
  box-shadow: inset 0 -15px 25px rgba(0, 85, 255, 0.3) !important;
  border-bottom: 2px solid #3b82f6 !important;
}

.plinko-slot.active.slot-30 {
  background-color: rgba(255, 51, 0, 0.1) !important;
  color: #ef4444 !important;
  box-shadow: inset 0 -15px 25px rgba(255, 51, 0, 0.3) !important;
  border-bottom: 2px solid #ef4444 !important;
}

.plinko-slot.active.slot-50 {
  background-color: rgba(0, 255, 170, 0.12) !important;
  color: #00ffaa !important;
  box-shadow: inset 0 -20px 30px rgba(0, 255, 170, 0.4) !important;
  border-bottom: 2px solid #00ffaa !important;
}

/* Panoramic Swipe Runway & Spec Card Styles */
.runway-scroll-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.runway-mobile-img {
  display: none; /* Hidden on desktop, desktop uses fixed #bg-1 layer */
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  #bg-1 {
    display: none !important; /* Hide fixed desktop bg image */
  }
  
  .runway-scroll-wrapper {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
  }
  
  .runway-scroll-wrapper picture {
    display: block;
    height: 100%;
  }
  
  .runway-mobile-img {
    display: block !important;
    height: 100% !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
  }
  
  #slide-1 .hotspot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(100vh * 1.777) !important; /* 16:9 Aspect Ratio Width */
    min-width: 750px;
  }
  
  /* Plus mark indicators for mobile touch targets */
  #slide-1 .hotspot::after {
    content: '+';
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    animation: pulseMobileTarget 2s infinite ease-in-out;
  }
}

@keyframes pulseMobileTarget {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Mobile Product Spec Card */
.mobile-product-card {
  position: fixed;
  bottom: -180px; /* Hidden initially */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background-color: #111111;
  border: 1px solid #333333;
  padding: 16px;
  z-index: 10000;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-product-card.active {
  bottom: 90px; /* Slid up above pagination pagination dots */
}

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

.mpc-title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mpc-close-btn {
  background: none;
  border: none;
  color: #a3a3a3;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
}

.mpc-tags {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: #a3a3a3;
  margin-bottom: 14px;
  line-height: 1.4;
  text-transform: uppercase;
}

.mpc-shop-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #ffffff;
  color: #000000;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 10px 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}

.mpc-shop-btn:hover {
  background-color: transparent;
  color: #ffffff;
}

/* Make Win Discount link and logo icon color red */
.header-game-link {
  color: #ff3b30 !important;
}
.header-game-link:hover {
  opacity: 0.8 !important;
}

/* Split game link visibility layout */
.header-game-link-mobile {
  display: none !important;
}
.header-game-link-desktop {
  display: inline-flex !important;
}

@media (max-width: 900px) {
  .header-right a.header-game-link-desktop {
    display: none !important;
  }
  .header-game-link-mobile {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 14px !important;
  }
}

/* Quick Add Overlay styling */
.product-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.quick-add-sizes-overlay {
  display: none !important;
}


.quick-add-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: #a3a3a3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quick-add-buttons {
  display: flex;
  gap: 6px;
  width: 100%;
  justify-content: center;
}

.quick-add-btn {
  background: none;
  border: 1px solid #333333;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 4px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  max-width: 45px;
  text-align: center;
}

.quick-add-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Cart Drawer Cross-Sell */
.cart-cross-sell {
  margin-top: 30px;
  border-top: 1px solid #1f1f1f;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-cross-sell-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-cross-sell-body {
  display: flex;
  gap: 12px;
  background-color: #0b0b0b;
  border: 1px solid #1a1a1a;
  padding: 10px;
  align-items: center;
}

.cart-cross-sell-img-wrap {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: #111111;
  border: 1px solid #222222;
}

.cart-cross-sell-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-cross-sell-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cs-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cs-title {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.cs-price {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #a3a3a3;
}

.cs-sizes {
  display: flex;
  gap: 4px;
}

.cs-add-btn {
  background: none;
  border: 1px solid #333333;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 8px;
  padding: 3px 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cs-add-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Fit Finder Modal Popup Overlay */
.fit-finder-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: transparent; /* Remove overlay completely */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fit-finder-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.fit-finder-modal {
  background-color: #ffffff; /* Make popup white */
  border: 1px solid #111111; /* Clean brutalist border */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); /* Clean floating shadow */
  width: 90%;
  max-width: 440px;
  padding: 24px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(20px);
}

.fit-finder-overlay.active .fit-finder-modal {
  transform: translateY(0);
}

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

.ff-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #111111; /* Dark text */
  letter-spacing: 0.1em;
}

.ff-close-btn {
  background: none;
  border: none;
  color: #111111; /* Dark text */
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
}

.ff-desc {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #767676; /* Dark gray text */
  margin-bottom: 20px;
  line-height: 1.4;
  text-transform: uppercase;
}

.ff-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.ff-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ff-field label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: #111111; /* Dark text */
  letter-spacing: 0.05em;
}

.ff-field input,
.ff-select {
  background-color: #ffffff; /* White background */
  border: 1px solid #111111; /* Dark border */
  color: #111111; /* Dark text */
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 10px;
  width: 100%;
}

.ff-field input:focus,
.ff-select:focus {
  border-color: #ff3b30; /* Highlight red on focus */
  outline: none;
}

.ff-submit-btn {
  background-color: #111111; /* Dark background */
  color: #ffffff; /* White text */
  border: 1px solid #111111;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 12px 0;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.ff-submit-btn:hover {
  background-color: #ffffff; /* White background on hover */
  color: #111111; /* Dark text */
  border-color: #111111;
}

/* Results section inside modal */
.ff-result {
  border-top: 1px dashed #e5e5e5; /* Light border divider */
  padding-top: 18px;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ff-result.active {
  display: flex;
}

.ff-result-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #767676; /* Dark gray label */
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.ff-result-value {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 900;
  color: #ff3b30; /* Highlight in Funtroo red */
  line-height: 1;
  margin-bottom: 10px;
}

.ff-result-note {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: #111111; /* Dark text */
  line-height: 1.4;
  text-transform: uppercase;
  max-width: 320px;
}

/* Ambient Audio Mood Player */
.footer-audio-player {
  margin-top: 15px;
}

.audio-toggle-btn {
  background: none;
  border: 1px solid #333333;
  color: #ffffff;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  height: 28px;
  transition: all 0.3s ease;
}

.audio-toggle-btn:hover {
  border-color: #ffffff;
}

.audio-wave-bar {
  display: inline-block;
  width: 2px;
  height: 8px;
  background-color: #ffffff;
  transition: height 0.15s ease;
}

.audio-toggle-btn.playing .audio-wave-bar:nth-child(1) {
  animation: audioWave 1.2s infinite ease-in-out alternate;
}
.audio-toggle-btn.playing .audio-wave-bar:nth-child(2) {
  animation: audioWave 0.8s infinite ease-in-out alternate 0.2s;
}
.audio-toggle-btn.playing .audio-wave-bar:nth-child(3) {
  animation: audioWave 1.4s infinite ease-in-out alternate 0.4s;
}
.audio-toggle-btn.playing .audio-wave-bar:nth-child(4) {
  animation: audioWave 1s infinite ease-in-out alternate 0.1s;
}

.audio-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

@keyframes audioWave {
  0% {
    height: 4px;
  }
  100% {
    height: 16px;
  }
}

/* Brutalist Announcement Scrolling Marquee */
.announcement-bar {
  background-color: #000000;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-text {
  padding-right: 3rem;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

/* Sizing Chart Unit Toggle */
.size-toggle-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.size-toggle-buttons {
  display: flex;
  border: 1px solid #333333;
}

.size-toggle-btn {
  background: none;
  border: none;
  color: #a3a3a3;
  font-family: var(--font-mono);
  font-size: 8px;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-toggle-btn.active {
  background-color: #ffffff;
  color: #000000;
}

/* Notify Me Restock Popup Modal Overlay */
.notify-me-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: transparent; /* Remove overlay completely */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.notify-me-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.notify-me-modal {
  background-color: #ffffff; /* Make popup white */
  border: 1px solid #111111; /* Clean brutalist border */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); /* Clean floating shadow */
  width: 90%;
  max-width: 440px;
  padding: 24px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(20px);
}

.notify-me-overlay.active .notify-me-modal {
  transform: translateY(0);
}

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

.nm-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: #111111; /* Dark text */
  letter-spacing: 0.1em;
}

.nm-close-btn {
  background: none;
  border: none;
  color: #111111; /* Dark text */
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
}

.nm-desc {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #767676; /* Dark gray text */
  margin-bottom: 20px;
  line-height: 1.4;
  text-transform: uppercase;
}

.nm-product-info {
  background-color: #f7f7f7; /* Very light gray */
  border: 1px solid #e5e5e5;
  padding: 12px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: #111111; /* Dark text */
  text-transform: uppercase;
}

.nm-product-info span.mono {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #767676;
}

.nm-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nm-field label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: #111111; /* Dark text */
  letter-spacing: 0.05em;
}

.nm-field input {
  background-color: #ffffff; /* White background */
  border: 1px solid #111111; /* Dark border */
  color: #111111; /* Dark text */
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 10px;
  width: 100%;
}

.nm-field input:focus {
  border-color: #ff3b30; /* Highlight red on focus */
  outline: none;
}

.nm-submit-btn {
  background-color: #111111; /* Dark background */
  color: #ffffff; /* White text */
  border: 1px solid #111111;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 12px 0;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.nm-submit-btn:hover {
  background-color: #ffffff; /* White background on hover */
  color: #111111; /* Dark text */
  border-color: #111111;
}

/* Success State inside restock modal */
.nm-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.nm-success.active {
  display: flex;
}

.nm-success-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #111111; /* Dark text */
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.nm-success-desc {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #767676; /* Dark gray text */
  line-height: 1.4;
  text-transform: uppercase;
  max-width: 280px;
}

/* Responsive picture element support */
.homepage-bg-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
