/** Shopify CDN: Minification failed

Line 74:28 Expected ":"

**/
/* ========================================
   Streetlovo Theme
   ======================================== */

/* ========================================
   CSS VARIABLES - Theme Customizable
   ======================================== */
:root {
  --streetlovo-bg: var(--color-background, #000000);
  --streetlovo-text: var(--color-primary, #FFD700);
  --streetlovo-text-secondary: var(--color-secondary, #FFD700);
  --streetlovo-border: var(--color-border, #333333);
  --streetlovo-red: var(--color-accent, #ff0000);
  --streetlovo-input-bg: var(--color-input-background, #0000AA);
  --streetlovo-input-text: var(--color-input-text, #FFD700);
  --streetlovo-button-bg: var(--color-button-background, #CC0000);
  --streetlovo-button-text: var(--color-button-text, #FFD700);
  --streetlovo-sold-out: var(--color-sold-out, #ff0000);
  --streetlovo-white: var(--color-contrast-text, #ffffff);
  --sidebar-width: 280px;
}

/* Hide mobile footer on desktop by default */
.streetlovo-mobile-footer,
.mobile-footer-section {
  display: none !important;
}

/* ========================================
   BASE STYLES
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

body {
  background: var(--streetlovo-bg);
  color: var(--streetlovo-text);
  font-family: var(--font-body-family);
  font-size: 13px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   LAYOUT WRAPPER - CENTERED Streetlovo STYLE
   ======================================== */
.streetlovo-page-wrapper {
  min-height: 100vh;
  background: var(--streetlovo-bg);
  display: flex;
  justify-content: center;\n  justify-items: center;
  padding: 0 40px;
}

.streetlovo-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
}

/* ========================================
   SIDEBAR - CENTERED
   ======================================== */
.streetlovo-sidebar {
  width: var(--sidebar-width);
  flex-shrink: 0;
  background: var(--streetlovo-bg);
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 40px 35px;
}

/* Logo Section */
.streetlovo-sidebar__logo {
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

.streetlovo-sidebar__logo img {
  width: 180px;
  height: auto;
}

.streetlovo-sidebar__logo-text {
  font-family: var(--font-heading-family);
  font-size: 42px;
  letter-spacing: 3px;
  color: var(--streetlovo-white);
  text-transform: uppercase;
  border: 2px solid var(--streetlovo-white);
  border-radius: 50%;
  padding: 15px 25px;
  display: inline-block;
}

/* Category Navigation */
.streetlovo-sidebar__nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 40px;
}

.streetlovo-sidebar__nav::-webkit-scrollbar {
  width: 3px;
}

.streetlovo-sidebar__nav::-webkit-scrollbar-thumb {
  background: var(--streetlovo-border);
}

.streetlovo-sidebar__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.streetlovo-sidebar__menu-item {
  margin-bottom: 10px;
}

.streetlovo-sidebar__menu-link {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--streetlovo-text);
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  display: block;
  padding: 3px 0;
}

.streetlovo-sidebar__menu-link:hover {
  opacity: 0.7;
}

.streetlovo-sidebar__menu-link--active {
  color: var(--streetlovo-white);
}

.streetlovo-sidebar__menu-link--highlight {
  color: var(--streetlovo-red);
}

/* Sidebar Footer */
.streetlovo-sidebar__footer {
  margin-top: auto;
  padding-top: 20px;
}

.streetlovo-sidebar__social {
  margin-bottom: 15px;
}

.streetlovo-sidebar__social-link {
  color: var(--streetlovo-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: opacity 0.2s ease;
}

.streetlovo-sidebar__social-link:hover {
  opacity: 0.7;
}

.streetlovo-sidebar__social-link svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.streetlovo-sidebar__footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.streetlovo-sidebar__footer-item {
  margin-bottom: 8px;
}

.streetlovo-sidebar__footer-link {
  font-family: var(--font-body-family);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--streetlovo-text);
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.streetlovo-sidebar__footer-link:hover {
  opacity: 0.7;
}

/* ========================================
   MAIN CONTENT AREA
   ======================================== */
.streetlovo-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

/* Red Stripe */
.streetlovo-red-stripe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--streetlovo-red);
  z-index: 101;
}

/* ========================================
   HEADER
   ======================================== */
.streetlovo-header {
  flex-shrink: 0;
  background: var(--streetlovo-bg);
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  position: sticky;
  top: 4px;
  z-index: 50;
}

.streetlovo-header__search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.streetlovo-header__search-icon {
  color: var(--streetlovo-text);
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.streetlovo-header__search-text {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  text-transform: uppercase;
  border-bottom: 1px solid var(--streetlovo-text);
  padding-bottom: 2px;
}

.streetlovo-header__cart {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--streetlovo-text);
}

.streetlovo-header__cart svg {
  width: 20px;
  height: 20px;
  stroke: var(--streetlovo-text);
  fill: none;
  stroke-width: 1.5;
}

.streetlovo-header__cart-text {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  text-transform: uppercase;
}

.streetlovo-header__cart-count {
  display: inline;
}

.streetlovo-header__checkout {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.streetlovo-header__checkout:hover {
  opacity: 0.7;
}

/* ========================================
   SCROLLABLE CONTENT
   ======================================== */
.streetlovo-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 40px 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.streetlovo-content::-webkit-scrollbar {
  display: none;
}

.streetlovo-content::-webkit-scrollbar {
  width: 6px;
}

.streetlovo-content::-webkit-scrollbar-track {
  background: var(--streetlovo-bg);
}

.streetlovo-content::-webkit-scrollbar-thumb {
  background: var(--streetlovo-border);
  border-radius: 3px;
}

/* ========================================
   PRODUCT GRID
   ======================================== */
.streetlovo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

/* ========================================
   PRODUCT CARD
   ======================================== */
.streetlovo-product-card {
  position: relative;
  text-align: center;
}

/* Dual image hover effect - Container holds space */
.streetlovo-product-card__image-wrapper {
  position: relative;
  width: calc(100% - 40px);
  aspect-ratio: 3/4;
  background: transparent;
  margin: 0 auto 10px auto;
  overflow: hidden;
  display: block;
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 3/4) {
  .streetlovo-product-card__image-wrapper {
    padding-bottom: 133.33%;
    height: 0;
  }
}

.streetlovo-product-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  visibility: visible;
}

/* Primary image - visible by default */
.streetlovo-product-card__image--primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
  object-fit: contain;
}

/* Secondary image - hidden by default, on top */
.streetlovo-product-card__image--secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  object-fit: contain;
}

/* On fine pointers only: keep the image swap mutually exclusive. */
@media (hover: hover) and (pointer: fine) {
  .streetlovo-product-card__image-wrapper:has(.streetlovo-product-card__image--secondary):hover .streetlovo-product-card__image--primary,
  .streetlovo-product-card__image-wrapper:has(.streetlovo-product-card__image--secondary):focus-within .streetlovo-product-card__image--primary {
    opacity: 0;
    visibility: hidden;
  }

  .streetlovo-product-card__image-wrapper:hover .streetlovo-product-card__image--secondary,
  .streetlovo-product-card__image-wrapper:focus-within .streetlovo-product-card__image--secondary {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
}

@media (hover: none), (pointer: coarse) {
  .streetlovo-product-card__image--primary {
    opacity: 1;
    visibility: visible;
  }

  .streetlovo-product-card__image--secondary {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .streetlovo-product-card__image--primary,
  .streetlovo-product-card__image--secondary {
    transition: none;
  }
}

/* Sold Out Badge */
.streetlovo-product-card__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--streetlovo-text);
  text-transform: uppercase;
  z-index: 10;
}

.streetlovo-product-card__info {
  padding: 0 10px;
  text-align: center;
}

.streetlovo-product-card__title {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--streetlovo-text);
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.streetlovo-product-card__title a {
  color: inherit;
}

.streetlovo-product-card__price {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
}

.streetlovo-product-card__price--compare {
  color: #666;
  text-decoration: line-through;
  margin-left: 8px;
}

/* ========================================
   PRODUCT PAGE
   ======================================== */
.streetlovo-product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--streetlovo-bg);
  color: var(--streetlovo-text);
}

.streetlovo-product-page__media {
  position: relative;
  background-color: var(--streetlovo-bg);
}

.streetlovo-product-gallery {
  position: relative;
  background-color: var(--streetlovo-bg);
}

.streetlovo-product-gallery__layer {
  display: none;
  position: relative;
  background-color: var(--streetlovo-bg);
}

.streetlovo-product-gallery__layer.is-active {
  display: block;
}

.streetlovo-product-gallery__layer[aria-hidden="true"] {
  pointer-events: none;
}

.streetlovo-product-gallery__toggle {
  position: absolute;
  top: var(--orbit-toggle-offset-y, 16px);
  right: var(--orbit-toggle-offset-x, 16px);
  width: var(--orbit-toggle-size, 44px);
  height: var(--orbit-toggle-size, 44px);
  border: 1px solid var(--orbit-toggle-border, var(--streetlovo-border));
  border-radius: 50%;
  background: var(--orbit-toggle-bg, var(--streetlovo-button-bg));
  color: var(--orbit-toggle-color, var(--streetlovo-button-text));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 30;
  cursor: pointer;
  font-family: var(--font-body-family);
  font-size: 11px;
  letter-spacing: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.streetlovo-product-gallery__toggle:hover,
.streetlovo-product-gallery__toggle:focus-visible {
  filter: brightness(0.9);
  transform: scale(1.04);
}

.streetlovo-product-gallery__toggle:focus-visible {
  outline: 1px solid var(--streetlovo-text);
  outline-offset: 3px;
}

.streetlovo-product-gallery__toggle img {
  width: var(--orbit-toggle-icon-width, 36px);
  height: var(--orbit-toggle-icon-height, 36px);
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.streetlovo-product-gallery__toggle-svg {
  width: var(--orbit-toggle-svg-size, 24px);
  height: var(--orbit-toggle-svg-size, 24px);
  display: block;
  flex: 0 0 auto;
}

.streetlovo-product-gallery__toggle--custom-icon {
  background: transparent;
  border-color: transparent;
  color: inherit;
}

.streetlovo-product-gallery__toggle--custom-icon:hover,
.streetlovo-product-gallery__toggle--custom-icon:focus-visible {
  filter: none;
  background: transparent;
  border-color: transparent;
}

.streetlovo-product-page__image-main {
  aspect-ratio: 4/5;
  background-color: var(--streetlovo-bg);
  position: relative;
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 70vh;
  cursor: zoom-in;
}

.streetlovo-product-page__image-main:focus-visible,
.streetlovo-orbit-gallery:focus-visible,
.streetlovo-orbit-gallery__item:focus-visible,
.streetlovo-orbit-gallery__arrow:focus-visible {
  outline: 1px solid var(--streetlovo-text);
  outline-offset: 3px;
}

.streetlovo-product-page__image-main img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.streetlovo-orbit-gallery {
  position: absolute;
  inset: 0;
  min-height: var(--orbit-stage-height, clamp(420px, calc(100vh - 180px), var(--orbit-gallery-height, 560px)));
  background-color: var(--streetlovo-bg);
  overflow: hidden;
}

.streetlovo-product-gallery__layer--orbit.is-active {
  --orbit-stage-height: clamp(420px, calc(100vh - 180px), var(--orbit-gallery-height, 560px));
  min-height: var(--orbit-stage-height);
}

.streetlovo-orbit-gallery__stage {
  position: relative;
  width: 100%;
  height: var(--orbit-stage-height, clamp(420px, calc(100vh - 180px), var(--orbit-gallery-height, 560px)));
  min-height: 420px;
  background-color: var(--streetlovo-bg);
}

.streetlovo-orbit-gallery__item {
  --orbit-offset: 0px;
  --orbit-scale: var(--orbit-rear-scale, 0.42);
  position: absolute;
  top: var(--orbit-vertical-position, 50%);
  left: 50%;
  z-index: 0;
  width: auto;
  height: var(--orbit-base-max-height, 80%);
  max-width: min(78%, calc(var(--orbit-stage-height, var(--orbit-gallery-height, 560px)) * 0.7));
  max-height: calc(var(--orbit-stage-height, var(--orbit-gallery-height, 560px)) - 32px);
  padding: 0;
  border: 0;
  background: transparent;
  opacity: var(--orbit-rear-opacity, 0.42);
  cursor: pointer;
  transform: translate(calc(-50% + var(--orbit-offset)), -50%) scale(var(--orbit-scale));
  transform-origin: center center;
  transition: transform var(--orbit-duration, 420ms) ease, opacity var(--orbit-duration, 420ms) ease, filter var(--orbit-duration, 420ms) ease;
  will-change: transform, opacity, filter;
}

.streetlovo-orbit-gallery__item[data-orbit-position="front"] {
  --orbit-offset: 0px;
  --orbit-scale: var(--orbit-center-scale, 1.1);
  z-index: 100;
  opacity: 1;
  filter: none;
  cursor: zoom-in;
}

.streetlovo-orbit-gallery__item[data-orbit-position="left"] {
  --orbit-offset: calc(var(--orbit-side-distance, 150px) * -1);
  --orbit-scale: var(--orbit-side-scale, 0.72);
  z-index: 50;
  opacity: var(--orbit-side-opacity, 0.71);
  filter: brightness(0.82) saturate(0.84);
}

.streetlovo-orbit-gallery__item[data-orbit-position="right"] {
  --orbit-offset: var(--orbit-side-distance, 150px);
  --orbit-scale: var(--orbit-side-scale, 0.72);
  z-index: 50;
  opacity: var(--orbit-side-opacity, 0.71);
  filter: brightness(0.82) saturate(0.84);
}

.streetlovo-orbit-gallery__item[data-orbit-position="rear"] {
  --orbit-offset: 0px;
  --orbit-scale: var(--orbit-rear-scale, 0.42);
  z-index: 0;
  opacity: var(--orbit-rear-opacity, 0.42);
  filter: brightness(0.58) saturate(0.64);
}

.streetlovo-orbit-gallery__item img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.streetlovo-orbit-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 130;
  width: 40px;
  height: 60px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--streetlovo-text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.streetlovo-orbit-gallery__arrow--prev {
  left: 10px;
}

.streetlovo-orbit-gallery__arrow--next {
  right: 10px;
}

.streetlovo-orbit-gallery__arrow svg {
  width: 24px;
  height: 24px;
}

.streetlovo-product-page__image-main img.zoomed,
.streetlovo-orbit-gallery__item img.zoomed {
  transform: scale(1.65);
  cursor: zoom-out;
}

/* Image Navigation Arrows - Just the arrow, no circle */
.streetlovo-product-page__nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 60px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
  z-index: 10;
  color: var(--streetlovo-text);
  padding: 0;
}

.streetlovo-product-page__nav-arrow:hover {
  opacity: 0.7;
}

.streetlovo-product-page__nav-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--streetlovo-text);
  stroke-width: 2;
}

.streetlovo-product-page__nav-arrow--prev {
  left: 10px;
}

.streetlovo-product-page__nav-arrow--next {
  right: 10px;
}

@media (max-width: 768px) {
  .streetlovo-product-gallery__toggle {
    top: var(--orbit-toggle-offset-y-mobile, 12px);
    right: var(--orbit-toggle-offset-x-mobile, 12px);
  }

  .streetlovo-product-gallery__layer--orbit.is-active,
  .streetlovo-orbit-gallery,
  .streetlovo-orbit-gallery__stage {
    min-height: var(--orbit-gallery-height-mobile, 420px);
    height: var(--orbit-gallery-height-mobile, 420px);
  }

  .streetlovo-orbit-gallery__item {
    top: var(--orbit-vertical-position-mobile, 50%);
    width: min(68%, 300px);
    height: auto;
    max-width: none;
    max-height: 86%;
  }

  .streetlovo-orbit-gallery__item img {
    width: 100%;
    height: auto;
    max-width: none;
  }

  .streetlovo-orbit-gallery__item[data-orbit-position="front"] {
    --orbit-scale: var(--orbit-center-scale-mobile, 1.04);
  }

  .streetlovo-orbit-gallery__item[data-orbit-position="left"] {
    --orbit-offset: calc(var(--orbit-side-distance-mobile, 72px) * -1);
    --orbit-scale: var(--orbit-side-scale-mobile, 0.64);
  }

  .streetlovo-orbit-gallery__item[data-orbit-position="right"] {
    --orbit-offset: var(--orbit-side-distance-mobile, 72px);
    --orbit-scale: var(--orbit-side-scale-mobile, 0.64);
  }

  .streetlovo-orbit-gallery__item[data-orbit-position="rear"] {
    --orbit-scale: var(--orbit-rear-scale-mobile, 0.38);
  }

  .streetlovo-orbit-gallery__arrow svg {
    width: 20px;
    height: 20px;
  }

  .streetlovo-product-page__nav-arrow svg {
    width: 20px;
    height: 20px;
  }

  .streetlovo-product-page__nav-arrow--prev {
    left: 5px;
  }

  .streetlovo-product-page__nav-arrow--next {
    right: 5px;
  }
}

/* Thumbnails */
.streetlovo-product-page__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.streetlovo-product-page__thumb {
  width: 70px;
  height: 90px;
  border: 1px solid var(--streetlovo-border);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
  background: var(--streetlovo-bg);
  padding: 0;
}

.streetlovo-product-page__thumb:hover,
.streetlovo-product-page__thumb--active {
  border-color: var(--streetlovo-text);
  border-width: 2px;
}

.streetlovo-product-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Info */
.streetlovo-product-page__info {
  padding-top: 20px;
  background-color: var(--streetlovo-bg);
  color: var(--streetlovo-text);
}

.streetlovo-product-page__title {
  font-family: var(--font-body-family);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--streetlovo-text);
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.streetlovo-product-page__price {
  font-family: var(--font-body-family);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  margin-bottom: 25px;
}

/* Size Selector */
.streetlovo-product-page__option-label {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* Color Swatches - Streetlovo Style with Product Images */
.streetlovo-color-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.streetlovo-color-swatch {
  width: 50px;
  height: 60px;
  border: 1px solid var(--streetlovo-border);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
  padding: 0;
  position: relative;
  display: block;
  text-decoration: none;
}

.streetlovo-color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streetlovo-color-swatch:hover,
.streetlovo-color-swatch--selected {
  border-color: var(--streetlovo-text);
}

.streetlovo-color-swatch--unavailable {
  opacity: 0.4;
  cursor: not-allowed;
}

.streetlovo-size-highlight {
  animation: highlight-pulse 1s ease;
}

@keyframes highlight-pulse {
  0%, 100% { border-color: var(--streetlovo-border); }
  50% { border-color: var(--streetlovo-red); }
}

.streetlovo-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.streetlovo-size {
  font-family: var(--font-body-family);
  font-size: 11px;
  letter-spacing: 1px;
  min-width: 55px;
  height: 45px;
  border: 1px solid var(--streetlovo-text);
  background: var(--streetlovo-bg);
  color: var(--streetlovo-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-transform: uppercase;
  padding: 0 15px;
}

.streetlovo-size:hover:not(:disabled),
.streetlovo-size--selected {
  background: var(--streetlovo-text);
  color: var(--streetlovo-bg);
}

.streetlovo-size--unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  position: relative;
}

.streetlovo-size--unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1px;
  background: var(--streetlovo-text);
  transform: rotate(-45deg);
}

/* Select Size Button - Shows when size not selected */
.streetlovo-select-size-btn {
  width: auto;
  min-width: 200px;
  height: 45px;
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--streetlovo-red);
  background: transparent;
  color: var(--streetlovo-red);
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 10px 0 20px 0;
  padding: 0 30px;
}

.streetlovo-select-size-btn:hover {
  background: var(--streetlovo-red);
  color: var(--streetlovo-white);
}

/* Add to Cart Button - Streetlovo Red Outline Style */
.streetlovo-add-to-cart {
  width: auto;
  min-width: 200px;
  height: 45px;
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--streetlovo-red);
  background: transparent;
  color: var(--streetlovo-red);
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 10px 0 15px 0;
  padding: 0 30px;
  position: relative;
}

.streetlovo-add-to-cart:hover:not(:disabled),
.streetlovo-add-to-cart:focus-visible:not(:disabled) {
  background: var(--streetlovo-button-bg);
  border-color: var(--streetlovo-button-bg);
  color: var(--streetlovo-button-text);
}

.streetlovo-add-to-cart:disabled,
.streetlovo-add-to-cart--unavailable {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--streetlovo-border);
  color: var(--streetlovo-border);
}

