/** Shopify CDN: Minification failed

Line 3571:2 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.about {
    padding: 6rem 0;
  }

  @media (min-width: 1024px) {
    .about {
      padding: 8rem 0;
    }
  }

  .about__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Main Content */
  .about__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }

  @media (min-width: 1024px) {
    .about__main {
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
  }

  .about__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
  }

  .about__image {
    width: 100%;
    height: auto;
    display: block;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .about__label {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    margin: 0;
  }

  .about__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .about__heading {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .about__heading {
      font-size: 3rem;
    }
  }

  .about__text {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.8);
  }

  @media (min-width: 768px) {
    .about__text {
      font-size: 1.125rem;
    }
  }

  .about__text p {
    margin: 0 0 1rem 0;
  }

  .about__text p:last-child {
    margin-bottom: 0;
  }

  .about__button {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    background: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    align-self: flex-start;
  }

  .about__button:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Feature Highlights */
  .about__features {
    padding: 4rem 0 0 0;
    border-top: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
  }

  .about__features-heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 3rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .about__features-heading {
      font-size: 2rem;
    }
  }

  .about__features-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile), 1fr);
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .about__features-grid {
      grid-template-columns: repeat(var(--columns-desktop), 1fr);
      gap: 3rem;
    }
  }

  .feature-highlight {
    background: var(--color-background);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
  }

  .feature-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .feature-highlight__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    width: 100%;
    max-width: 200px;
    height: 180px;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    border-radius: 8px;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .feature-highlight__icon {
      height: 200px;
    }
  }

  .feature-highlight__icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .feature-highlight__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: var(--color-foreground);
  }

  .feature-highlight__description {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
  }
.cart-page {
    padding: 3rem 0 5rem 0;
    min-height: 60vh;
  }

  .cart-page__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 2rem);
  }

  .cart-page__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 2.5rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .cart-page__title {
      font-size: 2.5rem;
    }
  }

  /* Layout */
  .cart-page__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  @media (min-width: 1024px) {
    .cart-page__layout {
      grid-template-columns: 2fr 1fr;
      gap: 4rem;
    }
  }

  /* Cart Items */
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    border-radius: 12px;
    position: relative;
  }

  @media (min-width: 640px) {
    .cart-item {
      grid-template-columns: 150px 1fr;
      gap: 2rem;
    }
  }

  /* Product Image */
  .cart-item__image {
    border-radius: 8px;
    overflow: hidden;
    background: white;
    max-width: 100%;
  }

  @media (min-width: 640px) {
    .cart-item__image {
      max-width: 150px;
    }
  }

  .cart-item__image a {
    display: block;
  }

  .cart-item__image img,
  .cart-item__placeholder {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Product Details */
  .cart-item__details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 3rem;
  }

  @media (min-width: 640px) {
    .cart-item__details {
      padding-bottom: 0;
    }
  }

  @media (min-width: 768px) {
    .cart-item__details {
      grid-template-columns: 1fr auto auto;
      gap: 2rem;
      align-items: start;
    }
  }

  .cart-item__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

  .cart-item__title a {
    color: var(--color-foreground);
    text-decoration: none;
  }

  .cart-item__title a:hover {
    text-decoration: underline;
  }

  .cart-item__variant {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    margin: 0 0 0.5rem 0;
  }

  .cart-item__properties {
    font-size: 0.875rem;
    margin: 0.5rem 0;
  }

  .cart-item__properties p {
    margin: 0.25rem 0;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
  }

  .cart-item__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oxygen', sans-serif;
    margin-top: 0.5rem;
  }

  .cart-item__price--regular {
    font-weight: 600;
    font-size: 1.125rem;
  }

  .cart-item__price--sale {
    font-weight: 600;
    font-size: 1.125rem;
    color: #ef4444;
  }

  .cart-item__price--compare {
    font-size: 0.875rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
    text-decoration: line-through;
  }

  .cart-item__discounts {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
  }

  .cart-item__discount {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 500;
  }

  /* Quantity Controls */
  .cart-item__quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  @media (max-width: 767px) {
    .cart-item__quantity {
      align-items: flex-start;
    }
  }

  .cart-item__quantity-label {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
  }

  .cart-item__quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
  }

  .cart-item__quantity-btn {
    font-family: 'Oxygen', sans-serif;
    background: white;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-foreground);
    transition: background 0.2s;
  }

  .cart-item__quantity-btn:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
  }

  .cart-item__quantity-input {
    font-family: 'Oxygen', sans-serif;
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    border-right: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    padding: 0.5rem 0.25rem;
    font-size: 0.875rem;
    -moz-appearance: textfield;
  }

  .cart-item__quantity-input::-webkit-outer-spin-button,
  .cart-item__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Line Total */
  .cart-item__total {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
  }

  @media (max-width: 767px) {
    .cart-item__total {
      text-align: left;
    }
  }

  .cart-item__total-label {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0;
  }

  .cart-item__total-price {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin: 0;
  }

  /* Remove Button */
  .cart-item__remove {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.4);
    transition: color 0.2s;
  }

  .cart-item__remove:hover {
    color: #ef4444;
  }

  /* Cart Note */
  .cart-page__note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    border-radius: 12px;
  }

  .cart-page__note-label {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
  }

  .cart-page__note-textarea {
    font-family: 'Oxygen', sans-serif;
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    border-radius: 4px;
    resize: vertical;
    font-size: 0.875rem;
  }

  .cart-page__note-textarea:focus {
    outline: none;
    border-color: var(--color-foreground);
  }

  /* Update Button */
  .cart-page__update-btn {
    font-family: 'Oxygen', sans-serif;
    margin-top: 1.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid var(--color-foreground);
    color: var(--color-foreground);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .cart-page__update-btn:hover {
    background: var(--color-foreground);
    color: var(--color-background);
  }

  /* Cart Summary */
  .cart-summary {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    border-radius: 12px;
    padding: 2rem;
    position: sticky;
    top: 2rem;
  }

  .cart-summary__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    color: var(--color-foreground);
  }

  .cart-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
  }

  .cart-summary__line--note {
    font-size: 0.8125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
  }

  .cart-summary__discounts {
    margin-top: 0.5rem;
  }

  .cart-summary__discount {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 500;
  }

  .cart-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-family: 'Oxygen', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-foreground);
    border-top: 2px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
    margin-top: 1rem;
  }

  .cart-summary__checkout {
    width: 100%;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 1.25rem 2rem;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
  }

  .cart-summary__checkout:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .cart-summary__additional-buttons {
    margin-top: 1rem;
  }

  .cart-summary__continue {
    display: block;
    text-align: center;
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
    color: var(--color-foreground);
    text-decoration: none;
    margin-top: 1rem;
    padding: 0.75rem;
    transition: opacity 0.2s;
  }

  .cart-summary__continue:hover {
    text-decoration: underline;
  }

  /* Empty Cart */
  .cart-page__empty {
    padding: 4rem 0;
  }

  .cart-empty {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }

  .cart-empty__icon {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    margin-bottom: 2rem;
  }

  .cart-empty__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .cart-empty__text {
    font-family: 'Oxygen', sans-serif;
    font-size: 1rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0 0 2rem 0;
  }

  .cart-empty__button {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
  }

  .cart-empty__button:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
