/** Shopify CDN: Minification failed

Line 1259:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.announcement-bar-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .announcement-bar {
    padding: 6px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    width: 100%;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    height: 28px;
    display: flex;
    align-items: center;
    margin: 0;
  }

  .announcement-bar__content {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .announcement-bar__text {
    display: flex;
    width: fit-content;
    animation: scroll-left 20s linear infinite;
  }

  .announcement-bar__marquee {
    margin: 0;
    padding: 0 20px 0 0;
    display: inline-block;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1;
  }

  /* Seamless continuous scrolling animation */
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .announcement-bar {
      font-size: 11px;
      padding: 4px 0;
      height: 24px;
    }
    
    .announcement-bar__marquee {
      font-size: 11px;
      letter-spacing: 0.3px;
      padding: 0 15px 0 0;
    }
  }

  /* Pause animation on hover */
  .announcement-bar:hover .announcement-bar__text {
    animation-play-state: paused;
  }
.banner {
    width: 100vw;
    position: relative;
    background: #ffffff;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    z-index: 1;
  }

  .banner__container {
    position: relative;
    width: 100%;
    height: 100vh; /* default fallback */
    max-height: 800px; /* default fallback */
    overflow: hidden;
    background: #ffffff;
  }

  .banner__slider {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .banner__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
  }

  .banner__slide.active {
    opacity: 1;
    z-index: 2;
  }

  .banner__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }

  .banner__image {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .banner__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    background: #ffffff;
  }

  /* Desktop: ensure visible height */
  @media (min-width: 769px) {
    .banner__container {
      height: 80vh;
      max-height: 800px;
    }
  }

  /* Desktop-only CTA button */
  .banner__cta {
    position: absolute;
    right: 6%;
    bottom: -15%;
    display: none;
  }
  @media (min-width: 769px) {
    .banner__cta { display: block; }
    .banner__cta img { width: 330px; height: auto; }
  }

  .banner__image picture {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Mobile specific adjustments */
  @media (max-width: 768px) {
    .banner__image img {
      object-position: center top;
    }
  }

  .banner__placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .banner__placeholder-text {
    font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Navigation Dots */
  .banner__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .banner__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
  }

  .banner__dot.active,
  .banner__dot:hover {
    background: #ffffff;
    opacity: 1;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .banner {
      margin: 0;
      width: 100vw;
      overflow: hidden;
    }
    
    .banner__container {
      height: 115vw; /* Slightly increased to show complete banner */
      max-height: 580px;
      min-height: 420px;
      width: 100%;
      overflow: hidden;
    }

    .banner__image img {
      object-fit: cover;
      object-position: center center;
      width: 100%;
      height: 100%;
    }

    .banner__placeholder-text {
      font-size: 18px;
    }

    .banner__dots {
      bottom: 15px;
    }

    .banner__dot {
      width: 10px;
      height: 10px;
    }
  }

  @media (max-width: 480px) {
    .banner__container {
      height: 60vh; /* Compact but shows content well */
      max-height: 350px;
    }

    .banner__placeholder-text {
      font-size: 16px;
    }
  }
/* Cart Page Styles - Same as cart panel but for full page */
.cart-page {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 20px;
}

.cart-page__container {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.cart-page__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 16px 24px;
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
}

.cart-page__title {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.cart-page__item-count {
  background: #f0f0f0;
  color: #000000;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Progress Bar Styles */
.cart-page__progress {
  padding: 16px 24px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}

.cart-page__progress-bar {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.cart-page__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #e91e63, #ff6b9d);
  border-radius: 2px;
  width: var(--progress, 0%);
  transition: width 0.3s ease;
}

.cart-page__progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cart-page__progress-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #666666;
}

.cart-page__progress-icon {
  font-size: 14px;
}

.cart-page__progress-text {
  font-size: 11px;
}

.cart-page__progress-status {
  font-size: 10px;
  font-weight: 600;
  color: #e91e63;
}

.cart-page__progress-status.achieved {
  color: #22c55e;
}

.cart-page__progress-unlock {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #666666;
  text-align: center;
  margin-top: 4px;
}

/* Cart Items Styles */
.cart-page__items {
  padding: 0;
}

.cart-page__item {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.cart-page__item-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.cart-page__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.cart-page__item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-page__item-title {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.3;
}

.cart-page__item-title a {
  color: inherit;
  text-decoration: none;
}

.cart-page__item-variant {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 12px;
  color: #666666;
  margin: 0;
}

/* Stock Text */
.cart-page__stock-text {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  margin: 2px 0;
  display: block;
}

.cart-page__stock-text--sold-out {
  color: #dc2626;
}

.cart-page__stock-text--low {
  color: #000000;
}

.cart-page__stock-text--available {
  color: #000000;
}

.cart-page__item-price {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 4px 0;
}

.cart-page__item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.cart-page__quantity-form {
  display: flex;
  align-items: center;
}

.cart-page__quantity {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

.cart-page__quantity-btn {
  background: #f8f9fa;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #666666;
  transition: background-color 0.2s ease;
}

.cart-page__quantity-btn:hover {
  background: #e9ecef;
}

.cart-page__quantity-value {
  width: 40px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  background: #ffffff;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.cart-page__remove-btn {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 12px;
  color: #e91e63;
  text-decoration: none;
  font-weight: 500;
}

.cart-page__remove-btn:hover {
  text-decoration: underline;
}

.cart-page__divider {
  height: 1px;
  background: #f0f0f0;
  margin: 0 24px;
}

/* Cart Summary */
.cart-page__summary {
  padding: 20px 24px;
  background: #ffffff;
}

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

.cart-page__summary-row span:first-child {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.cart-page__summary-row span:last-child {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.cart-page__summary-info {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 12px;
  color: #666666;
  line-height: 1.4;
}

/* Checkout Button */
.cart-page__checkout-btn {
  display: block;
  width: calc(100% - 48px);
  margin: 0 24px 24px 24px;
  padding: 16px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
}

.cart-page__checkout-btn:hover {
  background: #333333;
}

/* Empty Cart */
.cart-page__empty {
  padding: 60px 24px;
  text-align: center;
}

.cart-page__empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.cart-page__empty-text {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 16px;
  color: #666666;
  margin: 0 0 20px 0;
}

.cart-page__empty-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #e91e63;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.cart-page__empty-btn:hover {
  background: #c2185b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cart-page {
    padding: 16px;
  }
  
  .cart-page__header {
    padding: 16px 20px 12px 20px;
  }
  
  .cart-page__title {
    font-size: 20px;
  }
  
  .cart-page__progress {
    padding: 12px 20px;
  }
  
  .cart-page__item {
    padding: 12px 20px;
  }
  
  .cart-page__item-image {
    width: 50px;
    height: 50px;
  }
  
  .cart-page__summary {
    padding: 16px 20px;
  }
  
  .cart-page__checkout-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
  }
}
.cart-test {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cart-test__title {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin: 0 0 16px 0;
}

.cart-test__description {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  color: #666;
  text-align: center;
  margin: 0 0 40px 0;
}

.cart-test__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.cart-test__product {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-test__product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cart-test__product-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #4a90e2, #7b68ee);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-test__placeholder {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.cart-test__product-info h3 {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 8px 0;
}

.cart-test__product-info p {
  font-size: 24px;
  font-weight: 700;
  color: #4a90e2;
  margin: 0 0 20px 0;
}

.cart-test__add-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.cart-test__add-btn:hover {
  background: #333333;
  transform: translateY(-2px);
}

.cart-test__instructions {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e5e5e5;
}

.cart-test__instructions h3 {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 20px 0;
}

.cart-test__instructions ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
}

.cart-test__instructions li {
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1.5;
}

.cart-test__instructions p {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin: 0;
}

.cart-test__features {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
  border: 1px solid #e5e5e5;
}

.cart-test__features h3 {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 16px 0;
}

.cart-test__features ul {
  margin: 0;
  padding-left: 20px;
}

.cart-test__features li {
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cart-test {
    padding: 20px 16px;
  }
  
  .cart-test__title {
    font-size: 28px;
  }
  
  .cart-test__description {
    font-size: 16px;
  }
  
  .cart-test__products {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cart-test__product {
    padding: 20px;
  }
  
  .cart-test__instructions {
    padding: 24px;
  }
  
  .cart-test__instructions h3 {
    font-size: 20px;
  }
  
  .cart-test__features {
    padding: 20px;
  }
}
/* Collection Page Layout */
.collection-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.collection-page__container {
  display: flex;
  gap: 30px;
  min-height: 100vh;
}

/* Filter Sidebar */
.collection-page__sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
}

.collection-filters {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
}



.collection-filters__toggle {
  display: none; /* Legacy - no longer used */
}

/* Desktop Filter Toggle */
.collection-filters__desktop-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  min-height: 36px;
}

.collection-filters__desktop-toggle:hover {
  background: #f0f0f0;
  border-color: #d0d0d0;
}

.collection-filters__desktop-toggle-close {
  font-size: 24px;
  font-weight: normal;
  line-height: 1;
}

/* Hidden sidebar state - completely hidden when closed */
.collection-page__sidebar.is-collapsed {
  width: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
}

.collection-page__sidebar.is-collapsed .collection-filters__container {
  opacity: 0;
  pointer-events: none;
}

.collection-page__sidebar.is-collapsed .collection-filters__desktop-toggle {
  display: none; /* Completely hide when collapsed */
}

.collection-filters__mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.collection-filters__mobile-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.collection-filters__close {
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-filters__close:hover {
  color: #000;
}

.collection-filters__group {
  margin-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}

.collection-filters__group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.collection-filters__group-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.collection-filters__group-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.collection-filters__chevron {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.collection-filters__group-header[aria-expanded="false"] .collection-filters__chevron {
  transform: rotate(0deg);
}

.collection-filters__group-content {
  display: block;
}

.collection-filters__option {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.collection-filters__checkbox {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.collection-filters__checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  flex-shrink: 0;
}

.collection-filters__checkbox:checked + .collection-filters__checkmark {
  background: #000;
  border-color: #000;
}

.collection-filters__checkbox:checked + .collection-filters__checkmark::after {
  content: '✓';
  color: white;
  position: absolute;
  top: -2px;
  left: 2px;
  font-size: 12px;
}



/* Main Content */
.collection-page__main {
  flex: 1;
  padding-right: 10px;
}

.collection-page__header {
  margin-bottom: 30px;
  padding-top: 20px;
}

.collection-products__grid {
  padding-bottom: 40px;
}

.collection-page__breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.collection-page__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Right side controls container */
.collection-page__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Filters Button in Header */
.collection-page__filters-btn {
  display: none; /* Hidden by default */
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

.collection-page__filters-btn:hover {
  background: #f8f8f8;
  border-color: #d0d0d0;
}

.collection-page__filters-btn svg {
  width: 16px;
  height: 16px;
}

/* Show filters button when sidebar is collapsed */
.collection-page__sidebar.is-collapsed ~ .collection-page__main .collection-page__filters-btn {
  display: flex;
}

/* Mobile Filter Button */
.collection-page__mobile-filters-btn {
  display: none; /* Hidden by default - only show on mobile */
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

.collection-page__mobile-filters-btn:hover {
  background: #f8f8f8;
  border-color: #d0d0d0;
}

.collection-page__mobile-filters-btn svg {
  width: 16px;
  height: 16px;
}

.collection-page__title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin: 0;
  letter-spacing: 2px;
}

.collection-page__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.collection-page__sort-label {
  color: #666;
  font-weight: 500;
}

.collection-page__sort-select {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 12px;
  background: white;
  font-size: 14px;
  cursor: pointer;
}

/* Products Grid */
.collection-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* DEFAULT: 3x3 when panel OPEN */
  gap: 20px;
  margin-bottom: 40px;
  max-width: 100%;
  padding: 0 10px;
  transition: all 0.3s ease;
}

/* When sidebar is collapsed - show 4x4 grid (panel CLOSED) */
.collection-page__sidebar.is-collapsed ~ .collection-page__main .collection-products__grid {
  grid-template-columns: repeat(4, 1fr); /* CLOSED = 4x4 grid */
  gap: 16px;
  max-width: none;
  padding: 0 15px;
}

.collection-page__sidebar.is-collapsed ~ .collection-page__main .product-card {
  max-width: 260px; /* Smaller cards when 4x4 */
}

/* Main content area adjustment when sidebar collapsed */
.collection-page__main {
  transition: all 0.3s ease;
}

/* Product Cards - EXACT COPY FROM HOMEPAGE */
.product-card {
  width: 100%;
  max-width: 280px; /* Reduced from original to fit 4 columns */
  height: 420px; /* Reduced proportionally */
  background: #ffffff;
  border: 1px solid #000000; /* Black border */
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto; /* Center cards in their grid cells */
}

.product-card__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 16px;
  gap: 4px; /* Consistent gap spacing */
}

.product-card__content {
  flex-grow: 1;
}

.product-card__actions {
  margin-top: 8px; /* Default desktop spacing */
  padding-top: 8px; /* Default padding */
}

.product-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 60px; /* Leave space for buttons */
  z-index: 1;
  text-decoration: none;
}

.product-card__actions {
  position: relative;
  z-index: 2; /* Above the overlay */
}
}

.product-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* Product Badge */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-card__badge--bestseller {
  background: #ff6b6b;
  color: white;
}

.product-card__badge--bundle {
  background: #4ecdc4;
  color: white;
}

.product-card__badge--new {
  background: #45b7d1;
  color: white;
}

.product-card__badge--sale {
  background: #96ceb4;
  color: white;
}

/* Product Image Container */
.product-card__image-container {
  width: 100%;
  height: 205px; /* Reduced from original */
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.product-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  text-align: center;
}

/* Product Info */
.product-card__info {
  padding: 16px;
  height: 179px; /* Fixed height: 400px total - 205px image - 16px padding = 179px */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Product Title */
.product-card__title {
  margin: 0;
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 700; /* Bold as specified */
  color: #000000; /* Black as specified */
  line-height: 1.2;
  /* Remove fixed height constraints to allow flexible height */
  height: auto;
  min-height: auto;
  overflow: visible;
  display: block; /* Remove webkit box constraints */
}

.product-card__title-link {
  text-decoration: none;
  color: inherit;
}

.product-card__title-link:hover {
  color: #F4AAFF;
}

/* Product Subtitle */
.product-card__subtitle {
  margin: 0;
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400; /* Regular as specified */
  color: rgba(0, 0, 0, 0.5); /* 50% opacity black as specified */
  line-height: 1.2;
  /* Remove fixed height constraints to allow flexible height */
  height: auto;
  min-height: auto;
  overflow: visible;
  white-space: normal; /* Allow text wrapping */
}

/* Rating Section */
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.product-card__stars {
  display: flex;
  gap: 2px;
}

.product-card__star {
  font-size: 14px;
  color: #e0e0e0;
}

.product-card__star--filled {
  color: #ffa726; /* Orange stars */
}

.product-card__reviews-count {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  color: #666666;
}

/* Pricing Section */
.product-card__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0;
}

.product-card__price--current {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.product-card__price--original {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px; /* Smaller as specified */
  color: #999999; /* Grey as specified */
  text-decoration: line-through;
  text-decoration-color: #ff0000; /* Red line as specified */
  text-decoration-thickness: 1px;
}

.product-card__discount {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #008000; /* Green #008000 as specified */
}

/* Action Buttons */
.product-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 8px; /* Natural spacing instead of auto */
}

.product-card__btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
}

.product-card__btn--buy-now {
  background: #ffffff;
  color: #000000;
  border-color: #000000;
}

.product-card__btn--buy-now:hover {
  background: #000000;
  color: #ffffff;
}

.product-card__btn--add-to-cart {
  background: #f0d0ff;
  color: #000000;
  border-color: #000000;
}

.product-card__btn--add-to-cart:hover {
  background: #e6b8ff;
  border-color: #000000;
}

/* Stock Status Styling */
.product-card__stock {
  margin: 8px 0;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.product-card__stock--low {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

/* Remove pink hover color for product card links */
.product-card__title-link:hover {
  color: inherit;
}

/* No Products Message */
.collection-page__no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 2px dashed #ddd;
}

.collection-page__no-products-content h3 {
  font-size: 24px;
  color: #666;
  margin-bottom: 16px;
}

.collection-page__no-products-content p {
  color: #888;
  margin-bottom: 16px;
}

.collection-page__no-products-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.collection-page__no-products-content li {
  margin-bottom: 8px;
}

.collection-page__no-products-content a {
  color: #333;
  text-decoration: underline;
}

.collection-page__no-products-content a:hover {
  color: #000;
}

/* Product Cards - Copy styles from featured-products.liquid */
.product-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  height: fit-content;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__badge--bestseller { background: #ff6b6b; }
.product-card__badge--bundle { background: #4ecdc4; }
.product-card__badge--new { background: #45b7d1; }

.product-card__image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.product-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #999;
  border: 2px dashed #ddd;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.product-card__info {
  padding: 16px;
  height: 179px; /* Fixed height: 400px total - 205px image - 16px padding = 179px */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.product-card__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  line-height: 1.3;
  height: 38px; /* Fixed height for 2 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__title-link {
  color: #333;
  text-decoration: none;
}

.product-card__title-link:hover {
  color: #000;
}

.product-card__subtitle {
  font-size: 14px;
  color: #666;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.product-card__stars {
  display: flex;
  gap: 2px;
}

.product-card__star {
  color: #ddd;
  font-size: 14px;
}

.product-card__star--filled {
  color: #ffc107;
}

.product-card__reviews-count {
  font-size: 12px;
  color: #999;
}

.product-card__pricing {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card__price {
  font-weight: 600;
  font-size: 16px;
}

.product-card__price--current {
  color: #333;
}

.product-card__price--original {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
}

.product-card__discount {
  color: #28a745;
  font-size: 12px;
  font-weight: 600;
}

.product-card__actions {
  display: flex;
  gap: 8px;
}

.product-card__btn {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 20;
}

.product-card__btn--buy-now {
  background: white;
  color: #333;
  border: 1px solid #333;
}

.product-card__btn--buy-now:hover {
  background: #333;
  color: white;
}

.product-card__btn--add-to-cart {
  background: #f0d0ff;
  color: #000000;
  border: 1px solid #000000;
}

.product-card__btn--add-to-cart:hover {
  background: #e6b8ff;
  border: 1px solid #000000;
}

/* Pagination */
.collection-pagination {
  margin: 40px 0 20px;
  text-align: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination__item:hover:not(.pagination__item--disabled) {
  background: #f8f8f8;
  border-color: #ccc;
  color: #000;
}

.pagination__number--current {
  background: #333 !important;
  color: #fff !important;
  border-color: #333 !important;
}

.pagination__item--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f5f5;
}

.pagination__numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagination__ellipsis {
  border: none !important;
  background: transparent !important;
  cursor: default;
}

.pagination__prev,
.pagination__next {
  font-weight: 600;
  gap: 6px;
}

.pagination__arrow {
  font-size: 14px;
}

.pagination__info {
  color: #666;
  font-size: 14px;
  margin-top: 12px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .collection-page__sidebar {
    position: static;
  }
  
  .collection-products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .collection-page__title {
    font-size: 28px;
  }
}

/* DESKTOP STYLES - Reset mobile filter container overrides */
@media (min-width: 769px) {
  .collection-filters__container {
    position: static !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    z-index: auto !important;
    padding: 0 !important;
    overflow-y: visible !important;
    transition: none !important;
    box-shadow: none !important;
    visibility: visible !important;
  }
  
  /* Hide mobile filter dropdown on desktop */
  .mobile-filter-dropdown {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .collection-page {
    padding: 16px;
  }
  
  .collection-page__container {
    flex-direction: column;
    gap: 20px;
  }
  
  .collection-page__sidebar {
    display: none; /* Completely hide sidebar on mobile */
    width: 100%;
    position: static;
  }
  
  .collection-page__main {
    padding-right: 0;
  }
  
  /* BUT show the filter container when opened */
  .collection-page__sidebar .collection-filters__container {
    display: block !important; /* Override parent hide */
  }
  
  /* Hide desktop toggle on mobile */
  .collection-filters__desktop-toggle {
    display: none;
  }
  
  /* Hide desktop filter button on mobile */
  .collection-page__filters-btn {
    display: none !important;
  }
  
  /* Show mobile filter button on mobile */
  .collection-page__mobile-filters-btn {
    display: flex;
  }
  
  /* Mobile Filter Dropdown */
  .collection-page__mobile-filter-dropdown {
    position: relative;
  }
  
  .collection-page__controls {
    position: relative;
  }

  .collection-page__mobile-filter-dropdown {
    position: static;
  }

  .mobile-filter-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 20px;
    display: none;
    margin-top: 8px;
    max-height: 70vh;
    overflow-y: auto;
  }

  .mobile-filter-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    line-height: 1;
  }

  .mobile-filter-close:hover {
    color: #333;
  }
  
  /* Ensure dropdown stays within screen on small screens */
  @media (max-width: 320px) {
    .mobile-filter-dropdown {
      right: -20px;
      width: 240px;
    }
  }
  
  .mobile-filter-dropdown.is-open {
    display: block;
  }
  
  .mobile-filter-section {
    margin-bottom: 16px;
  }
  
  .mobile-filter-section:last-child {
    margin-bottom: 0;
  }
  
  .mobile-filter-section h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }
  
  .mobile-filter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .mobile-filter-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s ease;
  }
  
  .mobile-filter-item:hover {
    background: #f5f5f5;
  }
  
  .mobile-filter-item input {
    width: 14px;
    height: 14px;
  }
  
  .collection-filters__toggle {
    display: none; /* Legacy - no longer used */
  }
  
  .collection-filters__container {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important; /* Start from left side */
    width: 85% !important; /* Take most of screen width */
    max-width: 350px !important; /* Max width for larger screens */
    height: 100vh !important;
    background: white !important;
    z-index: 1001 !important; /* Higher than overlay */
    padding: 20px !important;
    overflow-y: auto !important;
    transition: left 0.3s ease-in-out !important; /* Smooth slide animation */
    box-shadow: 2px 0 10px rgba(0,0,0,0.1) !important;
    visibility: hidden !important; /* Hide but keep in DOM for transitions */
  }
  
  .collection-filters__container.is-open {
    left: 0 !important; /* Slide in from left */
    visibility: visible !important;
  }
  
  /* Mobile body overlay when filters open */
  .mobile-filters-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Below the filter panel */
  }
  
  .mobile-filters-open {
    overflow: hidden; /* Prevent background scrolling */
  }
  
  .collection-filters__mobile-header {
    display: flex !important;
  }
  
  /* Mobile Filter Grid Layout */
  .collection-filters__group-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .collection-filters__option {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0;
    background: #fafafa;
    transition: all 0.2s ease;
  }
  
  .collection-filters__option:hover {
    background: #f0f0f0;
    border-color: #ccc;
  }
  
  .collection-filters__checkmark {
    margin-bottom: 6px;
  }
  
  .collection-filters__label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
  }
  
  /* Make filter groups more compact */
  .collection-filters__group {
    margin-bottom: 24px;
  }
  
  .collection-filters__group-header {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
  }
  
  .collection-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px; /* Standardized gap to match other sections */
    padding: 0 5px;
  }
  
  /* Mobile: Standardized card design */
  .product-card {
    width: calc(50vw - 20px); /* Exactly half viewport minus gaps and padding */
    min-width: 160px; /* Minimum width */
    max-width: 180px; /* Maximum width */
    min-height: 256px; /* Minimum height to maintain proportions */
    height: auto; /* Dynamic height to fit content */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid #000000; /* Ensure black border on mobile */
  }
  
  .product-card__image-container {
    height: calc((50vw - 20px) * 0.82); /* Maintain exact 205:250 ratio */
    min-height: 131px; /* 160 * 0.82 */
    max-height: 148px; /* 180 * 0.82 */
    flex-shrink: 0;
    overflow: hidden; /* Prevent image overflow */
  }
  
  .product-card__info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 10px !important; /* Force smaller padding for mobile */
    gap: 4px; /* Tighter gaps for mobile */
    /* Mobile: Remove fixed height and allow natural flow */
    height: auto !important; /* Force auto height */
    min-height: auto !important; /* Force auto min-height */
    justify-content: flex-start !important; /* Force flex-start */
    overflow: visible !important; /* Force visible overflow */
  }
  
  .product-card__title {
    font-size: 13px; /* Smaller for mobile */
    line-height: 1.2;
  }
  
  .product-card__subtitle {
    font-size: 11px; /* Smaller for mobile */
    line-height: 1.2;
  }
  
  .product-card__rating {
    gap: 4px;
    margin: 2px 0;
  }
  
  .product-card__star {
    font-size: 12px; /* Smaller stars */
  }
  
  .product-card__reviews-count {
    font-size: 10px; /* Smaller review text */
  }
  
  .product-card__pricing {
    gap: 4px;
    margin: 2px 0;
    /* Allow pricing to wrap to multiple lines if needed */
    flex-wrap: wrap;
    align-items: flex-start;
  }
  
  .product-card__price--current {
    font-size: 15px; /* Smaller current price */
  }
  
  .product-card__price--original {
    font-size: 12px; /* Smaller original price */
  }
  
  .product-card__discount {
    font-size: 10px; /* Smaller discount text */
  }
  
  .product-card__actions {
    margin-top: 2px !important; /* Force minimal space between pricing and buttons */
    gap: 6px;
    padding-top: 2px !important; /* Force minimal top padding */
    padding-bottom: 4px; /* Ensure bottom spacing */
    /* Mobile: Remove any auto margins that push to bottom */
    margin-left: 0;
    margin-right: 0;
  }
  
  .product-card__btn {
    font-size: 10px; /* Smaller button text */
    padding: 6px 8px; /* Smaller button padding */
    border-radius: 4px; /* Smaller border radius */
    position: relative;
    z-index: 20;
  }
  
  .product-card__badge {
    font-size: 9px; /* Smaller badge text */
    padding: 3px 6px; /* Smaller badge padding */
    top: 8px;
    left: 8px;
  }
  

  
  .collection-page__title {
    font-size: 24px;
  }
  
  .collection-page__title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Mobile Pagination */
  .pagination {
    gap: 4px;
    padding: 0 10px;
  }
  
  .pagination__item {
    min-width: 36px;
    height: 36px;
    padding: 6px 10px;
    font-size: 14px;
  }
  
  .pagination__prev .pagination__text,
  .pagination__next .pagination__text {
    display: none;
  }
  
  .pagination__info {
    font-size: 12px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .product-card__btn {
    padding: 12px;
    font-size: 14px;
    position: relative;
    z-index: 20;
  }
  
  .collection-page__title {
    font-size: 20px;
  }
}
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.customer-reviews {
  padding: 40px 0;
  background: #ffffff;
}