.streetlovo-add-to-cart--loading {
  opacity: 0.75;
}

.streetlovo-button-spinner {
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
  vertical-align: -2px;
  animation: streetlovo-spin 0.8s linear infinite;
}

.streetlovo-button-spinner[hidden] {
  display: none;
}

@keyframes streetlovo-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .streetlovo-orbit-gallery__item,
  .streetlovo-product-gallery__toggle {
    transition: none;
  }
}

.streetlovo-product-form__error {
  color: var(--streetlovo-sold-out);
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* Product Links - Size Guide, Shipping */
.streetlovo-product-page__links {
  margin-bottom: 0;
}

.streetlovo-product-page__link {
  display: block;
  font-family: var(--font-body-family);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.streetlovo-product-page__link::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--streetlovo-text);
}

.streetlovo-product-page__link:hover {
  color: var(--streetlovo-red);
}

/* Sold Out Text */
.streetlovo-sold-out {
  font-family: var(--font-body-family);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--streetlovo-sold-out);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Product Description */
.streetlovo-product-page__description {
  margin-top: 20px;
  margin-bottom: 15px;
}

.streetlovo-product-page__description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.streetlovo-product-page__description li {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.streetlovo-product-page__description li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--streetlovo-text);
}

.streetlovo-product-page__model-info {
  font-family: var(--font-body-family);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--streetlovo-model-info-color, var(--streetlovo-red));
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* ========================================
   SIZE GUIDE MODAL
   ======================================== */