.collection-slider {
    width: 100%;
  }

  .collection-slider__inner {
    padding: 5rem 0;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
  }

  @media (min-width: 1024px) {
    .collection-slider__inner {
      padding: 6rem 0;
    }
  }

  .collection-slider__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .collection-slider__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  @media (min-width: 1024px) {
    .collection-slider__layout {
      grid-template-columns: 400px 1fr;
      gap: 4rem;
    }
  }

  /* Collection Info (Left) */
  .collection-slider__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .collection-slider__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
  }

  .collection-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-slider__details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .collection-slider__label {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    margin: 0;
  }

  .collection-slider__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .collection-slider__heading {
      font-size: 2.5rem;
    }
  }

  .collection-slider__description {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
  }

  .collection-slider__button {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    align-self: flex-start;
  }

  .collection-slider__button:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Product Slider (Right) */
  .collection-slider__products {
    position: relative;
    overflow: hidden;
    padding: 0 3rem;
  }

  @media (max-width: 767px) {
    .collection-slider__products {
      padding: 0 2.5rem;
    }
  }

  .collection-slider__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .collection-slider__product-card {
    flex: 0 0 250px;
  }

  @media (max-width: 767px) {
    .collection-slider__product-card {
      flex: 0 0 200px;
    }
  }

  .product-card-mini {
    display: block;
    text-decoration: none;
    color: var(--color-foreground);
  }

  .product-card-mini__image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
    margin-bottom: 1rem;
    aspect-ratio: 3 / 4;
  }

  .product-card-mini__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-card-mini:hover .product-card-mini__image {
    transform: scale(1.05);
  }

  .product-card-mini__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
  }

  .product-card-mini__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
  }

  .product-card-mini__price {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1rem;
  }

  .product-card-mini__price--sale {
    color: #ef4444;
  }

  .product-card-mini__price--compare {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.875rem;
  }

  /* Slider Navigation */
  .collection-slider__nav {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }

  .collection-slider__nav:hover {
    background: var(--color-foreground);
    color: white;
    transform: translateY(-50%) scale(1.1);
  }

  .collection-slider__nav svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .collection-slider__nav--prev {
    left: 0;
  }

  .collection-slider__nav--next {
    right: 0;
  }

  .collection-slider__placeholder {
    text-align: center;
    padding: 3rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
    font-family: 'Oxygen', sans-serif;
  }
.collection-template {
    padding: 3rem 0 5rem 0;
  }

  @media (min-width: 1024px) {
    .collection-template {
      padding: 4rem 0 6rem 0;
    }
  }

  .collection-template__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Collection Header */
  .collection-template__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  @media (min-width: 1024px) {
    .collection-template__header {
      margin-bottom: 4rem;
    }
  }

  .collection-template__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .collection-template__title {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .collection-template__title {
      font-size: 3rem;
    }
  }

  .collection-template__description {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
  }

  @media (min-width: 768px) {
    .collection-template__description {
      font-size: 1.125rem;
    }
  }

  .collection-template__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }

  .collection-template__count {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    margin: 0;
  }

  /* Products Grid */
  .collection-template__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile), 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  @media (min-width: 768px) {
    .collection-template__grid {
      grid-template-columns: repeat(var(--columns-tablet), 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .collection-template__grid {
      grid-template-columns: repeat(var(--columns-desktop), 1fr);
      gap: 2.5rem;
      margin-bottom: 4rem;
    }
  }

  /* Product Card */
  .product-card-collection {
    position: relative;
  }

  .product-card-collection__link {
    display: block;
    text-decoration: none;
    color: var(--color-foreground);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-card-collection__link:hover {
    transform: translateY(-4px);
  }

  .product-card-collection__images {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
    margin-bottom: 1rem;
    aspect-ratio: 3 / 4;
  }

  .product-card-collection__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .product-card-collection__image img,
  .product-card-collection__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-card-collection__image--primary {
    z-index: 2;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-card-collection__image--hover {
    z-index: 1;
  }

  .product-card-collection__link:hover .product-card-collection__image--primary {
    opacity: 0;
  }

  .product-card-collection__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    background: #ef4444;
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product-card-collection__info {
    padding: 0 0.25rem;
  }

  .product-card-collection__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .product-card-collection__title {
      font-size: 1.0625rem;
    }
  }

  .product-card-collection__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .product-card-collection__price--sale {
    color: #ef4444;
  }

  .product-card-collection__price--compare {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.875rem;
  }

  .product-card-collection__price--regular {
    color: var(--color-foreground);
  }

  .product-card-collection__variants {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    margin: 0;
  }

  /* Pagination */
  .collection-template__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
  }

  @media (min-width: 768px) {
    .collection-template__pagination {
      gap: 2rem;
    }
  }

  .collection-template__pagination-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .collection-template__pagination-button:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .collection-template__pagination-button svg {
    width: 1rem;
    height: 1rem;
  }

  .collection-template__pagination-button--disabled {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.4);
    cursor: not-allowed;
  }

  .collection-template__pagination-button--disabled:hover {
    transform: none;
    box-shadow: none;
  }

  .collection-template__pagination-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-foreground);
  }

  .collection-template__pagination-current {
    font-weight: 700;
  }

  .collection-template__pagination-separator {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.4);
  }

  /* Empty State */
  .collection-template__empty {
    text-align: center;
    padding: 4rem 2rem;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
  }
.collections-grid {
    padding: 6rem 0;
  }

  @media (min-width: 1024px) {
    .collections-grid {
      padding: 8rem 0;
    }
  }

  .collections-grid__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .collections-grid__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 3rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .collections-grid__heading {
      font-size: 2.5rem;
    }
  }

  .collections-grid__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile), 1fr);
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .collections-grid__grid {
      grid-template-columns: repeat(var(--columns-desktop), 1fr);
      gap: 2rem;
    }
  }

  .collection-card {
    display: block;
    text-decoration: none;
    color: var(--color-foreground);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .collection-card:hover {
    transform: translateY(-4px);
  }

  .collection-card__image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
  }

  .collection-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .collection-card:hover .collection-card__image {
    transform: scale(1.08);
  }

  .collection-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
  }

  .collection-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    z-index: 2;
    color: white;
  }

  .collection-card__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
  }

  @media (min-width: 768px) {
    .collection-card__title {
      font-size: 1.75rem;
    }
  }

  .collection-card__description {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 0.9375rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
  }