.customer-reviews__title {
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #333333;
  line-height: 1.1;
}

.customer-reviews__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Review Cards */
.reviews-cards__container {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-cards__container::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: rgba(229, 45, 255, 0.21);
  border: 1px solid #000000;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  flex-shrink: 0;
  width: calc(25% - 10px);
}

@media (max-width: 1200px) {
  .review-card {
    width: calc(33.333% - 10px);
  }
}

@media (max-width: 900px) {
  .review-card {
    width: calc(50% - 10px);
  }
}

.review-card__customer-image {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}

.review-card__customer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-image__placeholder {
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  border-radius: 8px;
}

.review-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 60px;
}

.review-card__name {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.review-card__verified {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 2px 0 0 0;
}

.verified-icon {
  flex-shrink: 0;
  object-fit: contain;
}

.verified-text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-card__stars {
  margin-top: 0px;
}

.review-card__stars .star {
  font-size: 16px;
  color: #ddd;
  margin-right: 2px;
}

.review-card__stars .star--filled {
  color: #FFA500;
}

.review-card__content p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
}

.review-card__product {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.product-info__image,
.product-info__placeholder {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  flex-shrink: 0;
}

.product-info__details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 50px;
}

.product-info__placeholder {
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.product-info__name {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 4px 0;
}

.product-info__subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  color: #666666;
  margin: 0;
}