.streetlovo-size-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.streetlovo-size-guide-modal--open {
  opacity: 1;
  visibility: visible;
}

.streetlovo-size-guide-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.streetlovo-size-guide-modal__content {
  position: relative;
  background: var(--streetlovo-bg);
  border: 1px solid var(--streetlovo-border);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}

.streetlovo-size-guide-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: var(--streetlovo-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.streetlovo-size-guide-modal__close:hover {
  color: var(--streetlovo-red);
}

.streetlovo-size-guide-modal__title {
  font-family: var(--font-body-family);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--streetlovo-text);
  margin: 0 0 25px 0;
  text-align: center;
}

.streetlovo-size-guide-modal__image {
  margin-bottom: 20px;
}

.streetlovo-size-guide-modal__image img {
  width: 100%;
  height: auto;
  display: block;
}

.streetlovo-size-guide-modal__text {
  font-family: var(--font-body-family);
  font-size: 12px;
  line-height: 1.6;
  color: var(--streetlovo-text);
}

/* ========================================
   NEWSLETTER MODAL
   ======================================== */
.streetlovo-newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.streetlovo-newsletter-modal--open {
  opacity: 1;
  visibility: visible;
}

.streetlovo-newsletter-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.streetlovo-newsletter-modal__content {
  position: relative;
  z-index: 2;
  background: var(--streetlovo-bg);
  border: 1px solid var(--streetlovo-text);
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.streetlovo-newsletter-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  color: var(--streetlovo-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.streetlovo-newsletter-modal__close:hover {
  color: var(--streetlovo-red);
}

.streetlovo-newsletter-modal__title {
  font-family: var(--font-body-family);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--streetlovo-text);
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.streetlovo-newsletter-modal__text {
  font-family: var(--font-body-family);
  font-size: 12px;
  color: var(--streetlovo-text);
  margin-bottom: 25px;
  opacity: 0.8;
}

.streetlovo-newsletter-form__field {
  margin-bottom: 15px;
}

.streetlovo-newsletter-form__input {
  width: 100%;
  height: 45px;
  background: transparent;
  border: 1px solid var(--streetlovo-text);
  color: var(--streetlovo-text);
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 0 15px;
  text-align: center;
}

.streetlovo-newsletter-form__input::placeholder {
  color: var(--streetlovo-text);
  opacity: 0.5;
}

.streetlovo-newsletter-form__input:focus {
  outline: none;
  border-color: var(--streetlovo-red);
}

.streetlovo-newsletter-form__submit {
  width: 100%;
  height: 45px;
  background: transparent;
  border: 1px solid var(--streetlovo-red);
  color: var(--streetlovo-red);
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.streetlovo-newsletter-form__submit:hover {
  background: var(--streetlovo-red);
  color: var(--streetlovo-white);
}

/* ========================================
   COMMUNITY FITS
   ======================================== */
.streetlovo-community-fits {
  width: 100%;
  min-width: 0;
  padding-top: var(--community-padding-top, 48px);
  padding-bottom: var(--community-padding-bottom, 56px);
  background: var(--community-bg, var(--streetlovo-bg));
  color: var(--community-heading-color, var(--streetlovo-text));
}

.streetlovo-community-fits__inner {
  width: 100%;
  max-width: 1200px;
  min-width: 0;
  margin: 0 auto;
}

.streetlovo-community-fits__header {
  margin-bottom: 22px;
}

.streetlovo-community-fits__header--left {
  text-align: left;
}

.streetlovo-community-fits__header--center {
  text-align: center;
}

.streetlovo-community-fits__header--right {
  text-align: right;
}

.streetlovo-community-fits__heading {
  margin: 0;
  color: var(--community-heading-color, var(--streetlovo-text));
  font-family: var(--font-body-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.streetlovo-community-fits__viewport {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
}

.streetlovo-community-fits__viewport::-webkit-scrollbar {
  display: none;
}

.streetlovo-community-fits__viewport:focus-visible {
  outline: 1px solid var(--community-heading-color, var(--streetlovo-text));
  outline-offset: 4px;
}

.streetlovo-community-fits__track {
  display: flex;
  align-items: stretch;
  gap: var(--community-gap, 14px);
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.streetlovo-community-fits__card {
  position: relative;
  flex: 0 0 var(--community-card-basis-desktop, 20%);
  min-width: 0;
}

.streetlovo-community-fits__card--clone {
  pointer-events: none;
}

.streetlovo-community-fits__figure {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.streetlovo-community-fits__image-wrap {
  position: relative;
  width: 100%;
  max-height: var(--community-card-max-height, 320px);
  aspect-ratio: var(--community-aspect-ratio, 1 / 1);
  overflow: hidden;
  border-radius: var(--community-border-radius, 0);
  background: var(--streetlovo-bg);
}

.streetlovo-community-fits__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.streetlovo-community-fits__placeholder {
  width: 100%;
  height: 100%;
  background: var(--streetlovo-bg);
  color: var(--streetlovo-text-secondary);
}

.streetlovo-community-fits__placeholder-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.streetlovo-community-fits__handle {
  position: absolute;
  z-index: 2;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  background: var(--community-handle-bg, var(--streetlovo-bg));
  color: var(--community-handle-color, var(--streetlovo-text));
  font-family: var(--font-body-family);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.streetlovo-community-fits__handle--top-left {
  top: 10px;
  left: 10px;
}

.streetlovo-community-fits__handle--top-right {
  top: 10px;
  right: 10px;
  text-align: right;
}

.streetlovo-community-fits__handle--bottom-left {
  bottom: 10px;
  left: 10px;
}

.streetlovo-community-fits__handle--bottom-right {
  right: 10px;
  bottom: 10px;
  text-align: right;
}

@media (max-width: 1024px) {
  .streetlovo-community-fits {
    padding-top: clamp(28px, 8vw, var(--community-padding-top, 48px));
    padding-bottom: clamp(32px, 9vw, var(--community-padding-bottom, 56px));
  }

  .streetlovo-community-fits__card {
    flex-basis: var(--community-card-basis-mobile, 50%);
  }

  .streetlovo-community-fits__heading {
    font-size: 16px;
  }

  .streetlovo-community-fits__handle {
    font-size: 10px;
    max-width: calc(100% - 16px);
    padding: 4px 7px;
  }

  .streetlovo-community-fits__handle--top-left,
  .streetlovo-community-fits__handle--bottom-left {
    left: 8px;
  }

  .streetlovo-community-fits__handle--top-right,
  .streetlovo-community-fits__handle--bottom-right {
    right: 8px;
  }

  .streetlovo-community-fits__handle--top-left,
  .streetlovo-community-fits__handle--top-right {
    top: 8px;
  }

  .streetlovo-community-fits__handle--bottom-left,
  .streetlovo-community-fits__handle--bottom-right {
    bottom: 8px;
  }
}

/* ========================================
   PRODUCT REVIEWS
   ======================================== */
.streetlovo-product-reviews {
  width: 100%;
  padding-top: var(--product-reviews-padding-top, 0);
  padding-bottom: var(--product-reviews-padding-bottom, 0);
  background: var(--streetlovo-bg);
  color: var(--streetlovo-text);
}

.streetlovo-product-reviews__inner {
  width: 100%;
  max-width: min(100%, var(--product-reviews-max-width, 1200px));
}

.streetlovo-product-reviews--left .streetlovo-product-reviews__inner {
  margin-right: auto;
}

.streetlovo-product-reviews--center .streetlovo-product-reviews__inner {
  margin-right: auto;
  margin-left: auto;
}

.streetlovo-product-reviews--right .streetlovo-product-reviews__inner {
  margin-left: auto;
}

.streetlovo-product-reviews__header {
  margin-bottom: 18px;
}

.streetlovo-product-reviews__heading {
  margin: 0;
  color: var(--streetlovo-text);
  font-family: var(--font-heading-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.streetlovo-product-reviews__blocks,
.streetlovo-product-reviews__app-block {
  width: 100%;
  max-width: 100%;
}

.streetlovo-product-reviews__app-block > * {
  max-width: 100%;
}

/* ========================================
   CART DRAWER - Streetlovo Style
   ======================================== */
.streetlovo-cart-drawer-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  pointer-events: none;
}

.streetlovo-cart-drawer-wrapper > * {
  pointer-events: auto;
}

.streetlovo-cart-drawer {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  width: 100%;
  max-width: 420px;
  background: #1a1a1a;
  z-index: 200;
  transform: translateX(calc(100% + 30px));
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}

.streetlovo-cart-drawer--open {
  transform: translateX(0);
}

.streetlovo-cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.streetlovo-cart-drawer__overlay--visible {
  opacity: 1;
  visibility: visible;
}

.streetlovo-cart-drawer__header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--streetlovo-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
}

.streetlovo-cart-drawer__title {
  font-family: var(--font-body-family);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--streetlovo-text);
  margin: 0;
}

.streetlovo-cart-drawer__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.streetlovo-cart-drawer__count {
  font-family: var(--font-body-family);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
}

.streetlovo-cart-drawer__close {
  background: none;
  border: none;
  color: var(--streetlovo-text);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.streetlovo-cart-drawer__close svg {
  width: 24px;
  height: 24px;
  stroke: var(--streetlovo-text);
}

.streetlovo-cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.streetlovo-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  padding: 60px 20px;
  background: #1a1a1a;
  border-radius: 12px;
  margin: 20px;
}

.streetlovo-cart-drawer__empty p {
  font-family: var(--font-body-family);
  font-size: 14px;
  color: var(--streetlovo-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.streetlovo-cart-drawer__item {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--streetlovo-border);
  align-items: flex-start;
}

.streetlovo-cart-drawer__item:last-child {
  border-bottom: none;
}

.streetlovo-cart-drawer__item-image {
  width: 90px;
  height: 120px;
  object-fit: cover;
  background: #000;
  flex-shrink: 0;
}

.streetlovo-cart-drawer__item-details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.streetlovo-cart-drawer__item-info {
  flex: 1;
}

.streetlovo-cart-drawer__item-title {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--streetlovo-red);
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.streetlovo-cart-drawer__item-variant {
  font-family: var(--font-body-family);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.streetlovo-cart-drawer__item-price {
  font-family: var(--font-body-family);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  white-space: nowrap;
}

.streetlovo-cart-drawer__quantity {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 5px;
}

.streetlovo-cart-drawer__qty-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--streetlovo-text);
  color: var(--streetlovo-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  font-family: var(--font-body-family);
  font-size: 14px;
}

.streetlovo-cart-drawer__qty-btn:hover {
  opacity: 0.7;
}

.streetlovo-cart-drawer__qty-value {
  width: 40px;
  height: 32px;
  background: var(--streetlovo-input-bg);
  border: 1px solid var(--streetlovo-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body-family);
  font-size: 12px;
  color: var(--streetlovo-text);
  margin: 0 -1px;
}

.streetlovo-cart-drawer__footer {
  padding: 25px 30px;
  border-top: 1px solid var(--streetlovo-border);
  background: #111;
}

.streetlovo-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.streetlovo-cart-drawer__subtotal-label,
.streetlovo-cart-drawer__subtotal-value {
  font-family: var(--font-body-family);
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
}

.streetlovo-cart-drawer__terms {
  margin-bottom: 20px;
}

.streetlovo-cart-drawer__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.streetlovo-cart-drawer__checkbox input {
  display: none;
}

.streetlovo-cart-drawer__checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid var(--streetlovo-text);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.streetlovo-cart-drawer__checkbox input:checked + .streetlovo-cart-drawer__checkmark::after {
  content: '✓';
  color: var(--streetlovo-text);
  font-size: 12px;
}

.streetlovo-cart-drawer__terms-text {
  font-family: var(--font-body-family);
  font-size: 12px;
  color: var(--streetlovo-red);
  letter-spacing: 0.5px;
}

.streetlovo-cart-drawer__buttons {
  display: flex;
  gap: 12px;
}

.streetlovo-cart-drawer__btn {
  flex: 1;
  height: 45px;
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
}

.streetlovo-cart-drawer__btn--primary {
  background: var(--streetlovo-button-bg);
  color: var(--streetlovo-text);
  border: 1px solid var(--streetlovo-button-bg);
}

.streetlovo-cart-drawer__btn--primary:hover {
  opacity: 0.9;
}

.streetlovo-cart-drawer__btn--secondary {
  background: transparent;
  color: var(--streetlovo-red);
  border: 1px solid var(--streetlovo-red);
}

.streetlovo-cart-drawer__btn--secondary:hover {
  background: var(--streetlovo-red);
  color: var(--streetlovo-bg);
}

/* ========================================
   NEWSLETTER POPUP
   ======================================== */
.streetlovo-newsletter {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.streetlovo-newsletter--open {
  opacity: 1;
  visibility: visible;
}

.streetlovo-newsletter__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.streetlovo-newsletter__content {
  position: relative;
  background: var(--streetlovo-bg);
  border: 1px solid var(--streetlovo-border);
  max-width: 500px;
  width: 100%;
  padding: 40px;
  text-align: center;
}

.streetlovo-newsletter__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--streetlovo-text);
  cursor: pointer;
  font-size: 24px;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.streetlovo-newsletter__title {
  font-family: var(--font-body-family);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--streetlovo-text);
  margin: 0 0 30px 0;
}

.streetlovo-newsletter__form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}

.streetlovo-newsletter__input {
  flex: 1;
  padding: 15px;
  background: var(--streetlovo-input-bg);
  border: none;
  color: var(--streetlovo-text);
  font-family: var(--font-body-family);
  font-size: 13px;
}

.streetlovo-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.streetlovo-newsletter__submit {
  padding: 15px 30px;
  background: var(--streetlovo-button-bg);
  border: none;
  color: var(--streetlovo-text);
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.streetlovo-newsletter__submit:hover {
  opacity: 0.9;
}

/* ========================================
   ARCHIVE / LOOKBOOK PAGE
   ======================================== */
.streetlovo-archive__title {
  font-family: var(--font-body-family);
  font-size: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--streetlovo-text);
  text-align: center;
  margin-bottom: 40px;
}

.streetlovo-lookbook {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.streetlovo-lookbook__item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.streetlovo-lookbook__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.streetlovo-lookbook__item:hover img {
  transform: scale(1.02);
}

.streetlovo-lookbook__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  text-transform: uppercase;
  text-align: center;
}

/* ========================================
   MOBILE STYLES
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --sidebar-width: 0;
  }

  html, body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .streetlovo-sidebar {
    display: none;
  }

  .streetlovo-main {
    margin-left: 0;
    height: auto;
    overflow: visible;
  }

  .streetlovo-red-stripe {
    left: 0;
  }

  /* Page wrapper for mobile - full width with padding */
  .streetlovo-page-wrapper {
    padding: 0;
    min-height: auto;
  }

  .streetlovo-container {
    flex-direction: column;
    max-width: 100%;
    min-height: auto;
  }

  /* Mobile Header - Streetlovo Style (Logo + Hamburger Centered) */
  .streetlovo-mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px 20px;
    background: var(--streetlovo-bg);
    border-bottom: none;
    position: relative;
    z-index: 100;
  }

  /* Top Row - Search (left) + Cart (right) */
  .streetlovo-mobile-header__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .streetlovo-mobile-header__icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .streetlovo-mobile-header__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--streetlovo-text);
    fill: none;
  }

  /* Logo Centered */
  .streetlovo-mobile-header__logo {
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }

  .streetlovo-mobile-header__logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .streetlovo-mobile-header__logo-text {
    font-family: var(--font-heading-family);
    font-size: 36px;
    color: var(--streetlovo-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid var(--streetlovo-white);
    border-radius: 50%;
    padding: 12px 24px;
    display: inline-block;
  }

  /* Hamburger Menu Button - Centered Below Logo */
  .streetlovo-mobile-header__menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .streetlovo-mobile-header__hamburger {
    width: 36px;
    height: 24px;
    display: block;
  }

  /* Mobile Menu - Streetlovo Full Screen Overlay */
  .streetlovo-mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--streetlovo-bg);
    z-index: 300;
    padding: 60px 30px 30px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .streetlovo-mobile-menu--open {
    transform: translateY(0);
  }

  .streetlovo-mobile-menu__close {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: var(--streetlovo-text);
    cursor: pointer;
    padding: 10px;
  }

  .streetlovo-mobile-menu__close svg {
    width: 32px;
    height: 32px;
    stroke: var(--streetlovo-text);
    stroke-width: 2;
    fill: none;
  }

  /* Logo in mobile menu */
  .streetlovo-mobile-menu__logo {
    margin-bottom: 40px;
  }

  .streetlovo-mobile-menu__logo img {
    width: 140px;
    height: auto;
    display: block;
  }

  .streetlovo-mobile-menu__logo-text {
    font-family: var(--font-heading-family);
    font-size: 28px;
    color: var(--streetlovo-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--streetlovo-white);
    border-radius: 50%;
    padding: 8px 16px;
    display: inline-block;
  }

  .streetlovo-mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .streetlovo-mobile-menu__item {
    margin-bottom: 12px;
  }

  .streetlovo-mobile-menu__link {
    font-family: var(--font-body-family);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--streetlovo-text);
    text-transform: uppercase;
    display: block;
    padding: 8px 0;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: opacity 0.2s ease;
  }

  .streetlovo-mobile-menu__link:hover {
    opacity: 0.7;
  }

  .streetlovo-mobile-menu__link--highlight {
    color: var(--streetlovo-red);
  }

  .streetlovo-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
  }

  .streetlovo-mobile-menu__list--main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }

  .streetlovo-mobile-menu__list--footer {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .streetlovo-mobile-menu__footer-link {
    font-family: var(--font-body-family);
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--streetlovo-text);
    text-transform: uppercase;
    display: block;
    padding: 6px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
  }

  .streetlovo-mobile-menu__social {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }

  .streetlovo-mobile-menu__social svg {
    width: 24px;
    height: 24px;
    stroke: var(--streetlovo-text);
    fill: none;
    stroke-width: 1.5;
  }

  /* Mobile Footer - At bottom of page */
  .streetlovo-mobile-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 10px;
    background: var(--streetlovo-bg);
    border-top: 1px solid var(--streetlovo-border);
    margin-top: auto;
  }

  .streetlovo-mobile-footer__social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 15px;
  }

  .streetlovo-mobile-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--streetlovo-text);
    background: transparent;
  }

  .streetlovo-mobile-footer__social svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
  }

  .streetlovo-mobile-footer__links {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    text-align: center;
  }

  .streetlovo-mobile-footer__links li {
    margin-bottom: 6px;
  }

  .streetlovo-mobile-footer__links a,
  .streetlovo-mobile-footer__links button {
    font-family: var(--font-body-family);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--streetlovo-text);
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
  }

  /* Mobile Footer Copyright */
  .streetlovo-mobile-footer__copyright {
    font-family: var(--font-body-family);
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--streetlovo-text);
    text-align: center;
    padding: 10px 0;
    margin-top: 5px;
  }

  /* Show mobile footer on mobile/tablet */
  @media (max-width: 1024px) {
    .streetlovo-mobile-footer {
      display: flex !important;
    }
    .mobile-footer-section {
      display: block !important;
    }
  }

  /* Hamburger to X Animation */
  .hamburger-line {
    transition: all 0.3s ease;
    transform-origin: center;
  }

  body.menu-open .hamburger-line--top {
    transform: translateY(8px) rotate(45deg);
  }

  body.menu-open .hamburger-line--middle {
    opacity: 0;
  }

  body.menu-open .hamburger-line--bottom {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Grid Adjustments */
  .streetlovo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  /* Product card fix for mobile */
  .streetlovo-product-card {
    width: 100%;
    min-width: 0;
  }

  .streetlovo-product-card__image-wrapper {
    aspect-ratio: 3/4;
    width: calc(100% - 20px);
    margin: 0 auto 10px auto;
  }

  .streetlovo-product-card__title {
    font-size: 11px;
    word-wrap: break-word;
  }

  .streetlovo-product-card__price {
    font-size: 11px;
  }

  .streetlovo-lookbook {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Main content scrollable on mobile */
  .streetlovo-main {
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
  }

  .streetlovo-content {
    padding: 0 15px 20px;
    flex: 1;
  }

  /* Product Page Mobile */
  .streetlovo-product-page {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .streetlovo-product-page__info {
    padding-top: 0;
    text-align: center;
  }

  .streetlovo-product-page__title {
    font-size: 18px;
  }

  .streetlovo-color-swatches {
    justify-content: center;
  }

  .streetlovo-sizes {
    justify-content: center;
  }

  .streetlovo-product-page__description {
    text-align: center;
  }

  .streetlovo-product-page__description li {
    text-align: center;
    padding-left: 0;
  }

  .streetlovo-product-page__description li::before {
    display: none;
  }

  .streetlovo-product-page__links {
    text-align: center;
  }

  .streetlovo-product-page__link {
    display: inline-block;
    margin: 0 10px;
    padding-left: 10px;
  }

  .streetlovo-product-page__link::before {
    left: -5px;
  }

  /* Mobile buttons centered */
  .streetlovo-add-to-cart,
  .streetlovo-select-size-btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .streetlovo-size-guide-modal__content {
    padding: 30px 20px;
  }
}

/* Hide desktop header on mobile */
@media (max-width: 1024px) {
  .streetlovo-header {
    display: none;
  }
}

/* Hide mobile elements on desktop */
@media (min-width: 1025px) {
  .streetlovo-mobile-header,
  .streetlovo-mobile-menu,
  .mobile-nav-section-wrapper,
  .mobile-nav-section {
    display: none !important;
  }
}

/* ========================================
   PAGE TEMPLATE (Shipping Policy, etc.)
   ======================================== */
.streetlovo-page {
  min-height: calc(100vh - 200px);
  padding: 60px 40px;
}

.streetlovo-page__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.streetlovo-page__title {
  font-family: var(--font-body-family);
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--streetlovo-text);
  margin: 0 0 40px 0;
}

.streetlovo-page__content {
  font-family: var(--font-body-family);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
}

.streetlovo-page__content p {
  margin-bottom: 20px;
}

.streetlovo-page__content a {
  color: var(--streetlovo-text);
  text-decoration: underline;
}

.streetlovo-page__content a:hover {
  color: var(--streetlovo-red);
}

.streetlovo-page__content ul,
.streetlovo-page__content ol {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.streetlovo-page__content li {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.streetlovo-page__content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--streetlovo-text);
}

.streetlovo-page__content h2,
.streetlovo-page__content h3 {
  font-family: var(--font-body-family);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--streetlovo-text);
  margin: 30px 0 15px 0;
}