.collections-page {
    padding: 4rem 0 6rem 0;
  }

  @media (max-width: 767px) {
    .collections-page {
      padding: 2.5rem 0 4rem 0;
    }
  }

  .collections-page__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 2rem);
  }

  /* Header */
  .collections-page__header {
    text-align: center;
    margin-bottom: 4rem;
  }

  @media (max-width: 767px) {
    .collections-page__header {
      margin-bottom: 2.5rem;
    }
  }

  .collections-page__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .collections-page__title {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .collections-page__title {
      font-size: 3rem;
    }
  }

  .collections-page__description {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
  }

  /* Collections Grid */
  .collections-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap, 2rem);
  }

  @media (min-width: 640px) {
    .collections-list-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .collections-list-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 1280px) {
    .collections-list-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* Collection Card */
  .collections-list-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .collections-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.04);
  }

  /* Collection Image */
  .collections-list-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
  }

  @media (min-width: 768px) {
    .collections-list-card__image-wrapper {
      aspect-ratio: 1 / 1;
    }
  }

  .collections-list-card__image-wrapper img,
  .collections-list-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .collections-list-card:hover .collections-list-card__image-wrapper img,
  .collections-list-card:hover .collections-list-card__placeholder {
    transform: scale(1.08);
  }

  .collections-list-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .collections-list-card:hover .collections-list-card__overlay {
    opacity: 1;
  }

  /* Collection Content */
  .collections-list-card__content {
    padding: 1.75rem;
    position: relative;
  }

  @media (min-width: 768px) {
    .collections-list-card__content {
      padding: 2rem;
    }
  }

  .collections-list-card__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: var(--color-foreground);
    transition: color 0.3s;
  }

  @media (min-width: 768px) {
    .collections-list-card__title {
      font-size: 1.375rem;
    }
  }

  .collections-list-card:hover .collections-list-card__title {
    color: var(--color-foreground);
  }

  .collections-list-card__count {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .collections-list-card__description {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0;
  }

  /* Arrow Icon */
  .collections-list-card__arrow {
    position: absolute;
    bottom: 1.75rem;
    right: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-foreground);
    color: var(--color-background);
    border-radius: 50%;
    opacity: 0;
    transform: translate(10px, 10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @media (min-width: 768px) {
    .collections-list-card__arrow {
      bottom: 2rem;
      right: 2rem;
      width: 48px;
      height: 48px;
    }
  }

  .collections-list-card:hover .collections-list-card__arrow {
    opacity: 1;
    transform: translate(0, 0);
  }

  /* Empty State */
  .collections-page__empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .collections-page__empty p {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    margin: 0;
  }
.contact-page {
    padding: 3rem 0 5rem 0;
  }

  .contact-page__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 2rem);
  }

  /* Header */
  .contact-page__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .contact-page__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .contact-page__title {
      font-size: 2.5rem;
    }
  }

  .contact-page__subtitle {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Layout */
  .contact-page__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  @media (min-width: 1024px) {
    .contact-page__layout {
      grid-template-columns: 2fr 1fr;
      gap: 4rem;
    }
  }

  /* Form Messages */
  .contact-form__success {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #d1fae5;
    color: #065f46;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

  .contact-form__success svg {
    flex-shrink: 0;
  }

  .contact-form__success p {
    margin: 0;
    font-family: 'Oxygen', sans-serif;
    font-weight: 500;
  }

  .contact-form__errors {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

  .contact-form__errors svg {
    flex-shrink: 0;
  }

  .contact-form__errors p {
    margin: 0 0 0.5rem 0;
    font-family: 'Oxygen', sans-serif;
  }

  .contact-form__errors ul {
    margin: 0;
    padding-left: 1.25rem;
  }

  .contact-form__errors li {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
  }

  /* Form */
  .contact-form {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    padding: 2.5rem;
    border-radius: 12px;
  }

  @media (max-width: 640px) {
    .contact-form {
      padding: 1.5rem;
    }
  }

  .contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 640px) {
    .contact-form__row {
      grid-template-columns: 1fr 1fr;
    }
  }

  .contact-form__field {
    margin-bottom: 1.5rem;
  }

  .contact-form__label {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
  }

  .required {
    color: #ef4444;
  }

  .contact-form__input,
  .contact-form__textarea {
    font-family: 'Oxygen', sans-serif;
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: white;
  }

  .contact-form__input:focus,
  .contact-form__textarea:focus {
    outline: none;
    border-color: var(--color-foreground);
  }

  .contact-form__textarea {
    resize: vertical;
    min-height: 150px;
  }

  .contact-form__submit {
    font-family: 'Oxygen', sans-serif;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
    padding: 1.25rem 2rem;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }

  .contact-form__submit:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Contact Info Sidebar */
  .contact-info {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    border-radius: 12px;
    padding: 2rem;
    position: sticky;
    top: 2rem;
  }

  .contact-info__section {
    margin-bottom: 2.5rem;
  }

  .contact-info__section:last-child {
    margin-bottom: 0;
  }

  .contact-info__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: 'Oxygen', sans-serif;
    font-size: 0.9375rem;
  }

  .contact-info__item:last-child {
    margin-bottom: 0;
  }

  .contact-info__item svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
  }

  .contact-info__item a {
    color: var(--color-foreground);
    text-decoration: none;
  }

  .contact-info__item a:hover {
    text-decoration: underline;
  }

  .contact-info__hours {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.8);
  }

  .contact-info__social {
    display: flex;
    gap: 1rem;
  }

  .contact-info__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    color: var(--color-foreground);
    transition: all 0.3s;
  }

  .contact-info__social a:hover {
    background: var(--color-foreground);
    color: var(--color-background);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
.cta-banner {
    position: relative;
    padding: 4rem var(--page-margin);
    background: var(--color-foreground);
    color: var(--color-background);
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .cta-banner {
      padding: 5rem var(--page-margin);
    }
  }

  @media (min-width: 1024px) {
    .cta-banner {
      padding: 6rem var(--page-margin);
    }
  }

  .cta-banner__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .cta-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cta-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .cta-banner__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .cta-banner__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
  }

  @media (min-width: 768px) {
    .cta-banner__heading {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .cta-banner__heading {
      font-size: 3rem;
    }
  }

  .cta-banner__text {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    opacity: 0.95;
  }

  @media (min-width: 768px) {
    .cta-banner__text {
      font-size: 1.25rem;
    }
  }

  .cta-banner__button {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--color-foreground);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cta-banner__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  @media (min-width: 768px) {
    .cta-banner__button {
      padding: 1.125rem 3rem;
      font-size: 1.0625rem;
    }
  }
.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;
  }
.feature-blocks {
    padding: 4rem 0;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
  }

  @media (min-width: 1024px) {
    .feature-blocks {
      padding: 6rem 0;
    }
  }

  .feature-blocks__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .feature-blocks__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 3rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .feature-blocks__heading {
      font-size: 2.5rem;
    }
  }

  .feature-blocks__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile), 1fr);
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .feature-blocks__grid {
      grid-template-columns: repeat(var(--columns-desktop), 1fr);
      gap: 3rem;
    }
  }

  .feature-block {
    text-align: center;
    padding: 2rem 1rem;
  }

  .feature-block__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .feature-block__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .feature-block__text {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0;
  }
