/** Shopify CDN: Minification failed

Line 1352:0 All "@import" rules must come first

**/
/* ============================================
   NASHE Theme Styles
   EU-Compliant Fonts + Design System
   ============================================ */

/* ----------------------------------------
   FONTS - Option 1: Self-hosted (Recommended)
   Upload these files to Assets folder:
   - bebas-neue.woff2
   - inter-300.woff2, inter-400.woff2, inter-500.woff2, inter-600.woff2, inter-700.woff2
   ---------------------------------------- */

@font-face {
  font-family: 'Bebas Neue';
  src: url('bebas-neue.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('inter-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------
   FONTS - Option 2: Bunny Fonts (GDPR-compliant CDN)
   Add this to theme.liquid <head> instead:
   <link href="https://fonts.bunny.net/css?family=bebas-neue:400|inter:300,400,500,600,700" rel="stylesheet">
   ---------------------------------------- */

/* ----------------------------------------
   CSS VARIABLES - Design Tokens
   ---------------------------------------- */

:root {
  /* Colors */
  --nashe-background: 0 0% 100%;
  --nashe-foreground: 0 0% 3.9%;
  --nashe-primary: 0 0% 9%;
  --nashe-primary-foreground: 0 0% 98%;
  --nashe-secondary: 0 0% 96.1%;
  --nashe-secondary-foreground: 0 0% 9%;
  --nashe-muted: 0 0% 96.1%;
  --nashe-muted-foreground: 0 0% 45.1%;
  --nashe-accent: 0 0% 96.1%;
  --nashe-accent-foreground: 0 0% 9%;
  --nashe-border: 0 0% 89.8%;
  --nashe-success: 142 76% 36%;
  --nashe-error: 0 84% 60%;
  
  /* Typography */
  --nashe-font-display: 'Bebas Neue', sans-serif;
  --nashe-font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --nashe-spacing-xs: 0.25rem;
  --nashe-spacing-sm: 0.5rem;
  --nashe-spacing-md: 1rem;
  --nashe-spacing-lg: 1.5rem;
  --nashe-spacing-xl: 2rem;
  --nashe-spacing-2xl: 3rem;
  
  /* Border Radius */
  --nashe-radius: 0;
  --nashe-radius-sm: 0.125rem;
  --nashe-radius-md: 0.25rem;
  
  /* Transitions */
  --nashe-transition-fast: 150ms ease;
  --nashe-transition-normal: 300ms ease;
  --nashe-transition-slow: 500ms ease;
}

/* ----------------------------------------
   STICKY HEADER STYLES
   ---------------------------------------- */

.nashe-header-section {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  transform: none !important;
  background-color: hsl(var(--nashe-background));
  border-bottom: 1px solid hsl(var(--nashe-border));
}

/* Override Dawn's header hiding behavior */
.shopify-section-header-hidden .nashe-header-section,
.shopify-section-header-sticky .nashe-header-section,
.header-wrapper--border-bottom .nashe-header-section,
[data-header-scroll] .nashe-header-section {
  transform: none !important;
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure body has proper padding for sticky header */
body.nashe-sticky-header-active {
  scroll-padding-top: 80px;
}

.nashe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--nashe-spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.nashe-header__logo {
  font-family: var(--nashe-font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: hsl(var(--nashe-foreground));
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nashe-header__nav {
  display: flex;
  align-items: center;
  gap: var(--nashe-spacing-xl);
}

.nashe-header__nav-link {
  font-family: var(--nashe-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--nashe-muted-foreground));
  text-decoration: none;
  transition: color var(--nashe-transition-fast);
}

.nashe-header__nav-link:hover {
  color: hsl(var(--nashe-foreground));
}

.nashe-header__actions {
  display: flex;
  align-items: center;
  gap: var(--nashe-spacing-md);
}

.nashe-header__cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--nashe-spacing-sm);
}

.nashe-header__cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background-color: #e53e3e;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Mobile Menu */
.nashe-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--nashe-spacing-sm);
}