/* Mobile Page Styles */
@media (max-width: 768px) {
  .streetlovo-page {
    padding: 40px 20px;
  }

  .streetlovo-page__title {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }

  .streetlovo-page__content {
    font-size: 12px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none !important;
}

/* ========================================
   MOBILE NAV - Slide Down (Pushes Content)
   ======================================== */
.mobile-nav-section-wrapper {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-nav-section-wrapper,
  .mobile-nav-section {
    display: block !important;
  }

  .mobile-nav {
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
  }

  .mobile-nav--open {
    max-height: 320px;
    overflow-y: auto;
  }

  .mobile-nav__close {
    display: block;
    margin: 20px auto;
    background: none;
    border: none;
    color: var(--streetlovo-text);
    cursor: pointer;
  }

  .mobile-nav__close svg {
    stroke: var(--streetlovo-text);
  }

  .mobile-nav__logo {
    display: block;
    text-align: center;
    padding: 20px 0 15px;
    border-bottom: 1px solid #333;
  }

  .mobile-nav__logo img {
    width: 100px;
    height: auto;
  }

  .mobile-nav__logo-text {
    font-family: var(--font-heading-family);
    font-size: 28px;
    color: var(--streetlovo-text);
    letter-spacing: 2px;
  }

  .mobile-nav__nav {
    padding: 20px;
  }

  .mobile-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav__list--main {
    margin-bottom: 0;
  }

  .mobile-nav__item {
    margin-bottom: 3px;
    text-align: center;
  }

  .mobile-nav__link {
    font-family: var(--font-body-family);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--streetlovo-text);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 4px 0;
  }

  .mobile-nav__link--highlight {
    color: var(--streetlovo-red);
  }

  /* Footer Links Row */
  .mobile-nav__list--footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-top: 20px;
  }

  .mobile-nav__footer-item {
    margin: 0;
  }

  .mobile-nav__footer-link,
  .mobile-nav__footer-item button {
    font-family: var(--font-body-family);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--streetlovo-text);
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }

  .mobile-nav__social svg {
    width: 20px;
    height: 20px;
    stroke: var(--streetlovo-text);
    fill: none;
  }

  .mobile-nav__copyright {
    font-family: var(--font-body-family);
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--streetlovo-text);
    text-align: center;
    opacity: 0.7;
  }
}