.featured-collection {
    padding: 2rem 0;
  }

  @media (min-width: 1024px) {
    .featured-collection {
      padding: 4rem 0;
    }
  }

  .featured-collection__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .featured-collection__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .featured-collection__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .featured-collection__heading {
      font-size: 2.5rem;
    }
  }

  .featured-collection__description {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    max-width: 600px;
    margin: 0 auto;
  }

  .featured-collection__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile), 1fr);
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .featured-collection__grid {
      grid-template-columns: repeat(var(--columns-desktop), 1fr);
      gap: 2.5rem;
    }
  }

  .product-card {
    display: block;
    text-decoration: none;
    color: var(--color-foreground);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-card:hover {
    transform: translateY(-4px);
  }

  .product-card__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
    margin-bottom: 1rem;
    aspect-ratio: 3 / 4;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-card:hover .product-card__image {
    transform: scale(1.05);
  }

  .product-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product-card__info {
    padding: 0.5rem 0;
  }

  .product-card__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
  }

  .product-card__price {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
  }

  .product-card__price--regular {
    color: var(--color-foreground);
  }

  .product-card__price--sale {
    color: #ef4444;
  }

  .product-card__price--compare {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 1rem;
  }

  .featured-collection__footer {
    margin-top: 3rem;
    text-align: center;
  }

  .featured-collection__button {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    background: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .featured-collection__button:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .featured-collection__placeholder {
    text-align: center;
    padding: 3rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
    font-family: 'Oxygen', sans-serif;
  }
.feedback-page {
    padding: 3rem 0 5rem 0;
  }

  .feedback-page__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 2rem);
  }

  /* Header */
  .feedback-page__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .feedback-page__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .feedback-page__title {
      font-size: 2.5rem;
    }
  }

  .feedback-page__subtitle {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0;
  }

  /* Success State */
  .feedback-form__success {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    border-radius: 12px;
  }

  .feedback-form__success svg {
    color: #10b981;
    margin-bottom: 1.5rem;
  }

  .feedback-form__success h2 {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .feedback-form__success p {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0 0 2rem 0;
  }

  .feedback-form__new {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .feedback-form__new:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Form Errors */
  .feedback-form__errors {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

  .feedback-form__errors svg {
    flex-shrink: 0;
  }

  .feedback-form__errors p {
    margin: 0 0 0.5rem 0;
    font-family: 'Oxygen', sans-serif;
  }

  .feedback-form__errors ul {
    margin: 0;
    padding-left: 1.25rem;
  }

  .feedback-form__errors li {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
  }

  /* Form */
  .feedback-form {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    padding: 2.5rem;
    border-radius: 12px;
  }

  @media (max-width: 640px) {
    .feedback-form {
      padding: 1.5rem;
    }
  }

  .feedback-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 640px) {
    .feedback-form__row {
      grid-template-columns: 1fr 1fr;
    }
  }

  .feedback-form__field {
    margin-bottom: 1.5rem;
  }

  .feedback-form__label {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
  }

  .required {
    color: #ef4444;
  }

  /* Star Rating */
  .star-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .star-rating__star {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    transition: all 0.2s;
  }

  .star-rating__star:hover {
    color: #fbbf24;
    transform: scale(1.1);
  }

  .star-rating__star.active {
    color: #fbbf24;
  }

  .star-rating__star svg {
    display: block;
  }

  .star-rating__star.active svg {
    fill: #fbbf24;
  }

  .feedback-form__rating-text {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-foreground);
    margin: 0;
    min-height: 1.5rem;
  }

  /* Form Inputs */
  .feedback-form__input,
  .feedback-form__select,
  .feedback-form__textarea {
    font-family: 'Oxygen', sans-serif;
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: white;
  }

  .feedback-form__input:focus,
  .feedback-form__select:focus,
  .feedback-form__textarea:focus {
    outline: none;
    border-color: var(--color-foreground);
  }

  .feedback-form__textarea {
    resize: vertical;
    min-height: 150px;
  }

  .feedback-form__submit {
    font-family: 'Oxygen', sans-serif;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
    padding: 1.25rem 2rem;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }

  .feedback-form__submit:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Info Section */
  .feedback-page__info {
    margin-top: 4rem;
  }

  .feedback-info__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    text-align: center;
    margin: 0 0 2.5rem 0;
    color: var(--color-foreground);
  }

  .feedback-info__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .feedback-info__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }
  }

  .feedback-info__item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    border-radius: 12px;
  }

  .feedback-info__item svg {
    color: var(--color-foreground);
    margin-bottom: 1rem;
  }

  .feedback-info__item h3 {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 0 0.75rem 0;
    color: var(--color-foreground);
  }

  .feedback-info__item p {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0;
  }