.product-info__cta {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  text-decoration: underline;
  text-decoration-color: #333333;
  text-underline-offset: 2px;
}

.product-info__cta:hover {
  text-decoration-thickness: 2px;
}

/* Pagination */
.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e5e5;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pagination-dot--active {
  background: #cccccc;
}

/* Stars Global */
.star {
  color: #ddd;
}

.star--filled {
  color: #FFA500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .customer-reviews {
    padding: 25px 0;
  }
  
  .customer-reviews__container {
    padding: 0 16px;
  }
  
  .customer-reviews__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  /* Mobile Review Cards - Same Design, Different Size */
  .review-card {
    width: calc(100vw - 52px);
    max-width: 340px;
    padding: 18px;
    margin: 0 auto;
    flex-shrink: 0;
  }
  
  .reviews-cards__container {
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding: 0 16px;
  }
  
  .review-card {
    scroll-snap-align: center;
  }
  
  .review-card__customer-image {
    width: 50px;
    height: 50px;
    top: 18px;
    left: 18px;
  }
  
  .review-card__header {
    margin-top: 55px;
  }
  
  .review-card__name {
    font-size: 16px;
  }
  
  .verified-text {
    font-size: 10px;
  }
  
  .verified-icon {
    width: 14px;
    height: 14px;
  }
  
  .review-card__content p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .product-info__name {
    font-size: 13px;
  }
  
  .product-info__subtitle {
    font-size: 11px;
  }
  
  .product-info__cta {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .customer-reviews {
    padding: 18px 0;
  }
  
  .customer-reviews__container {
    padding: 0 12px;
  }
  
  .customer-reviews__title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  .review-card {
    width: calc(100vw - 24px);
    max-width: 320px;
    padding: 16px;
  }
  
  .review-card__customer-image {
    width: 45px;
    height: 45px;
    top: 16px;
    left: 16px;
  }
  
  .review-card__header {
    margin-top: 50px;
  }
  
  .review-card__name {
    font-size: 15px;
  }
  
  .verified-text {
    font-size: 9px;
  }
  
  .verified-icon {
    width: 12px;
    height: 12px;
  }
  
  .review-card__content p {
    font-size: 12px;
  }
  
  .product-info__name {
    font-size: 12px;
  }
  
  .product-info__subtitle {
    font-size: 10px;
  }
  
  .product-info__cta {
    font-size: 12px;
  }
}
/* Featured Products Section - Cache bust v2 */
.featured-products {
  padding: 20px 0;
  background: #ffffff;
  overflow: hidden;
}