/* ========================================
   MOBILE NAV - Slide Down (Pushes Content)
   ======================================== */
.mobile-nav-section-wrapper {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-nav-section-wrapper {
    display: block;
  }

  .mobile-nav {
    background: #000;
      max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  .mobile-nav--open {
    max-height: 350px;
    overflow-y: auto;
  }

  .mobile-nav__close {
    display: block;
    margin: 20px auto;
    background: none;
    border: none;
    color: var(--streetlovo-text);
    cursor: pointer;
  }

  .mobile-nav__close svg {
    stroke: var(--streetlovo-text);
  }

  .mobile-nav__logo {
    display: block;
    text-align: center;
    padding: 20px 0 15px;
    border-bottom: 1px solid #333;
  }

  .mobile-nav__logo img {
    width: 100px;
    height: auto;
  }

  .mobile-nav__logo-text {
    font-family: var(--font-heading-family);
    font-size: 28px;
    color: var(--streetlovo-text);
    letter-spacing: 2px;
  }

  .mobile-nav__nav {
    padding: 20px;
  }

  .mobile-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav__list--main {
    margin-bottom: 0;
  }

  .mobile-nav__item {
    margin-bottom: 3px;
    text-align: center;
  }

  .mobile-nav__link {
    font-family: var(--font-body-family);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--streetlovo-text);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 4px 0;
  }

  .mobile-nav__link--highlight {
    color: var(--streetlovo-red);
  }

  /* Footer Links Row */
  .mobile-nav__list--footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-top: 20px;
  }

  .mobile-nav__footer-item {
    margin: 0;
  }

  .mobile-nav__footer-link,
  .mobile-nav__footer-item button {
    font-family: var(--font-body-family);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--streetlovo-text);
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }

  .mobile-nav__social svg {
    width: 20px;
    height: 20px;
    stroke: var(--streetlovo-text);
    fill: none;
  }

  .mobile-nav__copyright {
    font-family: var(--font-body-family);
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--streetlovo-text);
    text-align: center;
    opacity: 0.7;
  }
}

/* Hide old mobile menu */
.streetlovo-mobile-menu {
  display: none !important;
}

/* ========================================
   CART PAGE - Streetlovo Style
   ======================================== */
.streetlovo-cart-page {
  padding: 40px;
  max-width: 1200px;
}

.streetlovo-cart-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--streetlovo-border);
}

.streetlovo-cart-page__title {
  font-family: var(--font-body-family);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--streetlovo-text);
  text-transform: uppercase;
  margin: 0;
}

.streetlovo-cart-page__count {
  font-family: var(--font-body-family);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
}

.streetlovo-cart-page__items {
  margin-bottom: 40px;
}

.streetlovo-cart-page__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--streetlovo-border);
}

.streetlovo-cart-page__item-image {
  aspect-ratio: 3/4;
  background: #000;
  overflow: hidden;
}

.streetlovo-cart-page__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streetlovo-cart-page__item-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.streetlovo-cart-page__item-info {
  flex: 1;
}

.streetlovo-cart-page__item-title {
  font-family: var(--font-body-family);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--streetlovo-red);
  text-transform: uppercase;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.streetlovo-cart-page__item-variant {
  font-family: var(--font-body-family);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  margin: 0 0 20px 0;
}

.streetlovo-cart-page__item-price {
  font-family: var(--font-body-family);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  white-space: nowrap;
}

.streetlovo-cart-page__quantity {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 15px;
}

.streetlovo-cart-page__qty-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--streetlovo-text);
  color: var(--streetlovo-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  font-family: var(--font-body-family);
  font-size: 16px;
  padding: 0;
}

.streetlovo-cart-page__qty-btn:hover {
  opacity: 0.7;
}

.streetlovo-cart-page__qty-value {
  width: 44px;
  height: 36px;
  background: var(--streetlovo-input-bg);
  border: 1px solid var(--streetlovo-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body-family);
  font-size: 13px;
  color: var(--streetlovo-text);
  margin: 0 -1px;
}

.streetlovo-cart-page__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.streetlovo-cart-page__note-label {
  font-family: var(--font-body-family);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  display: block;
  margin-bottom: 12px;
}