.footer {
    background: var(--color-background);
    border-top: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
    margin-top: auto;
  }

  .footer__main {
    padding: 3rem 0 2rem;
  }

  .footer__container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .footer__container {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .footer__container {
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 3.5rem;
    }

    .footer__main {
      padding: 4rem 0 3rem;
    }
  }

  /* Brand Section */
  .footer__section--brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .footer__logo img {
    max-width: 150px;
    height: auto;
  }

  .footer__brand-name {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-foreground);
  }

  .footer__description {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0;
    max-width: 350px;
  }

  /* Social Links */
  .footer__social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.08);
    color: var(--color-foreground);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
  }

  .footer__social-link:hover {
    background: var(--color-foreground);
    color: var(--color-background);
    transform: translateY(-2px);
  }

  .footer__social-link svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* Link Sections */
  .footer__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-foreground);
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .footer__link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__link-item {
    margin: 0;
  }

  .footer__link {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
  }

  .footer__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-foreground);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .footer__link:hover {
    color: var(--color-foreground);
    padding-left: 0.5rem;
  }

  .footer__link:hover::after {
    width: 100%;
  }

  /* Newsletter Section */
  .footer__newsletter-text {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0 0 1rem 0;
  }

  .footer__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__newsletter-input-wrapper {
    display: flex;
    gap: 0.5rem;
    border: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    border-radius: var(--style-border-radius-inputs, 4px);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

  .footer__newsletter-input-wrapper:focus-within {
    border-color: var(--color-foreground);
  }

  .footer__newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.875rem 1rem;
    font-family: 'Oxygen', sans-serif;
    font-size: 0.9375rem;
    color: var(--color-foreground);
    outline: none;
  }

  .footer__newsletter-input::placeholder {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
  }

  .footer__newsletter-button {
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    padding: 0 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .footer__newsletter-button:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
  }

  .footer__newsletter-button svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .footer__newsletter-success {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
    color: #22c55e;
    margin: 0;
  }

  .footer__newsletter-error {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
    color: #ef4444;
    margin: 0;
  }

  /* Contact Section */
  .footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer__contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .footer__contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--color-foreground);
    margin-top: 0.125rem;
  }

  .footer__contact-link,
  .footer__contact-text {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
  }

  .footer__contact-link:hover {
    color: var(--color-foreground);
  }

  /* Footer Bottom */
  .footer__bottom {
    border-top: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
    padding: 1.5rem 0;
  }

  .footer__bottom-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
  }

  @media (min-width: 768px) {
    .footer__bottom-container {
      flex-direction: row;
      gap: 2rem;
    }
  }

  .footer__copyright {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
  }

  .footer__payment {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .footer__payment-icon {
    height: 1.5rem;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }

  .footer__payment-icon:hover {
    opacity: 1;
  }

  .footer__legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__legal-item {
    margin: 0;
  }

  .footer__legal-link {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer__legal-link:hover {
    color: var(--color-foreground);
  }
:root {
    --header-height: 3.75rem;
    --header-announcement-height: 2.5rem;
    --header-icon-size: 1.125rem;
    --header-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @media (min-width: 480px) {
    :root {
      --header-icon-size: 1.25rem;
    }
  }

  @media (min-width: 768px) {
    :root {
      --header-height: 4.5rem;
      --header-icon-size: 1.5rem;
    }
  }

  /* Announcement Bar */
  .header__announcement {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--header-announcement-height);
    padding: 0.5rem var(--page-margin);
    background: var(--color-foreground);
    color: var(--color-background);
    position: relative;
    font-size: 0.875rem;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
  }

  .header__announcement.hidden {
    display: none;
  }

  .header__announcement-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .header__announcement p {
    margin: 0;
  }

  .header__announcement-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s;
  }

  .header__announcement-link:hover {
    opacity: 0.8;
  }

  .header__announcement-close {
    position: absolute;
    right: var(--page-margin);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }

  .header__announcement-close:hover {
    opacity: 0.7;
  }

  .header__announcement-close svg {
    width: 1rem;
    height: 1rem;
  }

  /* Main Header */
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-background);
    border-bottom: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
  }

  .header__container {
    display: flex;
    align-items: center;
    height: var(--header-height);
    padding: 0 var(--page-margin);
    width: 100%;
    box-sizing: border-box;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  @media (min-width: 480px) {
    .header__container {
      gap: 0.75rem;
    }
  }

  @media (min-width: 768px) {
    .header__container {
      gap: 1rem;
      overflow: visible;
    }
  }

  @media (min-width: 1024px) {
    .header__container {
      gap: 1.5rem;
    }
  }

  /* Menu Toggle (Mobile) */
  .header__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-foreground);
    cursor: pointer;
    padding: 0.125rem;
    transition: opacity 0.2s;
    flex-shrink: 0;
    min-width: 28px;
    width: 28px;
    height: 28px;
  }

  @media (min-width: 480px) {
    .header__menu-toggle {
      padding: 0.25rem;
      min-width: 32px;
      width: 32px;
      height: 32px;
    }
  }

  .header__menu-toggle:hover {
    opacity: 0.7;
  }

  .header__menu-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  @media (min-width: 768px) {
    .header__menu-toggle svg {
      width: var(--header-icon-size);
      height: var(--header-icon-size);
    }
  }

  @media (min-width: 1024px) {
    .header__menu-toggle {
      display: none;
    }
  }

  /* Brand/Logo */
  .header__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 120px;
    overflow: hidden;
  }

  @media (min-width: 480px) {
    .header__brand {
      max-width: 150px;
    }
  }

  @media (min-width: 768px) {
    .header__brand {
      max-width: 200px;
    }
  }

  @media (min-width: 1024px) {
    .header__brand {
      flex: 0 1 auto;
      min-width: 120px;
      max-width: none;
    }
  }

  .header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-foreground);
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.2;
    transition: opacity 0.2s;
    max-width: 100%;
  }

  @media (min-width: 768px) {
    .header__logo {
      font-size: 1.125rem;
    }
  }

  @media (min-width: 1024px) {
    .header__logo {
      font-size: 1.25rem;
    }
  }

  .header__logo:hover {
    opacity: 0.8;
  }

  .header__logo img {
    height: 1.5rem;
    width: auto;
    max-width: 120px;
    object-fit: contain;
  }

  @media (min-width: 768px) {
    .header__logo img {
      height: 2rem;
      max-width: 200px;
    }
  }

  .header__logo-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }

  @media (min-width: 768px) {
    .header__logo-text {
      max-width: 200px;
    }
  }

  @media (min-width: 1024px) {
    .header__logo-text {
      max-width: none;
    }
  }

  .header__tagline {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  @media (max-width: 1023px) {
    .header__tagline {
      display: none;
    }
  }

  /* Navigation Wrapper - Contains Nav + Actions */
  .header__nav-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    min-width: 0;
    flex-wrap: nowrap !important;
    width: auto !important;
  }

  .header__nav-wrapper::after {
    content: '';
    display: table;
    clear: both;
  }

  @media (min-width: 768px) {
    .header__nav-wrapper {
      gap: 0.75rem;
    }
  }

  @media (min-width: 1024px) {
    .header__nav-wrapper {
      gap: 1.5rem;
    }
  }

  /* Desktop Navigation */
  .header__nav {
    display: none;
  }

  @media (min-width: 1024px) {
    .header__nav {
      display: block;
    }

    .header__nav-list {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
      justify-content: flex-end;
      flex-wrap: nowrap;
    }

    .header__nav-item {
      position: relative;
    }
  }

  @media (min-width: 1200px) {
    .header__nav-list {
      gap: 2rem;
    }

    .header__nav-link {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.5rem 0;
      text-decoration: none;
      color: var(--color-foreground);
      font-family: 'Oxygen', sans-serif;
      font-weight: 400;
      font-size: 0.875rem;
      transition: var(--header-transition);
      position: relative;
      white-space: nowrap;
    }

    @media (min-width: 1200px) {
      .header__nav-link {
        font-size: 0.9375rem;
        gap: 0.5rem;
      }
    }

    .header__nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--color-foreground);
      transition: width 0.3s ease;
    }

    .header__nav-link:hover::after,
    .header__nav-item:hover .header__nav-link::after {
      width: 100%;
    }

    .header__nav-arrow {
      font-size: 1rem;
      transition: transform 0.3s ease;
      display: inline-block;
      line-height: 1;
    }

    @media (min-width: 1200px) {
      .header__nav-arrow {
        font-size: 1.25rem;
      }
    }

    .header__nav-item:hover .header__nav-arrow,
    .header__nav-item.active .header__nav-arrow {
      transform: rotate(90deg);
    }

    /* Dropdown Backdrop Overlay */
    .header__nav-item--has-dropdown {
      position: relative;
    }
  }

  /* Dropdown Backdrop Overlay - Desktop Only */
  .header__dropdown-backdrop {
    display: none;
  }

  @media (min-width: 1024px) {
    .header__dropdown-backdrop {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      z-index: 999;
      pointer-events: none;
    }

    .header__dropdown-backdrop.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
  }

  /* Full-width Mega Menu Dropdown - Desktop Only */
  .header__dropdown {
    display: none;
  }

  @media (min-width: 1024px) {
    .header__dropdown {
      display: block;
      position: fixed;
      left: 0;
      width: 100vw;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
      pointer-events: none;
      z-index: 1001;
      background: var(--color-background);
      border-bottom: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    /* Active dropdown state */
    .header__dropdown.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
  }

  @media (min-width: 1024px) {
    .header__dropdown-content {
      max-width: 1600px;
      width: 100%;
      margin: 0 auto;
      padding: 0;
      display: flex;
      gap: 0;
      align-items: stretch;
      min-height: 350px;
    }

    /* With image: taller dropdown */
    .header__dropdown-content:has(.header__dropdown-image) {
      min-height: 450px;
    }
  }

  @media (min-width: 1200px) {
    .header__dropdown-content {
      min-height: 400px;
    }

    .header__dropdown-content:has(.header__dropdown-image) {
      min-height: 500px;
    }
  }

    .header__dropdown-image {
      flex-shrink: 0;
      width: 35%;
      max-width: 450px;
      min-width: 280px;
      border-radius: 0;
      overflow: hidden;
      background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
    }

    @media (min-width: 1200px) {
      .header__dropdown-image {
        width: 38%;
        max-width: 550px;
        min-width: 320px;
      }
    }

    .header__dropdown-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .header__dropdown-menu-section {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 2.5rem var(--page-margin);
      gap: 1.5rem;
      min-width: 0;
    }

    /* If no image, center content */
    .header__dropdown-content:not(:has(.header__dropdown-image)) .header__dropdown-menu-section {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    @media (min-width: 1200px) {
      .header__dropdown-menu-section {
        padding: 3rem var(--page-margin);
        gap: 2rem;
      }
    }

    .header__dropdown-heading {
      font-family: 'Oxygen', sans-serif;
      font-weight: 700;
      font-size: 1.5rem;
      line-height: 1.2;
      margin: 0 0 0.5rem 0;
      color: var(--color-foreground);
      padding-bottom: 1rem;
      border-bottom: 2px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
    }

    @media (min-width: 1200px) {
      .header__dropdown-heading {
        font-size: 1.875rem;
        padding-bottom: 1.25rem;
      }
    }

    .header__dropdown-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 1;
      min-width: 0;
    }

    .header__dropdown-item {
      margin: 0;
    }

    .header__dropdown-link {
      display: block;
      padding: 1rem 0;
      text-decoration: none;
      color: var(--color-foreground);
      font-family: 'Oxygen', sans-serif;
      font-weight: 400;
      font-size: 0.9375rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      border-bottom: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.08);
    }

    .header__dropdown-item:last-child .header__dropdown-link {
      border-bottom: none;
    }

    /* Animated underline effect - similar to main nav */
    .header__dropdown-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--color-foreground);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header__dropdown-link:hover::after {
      width: 100%;
    }

    .header__dropdown-link:hover {
      padding-left: 0.5rem;
      opacity: 0.8;
    }

    @media (min-width: 1200px) {
      .header__dropdown-link {
        padding: 1.125rem 0;
        font-size: 1rem;
      }

      .header__dropdown-link:hover {
        padding-left: 0.75rem;
      }
    }
  }

  /* Action Icons */
  .header__actions {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 0.25rem !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
    min-width: -webkit-fit-content !important;
    min-width: -moz-fit-content !important;
    min-width: fit-content !important;
    width: auto !important;
  }

  .header__actions > * {
    display: inline-block !important;
    float: none !important;
  }

  @media (min-width: 480px) {
    .header__actions {
      gap: 0.5rem !important;
    }
  }

  @media (min-width: 768px) {
    .header__actions {
      gap: 0.75rem !important;
    }
  }

  @media (min-width: 1024px) {
    .header__actions {
      gap: 1rem !important;
    }
  }

  .header__action,
  .header__action--search,
  .header__action--account,
  .header__action--cart {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    background: none !important;
    border: none !important;
    color: var(--color-foreground) !important;
    cursor: pointer !important;
    padding: 0.125rem !important;
    text-decoration: none !important;
    position: relative !important;
    transition: opacity 0.2s !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    min-width: 28px !important;
    width: 28px !important;
    height: 28px !important;
    float: none !important;
    vertical-align: middle !important;
  }

  @media (min-width: 480px) {
    .header__action,
    .header__action--search,
    .header__action--account,
    .header__action--cart {
      padding: 0.25rem !important;
      min-width: 32px !important;
      width: 32px !important;
      height: 32px !important;
    }
  }

  @media (min-width: 768px) {
    .header__action,
    .header__action--search,
    .header__action--account,
    .header__action--cart {
      padding: 0.5rem !important;
      min-width: 40px !important;
      width: 40px !important;
      height: 40px !important;
    }
  }

  .header__action:hover {
    opacity: 0.7;
  }

  .header__action svg,
  .header__action--search svg,
  .header__action--account svg,
  .header__action--cart svg {
    width: 1.125rem !important;
    height: 1.125rem !important;
    display: block !important;
    flex-shrink: 0 !important;
  }

  @media (min-width: 480px) {
    .header__action svg,
    .header__action--search svg,
    .header__action--account svg,
    .header__action--cart svg {
      width: 1.25rem !important;
      height: 1.25rem !important;
    }
  }

  @media (min-width: 768px) {
    .header__action svg,
    .header__action--search svg,
    .header__action--account svg,
    .header__action--cart svg {
      width: var(--header-icon-size) !important;
      height: var(--header-icon-size) !important;
    }
  }

  .header__cart-count {
    position: absolute !important;
    top: -0.125rem !important;
    right: -0.125rem !important;
    background: var(--color-foreground) !important;
    color: var(--color-background) !important;
    border-radius: 50% !important;
    width: 1rem !important;
    height: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.5625rem !important;
    font-weight: 700 !important;
    font-family: 'Oxygen', sans-serif !important;
    line-height: 1 !important;
    pointer-events: none !important;
  }

  @media (min-width: 768px) {
    .header__cart-count {
      top: 0 !important;
      right: 0 !important;
      width: 1.25rem !important;
      height: 1.25rem !important;
      font-size: 0.625rem !important;
    }
  }

  /* Mobile Menu */
  .header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--header-transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .header__mobile-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .header__mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: var(--color-background);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .header__mobile-menu.active .header__mobile-menu-content {
    transform: translateX(0);
  }

  .header__mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--page-margin);
    border-bottom: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
  }

  .header__mobile-menu-title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
    color: var(--color-foreground);
  }

  .header__mobile-menu-close {
    background: none;
    border: none;
    color: var(--color-foreground);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }

  .header__mobile-menu-close:hover {
    opacity: 0.7;
  }

  .header__mobile-menu-close svg {
    width: var(--header-icon-size);
    height: var(--header-icon-size);
  }

  .header__mobile-nav {
    flex: 1;
    padding: 1rem 0;
  }

  .header__mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__mobile-nav-item {
    border-bottom: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
  }

  .header__mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--page-margin);
    text-decoration: none;
    color: var(--color-foreground);
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    transition: background 0.2s;
  }

  .header__mobile-nav-link:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
  }

  .header__mobile-nav-toggle {
    background: none;
    border: none;
    color: var(--color-foreground);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
  }

  .header__mobile-nav-toggle[aria-expanded="true"] {
    transform: rotate(90deg);
  }

  .header__mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
  }

  .header__mobile-nav-item.active .header__mobile-submenu {
    max-height: 500px;
  }

  .header__mobile-submenu-item {
    border-bottom: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.03);
  }

  .header__mobile-submenu-link {
    display: block;
    padding: 0.75rem var(--page-margin) 0.75rem calc(var(--page-margin) + 1.5rem);
    text-decoration: none;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    transition: background 0.2s, color 0.2s;
  }

  .header__mobile-submenu-link:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
    color: var(--color-foreground);
  }

  /* Search Overlay */
  .header__search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--header-transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
  }

  .header__search-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .header__search-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: var(--color-background);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }

  .header__search-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--color-foreground);
    padding-bottom: 0.75rem;
  }

  .header__search-input {
    flex: 1;
    border: none;
    background: none;
    color: var(--color-foreground);
    font-family: 'Oxygen', sans-serif;
    font-size: 1.125rem;
    outline: none;
    padding: 0.5rem 0;
  }

  .header__search-input::placeholder {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
  }

  .header__search-submit {
    background: none;
    border: none;
    color: var(--color-foreground);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }

  .header__search-submit:hover {
    opacity: 0.7;
  }

  .header__search-submit svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .header__search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-foreground);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }

  .header__search-close:hover {
    opacity: 0.7;
  }

  .header__search-close svg {
    width: var(--header-icon-size);
    height: var(--header-icon-size);
  }