.featured-products__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Section Header */
.featured-products__header {
  text-align: center;
  margin-bottom: 30px;
}

.featured-products__title {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-products__description {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: #666666;
  margin: 0;
}

/* Products Grid */
.featured-products__grid {
  position: relative;
}

.featured-products__products-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 10px 15px 20px 15px; /* Padding for shadows and mobile spacing */
}

.featured-products__products-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}



/* Product Card - Exact Specifications */
.product-card {
  position: relative;
  width: 250px; /* Exact specification */
  height: 400px; /* Exact specification */
  background: #ffffff;
  border: 1px solid #000000; /* Black border */
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Product Badge */
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-card__badge--bestseller {
  background: #fce4ec; /* Light pink */
  color: #e91e63;
}

.product-card__badge--bundle {
  background: #e8f5e8; /* Light green */
  color: #4caf50;
}

.product-card__badge--new {
  background: #e3f2fd; /* Light blue */
  color: #2196f3;
}

.product-card__badge--sale {
  background: #fff3e0; /* Light orange */
  color: #ff9800;
}

/* Product Image */
.product-card__image-container {
  position: relative;
  width: 100%;
  height: 205px; /* Exact specification */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
}

.product-card__image-link {
  display: block;
  width: 205px; /* Exact specification */
  height: 205px; /* Exact specification */
  position: relative;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.product-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  text-align: center;
}

/* Product Info */
.product-card__info {
  padding: 16px;
  height: 179px; /* Fixed height: 400px total - 205px image - 16px padding = 179px */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Product Title */
.product-card__title {
  margin: 0;
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 700; /* Bold as specified */
  color: #000000; /* Black as specified */
  line-height: 1.2;
  height: 38px; /* Fixed height for 2 lines max */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__title-link {
  text-decoration: none;
  color: inherit;
}

.product-card__title-link:hover {
  color: #F4AAFF;
}

/* Product Subtitle */
.product-card__subtitle {
  margin: 0;
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400; /* Regular as specified */
  color: rgba(0, 0, 0, 0.5); /* 50% opacity black as specified */
  line-height: 1.2;
  height: 16px; /* Fixed height for 1 line */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.2;
}

/* Rating Section */
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}

.product-card__stars {
  display: flex;
  gap: 2px;
}

.product-card__star {
  font-size: 14px;
  color: #e0e0e0;
}

.product-card__star--filled {
  color: #ffa726; /* Orange stars */
}

.product-card__reviews-count {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  color: #666666;
}

/* Pricing Section */
.product-card__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0;
}

.product-card__price--current {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.product-card__price--original {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px; /* Smaller as specified */
  color: #999999; /* Grey as specified */
  text-decoration: line-through;
  text-decoration-color: #ff0000; /* Red line as specified */
  text-decoration-thickness: 1px;
}

.product-card__discount {
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #008000; /* Green #008000 as specified */
}

/* Action Buttons */
.product-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 8px; /* Natural spacing instead of auto */
  position: relative;
  z-index: 15;
}

.product-card__btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
}

.product-card__btn--buy-now {
  background: #ffffff;
  color: #000000;
  border-color: #000000;
}

.product-card__btn--buy-now:hover {
  background: #000000;
  color: #ffffff;
}

.product-card__btn--add-to-cart {
  background: #f0d0ff;
  color: #000000;
  border-color: #000000;
}

.product-card__btn--add-to-cart:hover {
  background: #e6b8ff;
  border-color: #000000;
}

/* Stock Status Styling */
.product-card__stock {
  margin: 8px 0;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.product-card__stock--low {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

/* Remove pink hover color for product card links */
.product-card__title-link:hover {
  color: inherit;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .featured-products {
    padding: 15px 0;
  }
  
  .featured-products__container {
    padding: 0;
  }
  
  .featured-products__products-container {
    gap: 8px; /* Standardized gap to match other sections */
    padding: 10px 15px 20px 15px;
  }
  

  
  /* Mobile: Dynamic height to fit all content */
  .product-card {
    width: calc(50vw - 20px); /* Exactly half viewport minus gaps and padding */
    min-width: 160px; /* Minimum width */
    max-width: 180px; /* Maximum width */
    min-height: 256px; /* Minimum height to maintain proportions */
    height: auto; /* Dynamic height to fit content */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
  }
  
  .product-card__image-container {
    height: calc((50vw - 20px) * 0.82); /* Maintain exact 205:250 ratio */
    min-height: 131px; /* 160 * 0.82 */
    max-height: 148px; /* 180 * 0.82 */
    flex-shrink: 0;
    overflow: hidden; /* Prevent image overflow */
  }
  
  .product-card__info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 10px; /* Smaller padding for mobile */
    gap: 4px; /* Tighter gaps for mobile */
    /* Ensure natural content flow without pushing buttons to bottom */
    justify-content: flex-start;
  }
  
  .product-card__title {
    font-size: 13px; /* Smaller for mobile */
    line-height: 1.2;
    /* Remove fixed height constraints to allow flexible height */
    height: auto;
    min-height: auto;
    overflow: visible;
  }
  
  .product-card__subtitle {
    font-size: 11px; /* Smaller for mobile */
    line-height: 1.2;
    /* Remove fixed height constraints to allow flexible height */
    height: auto;
    min-height: auto;
    overflow: visible;
    white-space: normal; /* Allow text wrapping */
  }
  
  .product-card__rating {
    gap: 4px;
    margin: 2px 0;
  }
  
  .product-card__star {
    font-size: 12px; /* Smaller stars */
  }
  
  .product-card__reviews-count {
    font-size: 10px; /* Smaller review text */
  }
  
  .product-card__pricing {
    gap: 4px;
    margin: 2px 0;
    /* Allow pricing to wrap to multiple lines if needed */
    flex-wrap: wrap;
    align-items: flex-start;
  }
  
  .product-card__price--current {
    font-size: 15px; /* Smaller current price */
  }
  
  .product-card__price--original {
    font-size: 12px; /* Smaller original price */
  }
  
  .product-card__discount {
    font-size: 10px; /* Smaller discount text */
  }
  
  .product-card__actions {
    margin-top: 2px; /* Minimal space between pricing and buttons */
    gap: 6px;
    padding-top: 2px; /* Minimal top padding */
    padding-bottom: 4px; /* Ensure bottom spacing */
  }
  
  .product-card__btn {
    font-size: 10px; /* Smaller button text */
    padding: 6px 8px; /* Smaller button padding */
    border-radius: 4px; /* Smaller border radius */
  }
  
  .product-card__image-link {
    width: 100%;
    height: 100%;
  }
  
  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
  }
  
  .product-card__badge {
    font-size: 9px; /* Smaller badge text */
    padding: 3px 6px; /* Smaller badge padding */
    top: 8px;
    left: 8px;
  }
}

/* Desktop Responsive */
@media (min-width: 769px) {
  .featured-products__container {
    max-width: 1300px; /* Increase max width to fit 5 cards */
    padding: 0 20px;
  }
  
  .featured-products__products-container {
    overflow-x: auto; /* Enable horizontal scrolling on desktop */
    justify-content: flex-start; /* Start from left, not center */
    flex-wrap: nowrap;
    padding: 10px 0 20px 0;
    gap: 16px; /* Reduced gap to fit 5 cards */
    max-width: 100%;
    scrollbar-width: none; /* Hide scrollbar on Firefox */
    -ms-overflow-style: none; /* Hide scrollbar on IE */
  }
  
  .featured-products__products-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar on Chrome/Safari */
  }
  

  
  /* Desktop: Exactly 5 cards - maintain original proportions */
  .product-card {
    width: 230px; /* Optimal size for 5 cards */
    height: 368px; /* Maintain 250:400 ratio (230:368) */
    flex-shrink: 0;
  }
  
  .product-card__image-container {
    height: 188px; /* Maintain 205:205 ratio proportional to card (230*205/250) */
  }
  
  .product-card__image-link {
    width: 188px; /* Square, same as container height */
    height: 188px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .featured-products__container {
    max-width: 1400px; /* Even more space for larger screens */
  }
  
  .featured-products__products-container {
    overflow-x: auto; /* Enable horizontal scrolling on large desktop */
    gap: 20px; /* Restore normal gap */
    justify-content: flex-start; /* Ensure cards start from left */
    scrollbar-width: none; /* Hide scrollbar on Firefox */
    -ms-overflow-style: none; /* Hide scrollbar on IE */
  }
  
  .featured-products__products-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar on Chrome/Safari */
  }
  
  /* Large Desktop: Original exact proportions */
  .product-card {
    width: 250px; /* Original specification */
    height: 400px; /* Original specification */
  }
  
  .product-card__image-container {
    height: 205px; /* Original specification */
  }
  
  .product-card__image-link {
    width: 205px; /* Original specification */
    height: 205px; /* Original specification */
  }
}