.streetlovo-cart-page__note-input {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  background: var(--streetlovo-input-bg);
  border: 1px solid var(--streetlovo-text);
  color: var(--streetlovo-text);
  font-family: var(--font-body-family);
  font-size: 13px;
  resize: vertical;
}

.streetlovo-cart-page__note-input::placeholder {
  color: rgba(255, 215, 0, 0.5);
}

.streetlovo-cart-page__summary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.streetlovo-cart-page__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.streetlovo-cart-page__subtotal-label,
.streetlovo-cart-page__subtotal-value {
  font-family: var(--font-body-family);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
}

.streetlovo-cart-page__terms {
  margin-bottom: 25px;
}

.streetlovo-cart-page__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.streetlovo-cart-page__checkbox input {
  display: none;
}

.streetlovo-cart-page__checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid var(--streetlovo-text);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.streetlovo-cart-page__checkbox input:checked + .streetlovo-cart-page__checkmark::after {
  content: '✓';
  color: var(--streetlovo-text);
  font-size: 12px;
}

.streetlovo-cart-page__terms-text {
  font-family: var(--font-body-family);
  font-size: 13px;
  color: var(--streetlovo-red);
  letter-spacing: 0.5px;
}

.streetlovo-cart-page__buttons {
  display: flex;
  gap: 15px;
}

.streetlovo-cart-page__btn {
  flex: 1;
  height: 50px;
  font-family: var(--font-body-family);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
}

.streetlovo-cart-page__btn--primary {
  background: var(--streetlovo-button-bg);
  color: var(--streetlovo-text);
  border: 1px solid var(--streetlovo-button-bg);
}

.streetlovo-cart-page__btn--primary:hover {
  opacity: 0.9;
}

.streetlovo-cart-page__btn--secondary {
  background: transparent;
  color: var(--streetlovo-red);
  border: 1px solid var(--streetlovo-red);
}

.streetlovo-cart-page__btn--secondary:hover {
  background: var(--streetlovo-red);
  color: var(--streetlovo-bg);
}

.streetlovo-cart-page__empty {
  text-align: center;
  padding: 100px 20px;
}

.streetlovo-cart-page__empty p {
  font-family: var(--font-body-family);
  font-size: 14px;
  color: var(--streetlovo-text);
  letter-spacing: 1px;
  margin-bottom: 30px;
}

/* Mobile Cart Page */
@media (max-width: 768px) {
  .streetlovo-cart-page {
    padding: 20px;
  }

  .streetlovo-cart-page__header {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .streetlovo-cart-page__title {
    font-size: 16px;
  }

  .streetlovo-cart-page__count {
    font-size: 13px;
  }

  .streetlovo-cart-page__item {
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 20px 0;
  }

  .streetlovo-cart-page__item-details {
    flex-direction: column;
    gap: 10px;
  }

  .streetlovo-cart-page__item-title {
    font-size: 12px;
  }

  .streetlovo-cart-page__item-variant {
    font-size: 11px;
  }

  .streetlovo-cart-page__item-price {
    font-size: 14px;
    align-self: flex-end;
  }

  .streetlovo-cart-page__footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .streetlovo-cart-page__buttons {
    flex-direction: column;
  }

  .streetlovo-cart-page__btn {
    width: 100%;
  }
}

/* Mobile Cart Drawer - With margins like Streetlovo */
@media (max-width: 480px) {
  .streetlovo-cart-drawer {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: none;
    width: calc(100% - 20px);
    border-radius: 8px;
    transform: translateX(calc(100% + 30px));
  }

  .streetlovo-cart-drawer--open {
    transform: translateX(0);
  }

  .streetlovo-cart-drawer__header {
    padding: 15px 20px;
  }

  .streetlovo-cart-drawer__items {
    padding: 15px 20px;
  }

  .streetlovo-cart-drawer__item {
    gap: 12px;
  }

  .streetlovo-cart-drawer__item-image {
    width: 80px;
    height: 100px;
  }

  .streetlovo-cart-drawer__item-title {
    font-size: 11px;
  }

  .streetlovo-cart-drawer__item-price {
    font-size: 12px;
  }

  .streetlovo-cart-drawer__footer {
    padding: 15px 20px;
  }

  .streetlovo-cart-drawer__buttons {
    flex-direction: row;
    gap: 10px;
  }

  .streetlovo-cart-drawer__btn {
    width: auto;
    flex: 1;
    height: 40px;
    font-size: 11px;
    padding: 0 10px;
  }
}

/* ========================================
   CART PAGE - Streetlovo Style
   ======================================== */
.streetlovo-cart-page {
  padding: 40px;
  max-width: 100%;
}

.streetlovo-cart-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--streetlovo-border);
}

.streetlovo-cart-page__title {
  font-family: var(--font-body-family);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--streetlovo-text);
  margin: 0;
  text-transform: uppercase;
}

.streetlovo-cart-page__count {
  font-family: var(--font-body-family);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
}

.streetlovo-cart-page__items {
  margin-bottom: 40px;
}

.streetlovo-cart-page__item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--streetlovo-border);
}

.streetlovo-cart-page__item-image {
  width: 150px;
  height: 200px;
  background: #000;
  overflow: hidden;
}

.streetlovo-cart-page__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streetlovo-cart-page__item-details {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.streetlovo-cart-page__item-info {
  flex: 1;
}

.streetlovo-cart-page__item-title {
  font-family: var(--font-body-family);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--streetlovo-red);
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.streetlovo-cart-page__item-variant {
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  margin: 0 0 20px 0;
}

.streetlovo-cart-page__item-price {
  font-family: var(--font-body-family);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
}

.streetlovo-cart-page__quantity {
  display: flex;
  align-items: center;
  gap: 0;
}

.streetlovo-cart-page__qty-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--streetlovo-text);
  border-right: none;
  color: var(--streetlovo-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.streetlovo-cart-page__qty-btn:last-of-type {
  border-right: 1px solid var(--streetlovo-text);
  border-left: none;
}

.streetlovo-cart-page__qty-btn:hover {
  opacity: 0.7;
}

.streetlovo-cart-page__qty-value {
  width: 36px;
  height: 32px;
  background: var(--streetlovo-input-bg);
  border: 1px solid var(--streetlovo-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body-family);
  font-size: 12px;
  color: var(--streetlovo-text);
}

.streetlovo-cart-page__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 20px;
}

.streetlovo-cart-page__note-label {
  font-family: var(--font-body-family);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
  display: block;
  margin-bottom: 10px;
}

.streetlovo-cart-page__note-input {
  width: 100%;
  min-height: 120px;
  background: var(--streetlovo-input-bg);
  border: none;
  padding: 15px;
  font-family: var(--font-body-family);
  font-size: 13px;
  color: var(--streetlovo-text);
  resize: vertical;
}

.streetlovo-cart-page__note-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.streetlovo-cart-page__summary {
  display: flex;
  flex-direction: column;
}

.streetlovo-cart-page__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.streetlovo-cart-page__subtotal-label {
  font-family: var(--font-body-family);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
}

.streetlovo-cart-page__subtotal-value {
  font-family: var(--font-body-family);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--streetlovo-text);
}

.streetlovo-cart-page__terms {
  margin-bottom: 25px;
}

.streetlovo-cart-page__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.streetlovo-cart-page__checkbox input {
  display: none;
}

.streetlovo-cart-page__checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid var(--streetlovo-text);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.streetlovo-cart-page__checkbox input:checked + .streetlovo-cart-page__checkmark::after {
  content: '✓';
  color: var(--streetlovo-text);
  font-size: 12px;
}

.streetlovo-cart-page__terms-text {
  font-family: var(--font-body-family);
  font-size: 13px;
  color: var(--streetlovo-red);
  letter-spacing: 0.5px;
}

.streetlovo-cart-page__buttons {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.streetlovo-cart-page__btn {
  flex: 1;
  height: 48px;
  font-family: var(--font-body-family);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
}

.streetlovo-cart-page__btn--primary {
  background: var(--streetlovo-button-bg);
  color: var(--streetlovo-text);
  border: 1px solid var(--streetlovo-button-bg);
}

.streetlovo-cart-page__btn--primary:hover {
  opacity: 0.9;
}

.streetlovo-cart-page__btn--secondary {
  background: transparent;
  color: var(--streetlovo-red);
  border: 1px solid var(--streetlovo-red);
}

.streetlovo-cart-page__btn--secondary:hover {
  background: var(--streetlovo-red);
  color: var(--streetlovo-bg);
}

.streetlovo-cart-page__empty {
  text-align: center;
  padding: 80px 20px;
}

.streetlovo-cart-page__empty p {
  font-family: var(--font-body-family);
  font-size: 14px;
  color: var(--streetlovo-text);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

/* Cart Page Mobile */
@media (max-width: 768px) {
  .streetlovo-cart-page {
    padding: 20px;
  }

  .streetlovo-cart-page__header {
    margin-bottom: 20px;
  }

  .streetlovo-cart-page__item {
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 20px 0;
  }

  .streetlovo-cart-page__item-image {
    width: 100px;
    height: 133px;
  }

  .streetlovo-cart-page__item-details {
    flex-direction: column;
    gap: 15px;
  }

  .streetlovo-cart-page__item-price {
    align-self: flex-end;
  }

  .streetlovo-cart-page__footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .streetlovo-cart-page__buttons {
    flex-direction: row;
  }

  .streetlovo-cart-page__btn {
    flex: 1;
  }
}

/* Cart Drawer Mobile */
@media (max-width: 480px) {
  .streetlovo-cart-drawer {
    max-width: 100%;
  }

  .streetlovo-cart-drawer__header,
  .streetlovo-cart-drawer__items,
  .streetlovo-cart-drawer__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .streetlovo-cart-drawer__item-image {
    width: 80px;
    height: 107px;
  }

  .streetlovo-cart-drawer__item-title {
    font-size: 11px;
    max-width: 160px;
  }
}

/* ========================================
   SEARCH PAGE - Streetlovo STYLE
   ======================================== */

.streetlovo-search {
  padding: 40px;
  max-width: 100%;
}

.streetlovo-search__header {
  text-align: center;
  margin-bottom: 40px;
}

.streetlovo-search__title {
  font-family: var(--font-heading-family);
  font-size: 32px;
  color: var(--streetlovo-text);
  margin: 0 0 30px 0;
  letter-spacing: 2px;
}

.streetlovo-search__form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--streetlovo-border);
}