.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;
  }
.hero-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .hero-banner {
      min-height: 600px;
    }
  }

  @media (min-width: 1024px) {
    .hero-banner {
      min-height: 700px;
    }
  }

  /* Background Media */
  .hero-banner__image-wrapper,
  .hero-banner__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hero-banner__image,
  .hero-banner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Overlay */
  .hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, calc(var(--overlay-opacity) / 100));
    z-index: 1;
  }

  /* Content */
  .hero-banner__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem var(--page-margin);
    color: white;
  }

  @media (min-width: 768px) {
    .hero-banner__content {
      padding: 3rem var(--page-margin);
    }
  }

  .hero-banner__subheading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
    opacity: 0.9;
  }

  @media (min-width: 768px) {
    .hero-banner__subheading {
      font-size: 1rem;
    }
  }

  .hero-banner__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
  }

  @media (min-width: 768px) {
    .hero-banner__heading {
      font-size: 3.5rem;
    }
  }

  @media (min-width: 1024px) {
    .hero-banner__heading {
      font-size: 4.5rem;
    }
  }

  .hero-banner__text {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    opacity: 0.95;
  }

  @media (min-width: 768px) {
    .hero-banner__text {
      font-size: 1.25rem;
    }
  }

  .hero-banner__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-banner__button {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
  }

  .hero-banner__button--primary {
    background: white;
    color: var(--color-foreground);
  }

  .hero-banner__button--primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .hero-banner__button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .hero-banner__button--secondary:hover {
    background: white;
    color: var(--color-foreground);
    transform: translateY(-2px);
  }

  @media (min-width: 768px) {
    .hero-banner__button {
      padding: 1.125rem 2.5rem;
      font-size: 1.0625rem;
    }
  }