/* Product Card Overlay for Full Card Clickability */
.product-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
}

.product-card__overlay:hover {
  background: rgba(0, 0, 0, 0.02);
}
.footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 0 40px 0;
  margin-top: 0;
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

/* Service Features Section */
.footer__service-features-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
  padding: 0 20px;
}

.footer__service-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 800px;
  width: 100%;
  align-items: start;
  justify-content: center;
  justify-items: center;
}

.footer__service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-align: center;
  padding: 0 8px;
}

.footer__service-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__service-text {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

/* Brand Section */
.footer__brand {
  max-width: 400px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo-image {
  max-width: 200px;
  height: auto;
}

.footer__logo-text {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.footer__description {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 30px;
  margin-top: 0;
}

/* Social Media */
.footer__social {
  display: flex;
  gap: 15px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__social-link:hover {
  color: #E52DFF;
  transform: translateY(-2px);
}

.footer__social-icon {
  width: 24px;
  height: 24px;
}

/* Columns */
.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__heading {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: none;
}

.footer__link:hover {
  color: #E52DFF;
}

/* Contact Section */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1;
}

.footer__contact-label {
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer__contact-icon {
  width: 14px;
  height: 14px;
  color: #ffffff;
  margin-top: 1px;
}

.footer__contact-text {
  flex: 1;
  line-height: 1;
  display: flex;
  align-items: center;
}

.footer__contact-address {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  margin-top: 10px;
}

/* Payment Icons */
.footer__payment {
  margin-top: 25px;
}

.footer__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer__payment-icon {
  height: 32px;
  width: auto;
  background: #ffffff;
  border-radius: 4px;
  padding: 4px 8px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer__brand {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 25px 0 20px 0;
  }
  
  .footer__service-features-section {
    margin: 30px 0;
    padding: 0 16px;
  }
  
  .footer__service-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: none;
  }
  
  .footer__service-item {
    padding: 0 4px;
  }
  
  .footer__service-text {
    font-size: 10px;
    letter-spacing: 0.3px;
  }
  
  .footer__service-icon {
    font-size: 22px;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 15px;
  }
  
  .footer__developer {
    order: -1;
    flex: none;
  }
  
  .footer__container {
    padding: 0 16px;
  }
  
  .footer__content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  
  .footer__brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer__column {
    text-align: left;
  }
  
  .footer__brand {
    text-align: center;
  }
  
  .footer__logo {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
  }
  
  .footer__logo-image {
    max-width: 150px;
  }
  
  .footer__description {
    text-align: center;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.4;
  }
  
  .footer__social {
    justify-content: center;
    gap: 12px;
  }
  
  .footer__social-link {
    width: 36px;
    height: 36px;
  }
  
  .footer__social-icon {
    width: 20px;
    height: 20px;
  }
  
  .footer__heading {
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
  }
  
  .footer__links {
    gap: 8px;
  }
  
  .footer__link {
    font-size: 12px;
    padding: 3px 0;
  }
  
  .footer__contact-item {
    font-size: 12px;
    gap: 4px;
    display: flex;
    align-items: center;
  }
  
  .footer__contact-address {
    font-size: 11px;
    line-height: 1.4;
  }
  
  .footer__payment-icons {
    justify-content: center;
    gap: 8px;
  }
  
  .footer__payment-icon {
    height: 24px;
  }
}

/* Footer Bottom Section */
.footer__bottom {
  border-top: 1px solid #333333;
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copyright {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  color: #999999;
}

.footer__copyright p {
  margin: 0;
}

.footer__developer {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  color: #999999;
  text-align: center;
  flex: 1;
}

.footer__developer p {
  margin: 0;
}

.footer__developer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__developer-link:hover {
  color: #E52DFF;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer__bottom-link {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  color: #999999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__bottom-link:hover {
  color: #E52DFF;
}

.footer__separator {
  color: #666666;
  font-size: 14px;
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 0 15px 0;
  }
  
  .footer__container {
    padding: 0 12px;
  }
  
  .footer__content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }
  
  .footer__brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .footer__column {
    text-align: left;
  }
  
  .footer__service-features-section {
    margin: 25px 0;
    padding: 0 12px;
  }
  
  .footer__service-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: none;
    grid-template-rows: repeat(3, auto);
  }
  
  .footer__service-item:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
  }
  
  .footer__service-item {
    padding: 0 2px;
  }
  
  .footer__service-text {
    font-size: 9px;
    letter-spacing: 0.2px;
  }
  
  .footer__service-icon {
    font-size: 20px;
  }
  
  .footer__logo-image {
    max-width: 140px;
  }
  
  .footer__description {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .footer__social-link {
    width: 32px;
    height: 32px;
  }
  
  .footer__social-icon {
    width: 18px;
    height: 18px;
  }
  
  .footer__heading {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .footer__links {
    gap: 6px;
  }
  
  .footer__link {
    font-size: 11px;
    padding: 2px 0;
  }
  
  .footer__contact-item {
    font-size: 11px;
    gap: 3px;
    display: flex;
    align-items: center;
  }
  
  .footer__contact-address {
    font-size: 10px;
    line-height: 1.3;
  }
  
  .footer__bottom {
    margin-top: 20px;
    padding-top: 12px;
    gap: 10px;
  }
  
  .footer__developer {
    order: -1;
    flex: none;
  }
  
  .footer__copyright {
    font-size: 12px;
  }
  
  .footer__bottom-link {
    font-size: 12px;
  }
}
/* Cache bust - negative padding super tight v4 */
  .header-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-bottom: 1px solid #e5e5e5;
  }

  .header {
    padding: 0; /* Zero padding - ultra compact */
    width: 100%;
  }

  .header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: -2px 20px; /* Negative padding - super tight */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  /* Mobile-first layout - hide search section */
  .header__search {
    display: none;
  }

  .header__search-form {
    width: 100%;
    max-width: 300px;
    display: none; /* Hidden on mobile by default */
  }

  .header__search-icon-only {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
  }

  .header__search-icon-only:hover {
    color: #e91e63;
  }

  /* Mobile search icon in actions */
  .header__search-mobile {
    display: flex; /* Show on mobile */
  }

  .header__search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .header__search-icon {
    position: absolute;
    left: 12px;
    color: #666;
    z-index: 1;
  }

  .header__search-input {
    width: 100%;
    padding: 12px 12px 12px 44px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
  }

  .header__search-input:focus {
    border-color: #333;
  }

  .header__search-input::placeholder {
    color: #999;
  }

  /* Logo Section - Mobile first (left side) */
  .header__logo-section {
    order: 1;
    flex-shrink: 0;
  }

  .header__logo {
    text-decoration: none;
    display: inline-block;
    line-height: 0;
    margin: 0;
    padding: 0;
  }

  .header__logo-image {
    height: 100px !important; /* Mobile logo size - compact */
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  /* Mobile Hamburger Menu */
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    order: 0; /* First item on mobile */
    z-index: 1001;
  }

  .header__hamburger-line {
    width: 22px;
    height: 2px;
    background-color: #000000;
    margin: 2px 0;
    transition: all 0.3s ease;
  }

  .header__hamburger.active .header__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__hamburger.active .header__hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .header__hamburger.active .header__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Action Icons Section */
  .header__actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
  }

  .header__action-icon {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .header__action-icon:hover {
    color: #e91e63;
  }

  .header__cart {
    position: relative;
  }

  .header__cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    min-width: 18px;
  }

  /* Mobile Search Overlay */
  .mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .mobile-search-overlay.active {
    display: block;
    opacity: 1;
  }

  .mobile-search-container {
    background: #ffffff;
    height: 100vh;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  .mobile-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e1e1e1;
    background: #ffffff;
  }

  .mobile-search-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
  }

  .mobile-search-close:hover {
    background-color: #f7f7f7;
  }

  .mobile-search-close:active {
    background-color: #e1e1e1;
  }

  .mobile-search-form {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .mobile-search-input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-search-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
    color: #000000;
  }

  .mobile-search-input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  }

  .mobile-search-input::placeholder {
    color: #6b7280;
    font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  .mobile-search-icon {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #6b7280;
    z-index: 1;
  }

  .mobile-search-submit {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Product Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    letter-spacing: 0.025em;
  }

  .mobile-search-submit:hover {
    background: #1f2937;
  }

  .mobile-search-submit:active {
    transform: translateY(1px);
    background: #374151;
  }

  /* Mobile and tablet responsiveness */
  @media (max-width: 768px) {
    .header {
      padding: 12px 0;
    }
    
    .header__container {
      padding: 0 15px;
      gap: 15px;
    }

    .header__search {
      display: none; /* Hide search section on mobile */
    }
    
    .header__logo-image {
      height: 100px !important; /* Mobile logo size - compact */
    }

    .header__actions {
      gap: 15px;
    }

    .header__search-mobile {
      display: flex; /* Show search icon in actions on mobile */
    }

    .header__action-icon svg {
      width: 24px;
      height: 24px;
    }
  }

  @media (max-width: 480px) {
    .header {
      padding: 0; /* Zero padding - ultra compact */
    }

    .header__container {
      gap: 8px;
      padding: -2px 12px; /* Negative padding for mobile - super tight */
    }

    .header__search {
      max-width: 140px;
    }

    .header__search-input {
      padding: 8px 8px 8px 34px;
      font-size: 12px;
    }

    .header__search-icon {
      left: 8px;
      width: 16px;
      height: 16px;
    }
    
    .header__logo-image {
      height: 32px;
    }

    .header__actions {
      gap: 10px;
    }

    .header__action-icon svg {
      width: 20px;
      height: 20px;
    }

    .header__cart-count {
      width: 16px;
      height: 16px;
      font-size: 10px;
      top: -6px;
      right: -6px;
    }
  }

  /* Desktop and laptop layout - Logo left, search center, actions right */
  @media (min-width: 769px) {
    .header {
      padding: 0; /* Zero padding - ultra compact */
    }

    .header__hamburger {
      display: none; /* Hide hamburger on desktop */
    }

    .header__container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .header__logo-section {
      order: 1;
      flex: 0 0 auto; /* Logo takes only needed space */
    }

    .header__search {
      display: block; /* Show search section on desktop */
      order: 2;
      flex: 1; /* Search takes remaining space */
      max-width: none; /* Remove max-width restriction */
      margin: 0 40px; /* Add margins for spacing */
    }

    .header__search-form {
      display: block; /* Show search bar on desktop */
      max-width: 100%; /* Use full available width */
    }

    .header__search-input {
      width: 100%;
      padding: 14px 14px 14px 48px; /* Larger padding for desktop */
      font-size: 16px; /* Larger font size */
      border-radius: 30px; /* More rounded corners */
    }

    .header__search-icon {
      left: 16px; /* Adjust icon position */
      width: 22px;
      height: 22px;
    }

    .header__search-icon-only {
      display: none; /* Hide search icon on desktop */
    }

    .header__search-mobile {
      display: none; /* Hide mobile search icon on desktop */
    }

    .header__logo-image {
      height: 120px; /* Desktop logo size */
    }

    .header__actions {
      order: 3;
      flex: 0 0 auto; /* Actions take only needed space */
      gap: 25px;
    }
  }

  @media (min-width: 1024px) {
    .header__logo-image {
      height: 130px; /* Larger logo on large desktop */
    }

    .header__search {
      margin: 0 60px; /* More spacing on larger screens */
    }

    .header__search-input {
      padding: 16px 16px 16px 52px; /* Even larger padding */
      font-size: 16px;
    }

    .header__search-icon {
      left: 18px;
      width: 24px;
      height: 24px;
    }

    .header__actions {
      gap: 30px;
    }
  }
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

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

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
.how-to-apply {
  padding: 60px 0;
  background: #ffffff;
}

.how-to-apply__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 
    "title title"
    "gallery poster";
  gap: 40px 80px;
  align-items: start;
}