.nashe-header__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: hsl(var(--nashe-background));
  border-top: 1px solid hsl(var(--nashe-border));
  padding: var(--nashe-spacing-lg);
}

.nashe-header__mobile-menu.is-open {
  display: block;
}

.nashe-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--nashe-spacing-md);
}

.nashe-header__mobile-nav-link {
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--nashe-foreground));
  text-decoration: none;
  padding: var(--nashe-spacing-sm) 0;
}

@media (max-width: 768px) {
  .nashe-header__nav {
    display: none;
  }
  
  .nashe-header__mobile-toggle {
    display: block;
  }
}

/* ----------------------------------------
   PRODUCT CARD STYLES
   ---------------------------------------- */

.nashe-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.nashe-product-card__image-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
  padding: var(--nashe-spacing-sm);
}

@media (min-width: 640px) {
  .nashe-product-card__image-wrapper {
    height: 340px;
    padding: var(--nashe-spacing-md);
  }
}

@media (min-width: 1024px) {
  .nashe-product-card__image-wrapper {
    height: 360px;
    padding: var(--nashe-spacing-lg);
  }
}

.nashe-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.05);
  transition: transform 700ms ease;
}

.nashe-product-card:hover .nashe-product-card__image {
  transform: scale(1.1);
}

.nashe-product-card__info {
  padding-top: var(--nashe-spacing-md);
  padding-bottom: var(--nashe-spacing-sm);
}

.nashe-product-card__title {
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--nashe-foreground) / 0.9);
  margin-bottom: var(--nashe-spacing-xs);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nashe-product-card__price {
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  color: hsl(var(--nashe-foreground));
}

.nashe-product-card__add-to-cart {
  width: 100%;
  padding: var(--nashe-spacing-md);
  background-color: hsl(var(--nashe-primary));
  color: hsl(var(--nashe-primary-foreground));
  font-family: var(--nashe-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--nashe-transition-normal);
  text-align: center;
}

.nashe-product-card:hover .nashe-product-card__add-to-cart {
  opacity: 1;
}

.nashe-product-card__add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.nashe-product-card__add-to-cart.is-loading {
  position: relative;
  color: transparent;
}

.nashe-product-card__add-to-cart.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid hsl(var(--nashe-primary-foreground));
  border-top-color: transparent;
  border-radius: 50%;
  animation: nashe-spin 0.8s linear infinite;
}

@keyframes nashe-spin {
  to { transform: rotate(360deg); }
}

/* ----------------------------------------
   PRODUCT PAGE STYLES
   ---------------------------------------- */

.nashe-product {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--nashe-spacing-xl) var(--nashe-spacing-lg);
}

.nashe-product__breadcrumb {
  font-family: var(--nashe-font-body);
  font-size: 0.75rem;
  color: hsl(var(--nashe-muted-foreground));
  margin-bottom: var(--nashe-spacing-xl);
}

.nashe-product__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.nashe-product__breadcrumb a:hover {
  color: hsl(var(--nashe-foreground));
}

.nashe-product__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--nashe-spacing-2xl);
}

@media (min-width: 768px) {
  .nashe-product__main {
    grid-template-columns: 1fr 1fr;
  }
}

/* Gallery */
.nashe-product__gallery {
  display: flex;
  flex-direction: column;
  gap: var(--nashe-spacing-md);
}

.nashe-product__main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background-color: hsl(var(--nashe-secondary));
}

.nashe-product__thumbnails {
  display: flex;
  gap: var(--nashe-spacing-sm);
  overflow-x: auto;
}

.nashe-product__thumbnail {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background-color: hsl(var(--nashe-secondary));
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--nashe-transition-fast);
}

.nashe-product__thumbnail.is-active,
.nashe-product__thumbnail:hover {
  border-color: hsl(var(--nashe-foreground));
}

/* Info */
.nashe-product__info {
  display: flex;
  flex-direction: column;
  gap: var(--nashe-spacing-lg);
}

.nashe-product__title {
  font-family: var(--nashe-font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: hsl(var(--nashe-foreground));
  margin: 0;
}

.nashe-product__price-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--nashe-spacing-xs);
}

.nashe-product__price {
  font-family: var(--nashe-font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--nashe-foreground));
  display: flex;
  align-items: center;
  gap: var(--nashe-spacing-sm);
  flex-wrap: wrap;
}

.nashe-product__price--compare {
  font-size: 1rem;
  font-weight: 400;
  color: hsl(var(--nashe-muted-foreground));
  text-decoration: line-through;
}

.nashe-product__sale-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background-color: hsl(var(--nashe-foreground));
  color: hsl(var(--nashe-background));
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}

.nashe-product__tax-note {
  font-family: var(--nashe-font-body);
  font-size: 0.75rem;
  color: hsl(var(--nashe-muted-foreground));
  margin: 0;
}

.nashe-product__tax-note a {
  color: inherit;
  text-decoration: underline;
}

.nashe-product__tax-note a:hover {
  color: hsl(var(--nashe-foreground));
}

/* Fit Assistant Link - Prominent CTA */
.nashe-product__fit-assistant-link {
  display: inline-block;
  font-family: var(--nashe-font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(212 100% 47%);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color var(--nashe-transition-fast);
  margin-top: var(--nashe-spacing-xs);
}

.nashe-product__fit-assistant-link:hover {
  color: hsl(212 100% 35%);
}

/* Reviews placeholder */
.nashe-product__reviews {
  display: flex;
  align-items: center;
  gap: var(--nashe-spacing-sm);
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  color: hsl(var(--nashe-muted-foreground));
}

/* Variants */
.nashe-product__variants {
  display: flex;
  flex-direction: column;
  gap: var(--nashe-spacing-md);
}

.nashe-product__variant-label {
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--nashe-foreground));
  display: flex;
  align-items: center;
  gap: var(--nashe-spacing-sm);
}

.nashe-product__find-size {
  font-size: 0.75rem;
  color: hsl(var(--nashe-muted-foreground));
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nashe-product__find-size:hover {
  color: hsl(var(--nashe-foreground));
}

.nashe-product__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--nashe-spacing-sm);
}

.nashe-product__variant-option {
  min-width: 48px;
  height: 40px;
  padding: 0 var(--nashe-spacing-md);
  border: 1px solid hsl(var(--nashe-border));
  background-color: hsl(var(--nashe-background));
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--nashe-transition-fast);
}

.nashe-product__variant-option:hover {
  border-color: hsl(var(--nashe-foreground));
}

.nashe-product__variant-option.is-selected {
  background-color: hsl(var(--nashe-foreground));
  color: hsl(var(--nashe-background));
  border-color: hsl(var(--nashe-foreground));
}

.nashe-product__variant-option.is-unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity */
.nashe-product__quantity {
  display: flex;
  align-items: center;
  gap: var(--nashe-spacing-md);
}

.nashe-product__quantity-label {
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--nashe-foreground));
}

.nashe-product__quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid hsl(var(--nashe-border));
}

.nashe-product__quantity-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: hsl(var(--nashe-foreground));
  transition: background-color var(--nashe-transition-fast);
}

.nashe-product__quantity-btn:hover {
  background-color: hsl(var(--nashe-secondary));
}

.nashe-product__quantity-input {
  width: 48px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid hsl(var(--nashe-border));
  border-right: 1px solid hsl(var(--nashe-border));
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
}

.nashe-product__quantity-input:focus {
  outline: none;
}

/* Add to Cart */
.nashe-product__add-to-cart {
  width: 100%;
  padding: 0.875rem;
  background-color: #2D7F3A;
  color: #fff;
  font-family: var(--nashe-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: opacity var(--nashe-transition-fast);
}

.nashe-product__add-to-cart:hover {
  background-color: #2D7F3A;
  opacity: 0.9;
}

.nashe-product__add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Highlights */
.nashe-product__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--nashe-spacing-sm);
}

.nashe-product__highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--nashe-spacing-sm);
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  color: hsl(var(--nashe-foreground) / 0.8);
}

.nashe-product__highlight::before {
  content: '✓';
  color: hsl(var(--nashe-success));
  font-weight: 600;
}

/* Fit & Material Info */
.nashe-product__meta {
  display: flex;
  flex-direction: column;
  gap: var(--nashe-spacing-sm);
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  color: hsl(var(--nashe-muted-foreground));
}

.nashe-product__meta-item {
  display: flex;
  gap: var(--nashe-spacing-sm);
}

.nashe-product__meta-label {
  font-weight: 500;
  color: hsl(var(--nashe-foreground));
}

/* ----------------------------------------
   ACCORDIONS
   ---------------------------------------- */

.nashe-accordions {
  margin-top: var(--nashe-spacing-2xl);
  border-top: 1px solid hsl(var(--nashe-border));
}

.nashe-accordion {
  border-bottom: 1px solid hsl(var(--nashe-border));
}

.nashe-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--nashe-spacing-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--nashe-foreground));
}

.nashe-accordion__icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--nashe-transition-fast);
}

.nashe-accordion__icon::before,
.nashe-accordion__icon::after {
  content: '';
  position: absolute;
  background-color: hsl(var(--nashe-foreground));
}

.nashe-accordion__icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nashe-accordion__icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity var(--nashe-transition-fast);
}

.nashe-accordion.is-open .nashe-accordion__icon::after {
  opacity: 0;
}

.nashe-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--nashe-transition-normal);
}

.nashe-accordion.is-open .nashe-accordion__content {
  max-height: 2000px;
}

.nashe-accordion__inner {
  padding-bottom: var(--nashe-spacing-lg);
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--nashe-foreground) / 0.8);
}

/* Size Guide Table */
.nashe-size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--nashe-spacing-md);
}

.nashe-size-guide-table th,
.nashe-size-guide-table td {
  padding: var(--nashe-spacing-sm) var(--nashe-spacing-md);
  text-align: left;
  border: 1px solid hsl(var(--nashe-border));
}

.nashe-size-guide-table th {
  background-color: hsl(var(--nashe-secondary));
  font-weight: 500;
}
/* ----------------------------------------
   SIZE GUIDE TABLE STYLES
   ---------------------------------------- */

.nashe-size-guide table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
}

.nashe-size-guide table thead {
  background-color: hsl(var(--nashe-foreground));
  color: hsl(var(--nashe-background));
}

.nashe-size-guide table th {
  padding: var(--nashe-spacing-md);
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.nashe-size-guide table td {
  padding: var(--nashe-spacing-md);
  border-bottom: 1px solid hsl(var(--nashe-border));
}

.nashe-size-guide table tbody tr:hover {
  background-color: hsl(var(--nashe-secondary));
}

.nashe-size-guide table tbody tr:last-child td {
  border-bottom: none;
}

/* Size Test */
.nashe-size-test {
  background-color: hsl(var(--nashe-secondary));
  padding: var(--nashe-spacing-lg);
  margin-bottom: var(--nashe-spacing-lg);
}

.nashe-size-test__title {
  font-family: var(--nashe-font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--nashe-spacing-md);
}

.nashe-size-test__form {
  display: flex;
  flex-direction: column;
  gap: var(--nashe-spacing-md);
}

.nashe-size-test__field {
  display: flex;
  flex-direction: column;
  gap: var(--nashe-spacing-xs);
}

.nashe-size-test__label {
  font-size: 0.875rem;
  font-weight: 500;
}

.nashe-size-test__input {
  padding: var(--nashe-spacing-sm) var(--nashe-spacing-md);
  border: 1px solid hsl(var(--nashe-border));
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
}

.nashe-size-test__input:focus {
  outline: none;
  border-color: hsl(var(--nashe-foreground));
}

.nashe-size-test__fit-options {
  display: flex;
  gap: var(--nashe-spacing-sm);
  flex-wrap: wrap;
}

.nashe-size-test__fit-option {
  padding: var(--nashe-spacing-sm) var(--nashe-spacing-md);
  border: 1px solid hsl(var(--nashe-border));
  background: hsl(var(--nashe-background));
  cursor: pointer;
  font-size: 0.875rem;
  transition: all var(--nashe-transition-fast);
}

.nashe-size-test__fit-option:hover,
.nashe-size-test__fit-option.is-selected {
  background-color: hsl(var(--nashe-foreground));
  color: hsl(var(--nashe-background));
  border-color: hsl(var(--nashe-foreground));
}

.nashe-size-test__result {
  margin-top: var(--nashe-spacing-md);
  padding: var(--nashe-spacing-md);
  background-color: hsl(var(--nashe-background));
  border-left: 3px solid hsl(var(--nashe-success));
}

.nashe-size-test__result-size {
  font-size: 1.25rem;
  font-weight: 600;
}

.nashe-size-test__disclaimer {
  font-size: 0.75rem;
  color: hsl(var(--nashe-muted-foreground));
  margin-top: var(--nashe-spacing-sm);
}

.nashe-size-test__copy-json {
  margin-top: var(--nashe-spacing-md);
  padding: var(--nashe-spacing-sm) var(--nashe-spacing-md);
  background: none;
  border: 1px solid hsl(var(--nashe-border));
  cursor: pointer;
  font-size: 0.75rem;
  color: hsl(var(--nashe-muted-foreground));
  transition: all var(--nashe-transition-fast);
}

.nashe-size-test__copy-json:hover {
  border-color: hsl(var(--nashe-foreground));
  color: hsl(var(--nashe-foreground));
}

/* ----------------------------------------
   TRUST BADGES
   ---------------------------------------- */

.nashe-trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--nashe-spacing-2xl);
  padding: var(--nashe-spacing-2xl) 0;
  margin-top: var(--nashe-spacing-2xl);
  border-top: 1px solid hsl(var(--nashe-border));
}

.nashe-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--nashe-spacing-sm);
  text-align: center;
}

.nashe-trust-badge__icon {
  font-size: 1.5rem;
}

.nashe-trust-badge__text {
  font-family: var(--nashe-font-body);
  font-size: 0.75rem;
  color: hsl(var(--nashe-muted-foreground));
}

@media (max-width: 640px) {
  .nashe-trust-badges {
    flex-direction: column;
    gap: var(--nashe-spacing-lg);
  }
}

/* ----------------------------------------
   SIMILAR PRODUCTS
   ---------------------------------------- */

.nashe-similar-products {
  margin-top: var(--nashe-spacing-2xl);
  padding-top: var(--nashe-spacing-2xl);
  border-top: 1px solid hsl(var(--nashe-border));
}

.nashe-similar-products__title {
  font-family: var(--nashe-font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: var(--nashe-spacing-xl);
}

.nashe-similar-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--nashe-spacing-lg);
}

@media (min-width: 768px) {
  .nashe-similar-products__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ----------------------------------------
   SIZE TEST MODAL
   ---------------------------------------- */

.nashe-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--nashe-transition-normal);
}

.nashe-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nashe-modal {
  background-color: hsl(var(--nashe-background));
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--nashe-spacing-xl);
  position: relative;
}

.nashe-modal__close {
  position: absolute;
  top: var(--nashe-spacing-md);
  right: var(--nashe-spacing-md);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: hsl(var(--nashe-muted-foreground));
}

.nashe-modal__close:hover {
  color: hsl(var(--nashe-foreground));
}

.nashe-modal__title {
  font-family: var(--nashe-font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--nashe-spacing-lg);
}

/* ----------------------------------------
   FIT ASSISTANT - PROMINENT CTA BUTTON
   ---------------------------------------- */

.nashe-product__fit-assistant-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  font-family: var(--nashe-font-body);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.nashe-product__fit-assistant-cta:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.nashe-product__fit-assistant-cta:active {
  transform: translateY(0);
}

.nashe-product__fit-assistant-cta svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

/* ----------------------------------------
   FIT ASSISTANT MODAL
   ---------------------------------------- */

.fit-assistant-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fit-assistant-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.fit-assistant-content {
  position: relative;
  background: #fff;
  padding: 2rem;
  max-width: 440px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
}

.fit-assistant-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  color: #737373;
  transition: color 0.2s;
}

.fit-assistant-close:hover {
  color: #0d0d0d;
}

.fit-assistant-title {
  font-family: var(--nashe-font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  text-align: center;
}

.fit-assistant-subtitle {
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  color: #737373;
  text-align: center;
  margin-bottom: 1.5rem;
}

.fit-assistant-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fit-assistant-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fit-assistant-field label {
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d0d0d;
}

.fit-assistant-field input[type="number"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-family: var(--nashe-font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.fit-assistant-field input[type="number"]:focus {
  outline: none;
  border-color: #2563eb;
}

.fit-assistant-hint {
  font-size: 0.75rem;
  color: #737373;
}

.fit-assistant-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  color: #737373;
}

.fit-assistant-slider-wrap input[type="range"] {
  flex: 1;
  height: 6px;
  -webkit-appearance: none;
  background: #e5e5e5;
  border-radius: 3px;
  cursor: pointer;
}

.fit-assistant-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #0d0d0d;
  border-radius: 50%;
  cursor: pointer;
}

.fit-assistant-button {
  width: 100%;
  padding: 1rem;
  background: #0d0d0d;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--nashe-font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}

.fit-assistant-button:hover {
  opacity: 0.9;
}

.fit-assistant-result {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: #f5f5f5;
  border-radius: 4px;
}

.fit-assistant-result p {
  font-family: var(--nashe-font-body);
  font-size: 1rem;
  margin: 0;
}

.fit-assistant-result strong {
  font-size: 1.75rem;
  color: #2563eb;
}

.fit-assistant-link {
  display: inline-block;
  background: none;
  border: none;
  font-family: var(--nashe-font-body);
  font-size: 0.875rem;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 0.75rem;
  color: #737373;
}

.fit-assistant-link:hover {
  color: #0d0d0d;
}
.fit-assistant-trigger,
.nashe-product__fit-assistant-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  margin-top: 16px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: #2563eb !important;
}

.fit-assistant-trigger:hover,
.nashe-product__fit-assistant-link:hover {
  color: #1d4ed8 !important;
}
/* ===== NASHE FONTS (EU-Compliant via Bunny Fonts) ===== */
@import url('https://fonts.bunny.net/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* Base Typography */
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

/* ===== PRODUCT CARD STYLING ===== */
/* Product Title - Black */
.card__heading,
.card__heading a,
.card-information__text,
.card-information__wrapper .card__heading,
.product-card__title,
.product-card__title a {
  color: #0d0d0d !important;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
}

/* Product Price - Black */
.price,
.price-item,
.price-item--regular,
.price-item--sale,
.card-information .price,
.product-card__price {
  color: #0d0d0d !important;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Compare-at price (strikethrough) - only when on sale */
.price--on-sale .price-item--regular {
  color: #737373 !important;
}
/* ============================================
   OVERRIDE DAWN THEME - COLLECTION CARDS
   ============================================ */

/* Override Dawn's link color variable */
:root,
.color-scheme-1,
.color-scheme-2,
.color-scheme-3,
.color-scheme-4,
[class*="color-"] {
  --color-link: 13, 13, 13 !important;
  --color-foreground: 13, 13, 13 !important;
}

/* Product Card Links - Force Black */
.card__heading a,
.card__heading a:link,
.card__heading a:visited,
.card__heading a:hover,
a.full-unstyled-link,
.full-unstyled-link,
.card-information a,
.card-wrapper a,
.product-card-wrapper a,
ul.product-grid a,
.collection-product-card a {
  color: rgb(13, 13, 13) !important;
  text-decoration: none !important;
}

/* Product Price - Force Black */
.price-item,
.price-item--regular,
.price-item--sale,
.price .price-item,
span.price-item {
  color: rgb(13, 13, 13) !important;
}

/* Compare-at Price - Gray + Strikethrough - only when on sale */
.price--on-sale .price-item--regular,
.price--on-sale s,
.price--on-sale s.price-item,
.price--on-sale s.price-item--regular,
.price--on-sale .price__regular s,
.price--on-sale dd s {
  color: rgb(115, 115, 115) !important;
  text-decoration: line-through !important;
}

/* Ensure regular prices without compare-at are NOT struck through */
.price:not(.price--on-sale) s,
.price:not(.price--on-sale) .price-item--regular {
  color: rgb(13, 13, 13) !important;
  text-decoration: none !important;
}

/* Force fonts */
.card__heading,
.card__heading a {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}
/* =============================================
   GLOBAL TYPOGRAPHY & LINK FIX
   Force consistent styling across all pages
============================================= */

/* Override Dawn's default link color variable */
:root {
  --color-link: 0, 0, 0 !important;
  --color-foreground: 0, 0, 0 !important;
}

/* Global anchor reset - NO blue links anywhere */
a,
a:link,
a:visited,
a:hover,
a:active,
.card a,
.card-wrapper a,
.card-information a,
.card__heading a,
.product-card a,
.collection a,
.full-unstyled-link,
.link,
[class*="card"] a,
[class*="product"] a {
  color: #000 !important;
  text-decoration: none !important;
}

a:hover,
.card a:hover,
.full-unstyled-link:hover {
  text-decoration: underline !important;
  color: #000 !important;
}

/* Product titles in grids */
.card__heading,
.card__heading a,
.card-information__text,
.card-information__text a,
h3.card__heading,
h3.card__heading a,
.product-card__title,
.product-card__title a,
.nashe-product-card__title,
.nashe-product-card__title a {
  font-family: 'Bebas Neue', 'Impact', sans-serif !important;
  color: #000 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* =============================================
   SALE PRICE STYLING
   Works for Dawn price snippet + custom cards
============================================= */

/* Compare-at (original) price - strikethrough */
.price--on-sale .price-item--regular,
.price__regular .price-item--regular,
s.price-item--regular,
del.price-item--regular,
.nashe-product-card__compare-price,
.card .price s,
.card .price del,
[class*="compare-price"],
[class*="compare_at"] {
  color: #767676 !important;
  text-decoration: line-through !important;
  font-size: 0.9em;
  margin-right: 0.5em;
}

/* Sale (current) price */
.price--on-sale .price-item--sale,
.price__sale .price-item--sale,
.nashe-product-card__price,
.card .price:not(s):not(del) {
  color: #000 !important;
  font-weight: 600;
}

/* Sale badge */
.badge--sale,
.price__badge-sale,
.badge[class*="sale"],
.nashe-sale-badge {
  background-color: #000 !important;
  color: #fff !important;
  font-family: 'Bebas Neue', 'Impact', sans-serif !important;
  font-size: 0.75rem;
  padding: 0.2em 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  margin-left: 0.5em;
}

/* Price container layout */
.price,
.price__container,
.nashe-product-card__price-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25em;
}

/* ============================================
   SIMPLE ZOOM OVERLAY
   Click to zoom, click again to close
   Works on all devices (iOS & Android)
   ============================================ */

.nashe-zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  padding: 20px;
  padding-top: max(20px, env(safe-area-inset-top));
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}

.nashe-zoom-overlay.is-open {
  display: flex;
}

.nashe-zoom-overlay__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* Close button - always visible */
.nashe-zoom-overlay__close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nashe-zoom-overlay__close svg {
  width: 24px;
  height: 24px;
  color: #0d0d0d;
}

.nashe-zoom-overlay__hint {
  position: absolute;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--nashe-font-body);
  font-size: 14px;
  text-align: center;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  pointer-events: none;
}

/* Zoom indicator on main image */
.nashe-product__gallery {
  position: relative;
}

.nashe-product__main-image {
  cursor: zoom-in;
}

.nashe-product__zoom-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nashe-product__zoom-icon svg {
  width: 18px;
  height: 18px;
  color: #0d0d0d;
}

/* Prevent body scroll when zoom is open */
body.zoom-open {
  overflow: hidden;
}