.hero-carousel {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--color-foreground);
  }

  @media (min-width: 1024px) {
    .hero-carousel {
      min-height: 700px;
    }
  }

  .hero-carousel__slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-carousel__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  @media (min-width: 1024px) {
    .hero-carousel__slide {
      min-height: 700px;
    }
  }

  .hero-carousel__slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
  }

  .hero-carousel__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hero-carousel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-carousel__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }

  /* Brand Logo */
  .hero-carousel__brand {
    position: absolute;
    top: 2rem;
    right: max(var(--page-margin, 2rem), calc((100vw - 1400px) / 2 + var(--page-margin, 2rem)));
    z-index: 100;
    max-width: 200px;
  }

  @media (max-width: 767px) {
    .hero-carousel__brand {
      top: 1rem;
      max-width: 120px;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .hero-carousel__brand {
      max-width: 160px;
    }
  }

  .hero-carousel__brand a {
    display: block;
    line-height: 0;
  }

  .hero-carousel__brand-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  }

  .hero-carousel__brand a:hover .hero-carousel__brand-image {
    transform: scale(1.05);
  }

  /* Content on Right Side */
  .hero-carousel__content-container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: flex;
    justify-content: flex-end;
  }

  .hero-carousel__content {
    max-width: 600px;
    width: auto;
    color: var(--text-color, white);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  @media (min-width: 1024px) {
    .hero-carousel__content {
      max-width: 500px;
    }
  }

  .hero-carousel__subheading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
    opacity: 0.9;
    text-align: right;
    width: 100%;
  }

  @media (min-width: 768px) {
    .hero-carousel__subheading {
      font-size: 1rem;
    }
  }

  .hero-carousel__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    text-align: right;
    width: 100%;
  }

  @media (min-width: 768px) {
    .hero-carousel__heading {
      font-size: 3.5rem;
    }
  }

  @media (min-width: 1024px) {
    .hero-carousel__heading {
      font-size: 4rem;
    }
  }

  .hero-carousel__text {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    opacity: 0.95;
    text-align: right;
    width: 100%;
  }

  .hero-carousel__button {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    background: var(--button-bg, white);
    color: var(--button-text, var(--color-foreground));
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-carousel__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* Navigation Thumbnails (Bottom Right) */
  .hero-carousel__nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    max-width: 300px;
    justify-content: flex-end;
  }

  @media (max-width: 767px) {
    .hero-carousel__nav {
      bottom: 1rem;
      right: 1rem;
      max-width: 200px;
      gap: 0.5rem;
    }
  }

  .hero-carousel__nav-item {
    width: 70px;
    height: 50px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 767px) {
    .hero-carousel__nav-item {
      width: 50px;
      height: 35px;
    }
  }

  .hero-carousel__nav-item:hover {
    border-color: white;
    transform: scale(1.05);
  }

  .hero-carousel__nav-item.active {
    border-color: white;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  }

  .hero-carousel__nav-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-carousel__nav-number {
    color: white;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
  }

  /* Arrow Controls */
  .hero-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-foreground);
  }

  .hero-carousel__arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .hero-carousel__arrow svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .hero-carousel__arrow--prev {
    left: 2rem;
  }

  .hero-carousel__arrow--next {
    right: 2rem;
  }

  @media (max-width: 767px) {
    .hero-carousel__arrow {
      width: 2.5rem;
      height: 2.5rem;
    }

    .hero-carousel__arrow--prev {
      left: 1rem;
    }

    .hero-carousel__arrow--next {
      right: 1rem;
    }
  }
.product-page {
    padding: 2rem 0 4rem 0;
  }

  @media (min-width: 1024px) {
    .product-page {
      padding: 3rem 0 5rem 0;
    }
  }

  .product-page__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 1024px) {
    .product-page__container {
      grid-template-columns: 1.5fr 1fr;
      gap: 4rem;
      align-items: start;
    }
  }

  @media (min-width: 1400px) {
    .product-page__container {
      grid-template-columns: 1.8fr 1fr;
      gap: 5rem;
    }
  }

  /* Product Media */
  .product-page__media {
    position: relative;
  }

  .product-page__main-image {
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-page__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-page__image-wrapper.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .product-page__image-frame {
    display: inline-block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
                0 1px 4px rgba(0, 0, 0, 0.04);
  }

  @media (max-width: 767px) {
    .product-page__image-frame {
      border-radius: 12px;
    }
  }

  .product-page__image-wrapper img,
  .product-page__placeholder {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    display: block;
  }

  @media (max-width: 767px) {
    .product-page__image-wrapper img,
    .product-page__placeholder {
      max-height: 60vh;
    }
  }

  /* Image Navigation Arrows */
  .product-page__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-foreground);
    opacity: 0;
    visibility: hidden;
  }

  .product-page__main-image:hover .product-page__arrow {
    opacity: 1;
    visibility: visible;
  }

  .product-page__arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .product-page__arrow svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .product-page__arrow--prev {
    left: 1rem;
  }

  .product-page__arrow--next {
    right: 1rem;
  }

  @media (max-width: 767px) {
    .product-page__arrow {
      width: 2.5rem;
      height: 2.5rem;
      opacity: 1;
      visibility: visible;
    }

    .product-page__arrow--prev {
      left: 0.5rem;
    }

    .product-page__arrow--next {
      right: 0.5rem;
    }
  }

  /* Thumbnails */
  .product-page__thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .product-page__thumbnails {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
      gap: 1rem;
    }
  }

  .product-page__thumbnail {
    position: relative;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-page__thumbnail:hover {
    transform: translateY(-2px);
  }

  .product-page__thumbnail.active .product-page__thumbnail-frame {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12),
                0 2px 4px rgba(0, 0, 0, 0.08);
  }

  .product-page__thumbnail:hover .product-page__thumbnail-frame {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                0 2px 4px rgba(0, 0, 0, 0.06);
  }

  .product-page__thumbnail-frame {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06),
                0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-page__thumbnail img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  /* Product Info */
  .product-page__info {
    position: relative;
  }

  @media (min-width: 1024px) {
    .product-page__info-inner {
      position: sticky;
      top: 6rem;
    }
  }

  .product-page__vendor {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--product-vendor-color, rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6));
    margin: 0 0 0.75rem 0;
  }

  .product-page__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: var(--product-title-color, var(--color-foreground));
  }

  @media (min-width: 768px) {
    .product-page__title {
      font-size: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .product-page__title {
      font-size: 2.25rem;
    }
  }

  /* Price */
  .product-page__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
  }

  .product-page__price--regular {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--product-price-color, var(--color-foreground));
  }

  .product-page__price--sale {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ef4444;
  }

  .product-page__price--compare {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
    text-decoration: line-through;
  }

  .product-page__save {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
  }

  /* Variant Selector */
  .product-page__variants {
    margin-bottom: 2rem;
  }

  .product-page__variant-group {
    margin-bottom: 1.5rem;
  }

  .product-page__variant-label {
    display: block;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    color: var(--color-foreground);
  }

  .product-page__variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .product-page__variant-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .product-page__variant-button {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-foreground);
    background: var(--color-background);
  }

  .product-page__variant-button:hover {
    border-color: var(--color-foreground);
  }

  .product-page__variant-input:checked + .product-page__variant-button {
    border-color: var(--color-foreground);
    background: var(--color-foreground);
    color: var(--color-background);
  }

  /* Quantity Selector */
  .product-page__quantity-wrapper {
    margin-bottom: 1.5rem;
  }

  .product-page__quantity-label {
    display: block;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    color: var(--color-foreground);
  }

  .product-page__quantity {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 2px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    border-radius: 4px;
    overflow: hidden;
  }

  .product-page__quantity-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
    transition: background 0.2s;
  }

  .product-page__quantity-button:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
  }

  .product-page__quantity-button svg {
    width: 1rem;
    height: 1rem;
  }

  .product-page__quantity-input {
    width: 60px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
    border-right: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-foreground);
    background: var(--color-background);
  }

  .product-page__quantity-input::-webkit-inner-spin-button,
  .product-page__quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Add to Cart Button */
  .product-page__add-to-cart {
    width: 100%;
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 1.25rem 2rem;
    background: var(--product-button-bg, var(--color-foreground));
    color: var(--product-button-text, var(--color-background));
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
  }

  .product-page__add-to-cart:hover:not(:disabled) {
    background: var(--product-button-hover-bg, rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .product-page__add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Description */
  .product-page__description {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
  }

  .product-page__description-title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .product-page__description-content {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.8);
  }

  .product-page__description-content p {
    margin: 0 0 1rem 0;
  }

  .product-page__description-content p:last-child {
    margin-bottom: 0;
  }
.reviews {
    padding: 6rem 0;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
  }

  @media (min-width: 1024px) {
    .reviews {
      padding: 8rem 0;
    }
  }

  .reviews__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .reviews__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .reviews__heading {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .reviews__heading {
      font-size: 3rem;
    }
  }

  .reviews__subheading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 3rem 0;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
  }

  @media (min-width: 768px) {
    .reviews__subheading {
      font-size: 1.25rem;
      margin: 0 0 4rem 0;
    }
  }

  .reviews__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile), 1fr);
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .reviews__grid {
      grid-template-columns: repeat(var(--columns-desktop), 1fr);
      gap: 2.5rem;
    }
  }

  /* Review Card */
  .review-card {
    background: var(--color-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  @media (min-width: 768px) {
    .review-card {
      padding: 2.5rem;
    }
  }

  .review-card__rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
  }

  .review-card__star {
    width: 20px;
    height: 20px;
  }

  .review-card__star--filled {
    color: #fbbf24;
  }

  .review-card__star--empty {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
  }

  .review-card__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .review-card__text {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.8);
  }

  .review-card__author {
    border-top: 1px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
    padding-top: 1.25rem;
  }

  .review-card__name {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    margin: 0 0 0.25rem 0;
    color: var(--color-foreground);
  }

  .review-card__location {
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    margin: 0;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
  }