.how-to-apply__title {
  grid-area: title;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 20px 0;
  line-height: 1.1;
  text-align: center;
}

/* Left Side - Product Image Gallery */
.how-to-apply__gallery {
  grid-area: gallery;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

   .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
  }

   .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
  }

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

   .gallery-item--more {
    position: relative;
    cursor: pointer;
  }
  
  .gallery-image--blurred {
    filter: blur(3px);
    opacity: 1;
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 144, 226, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .gallery-item--more:hover .gallery-overlay {
    background: rgba(74, 144, 226, 0.7);
  }



.gallery-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

 .gallery-more-text {
   font-family: 'Product Sans', Arial, sans-serif;
   font-size: 28px;
   font-weight: bold;
   color: white;
   text-align: center;
 }

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

   .modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    margin: auto;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1001;
  }

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  z-index: 1002;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 1);
}

.modal-main-image {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

   .modal-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
  }

.modal-thumbnails {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.thumbnail-nav {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.thumbnail-nav:hover {
  background: rgba(255, 255, 255, 1);
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-width: 400px;
  padding: 10px 0;
}

   .thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
  }

.thumbnail.active {
  opacity: 1;
  border: 2px solid #fff;
}

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

/* Right Side - Poster */
.how-to-apply__poster {
  grid-area: poster;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.how-to-apply__poster-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}



 /* Mobile Responsive */
 @media (max-width: 768px) {
   .how-to-apply {
     padding: 40px 0;
   }
   
   .how-to-apply__container {
     display: flex;
     flex-direction: column;
     gap: 30px;
     padding: 0 15px;
   }
   
   .how-to-apply .how-to-apply__title {
     font-size: 32px;
     margin-bottom: 0;
     text-align: center !important;
     width: 100%;
   }
   
   /* Gallery appears below banner on mobile */
   .how-to-apply__gallery {
     order: 2;
     margin-top: 20px;
   }
   
       .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 8px;
    }
   
   .gallery-item {
     aspect-ratio: 1;
   }
   
   .how-to-apply__poster {
     order: 1;
     max-width: 100%;
     margin: 0 auto;
   }
   
   .how-to-apply__poster img {
     width: 100%;
     height: auto;
   }
   
   /* Mobile modal adjustments */
   .modal-content {
     width: 95%;
     max-height: 95vh;
   }
   
   .modal-main-image {
     height: 60vh;
   }
   
   .thumbnail {
     width: 50px;
     height: 50px;
   }
 }

 @media (max-width: 480px) {
   .how-to-apply__title {
     font-size: 28px;
   }
   
   /* Gallery is always visible on mobile, below the banner */
   .how-to-apply__gallery {
     order: 2;
     margin-top: 20px;
   }
   
       .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 8px;
    }
   
   .gallery-item {
     aspect-ratio: 1;
   }
   
   .gallery-item--more {
     font-size: 20px;
   }
   
   .how-to-apply__poster {
     order: 1;
     margin: 0 auto;
     padding: 0 10px;
   }
   
   /* Mobile modal adjustments for very small screens */
   .modal-content {
     width: 98%;
     max-height: 98vh;
   }
   
   .modal-main-image {
     height: 50vh;
   }
   
   .thumbnail {
     width: 40px;
     height: 40px;
   }
 }
/* Navigation Wrapper */
  .navigation-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
  }

  .navigation {
    padding: 0;
    width: 100%;
    display: none; /* Hide on mobile - navigation is in hamburger menu */
  }

  .navigation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    position: relative;
  }



  /* Desktop Navigation */
  .navigation__menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .navigation__item {
    margin: 0;
  }

  .navigation__link {
    font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
  }

  .navigation__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F4AAFF;
    transition: width 0.3s ease;
  }

  .navigation__link:hover::after {
    width: 100%;
  }

  .navigation__link:hover {
    color: #666666;
  }

  /* Active state for current page */
  .navigation__link.active::after {
    width: 100%;
  }

  /* Mega Menu Styles */
  .navigation__item--mega {
    position: relative;
  }

  .navigation__mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 600px;
    margin-top: 10px;
  }

  .navigation__item--mega:hover .navigation__mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

     .navigation__mega-container {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     padding: 20px;
     position: relative;
   }

  .navigation__mega-column {
    min-width: 0;
  }

  .navigation__mega-title {
    font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    margin: 0 0 12px 0;
    border-bottom: 1px solid #000000;
    padding-bottom: 6px;
  }

  .navigation__mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .navigation__mega-list li {
    margin: 0 0 8px 0;
  }

  .navigation__mega-link {
    font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    display: block;
    padding: 6px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .navigation__mega-link:hover {
    color: #F4AAFF;
    padding-left: 10px;
  }

  /* View All Button */
  .navigation__view-all-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #000;
    border-radius: 4px;
    transition: all 0.2s ease;
  }

  .navigation__view-all-btn:hover {
    background-color: #000;
    color: #fff;
  }

  .navigation__view-all-btn svg {
    transition: transform 0.2s ease;
  }

  .navigation__view-all-btn:hover svg {
    transform: translateX(2px);
  }

  /* Mobile Menu Overlay */
  .navigation__mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding-top: 80px;
    overflow-y: auto; /* Allow vertical scrolling */
  }

  .navigation__mobile-menu.active {
    left: 0;
  }

  .navigation__mobile-list {
    list-style: none;
    margin: 0;
    padding: 20px;
  }

  .navigation__mobile-item {
    margin: 0 0 20px 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Staggered animation delays for each menu item */
  .navigation__mobile-menu.active .navigation__mobile-item:nth-child(1) {
    animation: slideInMenuItem 0.4s ease forwards 0.1s;
  }

  .navigation__mobile-menu.active .navigation__mobile-item:nth-child(2) {
    animation: slideInMenuItem 0.4s ease forwards 0.2s;
  }

  .navigation__mobile-menu.active .navigation__mobile-item:nth-child(3) {
    animation: slideInMenuItem 0.4s ease forwards 0.3s;
  }

  .navigation__mobile-menu.active .navigation__mobile-item:nth-child(4) {
    animation: slideInMenuItem 0.4s ease forwards 0.4s;
  }

  .navigation__mobile-menu.active .navigation__mobile-item:nth-child(5) {
    animation: slideInMenuItem 0.4s ease forwards 0.5s;
  }

  .navigation__mobile-menu.active .navigation__mobile-item:nth-child(6) {
    animation: slideInMenuItem 0.4s ease forwards 0.6s;
  }

  .navigation__mobile-menu.active .navigation__mobile-item:nth-child(7) {
    animation: slideInMenuItem 0.4s ease forwards 0.7s;
  }

  @keyframes slideInMenuItem {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .navigation__mobile-link {
    font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700; /* Much bolder */
    font-size: 24px; /* Even bigger font size */
    text-transform: uppercase;
    letter-spacing: 2.5px; /* More letter spacing */
    color: #000000;
    text-decoration: none;
    display: block;
    padding: 22px 0; /* More padding for larger text */
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  .navigation__mobile-link:hover {
    color: #333333;
    transform: translateX(5px); /* Subtle hover animation */
  }

  /* Mobile Submenu Styles */
  .navigation__mobile-item--expandable {
    position: relative;
  }

  .navigation__mobile-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .navigation__mobile-arrow {
    background: none;
    border: none;
    color: #000;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }

  .navigation__mobile-arrow.active {
    transform: rotate(180deg);
  }

  .navigation__mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f8f8;
    border-radius: 8px;
    margin-top: 10px;
  }

  .navigation__mobile-submenu.active {
    max-height: 400px;
    padding: 10px 0;
  }

  .navigation__mobile-sublink {
    font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    text-decoration: none;
    display: block;
    padding: 8px 20px;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .navigation__mobile-sublink:hover {
    color: #F4AAFF;
    background-color: #fff;
  }

  /* Mobile Horizontal Quick Menu */
  .navigation__mobile-horizontal {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 4px 0;
    position: relative;
  }

  .navigation__mobile-horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .navigation__mobile-horizontal-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .navigation__horizontal-link {
    font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #666;
    text-decoration: none;
    white-space: nowrap;
    padding: 4px 6px;
    transition: color 0.2s ease;
  }

  .navigation__horizontal-link:first-child {
    margin-left: 15px;
  }

  .navigation__horizontal-link:last-child {
    margin-right: 15px;
  }

  .navigation__horizontal-link:hover,
  .navigation__horizontal-link.active {
    color: #000;
  }

  .navigation__horizontal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 12px;
    font-weight: bold;
    pointer-events: none;
    z-index: 1;
    background: #ffffff;
    padding: 0;
    line-height: 1;
  }

  .navigation__horizontal-arrow--left {
    left: 0px;
  }

  .navigation__horizontal-arrow--right {
    right: 0px;
  }

  /* Mobile Overlay Background */
  .navigation__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navigation__overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Desktop Styles */
  @media (min-width: 769px) {
    .navigation {
      display: block; /* Show navigation on desktop */
    }

    .navigation__menu {
      display: flex;
    }

    .navigation__mobile-menu {
      display: none;
    }

    .navigation__container {
      padding: 15px 20px;
    }
  }

  /* Tablet Styles */
  @media (max-width: 768px) and (min-width: 481px) {
    .navigation__container {
      padding: 12px 20px;
    }
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .navigation__mobile-horizontal {
      display: block; /* Show horizontal menu on mobile */
    }
  }

  @media (max-width: 480px) {
    .navigation__container {
      padding: 10px 12px;
    }
  }
.search-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.search-page__container {
  min-height: 100vh;
}

.search-page__header {
  text-align: center;
  margin-bottom: 40px;
}





.search-page__results-count {
  font-size: 18px;
  color: #666;
  margin: 0;
}

.search-page__no-results {
  text-align: center;
  padding: 60px 20px;
}

.search-page__no-results p {
  font-size: 18px;
  color: #666;
}

.search-results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .search-page {
    padding: 15px;
  }
  
  .search-page__title {
    font-size: 2rem;
  }
  
  .search-page__input-group {
    flex-direction: column;
    max-width: 100%;
  }
  
  .search-results__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .search-page__title {
    font-size: 1.8rem;
  }
  
  .search-results__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
/* Social Proof Gallery Styles */
.social-proof-gallery {
  padding: 60px 0;
  background: #f8f8f8;
  overflow: hidden;
}

.social-proof-gallery__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Desktop Layout */
.social-proof-gallery__desktop {
  display: block;
}

.social-proof-gallery__mobile {
  display: none;
}

/* Puzzle Grid Layout - Exact Match to Screenshot */
.social-proof-gallery__grid {
  display: grid;
  grid-template-columns: 200px 120px 350px 200px 120px;
  grid-template-rows: 200px 250px 200px;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

/* Grid Item Positioning - Exact Match */
.gallery-item--top-left { grid-area: 1 / 1 / 2 / 2; }
.gallery-item--top-center { grid-area: 1 / 2 / 2 / 3; }
.gallery-item--top-right { grid-area: 1 / 3 / 2 / 4; }

.gallery-item--middle-left { grid-area: 2 / 1 / 3 / 2; }
.gallery-item--center { grid-area: 2 / 3 / 3 / 4; }
.gallery-item--middle-right { grid-area: 2 / 4 / 3 / 5; }

.gallery-item--bottom-left { grid-area: 3 / 1 / 4 / 2; }
.gallery-item--bottom-center { grid-area: 3 / 2 / 4 / 3; }
.gallery-item--bottom-right { grid-area: 3 / 4 / 4 / 6; }

/* Gallery Items */
.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item--illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b9d, #c44bd4);
  cursor: default;
}

.gallery-item--illustration:hover {
  transform: none;
}

/* Images */
.gallery-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-item__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.gallery-item:hover .gallery-item__image--hover {
  opacity: 1;
}

/* Videos */
.gallery-item__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Center Illustration */
.gallery-item__illustration {
  max-width: 80%;
  max-height: 80%;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.gallery-item__buy-now {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #ff6b9d;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s ease;
}

.gallery-item__buy-now:hover {
  background: #e85a87;
}

/* Placeholders */
.gallery-item__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #e0e0e0;
  color: #666;
  font-weight: bold;
  text-align: center;
}

.gallery-item__placeholder--video {
  background: #333;
  color: white;
}

/* Instagram Feed */
.social-proof-gallery__instagram {
  margin-top: 40px;
}

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

.instagram-feed__title {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.instagram-feed__handle {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.instagram-item {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.instagram-item:hover {
  transform: scale(1.05);
}

.instagram-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-item__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f0f0f0;
  color: #999;
  font-size: 12px;
}

/* Mobile Layout */
@media (max-width: 768px) {
  .social-proof-gallery__desktop {
    display: none;
  }
  
  .social-proof-gallery__mobile {
    display: block;
  }
  
  .social-proof-gallery {
    padding: 40px 0;
  }
  
  .social-proof-gallery__container {
    padding: 0 15px;
  }
  
  /* Mobile Sections */
  .mobile-section {
    margin-bottom: 40px;
  }
  
  .mobile-section__title {
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }
  
  /* Mobile Hero */
  .mobile-hero {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ff6b9d, #c44bd4);
    border-radius: 20px;
    margin-bottom: 30px;
  }
  
  .mobile-hero__illustration {
    max-width: 200px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  }
  
  .mobile-hero__buy-now {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: #ff6b9d;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  
  .mobile-hero__buy-now:hover {
    transform: scale(1.05);
  }
  
  /* Mobile Galleries */
  .mobile-gallery {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .mobile-gallery::-webkit-scrollbar {
    display: none;
  }
  
  .mobile-gallery__item {
    flex-shrink: 0;
    width: 150px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
  }
  
  .mobile-gallery__item--video {
    width: 120px;
    height: 213px; /* 9:16 ratio */
  }
  
  .mobile-gallery__image,
  .mobile-gallery__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mobile-gallery__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #e0e0e0;
    color: #666;
    font-size: 14px;
    text-align: center;
  }
  
  /* Mobile Instagram */
  .mobile-instagram__handle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
  }
  
  .mobile-instagram__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .mobile-instagram__item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
  }
  
  .mobile-instagram__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mobile-instagram__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f0f0f0;
    color: #999;
  }
}

/* Modal Styles */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.gallery-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.gallery-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 10000;
}

.gallery-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10001;
}

.gallery-modal__media img,
.gallery-modal__media video {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.ugc-testimonials {
  padding: 40px 0;
  background: #ffffff;
  overflow: hidden;
}

.ugc-testimonials__container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.ugc-testimonials__scroll-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 15px 20px 15px;
}

.ugc-testimonials__scroll-container::-webkit-scrollbar {
  display: none;
}

/* UGC Card */
.ugc-card {
  flex-shrink: 0;
  width: 280px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ugc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ugc-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ugc-card--link:hover {
  text-decoration: none;
  color: inherit;
}

/* Media Section */
.ugc-card__media {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #f5f5f5;
}

.ugc-card__video,
.ugc-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mute Button */
.ugc-card__mute-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.ugc-card__mute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.ugc-card__mute-btn svg {
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.ugc-card--video .ugc-card__media:hover .ugc-card__mute-btn {
  opacity: 1;
}

.ugc-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  color: #666666;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

/* Content Section - Minimal like reference */
.ugc-card__content {
  padding: 15px;
  text-align: center;
}

.ugc-card__product-name {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.ugc-card__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ugc-card__current-price {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
}

.ugc-card__original-price {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  color: #999999;
  text-decoration: line-through;
  text-decoration-color: #ff4444;
  text-decoration-thickness: 1.5px;
}

.ugc-card__discount {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  color: #008000;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ugc-testimonials {
    padding: 25px 0;
  }
  
  .ugc-testimonials__scroll-container {
    gap: 10px;
    padding: 10px 10px 15px 10px;
  }
  
  .ugc-card {
    width: calc(50vw - 15px);
    min-width: 170px;
    max-width: 190px;
  }
  
  .ugc-card__media {
    height: 260px;
  }
  
  .ugc-card__content {
    padding: 12px;
  }
  
  .ugc-card__product-name {
    font-size: 13px;
  }
  
  .ugc-card__current-price {
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .ugc-card {
    width: calc(50vw - 12px);
    min-width: 160px;
    max-width: 180px;
  }
  
  .ugc-card__media {
    height: 240px;
  }
}

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
/* Hide header on cart page to remove hamburger menu */
body.template-cart .header {
  display: none;
}

body.template-cart .main-content {
  padding-top: 0;
}

/* Minimalist Cart Panel Styles */
.cart-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
}

.cart-panel__desktop {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-panel__desktop.is-open {
  right: 0;
}

.cart-panel__mobile {
  position: fixed;
  bottom: -80vh;
  left: 0;
  width: 100%;
  height: 80vh;
  background: #ffffff;
  transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.cart-panel__mobile.is-open {
  bottom: 0;
}

/* Mobile cart backdrop */
.cart-panel__mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-panel__mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* Header Styles */
.cart-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 16px 24px; /* Reduced from 24px 24px 20px 24px */
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
  flex-shrink: 0;
}

.cart-panel__title {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.cart-panel__item-count {
  background: #f0f0f0;
  color: #000000;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 16px;
}

.cart-panel__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
}

.cart-panel__close:hover {
  background-color: #f5f5f5;
}

.cart-panel__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 12px 20px; /* Reduced from 20px 20px 16px 20px */
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
  flex-shrink: 0;
}

.cart-panel__mobile-title {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.cart-panel__mobile-item-count {
  background: #f0f0f0;
  color: #000000;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 12px;
}

.cart-panel__mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
}

.cart-panel__mobile-close:hover {
  background-color: #f5f5f5;
}

/* Progress Bar Styles */
.cart-panel__progress {
  padding: 8px 24px; /* Super compact */
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.cart-panel__progress-bar {
  width: 100%;
  height: 2px; /* Ultra thin */
  background: #e5e5e5;
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 6px; /* Minimal gap */
}

.cart-panel__progress-fill {
  height: 100%;
  background: #000000;
  border-radius: 1px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: var(--progress);
}

.cart-panel__progress-labels {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  margin-bottom: 4px; /* Minimal gap */
}

.cart-panel__progress-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px; /* Ultra tight */
  font-size: 10px;
  color: #666666;
  text-align: center;
}

.cart-panel__progress-text {
  font-size: 10px;
  color: #666666;
  font-family: 'Product Sans', Arial, sans-serif;
  font-weight: 500;
}

.cart-panel__progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px; /* Ultra tight */
  font-size: 10px;
  color: #666666;
  text-align: center;
}

.cart-panel__progress-icon {
  font-size: 14px; /* Smaller icons */
  flex-shrink: 0;
}

.cart-panel__progress-status {
  font-weight: 600;
  color: #000000;
  font-family: 'Product Sans', Arial, sans-serif;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 10px; /* Same size as text */
}

.cart-panel__progress-status.achieved {
  color: #000000;
  font-weight: 600;
}

.cart-panel__progress-unlock {
  text-align: center;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 11px;
  color: #ff6b6b;
  font-weight: 500;
  margin-top: 2px; /* Minimal gap */
  line-height: 1.2;
}

/* Cart Items Styles */
.cart-panel__items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* Stock Text */
.cart-panel__stock-text {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  margin: 4px 0;
  display: block;
}

.cart-panel__stock-text--sold-out {
  color: #dc2626;
}

.cart-panel__stock-text--low {
  color: #000000;
}

.cart-panel__stock-text--available {
  color: #000000;
}

.cart-panel__item {
  display: flex;
  gap: 10px; /* Ultra compact */
  padding: 12px 24px; /* Super compact */
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

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

.cart-panel__item-image {
  width: 44px; /* Ultra compact */
  height: 44px; /* Ultra compact */
  border-radius: 4px; /* Smaller radius */
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.cart-panel__item-image-link {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.cart-panel__item-image-link:hover {
  opacity: 0.8;
}

.cart-panel__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-panel__item-details {
  flex: 1;
  min-width: 0;
}

.cart-panel__item-title {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px; /* Ultra compact */
  font-weight: 500;
  color: #000000;
  margin: 0 0 2px 0; /* Ultra tight */
  line-height: 1.2;
}

.cart-panel__item-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
}

.cart-panel__item-link:hover {
  color: #333333;
  text-decoration: underline;
}

.cart-panel__item-variant {
  font-size: 12px; /* Ultra compact */
  color: #666666;
  margin: 0 0 4px 0; /* Ultra tight */
  font-family: 'Product Sans', Arial, sans-serif;
}

.cart-panel__item-price {
  font-size: 14px; /* Ultra compact */
  font-weight: 600;
  color: #000000;
  margin: 0 0 6px 0; /* Ultra tight */
  font-family: 'Product Sans', Arial, sans-serif;
}

.cart-panel__item-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-panel__quantity {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

.cart-panel__quantity-btn {
  background: #ffffff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  transition: all 0.2s ease;
  min-width: 40px;
  font-family: 'Product Sans', Arial, sans-serif;
}

.cart-panel__quantity-btn:hover {
  background: #f5f5f5;
}

.cart-panel__quantity-btn:active {
  background: #e5e5e5;
}

.cart-panel__quantity-value {
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  background: #ffffff;
  min-width: 40px;
  text-align: center;
  font-family: 'Product Sans', Arial, sans-serif;
}

.cart-panel__remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Product Sans', Arial, sans-serif;
}

.cart-panel__remove-btn:hover {
  background-color: #f5f5f5;
  color: #000000;
}

/* Empty Cart State */
.cart-panel__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}

.cart-panel__empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.cart-panel__empty-text {
  font-size: 16px;
  color: #666666;
  margin: 0 0 20px 0;
  font-family: 'Product Sans', Arial, sans-serif;
}

.cart-panel__empty-btn {
  background: #000000;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
  font-family: 'Product Sans', Arial, sans-serif;
}

.cart-panel__empty-btn:hover {
  background: #333333;
}

/* Divider */
.cart-panel__divider {
  height: 1px;
  background: #f0f0f0;
  margin: 0;
  flex-shrink: 0;
}

/* Coupon Section */
.cart-panel__coupon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  flex-shrink: 0;
}

.cart-panel__coupon-label {
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-panel__coupon-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-panel__coupon-toggle:hover {
  background-color: #f5f5f5;
}

.cart-panel__coupon-toggle svg {
  transition: transform 0.2s ease;
}

.cart-panel__coupon-toggle.active svg {
  transform: rotate(180deg);
}

.cart-panel__coupon-input {
  padding: 0 24px 20px 24px;
  background: #ffffff;
  flex-shrink: 0;
}

.cart-panel__coupon-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: 'Product Sans', Arial, sans-serif;
  margin-bottom: 12px;
}

.cart-panel__coupon-field:focus {
  border-color: #000000;
}

.cart-panel__coupon-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: 'Product Sans', Arial, sans-serif;
  width: 100%;
}

.cart-panel__coupon-btn:hover {
  background: #333333;
}

/* Cart Summary */
.cart-panel__summary {
  padding: 20px 24px;
  background: #ffffff;
  flex-shrink: 0;
}

.cart-panel__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  font-family: 'Product Sans', Arial, sans-serif;
}

.cart-panel__summary-row:last-child {
  margin-bottom: 0;
}

.cart-panel__summary-info {
  font-size: 13px;
  color: #666666;
  line-height: 1.4;
  font-family: 'Product Sans', Arial, sans-serif;
  margin-top: 8px;
}

/* Checkout Button */
.cart-panel__checkout-btn {
  width: calc(100% - 48px);
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0 24px 24px 24px;
  font-family: 'Product Sans', Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.cart-panel__checkout-btn:hover:not(:disabled) {
  background: #333333;
  transform: translateY(-1px);
}

.cart-panel__checkout-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cart-panel__desktop {
    display: none;
  }
  
  .cart-panel__mobile {
    display: flex;
  }
  
  .cart-panel__progress {
    padding: 6px 20px; /* Super compact mobile */
  }
  
  .cart-panel__progress-labels {
    gap: 24px;
  }
  
  .cart-panel__progress-icon {
    font-size: 12px;
  }
  
  .cart-panel__progress-status {
    font-size: 10px; /* Same size as desktop */
  }
  
  .cart-panel__progress-unlock {
    font-size: 10px;
  }
  
  .cart-panel__items {
    padding: 0;
  }
  
  .cart-panel__item {
    padding: 8px 20px; /* Ultra compact mobile */
  }
  
  .cart-panel__stock-text {
    font-size: 10px;
    margin: 2px 0;
  }
  
  .cart-panel__coupon {
    padding: 16px 20px;
  }
  
  .cart-panel__coupon-input {
    padding: 0 20px 16px 20px;
  }
  
  .cart-panel__summary {
    padding: 16px 20px;
  }
  
  .cart-panel__checkout-btn {
    margin: 0 20px 20px 20px;
    width: calc(100% - 40px);
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (min-width: 769px) {
  .cart-panel__mobile {
    display: none;
  }
  
  .cart-panel__desktop {
    display: flex;
  }
}
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
.policies-modal {
  width: min(960px, 96vw);
  border: none;
  padding: 0;
  margin: auto;
  background: transparent;
}
.policies-modal::backdrop {
  background: rgba(0, 0, 0, 0.65);
}
.policies-modal__dialog {
  background: #ffffff;
  color: #111111;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  max-height: 86vh;
  overflow: hidden;
}
.policies-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e5e5;
}
.policies-modal__title {
  margin: 0;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 20px;
}
.policies-modal__close {
  background: transparent;
  border: none;
  color: #111;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.policies-modal__content {
  display: block;
  max-height: calc(86vh - 60px);
}
.policies-modal__section {
  padding: 16px 20px 24px 20px;
  max-height: calc(86vh - 60px);
  overflow: auto;
}
.policies-modal__section h3 { margin: 0 0 8px 0; }
.policies-modal__section h4 { margin: 16px 0 6px 0; }
.policies-modal__section p, .policies-modal__section li { color: #333; font-size: 14px; line-height: 1.6; }

@media (max-width: 768px) {}