.streetlovo-search__input {
  flex: 1;
  background: var(--streetlovo-input-bg);
  border: none;
  padding: 15px 20px;
  color: var(--streetlovo-text);
  font-family: var(--font-body-family);
  font-size: 14px;
  outline: none;
}

.streetlovo-search__input::placeholder {
  color: color-mix(in srgb, var(--streetlovo-input-text) 55%, transparent);
}

.streetlovo-search__button {
  background: var(--streetlovo-red);
  border: none;
  padding: 0 25px;
  cursor: pointer;
  color: var(--streetlovo-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.streetlovo-search__button:hover,
.streetlovo-search__button:focus-visible {
  background: var(--streetlovo-button-bg);
  filter: brightness(0.85);
}

.streetlovo-search__count {
  text-align: center;
  color: var(--streetlovo-text);
  font-size: 12px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.streetlovo-search__empty {
  text-align: center;
  padding: 60px 20px;
}

.streetlovo-search__empty p {
  color: var(--streetlovo-text);
  font-size: 14px;
  margin-bottom: 30px;
}

.streetlovo-search__back {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--streetlovo-red);
  color: var(--streetlovo-red);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.streetlovo-search__back:hover,
.streetlovo-search__back:focus-visible {
  background: var(--streetlovo-red);
  color: var(--streetlovo-white);
}

/* Search Mobile */
@media (max-width: 768px) {
  .streetlovo-search {
    padding: 20px;
  }

  .streetlovo-search__title {
    font-size: 24px;
  }

  .streetlovo-search__form {
    max-width: 100%;
  }

  .streetlovo-search__input {
    padding: 12px 15px;
    font-size: 13px;
  }

  .streetlovo-search__button {
    padding: 0 20px;
  }
}

/* ========================================
   404 PAGE - Streetlovo STYLE
   ======================================== */

.streetlovo-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px;
}

.streetlovo-404__content {
  text-align: center;
}

.streetlovo-404__title {
  font-family: var(--font-heading-family);
  font-size: 120px;
  color: var(--streetlovo-text);
  margin: 0;
  line-height: 1;
  letter-spacing: 10px;
}

.streetlovo-404__subtitle {
  font-family: var(--font-heading-family);
  font-size: 24px;
  color: var(--streetlovo-text);
  margin: 20px 0;
  letter-spacing: 3px;
}

.streetlovo-404__text {
  color: var(--streetlovo-text-secondary);
  font-size: 14px;
  margin-bottom: 40px;
}

.streetlovo-404__button {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid var(--streetlovo-red);
  color: var(--streetlovo-red);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.2s;
}

.streetlovo-404__button:hover {
  background: var(--streetlovo-red);
  color: var(--streetlovo-white);
}

/* 404 Mobile */
@media (max-width: 768px) {
  .streetlovo-404__title {
    font-size: 80px;
  }

  .streetlovo-404__subtitle {
    font-size: 18px;
  }
}

/* ========================================
   PASSWORD PAGE - WAITLIST
   ======================================== */
body.template-password {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--streetlovo-bg);
}

html:has(body.template-password) {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.streetlovo-password-wrapper {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--streetlovo-bg);
}

.streetlovo-password-minimal {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: safe center;
  padding: calc(var(--password-top-space-desktop, 40px) + env(safe-area-inset-top)) var(--password-padding-desktop, 40px) calc(var(--password-top-space-desktop, 40px) + env(safe-area-inset-bottom));
  background: var(--password-bg, var(--streetlovo-bg));
  color: var(--password-primary, var(--streetlovo-text));
}

.streetlovo-password-minimal__shell {
  width: 100%;
  max-width: min(100%, var(--password-content-max-width, 640px));
  margin: 0 auto;
  text-align: center;
}

.streetlovo-password-minimal--left .streetlovo-password-minimal__shell {
  text-align: left;
}

.streetlovo-password-minimal--right .streetlovo-password-minimal__shell {
  text-align: right;
}

.streetlovo-password-minimal__logo {
  margin-bottom: var(--password-logo-spacing, 64px);
}

.streetlovo-password-minimal__logo img {
  width: min(100%, var(--password-logo-width-desktop, 180px));
  height: auto;
  margin-inline: auto;
}

.streetlovo-password-minimal--left .streetlovo-password-minimal__logo img {
  margin-left: 0;
}

.streetlovo-password-minimal--right .streetlovo-password-minimal__logo img {
  margin-right: 0;
}

.streetlovo-password-minimal__wordmark {
  color: var(--password-primary, var(--streetlovo-text));
  font-family: var(--font-heading-family);
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
  letter-spacing: 8px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.streetlovo-password-minimal__content {
  width: 100%;
}

.streetlovo-password-minimal__title {
  max-width: 100%;
  margin: 0;
  color: var(--password-primary, var(--streetlovo-text));
  font-family: var(--font-heading-family);
  font-size: clamp(var(--password-heading-size-mobile, 30px), 5vw, var(--password-heading-size-desktop, 42px));
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: var(--password-heading-letter-spacing, 8px);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.streetlovo-password-minimal__text {
  max-width: 64ch;
  margin: var(--password-text-spacing, 18px) auto 0;
  color: color-mix(in srgb, var(--password-secondary, var(--streetlovo-text)) 72%, transparent);
  font-family: var(--font-body-family);
  font-size: var(--password-body-size-desktop, 13px);
  line-height: 1.6;
  letter-spacing: 1px;
  overflow-wrap: anywhere;
}

.streetlovo-password-minimal--left .streetlovo-password-minimal__text {
  margin-left: 0;
}

.streetlovo-password-minimal--right .streetlovo-password-minimal__text {
  margin-right: 0;
}

.streetlovo-password-minimal__note {
  margin: var(--password-note-spacing, 28px) 0 0;
  color: var(--password-note, var(--password-secondary, var(--streetlovo-text)));
  font-family: var(--font-body-family);
  font-size: var(--password-body-size-desktop, 13px);
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.streetlovo-password-minimal__form {
  width: min(100%, var(--password-form-max-width, 420px));
  margin: var(--password-form-spacing, 28px) auto 0;
}

.streetlovo-password-minimal__form:first-child {
  margin-top: 0;
}

.streetlovo-password-minimal--left .streetlovo-password-minimal__form {
  margin-left: 0;
}

.streetlovo-password-minimal--right .streetlovo-password-minimal__form {
  margin-right: 0;
}

.streetlovo-password-minimal__input-group {
  display: flex;
  width: 100%;
  min-height: var(--password-form-height-desktop, 56px);
  border: 1px solid var(--password-input-border, var(--streetlovo-border));
  background: var(--password-input-bg, var(--streetlovo-input-bg));
}

.streetlovo-password-minimal__input,
.streetlovo-password-minimal__admin-input {
  min-width: 0;
  background: var(--password-input-bg, var(--streetlovo-input-bg));
  border: 0;
  color: var(--password-input-text, var(--streetlovo-input-text));
  font-family: var(--font-body-family);
  font-size: var(--password-form-text-size, 13px);
  line-height: 1.2;
  letter-spacing: 1px;
  outline: none;
}

.streetlovo-password-minimal__input {
  flex: 1 1 auto;
  width: 100%;
  padding: 0 22px;
}

.streetlovo-password-minimal__input::placeholder,
.streetlovo-password-minimal__admin-input::placeholder {
  color: color-mix(in srgb, var(--password-input-placeholder, var(--streetlovo-input-text)) 58%, transparent);
  opacity: 1;
}

.streetlovo-password-minimal__button,
.streetlovo-password-minimal__admin-button {
  min-height: 44px;
  background: var(--password-button-bg, var(--streetlovo-button-bg));
  border: 1px solid var(--password-button-border, var(--streetlovo-button-bg));
  color: var(--password-button-text, var(--streetlovo-button-text));
  font-family: var(--font-body-family);
  font-size: var(--password-button-text-size, 12px);
  line-height: 1.2;
  letter-spacing: var(--password-button-letter-spacing, 2px);
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.streetlovo-password-minimal__button {
  flex: 0 0 auto;
  min-width: 128px;
  max-width: 46%;
  padding: 0 34px;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.streetlovo-password-minimal__button:hover,
.streetlovo-password-minimal__admin-button:hover {
  filter: brightness(0.9);
}

.streetlovo-password-minimal__input:focus-visible,
.streetlovo-password-minimal__admin-input:focus-visible,
.streetlovo-password-minimal__button:focus-visible,
.streetlovo-password-minimal__admin-button:focus-visible,
.streetlovo-password-minimal__admin-summary:focus-visible {
  outline: 2px solid var(--password-focus, var(--streetlovo-red));
  outline-offset: 3px;
}

.streetlovo-password-minimal__success,
.streetlovo-password-minimal__error {
  margin: var(--password-message-spacing, 16px) 0 0;
  font-family: var(--font-body-family);
  font-size: var(--password-body-size-desktop, 13px);
  line-height: 1.5;
  letter-spacing: 1px;
  overflow-wrap: anywhere;
}

.streetlovo-password-minimal__success {
  color: var(--password-success, #00ff66);
}

.streetlovo-password-minimal__error {
  color: var(--password-error, var(--streetlovo-sold-out));
}

.streetlovo-password-minimal__error ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.streetlovo-password-minimal__admin {
  width: min(100%, var(--password-form-max-width, 420px));
  margin: var(--password-link-spacing, 44px) auto 0;
}

.streetlovo-password-minimal--left .streetlovo-password-minimal__admin {
  margin-left: 0;
}

.streetlovo-password-minimal--right .streetlovo-password-minimal__admin {
  margin-right: 0;
}

.streetlovo-password-minimal__admin-summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--password-link, var(--streetlovo-text)) 70%, transparent);
  font-family: var(--font-body-family);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  list-style: none;
}

.streetlovo-password-minimal__admin-summary::-webkit-details-marker {
  display: none;
}

.streetlovo-password-minimal__admin-summary::marker {
  content: "";
}

.streetlovo-password-minimal__admin-summary:hover {
  color: var(--password-link, var(--streetlovo-text));
}

.streetlovo-password-minimal__admin-panel {
  margin-top: 16px;
}

.streetlovo-password-minimal__admin-form {
  display: grid;
  gap: 12px;
}

.streetlovo-password-minimal__admin-fields {
  display: flex;
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--password-input-border, var(--streetlovo-border));
}

.streetlovo-password-minimal__admin-input {
  flex: 1 1 auto;
  width: 100%;
  padding: 0 16px;
}

.streetlovo-password-minimal__admin-button {
  flex: 0 0 auto;
  padding: 0 24px;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
}

@media (max-width: 768px) {
  .streetlovo-password-minimal {
    padding: calc(var(--password-top-space-mobile, 28px) + env(safe-area-inset-top)) var(--password-padding-mobile, 20px) calc(var(--password-top-space-mobile, 28px) + env(safe-area-inset-bottom));
  }

  .streetlovo-password-minimal__logo img {
    width: min(100%, var(--password-logo-width-mobile, 140px));
  }

  .streetlovo-password-minimal__title {
    font-size: var(--password-heading-size-mobile, 30px);
    letter-spacing: min(var(--password-heading-letter-spacing, 8px), 8px);
  }

  .streetlovo-password-minimal__text,
  .streetlovo-password-minimal__note,
  .streetlovo-password-minimal__success,
  .streetlovo-password-minimal__error {
    font-size: var(--password-body-size-mobile, 13px);
  }

  .streetlovo-password-minimal__input-group {
    min-height: var(--password-form-height-mobile, 52px);
  }

  .streetlovo-password-minimal__input,
  .streetlovo-password-minimal__admin-input {
    font-size: max(16px, var(--password-form-text-size, 13px));
    padding-inline: 16px;
  }

  .streetlovo-password-minimal__button {
    padding-inline: 22px;
  }
}

@media (max-width: 320px) {
  .streetlovo-password-minimal__input-group,
  .streetlovo-password-minimal__admin-fields {
    display: grid;
  }

  .streetlovo-password-minimal__button,
  .streetlovo-password-minimal__admin-button {
    max-width: none;
    width: 100%;
    min-height: var(--password-form-height-mobile, 52px);
    border-top: 1px solid var(--password-button-border, var(--streetlovo-button-bg));
    border-left: 0;
  }
}

/* ========================================
   GLOBAL THEME SETTING BINDINGS
   ======================================== */
body,
.streetlovo-page-wrapper,
.streetlovo-sidebar,
.streetlovo-main,
.streetlovo-header,
.streetlovo-content,
.streetlovo-product-page,
.streetlovo-product-page__media,
.streetlovo-product-gallery,
.streetlovo-product-gallery__layer,
.streetlovo-product-page__info,
.streetlovo-product-page__image-main,
.streetlovo-cart-drawer,
.streetlovo-cart-page,
.streetlovo-search,
.streetlovo-404 {
  background-color: var(--streetlovo-bg);
  color: var(--streetlovo-text);
}

.streetlovo-sidebar__menu-link,
.streetlovo-sidebar__footer-link,
.streetlovo-header__search-text,
.streetlovo-header__cart-text,
.streetlovo-header__checkout,
.streetlovo-product-card__title,
.streetlovo-product-card__price,
.streetlovo-product-page__title,
.streetlovo-product-page__price,
.streetlovo-product-page__option-label,
.streetlovo-product-page__link,
.streetlovo-cart-drawer__title,
.streetlovo-cart-drawer__count,
.streetlovo-cart-drawer__item-variant,
.streetlovo-cart-drawer__item-price,
.streetlovo-cart-page__title,
.streetlovo-cart-page__count,
.streetlovo-search__title,
.streetlovo-search__count,
.streetlovo-search__empty,
.streetlovo-search__empty p,
.streetlovo-404__title,
.streetlovo-404__subtitle,
.streetlovo-mobile-footer,
.mobile-nav__link {
  color: var(--streetlovo-text);
}

.streetlovo-header svg,
.streetlovo-mobile-header,
.streetlovo-mobile-header svg,
.streetlovo-sidebar__social-link svg,
.streetlovo-mobile-footer svg,
.mobile-nav__social svg {
  color: var(--streetlovo-text);
  stroke: currentColor;
  fill: none;
}

.streetlovo-red-stripe,
.streetlovo-search__button,
.streetlovo-newsletter__submit,
.streetlovo-newsletter-form__submit,
.streetlovo-add-to-cart,
.streetlovo-404__button,
.streetlovo-cart-drawer__btn--primary,
.streetlovo-cart-page__btn--primary {
  background-color: var(--streetlovo-button-bg);
  border-color: var(--streetlovo-button-bg);
  color: var(--streetlovo-button-text);
}

.streetlovo-red-stripe {
  background-color: var(--streetlovo-red);
}

.streetlovo-404__button:hover,
.streetlovo-404__button:focus-visible {
  background-color: var(--streetlovo-button-bg);
  border-color: var(--streetlovo-button-bg);
  color: var(--streetlovo-button-text);
  filter: brightness(0.85);
}

.streetlovo-select-size-btn,
.streetlovo-cart-drawer__btn--secondary,
.streetlovo-cart-page__btn--secondary,
.streetlovo-search__back {
  border-color: var(--streetlovo-red);
  color: var(--streetlovo-red);
}

.streetlovo-select-size-btn:hover,
.streetlovo-cart-drawer__btn--secondary:hover,
.streetlovo-cart-page__btn--secondary:hover,
.streetlovo-search__back:hover {
  background-color: var(--streetlovo-red);
  color: var(--streetlovo-button-text);
}

.streetlovo-newsletter-form__input,
.streetlovo-newsletter__input,
.streetlovo-search__input,
.streetlovo-cart-page__note-input,
.streetlovo-cart-page__qty-value,
.streetlovo-cart-drawer__qty-value {
  background-color: var(--streetlovo-input-bg);
  border-color: var(--streetlovo-border);
  color: var(--streetlovo-input-text);
}

.streetlovo-newsletter-form__input::placeholder,
.streetlovo-newsletter__input::placeholder,
.streetlovo-search__input::placeholder,
.streetlovo-cart-page__note-input::placeholder {
  color: color-mix(in srgb, var(--streetlovo-input-text) 55%, transparent);
}

.streetlovo-product-page__thumb,
.streetlovo-color-swatch,
.streetlovo-cart-drawer__content,
.streetlovo-cart-drawer__header,
.streetlovo-cart-drawer__footer,
.streetlovo-cart-page__header,
.streetlovo-cart-page__item,
.streetlovo-search__form {
  border-color: var(--streetlovo-border);
}

.streetlovo-product-page__thumb:hover,
.streetlovo-product-page__thumb--active,
.streetlovo-color-swatch:hover,
.streetlovo-color-swatch--selected {
  border-color: var(--streetlovo-text);
}

.streetlovo-sold-out,
.streetlovo-cart-page__terms-text,
.streetlovo-newsletter__error {
  color: var(--streetlovo-sold-out);
}

/* Cart drawer scoped color controls */
.streetlovo-cart-drawer {
  background-color: var(--cart-drawer-background);
  color: var(--cart-drawer-primary-text);
}

.streetlovo-cart-drawer__overlay {
  background-color: var(--cart-drawer-overlay-color);
}

.streetlovo-cart-drawer__overlay--visible {
  opacity: var(--cart-drawer-overlay-opacity);
}

.streetlovo-cart-drawer__header,
.streetlovo-cart-drawer__footer,
.streetlovo-cart-drawer__item {
  border-color: var(--cart-drawer-border);
}

.streetlovo-cart-drawer__title,
.streetlovo-cart-drawer__count,
.streetlovo-cart-drawer__item-title,
.streetlovo-cart-drawer__item-price,
.streetlovo-cart-drawer__subtotal-label,
.streetlovo-cart-drawer__subtotal-value,
.streetlovo-cart-drawer__close {
  color: var(--cart-drawer-primary-text);
}

.streetlovo-cart-drawer__item-variant,
.streetlovo-cart-drawer__terms-text {
  color: var(--cart-drawer-secondary-text);
}

.streetlovo-cart-drawer__footer {
  background-color: color-mix(in srgb, var(--cart-drawer-background) 92%, var(--cart-drawer-border));
}

.streetlovo-cart-drawer__close svg {
  stroke: var(--cart-drawer-primary-text);
}

.streetlovo-cart-drawer__qty-btn,
.streetlovo-cart-drawer__qty-value,
.streetlovo-cart-drawer__checkmark {
  border-color: var(--cart-drawer-quantity-border);
  color: var(--cart-drawer-quantity-text);
}

.streetlovo-cart-drawer__qty-value {
  background-color: var(--cart-drawer-quantity-background);
}

.streetlovo-cart-drawer__checkbox input:checked + .streetlovo-cart-drawer__checkmark::after {
  color: var(--cart-drawer-quantity-text);
}

.streetlovo-cart-drawer__btn--primary {
  background-color: var(--cart-drawer-checkout-background);
  border-color: var(--cart-drawer-checkout-background);
  color: var(--cart-drawer-checkout-text);
}

.streetlovo-cart-drawer__btn--secondary {
  background-color: var(--cart-drawer-view-cart-background);
  border-color: var(--cart-drawer-accent);
  color: var(--cart-drawer-view-cart-text);
}

.streetlovo-cart-drawer__btn--secondary:hover {
  background-color: var(--cart-drawer-accent);
  color: var(--cart-drawer-view-cart-background);
}

.streetlovo-cart-drawer__empty p {
  color: var(--cart-drawer-empty-text);
}

.streetlovo-cart-drawer__error {
  color: var(--cart-drawer-error-text);
}

.streetlovo-add-to-cart {
  background-color: var(--streetlovo-button-bg);
  border-color: var(--streetlovo-button-bg);
  color: var(--streetlovo-button-text);
}

.streetlovo-add-to-cart:hover:not(:disabled),
.streetlovo-add-to-cart:focus-visible:not(:disabled) {
  background-color: var(--streetlovo-button-bg);
  border-color: var(--streetlovo-button-bg);
  color: var(--streetlovo-button-text);
  filter: brightness(1.08);
}

.streetlovo-add-to-cart:disabled,
.streetlovo-add-to-cart--unavailable {
  background-color: transparent;
  border-color: var(--streetlovo-border);
  color: var(--streetlovo-border);
  opacity: 0.6;
}

.streetlovo-add-to-cart--loading {
  opacity: 0.75;
}