.search-bar {
    padding: 6rem 0;
    background: var(--color-background);
  }

  @media (min-width: 1024px) {
    .search-bar {
      padding: 8rem 0;
    }
  }

  .search-bar__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
    text-align: center;
  }

  .search-bar__heading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .search-bar__heading {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .search-bar__heading {
      font-size: 3rem;
    }
  }

  .search-bar__subheading {
    font-family: 'Oxygen', sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
  }

  @media (min-width: 768px) {
    .search-bar__subheading {
      font-size: 1.25rem;
    }
  }

  .search-bar__form {
    width: 100%;
  }

  .search-bar__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-background);
    border: 2px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.15);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .search-bar__input-wrapper:focus-within {
    border-color: var(--color-foreground);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .search-bar__input {
    flex: 1;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--color-foreground);
    outline: none;
  }

  @media (min-width: 768px) {
    .search-bar__input {
      font-size: 1.125rem;
      padding: 1.5rem 2rem;
    }
  }

  .search-bar__input::placeholder {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.4);
  }

  .search-bar__submit {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 50%;
    margin: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .search-bar__submit:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .search-bar__submit svg {
    width: 24px;
    height: 24px;
  }

  @media (min-width: 768px) {
    .search-bar__submit {
      width: 70px;
      height: 70px;
    }

    .search-bar__submit svg {
      width: 28px;
      height: 28px;
    }
  }
.search-page {
    padding: 3rem 0 5rem 0;
    min-height: 60vh;
  }

  .search-page__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 2rem);
  }

  /* Header */
  .search-page__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .search-page__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 2rem 0;
    color: var(--color-foreground);
  }

  @media (min-width: 768px) {
    .search-page__title {
      font-size: 2.5rem;
    }
  }

  /* Search Form */
  .search-page__form {
    max-width: 700px;
    margin: 0 auto;
  }

  .search-page__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .search-page__input-wrapper:focus-within {
    border-color: var(--color-foreground);
  }

  .search-page__icon {
    position: absolute;
    left: 1.5rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
    pointer-events: none;
  }

  .search-page__input {
    font-family: 'Oxygen', sans-serif;
    flex: 1;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: none;
    font-size: 1rem;
    background: transparent;
  }

  .search-page__input:focus {
    outline: none;
  }

  .search-page__submit {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }

  .search-page__submit:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
  }

  /* Results Header */
  .search-page__results-header {
    margin-bottom: 2rem;
  }

  .search-page__results-count {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0 0 1.5rem 0;
  }

  /* Filters */
  .search-page__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .search-filter {
    font-family: 'Oxygen', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.05);
    color: var(--color-foreground);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .search-filter:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.1);
  }

  .search-filter.active {
    background: var(--color-foreground);
    color: var(--color-background);
    border-color: var(--color-foreground);
  }

  /* Results Grid */
  .search-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media (min-width: 640px) {
    .search-results {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .search-results {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* Product Result (Card) */
  .search-result--product {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
  }

  .search-result--product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .search-result__link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .search-result__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: white;
  }

  .search-result__image-wrapper img,
  .search-result__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .search-result__content {
    padding: 1.25rem;
  }

  .search-result__vendor {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    margin: 0 0 0.5rem 0;
  }

  .search-result__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    color: var(--color-foreground);
  }

  .search-result__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oxygen', sans-serif;
  }

  .search-result__price--regular {
    font-weight: 600;
    font-size: 1rem;
  }

  .search-result__price--sale {
    font-weight: 600;
    font-size: 1rem;
    color: #ef4444;
  }

  .search-result__price--compare {
    font-size: 0.875rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.5);
    text-decoration: line-through;
  }

  /* Article/Page Result (List) */
  .search-result--article,
  .search-result--page {
    grid-column: 1 / -1;
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
  }

  .search-result--article:hover,
  .search-result--page:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.04);
  }

  .search-result__link-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
  }

  @media (min-width: 768px) {
    .search-result__link-list {
      grid-template-columns: 200px 1fr;
      gap: 2rem;
    }
  }

  .search-result__image-list {
    border-radius: 8px;
    overflow: hidden;
    background: white;
  }

  .search-result__image-list img {
    width: 100%;
    height: auto;
    display: block;
  }

  .search-result__content-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .search-result__type {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
  }

  .search-result__title-list {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0;
    color: var(--color-foreground);
  }

  .search-result__excerpt {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0;
  }

  .search-result__meta {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.875rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.6);
    margin: 0;
  }

  /* Pagination */
  .search-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
  }

  .search-pagination__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    background: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
  }

  .search-pagination__btn:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .search-pagination__info {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.9375rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
  }

  /* Empty State */
  .search-page__empty {
    padding: 4rem 0;
  }

  .search-empty {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .search-empty__icon {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    margin-bottom: 2rem;
  }

  .search-empty__title {
    font-family: 'Oxygen', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
    color: var(--color-foreground);
  }

  .search-empty__text {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0 0 2rem 0;
  }

  .search-empty__suggestions {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.02);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
  }

  .search-empty__suggestions p {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--color-foreground);
  }

  .search-empty__suggestions ul {
    margin: 0;
    padding-left: 1.5rem;
  }

  .search-empty__suggestions li {
    font-family: 'Oxygen', sans-serif;
    font-size: 0.9375rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0.5rem 0;
  }

  .search-empty__button {
    display: inline-block;
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
  }

  .search-empty__button:hover {
    background: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Initial State */
  .search-page__initial {
    text-align: center;
    padding: 4rem 0;
  }

  .search-page__initial-icon {
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.2);
    margin-bottom: 2rem;
  }

  .search-page__initial-text {
    font-family: 'Oxygen', sans-serif;
    font-size: 1.125rem;
    color: rgba(var(--color-foreground-rgb, 0, 0, 0), 0.7);
    margin: 0;
  }

/* 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 */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }