/** Shopify CDN: Minification failed

Line 6276:13 Expected identifier but found whitespace
Line 6276:14 Unexpected "var("

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:brand-features (INDEX:0, SCOPED:FALSE) */
.brand-features {
    padding: 4rem 1.5rem;
    background: var(--features-bg, var(--color-background));
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .brand-features__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .brand-features__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .brand-features__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .feature-card {
    text-align: center;
    padding: 1.5rem;
  }

  .feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-foreground);
  }

  .feature-card__icon .material-symbols-outlined {
    font-size: 1.75rem;
  }

  .feature-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .feature-card__description {
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 1024px) {
    .brand-features__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .brand-features {
      padding: 3rem 1rem;
    }

    .brand-features__grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .feature-card {
      display: flex;
      align-items: center;
      text-align: left;
      gap: 1rem;
      padding: 1rem;
    }

    .feature-card__icon {
      width: 56px;
      height: 56px;
      margin-bottom: 0;
      flex-shrink: 0;
    }

    .feature-card__icon .material-symbols-outlined {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:brand-features */

/* START_SECTION:cart-page (INDEX:2, SCOPED:FALSE) */
.cart-page {
    padding: 0 1rem 2rem;
    position: relative;
    z-index: 1;
  }

  .cart-page__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .cart-page__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    transition: opacity 0.2s;
    position: relative;
    z-index: 1;
  }

  .cart-page__back:hover {
    opacity: 0.7;
  }

  .cart-page__layout {
    display: grid;
    gap: 2rem;
  }

  @media (min-width: 1024px) {
    .cart-page__layout {
      grid-template-columns: 1fr 380px;
      gap: 3rem;
    }
  }

  .cart-page__header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .cart-page__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
  }

  .cart-page__count {
    font-size: 1rem;
    color: var(--color-foreground-muted);
  }

  .cart-page__table-header {
    display: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  @media (min-width: 768px) {
    .cart-page__table-header {
      display: grid;
      grid-template-columns: 100px 1fr 150px 150px;
      gap: 1rem;
    }
  }

  .cart-page__col-quantity,
  .cart-page__col-price {
    text-align: center;
  }

  .cart-page__items {
    display: flex;
    flex-direction: column;
  }

  .cart-page__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  @media (min-width: 768px) {
    .cart-page__item {
      grid-template-columns: 100px 1fr 150px 150px;
      align-items: start;
    }
  }

  .cart-page__item-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
  }

  .cart-page__item-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    color: var(--color-foreground-muted);
  }

  .cart-page__item-details {
    grid-column: 2 / -1;
  }

  @media (min-width: 768px) {
    .cart-page__item-details {
      grid-column: auto;
    }
  }

  .cart-page__item-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    margin-bottom: 0.5rem;
  }

  .cart-page__item-title:hover {
    text-decoration: underline;
  }

  .cart-page__item-options,
  .cart-page__item-properties {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .cart-page__item-option,
  .cart-page__item-property {
    font-size: 0.8125rem;
    color: var(--color-foreground-muted);
  }

  .cart-page__item-option-value,
  .cart-page__item-property span:last-child {
    color: var(--color-foreground);
  }

  .cart-page__item-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
  }

  @media (min-width: 768px) {
    .cart-page__item-actions-mobile {
      display: none;
    }
  }

  .cart-page__item-quantity-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .cart-page__quantity-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
  }

  .cart-page__item-remove {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
  }

  .cart-page__item-remove:hover {
    color: var(--color-foreground);
  }

  .cart-page__item-quantity {
    display: none;
  }

  @media (min-width: 768px) {
    .cart-page__item-quantity {
      display: flex;
      justify-content: center;
    }
  }

  .cart-page__quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
  }

  .cart-page__quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
    transition: background-color 0.2s;
  }

  .cart-page__quantity-btn:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .cart-page__quantity-btn:disabled {
    color: var(--color-foreground-muted);
    cursor: not-allowed;
  }

  .cart-page__quantity-input {
    width: 48px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-size: 0.875rem;
    background: transparent;
    -moz-appearance: textfield;
  }

  .cart-page__quantity-input::-webkit-outer-spin-button,
  .cart-page__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-page__item-price {
    display: none;
  }

  @media (min-width: 768px) {
    .cart-page__item-price {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

  .cart-page__item-prices {
    text-align: center;
  }

  .cart-page__price {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
  }

  .cart-page__price--sale {
    color: #dc2626;
  }

  .cart-page__price--original {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-foreground-muted);
    text-decoration: line-through;
  }

  .cart-page__item-discounts {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .cart-page__item-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #16a34a;
  }

  .cart-page__item-remove-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground-muted);
    border-radius: 4px;
    transition: all 0.2s;
    margin-top: 0.5rem;
  }

  .cart-page__item-remove-desktop:hover {
    color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
  }

  /* Sidebar */
  .cart-page__sidebar {
    position: sticky;
    top: 160px;
  }

  .cart-page__summary {
    background-color: #fafafa;
    border-radius: 8px;
    padding: 1.5rem;
  }

  .cart-page__summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .cart-page__summary-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
  }

  .cart-page__summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-page__summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
  }

  .cart-page__summary-row--discount {
    color: #16a34a;
  }

  .cart-page__summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 0;
  }

  .cart-page__taxes-note {
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
    margin: 0 0 1rem;
  }

  .cart-page__gift-wrap {
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .cart-page__gift-wrap-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
  }

  .cart-page__gift-wrap-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-foreground);
  }

  .cart-page__gift-wrap-icon {
    display: flex;
    color: var(--color-foreground-muted);
  }

  .cart-page__gift-wrap-text {
    flex: 1;
  }

  .cart-page__checkout-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .cart-page__checkout-btn:hover {
    opacity: 0.9;
  }

  /* Note section */
  .cart-page__note-section {
    margin-top: 2rem;
    max-width: 600px;
  }

  .cart-page__note-details {
    border: 1px solid var(--color-border);
    border-radius: 4px;
  }

  .cart-page__note-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    list-style: none;
  }

  .cart-page__note-toggle::-webkit-details-marker {
    display: none;
  }

  .cart-page__note-content {
    padding: 0 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cart-page__note-input {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.875rem;
    resize: vertical;
    font-family: inherit;
  }

  .cart-page__note-save {
    align-self: flex-start;
    padding: 0.625rem 1.5rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .cart-page__note-save:hover {
    opacity: 0.9;
  }

  /* Empty cart */
  .cart-page__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    min-height: 50vh;
  }

  .cart-page__empty-icon {
    color: var(--color-foreground-muted);
    margin-bottom: 1.5rem;
  }

  .cart-page__empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
  }

  .cart-page__empty-text {
    font-size: 1rem;
    color: var(--color-foreground-muted);
    margin: 0 0 2rem;
  }

  .cart-page__empty-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 4px;
    transition: opacity 0.2s;
  }

  .cart-page__empty-btn:hover {
    opacity: 0.9;
  }
/* END_SECTION:cart-page */

/* START_SECTION:category-tiles (INDEX:3, SCOPED:FALSE) */
.category-tiles {
    padding: 3rem 2rem;
    width: 100%;
    position: relative;
  }

  .category-tiles__title {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 1.5rem;
    color: var(--color-foreground, #1f2937);
  }

  /* Default Container (Grid Mode) */
  .category-tiles__container {
    width: 100%;
    position: relative;
  }

  .category-tiles__wrapper {
    width: 100%;
  }

  /* Default Grid Layout */
  .category-tiles__grid {
    display: grid;
    gap: 1rem;
  }

  /* Arrow Buttons - Hidden by default */
  .category-tiles__arrow {
    display: none;
    width: 48px;
    height: 48px;
    min-width: 48px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    z-index: 10;
  }

  .category-tiles__arrow:hover:not(:disabled) {
    background: #000;
    color: #fff;
    border-color: #000;
  }

  .category-tiles__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  /* ======================= */
  /* GRID LAYOUTS (DEFAULT) */
  /* ======================= */

  /* 3 CARDS - Equal row */
  .category-tiles__grid--count-3 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 450px;
  }

  .category-tiles__grid--count-3 .category-tile {
    grid-row: span 1;
  }

  /* 4 CARDS - 2x2 Bento */
  .category-tiles__grid--count-4 {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
  }

  .category-tiles__grid--count-4 .category-tile--1 {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .category-tiles__grid--count-4 .category-tile--2 {
    grid-column: 2;
    grid-row: 1;
  }

  .category-tiles__grid--count-4 .category-tile--3 {
    grid-column: 2;
    grid-row: 2;
  }

  .category-tiles__grid--count-4 .category-tile--4 {
    grid-column: 1 / 3;
    grid-row: 3;
    height: 280px;
  }

  /* 5 CARDS - Featured + 4 grid */
  .category-tiles__grid--count-5 {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
  }

  .category-tiles__grid--count-5 .category-tile--1 {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .category-tiles__grid--count-5 .category-tile--2 {
    grid-column: 2;
    grid-row: 1;
  }

  .category-tiles__grid--count-5 .category-tile--3 {
    grid-column: 3;
    grid-row: 1;
  }

  .category-tiles__grid--count-5 .category-tile--4 {
    grid-column: 2;
    grid-row: 2;
  }

  .category-tiles__grid--count-5 .category-tile--5 {
    grid-column: 3;
    grid-row: 2;
  }

  /* 6 CARDS - 3 column grid */
  .category-tiles__grid--count-6 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 1rem;
  }

  /* 7+ CARDS - Masonry style */
  .category-tiles__grid--count-7,
  .category-tiles__grid--count-8,
  .category-tiles__grid--count-9,
  .category-tiles__grid--count-10 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(auto-fill, 280px);
    gap: 1rem;
  }

  .category-tiles__grid--count-7 .category-tile--1,
  .category-tiles__grid--count-8 .category-tile--1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .category-tiles__grid--count-7 .category-tile--2,
  .category-tiles__grid--count-8 .category-tile--2 {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Category Tile Base */
  .category-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    border-radius: 0;
  }

  .category-tile__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .category-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
  }

  .category-tile:hover .category-tile__media img {
    transform: scale(1.05);
  }

  .category-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0) 100%
    );
    transition: background 0.3s ease;
  }

  .category-tile:hover .category-tile__overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  .category-tile__content {
    position: relative;
    z-index: 2;
    padding: 2rem;
  }

  .category-tile__subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.5rem;
  }

  .category-tile__name {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 1rem;
    line-height: 1.2;
  }

  .category-tile__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
    transition: all 0.3s ease;
  }

  .category-tile:hover .category-tile__button {
    background: white;
    color: #1f2937;
    border-color: white;
  }

  .category-tile__button svg {
    transition: transform 0.3s ease;
  }

  .category-tile:hover .category-tile__button svg {
    transform: translateX(4px);
  }

  /* Placeholder styling */
  .category-tile__placeholder {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
  }

  /* ======================= */
  /* TABLET */
  /* ======================= */
  @media (max-width: 1024px) {
    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-3 {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 350px;
    }

    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-4 {
      grid-template-columns: 1.5fr 1fr;
      grid-template-rows: repeat(2, 240px);
    }

    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-5 {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 240px);
    }

    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-5 .category-tile--1 {
      grid-column: span 2;
      grid-row: span 1;
    }

    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-5 .category-tile--2,
    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-5 .category-tile--3,
    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-5 .category-tile--4,
    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-5 .category-tile--5 {
      grid-column: span 1;
      grid-row: span 1;
    }

    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-6 {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 280px);
    }

    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-7,
    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-8,
    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-9,
    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-10 {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(auto-fill, 240px);
    }

    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-7 .category-tile--1,
    .category-tiles__slider-container:not(.slider-mobile):not(.slider-desktop) .category-tiles__grid--count-8 .category-tile--1 {
      grid-column: span 2;
      grid-row: span 1;
    }

    .category-tile__name {
      font-size: 1.5rem;
    }
  }

  /* ======================= */
  /* MOBILE */
  /* ======================= */
  @media (max-width: 767px) {
    .category-tiles {
      padding: 2rem 1rem;
    }

    .category-tiles__title {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    .category-tiles__container.has-slider-mobile {
      padding: 0 15px;
      gap: 10px;
    }

    .category-tiles__container.has-slider-mobile .category-tiles__arrow {
      width: 36px;
      height: 36px;
      min-width: 36px;
    }

    .category-tiles__container.has-slider-mobile .category-tiles__arrow svg {
      width: 18px;
      height: 18px;
    }

    /* Mobile Slider - 1 card visible */
    .category-tiles__container.has-slider-mobile .category-tile {
      width: calc(100vw - 120px);
      min-height: 350px;
    }

    /* Mobile Grid Mode - All layouts become single column */
    .category-tiles__grid--count-3,
    .category-tiles__grid--count-4,
    .category-tiles__grid--count-5,
    .category-tiles__grid--count-6,
    .category-tiles__grid--count-7,
    .category-tiles__grid--count-8,
    .category-tiles__grid--count-9,
    .category-tiles__grid--count-10 {
      grid-template-columns: 1fr !important;
      grid-template-rows: auto !important;
    }

    .category-tiles__grid .category-tile {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
      min-height: 300px;
    }

    .category-tile__content {
      padding: 1.5rem;
    }

    .category-tile__name {
      font-size: 1.375rem;
    }

    .category-tile__button {
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
    }

    /* ======================= */
    /* MOBILE SLIDER MODE ONLY */
    /* ======================= */
    .category-tiles__container.has-slider-mobile {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 15px;
    }

    .category-tiles__container.has-slider-mobile .category-tiles__arrow {
      display: flex;
      width: 36px;
      height: 36px;
      min-width: 36px;
    }

    .category-tiles__container.has-slider-mobile .category-tiles__arrow svg {
      width: 18px;
      height: 18px;
    }

    .category-tiles__container.has-slider-mobile .category-tiles__wrapper {
      flex: 1;
      overflow: hidden;
    }

    .category-tiles__container.has-slider-mobile .category-tiles__grid {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      gap: 1rem;
    }

    .category-tiles__container.has-slider-mobile .category-tile {
      flex: 0 0 auto;
      width: calc(100vw - 120px);
      min-height: 350px;
      grid-column: auto !important;
      grid-row: auto !important;
    }
  }

  /* ======================= */
  /* TABLET & DESKTOP SLIDER */
  /* ======================= */
  @media (min-width: 768px) and (max-width: 1023px) {
    .category-tiles__container.has-slider-desktop {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 40px;
    }

    .category-tiles__container.has-slider-desktop .category-tiles__arrow {
      display: flex;
    }

    .category-tiles__container.has-slider-desktop .category-tiles__wrapper {
      flex: 1;
      overflow: hidden;
    }

    .category-tiles__container.has-slider-desktop .category-tiles__grid {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      gap: 20px;
    }

    .category-tiles__container.has-slider-desktop .category-tile {
      flex: 0 0 auto;
      width: calc((100% - 20px) / 2);
      min-height: 380px;
      grid-column: auto !important;
      grid-row: auto !important;
    }
  }

  @media (min-width: 1024px) {
    .category-tiles__container.has-slider-desktop {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 60px;
    }

    .category-tiles__container.has-slider-desktop .category-tiles__arrow {
      display: flex;
    }

    .category-tiles__container.has-slider-desktop .category-tiles__wrapper {
      flex: 1;
      overflow: hidden;
    }

    .category-tiles__container.has-slider-desktop .category-tiles__grid {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      gap: 20px;
    }

    .category-tiles__container.has-slider-desktop .category-tile {
      flex: 0 0 auto;
      width: calc((100% - 40px) / 3);
      min-height: 420px;
      grid-column: auto !important;
      grid-row: auto !important;
    }
  }

  @media (min-width: 1400px) {
    .category-tiles__container.has-slider-desktop {
      padding: 0 80px;
    }

    .category-tiles__container.has-slider-desktop .category-tile {
      width: calc((100% - 60px) / 4);
      min-height: 450px;
    }
  }
/* END_SECTION:category-tiles */

/* START_SECTION:collection-page (INDEX:4, SCOPED:FALSE) */
.collection-page {
    padding: 0 0 4rem;
  }

  .collection-page__container {
    max-width: 100%;
    padding: 0;
  }

  /* Banner Header - Full Width */
  .collection-page__banner {
    position: relative;
    height: 280px;
    overflow: hidden;
    width: 100%;
  }

  .collection-page__banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-page__banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  }

  .collection-page__banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #fff;
    text-align: center;
  }

  .collection-page__banner-content .collection-page__title {
    color: #fff;
  }

  .collection-page__banner-content .collection-page__description {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
  }

  /* Simple Header - Full Width */
  .collection-page__header-simple {
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .collection-page__title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    line-height: 1.2;
  }

  .collection-page__description {
    font-size: 0.9375rem;
    color: var(--color-foreground-muted);
    line-height: 1.6;
    margin: 0;
  }

  /* Mobile Filter Toggle Button */
  .collection-page__filter-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    margin: 1rem 0;
    transition: all 0.2s ease;
  }

  .collection-page__filter-toggle:hover {
    border-color: var(--color-foreground);
  }

  .collection-page__filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.375rem;
    background: var(--color-foreground);
    color: var(--color-background);
    border-radius: 10px;
    font-size: 0.6875rem;
    font-weight: 600;
  }

  /* Mobile Filter Drawer */
  .collection-page__filter-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
  }

  .collection-page__filter-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .collection-page__filter-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .collection-page__filter-drawer.is-open .collection-page__filter-drawer-overlay {
    opacity: 1;
  }

  .collection-page__filter-drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    background: var(--color-background);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .collection-page__filter-drawer.is-open .collection-page__filter-drawer-content {
    transform: translateX(0);
  }

  .collection-page__filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
  }

  .collection-page__filter-drawer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
  }

  .collection-page__filter-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
  }

  .collection-page__filter-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 1.25rem;
  }

  .collection-page__filter-drawer-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-background);
  }

  .collection-page__filter-drawer-clear {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-foreground);
    transition: all 0.2s ease;
  }

  .collection-page__filter-drawer-clear:hover {
    border-color: var(--color-foreground);
  }

  .collection-page__filter-drawer-apply {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1rem;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .collection-page__filter-drawer-apply:hover {
    opacity: 0.9;
  }

  /* Layout */
  .collection-page__layout {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .collection-page__sidebar {
    display: none;
  }

  /* Toolbar */
  .collection-page__toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .collection-page__results {
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
  }

  .collection-page__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .collection-page__sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .collection-page__sort-label {
    font-size: 0.8125rem;
    color: var(--color-foreground-muted);
    display: none;
  }

  .collection-page__sort-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .collection-page__sort-select {
    appearance: none;
    padding: 0.625rem 2rem 0.625rem 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-background);
    font-size: 0.875rem;
    cursor: pointer;
    min-width: 140px;
  }

  .collection-page__sort-wrapper svg {
    position: absolute;
    right: 0.625rem;
    pointer-events: none;
    color: var(--color-foreground-muted);
  }

  /* Products Grid */
  .collection-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
  }

  /* List view adjustments for product cards */
  .collection-page__grid.view-list .product-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    height: auto;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem;
    transition: box-shadow 0.2s ease;
  }

  .collection-page__grid.view-list .product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .collection-page__grid.view-list .product-card__link {
    display: contents;
  }

  .collection-page__grid.view-list .product-card__media {
    aspect-ratio: 1;
    width: 140px;
    height: 140px;
    border-radius: 6px;
  }

  .collection-page__grid.view-list .product-card__info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .collection-page__grid.view-list .product-card__vendor {
    font-size: 0.75rem;
  }

  .collection-page__grid.view-list .product-card__title {
    font-size: 1rem;
    font-weight: 600;
    -webkit-line-clamp: 2;
  }

  .collection-page__grid.view-list .product-card__price {
    margin-top: 0.25rem;
  }

  .collection-page__grid.view-list .product-card__price-regular,
  .collection-page__grid.view-list .product-card__price-sale {
    font-size: 1.125rem;
  }

  .collection-page__grid.view-list .product-card__form {
    margin-top: 0.75rem;
  }

  .collection-page__grid.view-list .product-card__add-to-cart {
    max-width: 180px;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .collection-page__grid.view-list .product-card__actions {
    opacity: 1;
    transform: translateX(0);
    position: static;
    flex-direction: row;
    margin-top: 0.5rem;
  }

  .collection-page__grid.view-list .product-card__action {
    width: 32px;
    height: 32px;
  }

  /* Loading State */
  .collection-page__main.is-loading {
    opacity: 0.5;
    pointer-events: none;
  }

  /* Infinite Scroll Loader */
  .collection-page__loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 1rem;
    color: var(--color-foreground-muted);
  }

  .collection-page__loader-text {
    font-size: 0.875rem;
  }

  /* Collection End Message */
  .collection-page__end {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--color-foreground-muted);
    font-size: 0.875rem;
  }

  /* Empty State */
  .collection-page__empty {
    text-align: center;
    padding: 4rem 1rem;
  }

  .collection-page__empty-icon {
    color: var(--color-foreground-muted);
    margin-bottom: 1.5rem;
    opacity: 0.5;
  }

  .collection-page__empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
  }

  .collection-page__empty-text {
    font-size: 0.9375rem;
    color: var(--color-foreground-muted);
    margin: 0 0 1.5rem;
  }

  .collection-page__empty-btn {
    display: inline-flex;
    padding: 0.875rem 2rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
  }

  .collection-page__empty-btn:hover {
    opacity: 0.9;
  }

  /* Floating Filter Button */
  .collection-page__floating-filter {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .collection-page__floating-filter:hover {
    background: var(--color-foreground);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .collection-page__floating-filter:active {
    transform: translateY(-2px);
  }

  .collection-page__floating-filter-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.375rem;
    background: #dc2626;
    color: #fff;
    border: 2px solid var(--color-background);
    border-radius: 11px;
    font-size: 0.6875rem;
    font-weight: 700;
  }

  /* Mobile adjustments for floating filter button */
  @media (max-width: 767px) {
    .collection-page__floating-filter {
      right: 1rem;
      bottom: calc(4rem + env(safe-area-inset-bottom) + 1rem);
      width: 44px;
      height: 44px;
    }
  }

  /* Tablet */
  @media (min-width: 768px) {
    .collection-page__container {
      padding: 0;
    }

    .collection-page__banner {
      height: 320px;
    }

    .collection-page__title {
      font-size: 2.25rem;
    }

    .collection-page__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .collection-page__sort-label {
      display: block;
    }

    /* List view - larger image on tablet */
    .collection-page__grid.view-list .product-card {
      grid-template-columns: 180px 1fr;
      gap: 1.5rem;
      padding: 1.25rem;
    }

    .collection-page__grid.view-list .product-card__media {
      width: 180px;
      height: 180px;
    }

    .collection-page__grid.view-list .product-card__title {
      font-size: 1.125rem;
      -webkit-line-clamp: 2;
    }

    .collection-page__grid.view-list .product-card__add-to-cart {
      max-width: 200px;
    }
  }

  /* Desktop */
  @media (min-width: 1024px) {
    .collection-page__container {
      padding: 0;
    }

    .collection-page__filter-toggle {
      display: none;
    }

    .collection-page__layout {
      grid-template-columns: 260px 1fr;
      gap: 2rem;
      margin-top: 2rem;
      padding: 0 2rem;
    }

    .collection-page__sidebar {
      display: block;
    }

    .collection-page__grid {
      grid-template-columns: repeat(var(--columns, 4), 1fr);
      gap: 1.5rem;
    }

    /* List view - even larger on desktop */
    .collection-page__grid.view-list .product-card {
      grid-template-columns: 220px 1fr;
      gap: 2rem;
      padding: 1.5rem;
    }

    .collection-page__grid.view-list .product-card__media {
      width: 220px;
      height: 220px;
    }

    .collection-page__grid.view-list .product-card__title {
      font-size: 1.25rem;
      -webkit-line-clamp: 2;
    }

    .collection-page__grid.view-list .product-card__price-regular,
    .collection-page__grid.view-list .product-card__price-sale {
      font-size: 1.25rem;
    }

    .collection-page__grid.view-list .product-card__add-to-cart {
      max-width: 220px;
      padding: 0.75rem 1.25rem;
    }
  }

  /* Large Desktop */
  @media (min-width: 1440px) {
    .collection-page__container {
      padding: 0;
    }

    .collection-page__layout {
      grid-template-columns: 280px 1fr;
      gap: 3rem;
      padding: 0 3rem;
    }

    .collection-page__grid {
      gap: 2rem;
    }
  }
/* END_SECTION:collection-page */

/* START_SECTION:collections-list (INDEX:5, SCOPED:FALSE) */
.collections-list-page {
    padding: 2rem 0 4rem;
  }

  .collections-list-page__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
  }

  .collections-list-page__header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .collections-list-page__title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
  }

  .collections-list-page__description {
    font-size: 1.0625rem;
    color: var(--color-foreground-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .collections-list-page__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  /* Collection Card */
  .collection-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
  }

  .collection-card__image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
  }

  .collection-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .collection-card:hover .collection-card__image {
    transform: scale(1.05);
  }

  .collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  }

  .collection-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    color: var(--color-foreground-muted);
  }

  .collection-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #fff;
  }

  .collection-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.375rem;
    line-height: 1.2;
  }

  .collection-card__count {
    font-size: 0.875rem;
    margin: 0 0 1rem;
    opacity: 0.85;
  }

  .collection-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #fff;
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
  }

  .collection-card:hover .collection-card__btn {
    gap: 0.75rem;
    background: var(--color-foreground);
    color: var(--color-background);
  }

  /* Tablet */
  @media (min-width: 640px) {
    .collections-list-page__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Desktop */
  @media (min-width: 1024px) {
    .collections-list-page__header {
      padding: 0 2rem;
    }

    .collections-list-page__grid {
      grid-template-columns: repeat(var(--columns, 3), 1fr);
      gap: 2rem;
      padding: 0 2rem;
    }

    .collection-card__title {
      font-size: 1.75rem;
    }

    .collection-card__content {
      padding: 2rem;
    }
  }
/* END_SECTION:collections-list */

/* START_SECTION:featured-collections (INDEX:6, SCOPED:FALSE) */
.featured-collections {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }

  .featured-collections__header {
    padding: 0 1.5rem;
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

  .featured-collections__subtitle {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-foreground-muted, #6b7280);
    margin-bottom: 0.5rem;
  }

  .featured-collections__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.025em;
    color: var(--color-foreground, #1f2937);
  }

  .featured-collections__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .collection-card {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    border-radius: 8px;
  }

  .collection-card__media {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .collection-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9fafb;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .collection-card:hover .collection-card__media img {
    transform: scale(1.08);
  }

  .collection-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  }

  .collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top, 
      rgba(0, 0, 0, 0.7) 0%, 
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0) 70%
    );
    z-index: 2;
    transition: background 0.4s ease;
  }

  .collection-card:hover .collection-card__overlay {
    background: linear-gradient(
      to top, 
      rgba(0, 0, 0, 0.8) 0%, 
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  .collection-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    z-index: 3;
  }

  .collection-card--centered .collection-card__content {
    top: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .collection-card__title {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .collection-card__count {
    font-size: 0.813rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.02em;
  }

  .collection-card__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.688rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.375rem;
    padding: 0.313rem 0;
    border-bottom: 2px solid currentColor;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .collection-card:hover .collection-card__button {
    opacity: 1;
    transform: translateY(0);
  }

  .featured-collections__footer {
    text-align: center;
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    padding: 0 1.5rem;
  }

  .featured-collections__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground, #1f2937);
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border: 2px solid var(--color-border, #e5e7eb);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .featured-collections__view-all .material-symbols-outlined {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
  }

  .featured-collections__view-all:hover {
    background: var(--color-foreground, #1f2937);
    color: var(--color-background, #ffffff);
    border-color: var(--color-foreground, #1f2937);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .featured-collections__view-all:hover .material-symbols-outlined {
    transform: translateX(4px);
  }

  /* Responsive Grid Adjustments */
  @media (min-width: 1024px) {
    .featured-collections__grid {
      gap: var(--card-gap, 1.5rem);
    }
  }

  @media (min-width: 1441px) {
    .featured-collections__grid {
      gap: calc(var(--card-gap, 1.5rem) + 0.5rem);
    }

    .collection-card {
      aspect-ratio: 3/4;
    }
  }

  @media (max-width: 1024px) {
    .featured-collections__grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .featured-collections {
      padding: 3rem 0;
    }

    .featured-collections__header,
    .featured-collections__grid,
    .featured-collections__footer {
      padding: 0 1rem;
    }

    .featured-collections__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }

    .collection-card {
      aspect-ratio: 3/4;
    }
  }

  @media (max-width: 640px) {
    .featured-collections__grid {
      grid-template-columns: 1fr;
    }

    .collection-card {
      aspect-ratio: 4/5;
      max-height: 500px;
    }

    .collection-card__content {
      padding: 1.5rem;
    }

    .collection-card__button {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* END_SECTION:featured-collections */

/* START_SECTION:footer (INDEX:7, SCOPED:FALSE) */
/* Sticky Back to Top Button */
  .back-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 50px;
    height: 50px;
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .back-to-top:hover {
    background: #374151;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .back-to-top:active {
    transform: translateY(-2px);
  }

  /* Hide back-to-top button on collection page */
  .template-collection .back-to-top {
    display: none !important;
  }

  /* Footer Styles */
  .footer {
    width: 100%;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
  }

  .footer__main {
    width: 100%;
    background: #f9fafb;
  }

  .footer__container {
    width: 100%;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
  }

  .footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer__logo img {
    height: 60px;
    width: auto;
  }

  .footer__logo-text {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    color: var(--color-foreground, #1f2937);
  }

  .footer__description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-foreground-muted, #6b7280);
    margin: 0.5rem 0;
  }

  .footer__hours {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-foreground-muted, #6b7280);
    margin: 0;
  }

  .footer__company {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer__company-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-foreground, #1f2937);
  }

  .footer__company-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-foreground, #1f2937);
  }

  .footer__menus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer__menu,
  .footer__social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer__menu-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-foreground, #1f2937);
    margin: 0;
  }

  .footer__menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__menu-link {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-foreground-muted, #6b7280);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer__menu-link:hover {
    color: var(--color-foreground, #1f2937);
  }

  .footer__social-icons {
    display: flex;
    gap: 0.75rem;
  }

  .footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-foreground, #1f2937);
    color: var(--color-background, #ffffff);
    transition: all 0.2s ease;
  }

  .footer__social-link:hover {
    background: var(--color-foreground-muted, #6b7280);
    transform: translateY(-2px);
  }

  .footer__social-link svg {
    width: 18px;
    height: 18px;
  }

  /* Bottom Bar */
  .footer__bottom {
    width: 100%;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
  }

  .footer__bottom-container {
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer__copyright {
    font-size: 0.75rem;
    color: #6b7280;
  }

  .footer__copyright p {
    margin: 0;
  }

  .footer__copyright a {
    color: inherit;
    text-decoration: none;
  }

  .footer__copyright a:hover {
    text-decoration: underline;
  }

  .footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .footer__localization {
    display: flex;
    gap: 0.75rem;
  }

  .footer__selector {
    position: relative;
  }

  .footer__selector select {
    appearance: none;
    padding: 0.625rem 2rem 0.625rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: white;
    color: #1f2937;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 16px;
  }

  .footer__selector select:hover {
    border-color: #6b7280;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .footer__container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .footer__menus {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .footer__container {
      padding: 2rem 1rem 1.5rem;
    }

    .footer__menus {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .footer__bottom-container {
      flex-direction: column;
      gap: 0.75rem;
      text-align: center;
      padding: 0.875rem 1rem;
    }

    .footer__bottom-right {
      flex-direction: row-reverse;
    }

    .back-to-top {
      right: 1rem;
      bottom: calc(4rem + env(safe-area-inset-bottom) + 1rem);
      width: 44px;
      height: 44px;
    }
  }

  @media (max-width: 480px) {
    .footer__menus {
      grid-template-columns: 1fr;
    }

    .back-to-top {
      right: 1rem;
      bottom: calc(4rem + env(safe-area-inset-bottom) + 1rem);
      width: 40px;
      height: 40px;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:8, SCOPED:FALSE) */
/* ===== MOBILE HEADER ===== */
  .header--mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-background);
  }

  .header--desktop {
    display: none;
  }

  .header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    gap: 1rem;
  }

  .header__logo {
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-foreground);
    letter-spacing: 0.05em;
  }

  .header__logo img {
    height: 40px;
    width: auto;
  }

  .header__search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-foreground-muted);
    font-size: 0.875rem;
    cursor: pointer;
  }

  /* Mobile Menu Drawer */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu.is-open .mobile-menu__overlay {
    opacity: 1;
  }

  .mobile-menu__drawer {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: var(--color-background);
    transform: translateX(-100%);
    transition: transform 0.3s ease, visibility 0s 0.3s;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom);
    overflow: hidden;
  }

  .mobile-menu.is-open .mobile-menu__drawer {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s ease, visibility 0s 0s;
  }

  .mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
  }

  .mobile-menu__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .mobile-menu__close {
    background: none;
    border: none;
    padding: 0.5rem;
    margin: -0.5rem;
    cursor: pointer;
    color: var(--color-foreground);
  }

  .mobile-menu__nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 0;
  }

  .mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-menu__link:active {
    background: var(--color-border);
  }

  .mobile-menu__link--highlight {
    color: #c41e3a;
    font-weight: 600;
  }

  .mobile-menu__link--parent {
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
  }

  .mobile-menu__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-foreground-muted);
    transition: transform 0.15s ease;
  }

  .mobile-menu__group.is-open .mobile-menu__arrow {
    transform: rotate(90deg);
  }

  .mobile-menu__nav.has-open-submenu .mobile-menu__group:not(.is-open),
  .mobile-menu__nav.has-open-submenu > a.mobile-menu__link {
    display: none;
  }

  .mobile-menu__submenu {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: none;
  }

  .mobile-menu__group.is-open .mobile-menu__submenu {
    max-height: 3000px;
    transition: max-height 0.25s ease-out;
  }

  .mobile-menu__category {
    padding: 0;
  }

  .mobile-menu__category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1.25rem 0.875rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-foreground);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
  }

  .mobile-menu__category-title:hover {
    background: rgba(0,0,0,0.03);
  }

  .mobile-menu__category-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-foreground-muted);
    transition: transform 0.15s ease;
  }

  .mobile-menu__category.is-open .mobile-menu__category-arrow {
    transform: rotate(90deg);
  }

  .mobile-menu__sublinks {
    max-height: 0;
    overflow: hidden;
    transition: none;
  }

  .mobile-menu__category.is-open .mobile-menu__sublinks {
    max-height: 2000px;
    transition: max-height 0.25s ease-out;
  }

  .mobile-menu__sublink {
    display: block;
    padding: 0.75rem 1.25rem 0.75rem 3.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-foreground);
    text-decoration: none;
    transition: background 0.15s ease;
  }

  .mobile-menu__sublink:hover {
    background: rgba(0,0,0,0.03);
  }

  .mobile-menu__sublink:active {
    background: rgba(0,0,0,0.06);
  }

  /* Mobile Bottom Navigation */
  .nav-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--color-background);
    border-top: 1px solid var(--color-border);
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(4rem + env(safe-area-inset-bottom));
  }

  .nav-bottom__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem;
    text-decoration: none;
    color: var(--color-foreground-muted);
    font-size: 0.625rem;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-bottom__item--active {
    color: var(--color-foreground);
  }

  .nav-bottom__item--active .icon {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  }

  .nav-bottom__badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 1rem;
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-foreground);
    color: var(--color-background);
    font-size: 0.625rem;
    font-weight: 600;
    border-radius: 100px;
    padding: 0 0.25rem;
  }

  /* ===== DESKTOP HEADER ===== */
  @media (min-width: 1024px) {
    .header--mobile,
    .nav-bottom {
      display: none;
    }

    .header--desktop {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--color-background);
    }

    .header__top-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 1.25rem 3rem;
      gap: 2rem;
    }

    .header__left {
      justify-self: start;
    }

    .header__center {
      justify-self: center;
    }

    .header__right {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .header__logo--desktop {
      font-size: 2rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      color: var(--color-foreground);
      text-decoration: none;
    }

    .header__logo--desktop img {
      height: 50px;
    }

    /* Search Bar - Pill Shape */
    .header__search-wrapper {
      position: relative;
      z-index: 101;
    }

    .header__search {
      position: relative;
      display: flex;
      align-items: center;
      width: 280px;
      height: 42px;
      background: #f5f5f5;
      border-radius: 50px;
      padding: 0 16px;
      border: 2px solid transparent;
      transition: all 0.25s ease;
    }

    .header__search:hover {
      border-color: #333;
      background: #fff;
    }

    .header__search:focus-within {
      border-color: #000;
      background: #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header__search.is-active {
      border-color: #000;
      background: #fff;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .header__search-icon {
      display: flex;
      align-items: center;
      color: #666;
      margin-right: 10px;
      flex-shrink: 0;
      transition: color 0.2s ease;
    }

    .header__search:hover .header__search-icon,
    .header__search:focus-within .header__search-icon {
      color: #333;
    }

    .header__search-input {
      flex: 1;
      height: 100%;
      border: none;
      background: transparent;
      font-size: 14px;
      color: var(--color-foreground);
      outline: none;
    }

    .header__search-input::placeholder {
      color: #999;
      transition: color 0.2s ease;
    }

    .header__search:hover .header__search-input::placeholder,
    .header__search:focus-within .header__search-input::placeholder {
      color: #666;
    }

    .header__search-input::-webkit-search-cancel-button,
    .header__search-input::-webkit-search-decoration {
      -webkit-appearance: none;
      appearance: none;
    }
  }

  /* ================================
     Full-Page Search Mega Panel
     (Global styles - works on all screen sizes)
     ================================ */
  .search-mega {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }

  .search-mega.is-open {
    display: block;
  }

  .search-mega__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .search-mega.is-open .search-mega__overlay {
    opacity: 1;
  }

  .search-mega__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .search-mega.is-open .search-mega__panel {
    transform: translateY(0);
  }

  /* Search Header */
  .search-mega__header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    gap: 12px;
  }

  .search-mega__form {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
  }

  .search-mega__form-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    gap: 12px;
  }

  .search-mega__icon {
    color: #666;
    display: flex;
    align-items: center;
  }

  .search-mega__input {
    flex: 1;
    font-size: 16px;
    font-weight: 300;
    border: none;
    outline: none;
    background: transparent;
    color: var(--color-foreground);
  }

  .search-mega__input::placeholder {
    color: #aaa;
  }

  /* Hide native browser clear button for search inputs */
  .search-mega__input::-webkit-search-cancel-button,
  .search-mega__input::-webkit-search-decoration,
  .search-mega__input::-webkit-search-results-button,
  .search-mega__input::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
  }

  .search-mega__input::-ms-clear {
    display: none;
    width: 0;
    height: 0;
  }

  .search-mega__back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #333;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .search-mega__back:hover {
    color: #000;
  }

  .search-mega__clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    color: #333;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 0;
    visibility: hidden;
  }

  .search-mega__clear.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .search-mega__clear:hover {
    background: #e0e0e0;
  }

  /* Search Content */
  .search-mega__content,
  .search-mega__results {
    flex: 1;
    overflow-y: auto;
    padding: 20px 16px;
  }

  .search-mega__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .search-mega__section {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
  }

  .search-mega__section:nth-child(1) { animation-delay: 0.1s; }
  .search-mega__section:nth-child(2) { animation-delay: 0.2s; }
  .search-mega__section:nth-child(3) { animation-delay: 0.3s; }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .search-mega__title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }

  /* Special Products - Mobile: Horizontal scroll */
  .search-mega__products {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .search-mega__products::-webkit-scrollbar {
    display: none;
  }

  .search-mega__product {
    flex: 0 0 120px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-foreground);
    transition: transform 0.2s ease;
  }

  .search-mega__product:hover {
    transform: translateY(-4px);
  }

  .search-mega__product-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 8px;
  }

  .search-mega__product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .search-mega__product:hover .search-mega__product-image img {
    transform: scale(1.05);
  }

  .search-mega__product-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
  }

  .search-mega__product-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 3px 6px;
    background: #c41e3a;
    color: #fff;
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
  }

  .search-mega__product-title {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .search-mega__product-price {
    font-size: 12px;
    color: #666;
  }

  /* Popular Categories - Mobile: Grid */
  .search-mega__categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .search-mega__category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    text-align: center;
    background: #f8f8f8;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-foreground);
    transition: background 0.2s ease;
  }

  .search-mega__category:hover {
    background: #f0f0f0;
  }

  .search-mega__category-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
  }

  .search-mega__category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .search-mega__category-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
  }

  .search-mega__category-name {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
  }

  /* Popular Searches */
  .search-mega__searches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .search-mega__search-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    transition: all 0.2s ease;
  }

  .search-mega__search-tag:hover {
    background: #333;
    color: #fff;
  }

  .search-mega__search-tag .material-symbols-outlined {
    font-size: 14px;
  }

  /* Search Results */
  .search-mega__results-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .search-mega__results-section {
    margin-bottom: 24px;
  }

  .search-mega__results-section[data-results-section]:empty,
  .search-mega__results-section:not(.has-results) {
    display: none;
  }

  .search-mega__results-section.has-results {
    display: block;
  }

  .search-mega__results-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .search-mega__result-product {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-foreground);
    transition: transform 0.2s ease;
  }

  .search-mega__result-product:hover {
    transform: translateY(-4px);
  }

  .search-mega__result-image {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 8px;
  }

  .search-mega__result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .search-mega__result-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ccc;
  }

  .search-mega__result-title {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.4;
  }

  .search-mega__result-title mark {
    background: #fff3cd;
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
  }

  .search-mega__result-price {
    font-size: 12px;
    color: #666;
  }

  .search-mega__result-price--sale {
    color: #c41e3a;
  }

  .search-mega__result-price s {
    color: #999;
    margin-right: 6px;
  }

  /* Results List (Collections/Pages) */
  .search-mega__results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .search-mega__results-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-foreground);
    transition: background 0.2s ease;
  }

  .search-mega__results-item:hover {
    background: #f5f5f5;
  }

  .search-mega__results-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 8px;
    color: #888;
  }

  .search-mega__results-item-text {
    font-size: 13px;
    font-weight: 500;
  }

  /* No Results */
  .search-mega__no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #666;
  }

  .search-mega__no-results-icon {
    color: #ccc;
    margin-bottom: 16px;
  }

  .search-mega__no-results p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px 0;
  }

  .search-mega__no-results-hint {
    font-size: 13px;
    color: #888;
  }

  /* View All */
  .search-mega__view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 300px;
    margin: 24px auto 0;
    padding: 14px 24px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.2s ease;
  }

  .search-mega__view-all:hover {
    background: #333;
    transform: translateY(-2px);
  }

  /* ===== Search Mega Panel - Desktop Enhancements ===== */
  @media (min-width: 768px) {
    .search-mega__header {
      padding: 20px 40px;
      gap: 16px;
    }

    .search-mega__back {
      width: 48px;
      height: 48px;
    }

    .search-mega__form-inner {
      gap: 16px;
    }

    .search-mega__input {
      font-size: 24px;
    }

    .search-mega__clear {
      width: 48px;
      height: 48px;
    }

    .search-mega__content,
    .search-mega__results {
      padding: 40px;
    }

    .search-mega__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }

    .search-mega__section:nth-child(3) {
      grid-column: span 2;
    }

    .search-mega__title {
      font-size: 13px;
      margin-bottom: 24px;
      padding-bottom: 12px;
    }

    /* Products - Grid on tablet+ */
    .search-mega__products {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      overflow-x: visible;
      padding-bottom: 0;
    }

    .search-mega__product {
      flex: none;
    }

    .search-mega__product-image {
      border-radius: 12px;
      margin-bottom: 12px;
    }

    .search-mega__product-badge {
      font-size: 10px;
      padding: 4px 10px;
      top: 8px;
      left: 8px;
    }

    .search-mega__product-title {
      font-size: 13px;
      -webkit-line-clamp: unset;
    }

    .search-mega__product-price {
      font-size: 13px;
    }

    /* Categories - List on tablet+ */
    .search-mega__categories {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .search-mega__category {
      flex-direction: row;
      gap: 14px;
      padding: 10px;
      text-align: left;
      background: transparent;
      border-radius: 10px;
    }

    .search-mega__category-image {
      width: 56px;
      height: 56px;
      border-radius: 10px;
    }

    .search-mega__category-name {
      font-size: 14px;
    }

    /* Search tags */
    .search-mega__searches {
      gap: 10px;
    }

    .search-mega__search-tag {
      padding: 10px 16px;
      font-size: 13px;
      gap: 8px;
    }

    .search-mega__search-tag .material-symbols-outlined {
      font-size: 16px;
    }

    /* Results */
    .search-mega__results-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 60px;
    }

    .search-mega__results-products {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .search-mega__result-image {
      border-radius: 10px;
      margin-bottom: 10px;
    }

    .search-mega__result-title {
      font-size: 13px;
    }

    .search-mega__result-price {
      font-size: 13px;
    }

    .search-mega__results-item {
      padding: 12px;
      gap: 12px;
    }

    .search-mega__results-item-icon {
      width: 40px;
      height: 40px;
    }

    .search-mega__results-item-text {
      font-size: 14px;
    }

    /* No Results */
    .search-mega__no-results {
      padding: 80px 20px;
    }

    .search-mega__no-results p {
      font-size: 18px;
    }

    .search-mega__no-results-hint {
      font-size: 14px;
    }

    /* View All */
    .search-mega__view-all {
      margin: 40px auto 0;
      padding: 16px 32px;
      font-size: 14px;
    }
  }

  /* Desktop - Larger grid */
  @media (min-width: 1024px) {
    .search-mega__grid {
      grid-template-columns: 1.5fr 1fr 1fr;
    }

    .search-mega__section:nth-child(3) {
      grid-column: span 1;
    }

    .search-mega__products {
      grid-template-columns: repeat(3, 1fr);
    }

    .search-mega__results-products {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* ===== DESKTOP HEADER - Continued ===== */
  @media (min-width: 1024px) {
    .header__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-foreground);
      text-decoration: none;
      transition: opacity 0.2s ease;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      font: inherit;
    }

    .header__icon:hover {
      opacity: 0.7;
    }

    .header__icon--cart {
      position: relative;
    }

    .header__cart-count {
      position: absolute;
      top: -4px;
      right: -6px;
      min-width: 1rem;
      height: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #c41e3a;
      color: #fff;
      font-size: 0.625rem;
      font-weight: 600;
      border-radius: 50%;
      padding: 0 0.25rem;
    }

    /* Desktop Menu Row */
    .header__menu-row {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 3rem;
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
    }

    /* Desktop Navigation */
    .header__nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      padding: 1rem 0;
    }

    .header__menu-item {
      position: relative;
    }

    .header__menu-link {
      display: block;
      position: relative;
      padding: 0.5rem 0;
      font-size: 0.8125rem;
      font-weight: 600;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--color-foreground);
      transition: color 0.2s ease;
      cursor: pointer;
    }

    .header__menu-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--color-foreground);
      transition: width 0.3s ease;
    }

    .header__menu-link:hover::after,
    .header__menu-item:hover .header__menu-link::after {
      width: 100%;
    }

    .header__menu-link:hover {
      color: var(--color-foreground);
    }

    .header__menu-link--highlight {
      color: #c41e3a;
    }

    .header__menu-link--highlight::after {
      background: #c41e3a;
    }

    .header__menu-link--highlight:hover {
      color: #a01830;
    }

    /* Mega Menu */
    .header__mega-menu {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 100%;
      width: 100vw;
      max-width: 100vw;
      background: var(--color-background);
      border-top: 1px solid var(--color-border);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, visibility 0.2s ease;
      z-index: 1000;
      display: none;
    }

    .header__menu-item:hover .header__mega-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      display: block;
    }

    .header__mega-menu-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2.5rem 4rem 4rem;
      display: flex;
      gap: 2rem;
    }

    /* Sidebar */
    .header__mega-menu-sidebar {
      min-width: 220px;
      width: 220px;
      border-right: 1px solid var(--color-border);
      padding-right: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .header__mega-menu-sidebar-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
      text-decoration: none;
      color: var(--color-foreground);
      font-size: 0.9375rem;
      font-weight: 400;
      border-bottom: 1px solid var(--color-border);
      transition: color 0.2s ease, padding-left 0.2s ease;
      cursor: pointer;
    }

    .header__mega-menu-sidebar-item:first-child {
      padding-top: 0;
    }

    .header__mega-menu-sidebar-item:last-child {
      border-bottom: none;
    }

    .header__mega-menu-sidebar-item:hover,
    .header__mega-menu-sidebar-item.is-active {
      color: #8B7355;
      padding-left: 0.25rem;
    }

    .header__mega-menu-sidebar-item.is-active .material-symbols-outlined {
      color: #8B7355;
    }

    .header__mega-menu-sidebar-item .material-symbols-outlined {
      font-size: 22px;
      color: #999;
      transition: color 0.2s ease;
    }

    .header__mega-menu-sidebar-item:hover .material-symbols-outlined {
      color: #8B7355;
    }

    .header__mega-menu-sidebar-arrow {
      margin-left: auto;
      opacity: 0.3;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .header__mega-menu-sidebar-item:hover .header__mega-menu-sidebar-arrow,
    .header__mega-menu-sidebar-item.is-active .header__mega-menu-sidebar-arrow {
      opacity: 0.6;
      transform: translateX(3px);
    }

    .header__mega-menu-sidebar-arrow .material-symbols-outlined {
      font-size: 18px;
    }

    /* Content Area */
    .header__mega-menu-content {
      flex: 1;
      display: none;
      gap: 4rem;
      padding-left: 2rem;
      padding-top: 0;
      flex-wrap: wrap;
      align-content: flex-start;
      opacity: 0;
      transform: translateX(15px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .header__mega-menu-content.is-active {
      display: flex;
      opacity: 1;
      transform: translateX(0);
    }

    .header__mega-menu-column {
      min-width: 150px;
      max-width: 180px;
      animation: fadeInColumn 0.4s ease forwards;
      opacity: 0;
    }

    .header__mega-menu-content.is-active .header__mega-menu-column {
      opacity: 1;
    }

    .header__mega-menu-content.is-active .header__mega-menu-column:nth-child(1) { animation-delay: 0s; }
    .header__mega-menu-content.is-active .header__mega-menu-column:nth-child(2) { animation-delay: 0.08s; }
    .header__mega-menu-content.is-active .header__mega-menu-column:nth-child(3) { animation-delay: 0.16s; }
    .header__mega-menu-content.is-active .header__mega-menu-column:nth-child(4) { animation-delay: 0.24s; }
    .header__mega-menu-content.is-active .header__mega-menu-column:nth-child(5) { animation-delay: 0.32s; }
    .header__mega-menu-content.is-active .header__mega-menu-column:nth-child(6) { animation-delay: 0.4s; }
    .header__mega-menu-content.is-active .header__mega-menu-column:nth-child(7) { animation-delay: 0.48s; }
    .header__mega-menu-content.is-active .header__mega-menu-column:nth-child(8) { animation-delay: 0.56s; }

    @keyframes fadeInColumn {
      from {
        opacity: 0;
        transform: translateY(15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .header__mega-menu-title {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--color-foreground);
      margin-bottom: 1.5rem;
      padding-bottom: 0.875rem;
      text-decoration: none;
      display: block;
      border-bottom: 1px solid var(--color-border);
      text-transform: capitalize;
      letter-spacing: 0.01em;
    }

    a.header__mega-menu-title:hover {
      color: #8B7355;
    }

    .header__mega-menu-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .header__mega-menu-link {
      font-size: 0.875rem;
      color: #555;
      text-decoration: none;
      transition: color 0.2s ease, padding-left 0.2s ease;
      line-height: 1.5;
    }

    .header__mega-menu-link:hover {
      color: var(--color-foreground);
      padding-left: 0.375rem;
    }

    /* Adjust body spacing for desktop */
    :root {
      --header-height: 7.5rem;
      --nav-bottom-height: 0px;
    }
  }

  /* Body spacing for fixed header/nav */
  :root {
    --header-height: 4rem;
    --nav-bottom-height: calc(4rem + env(safe-area-inset-bottom));
  }
/* END_SECTION:header */

/* START_SECTION:image-with-text (INDEX:10, SCOPED:FALSE) */
.image-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--image-text-bg, var(--color-background));
  }

  .image-text--small { min-height: 400px; }
  .image-text--medium { min-height: 500px; }
  .image-text--large { min-height: 600px; }

  .image-text--image-right .image-text__media {
    order: 2;
  }

  .image-text__media {
    position: relative;
    overflow: hidden;
  }

  .image-text__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9fafb;
  }

  .image-text__placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-border);
    opacity: 0.5;
  }

  .image-text__content {
    display: flex;
    align-items: center;
    padding: 4rem;
  }

  .image-text__inner {
    max-width: 500px;
  }

  .image-text__subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-foreground-muted);
    margin-bottom: 1rem;
  }

  .image-text__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
  }

  .image-text__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-foreground-muted);
    margin-bottom: 2rem;
  }

  .image-text__text p {
    margin: 0 0 1rem;
  }

  .image-text__text p:last-child {
    margin-bottom: 0;
  }

  .image-text__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-foreground);
    transition: all 0.3s ease;
  }

  .image-text__button .material-symbols-outlined {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
  }

  .image-text__button:hover .material-symbols-outlined {
    transform: translateX(4px);
  }

  @media (max-width: 1024px) {
    .image-text__content {
      padding: 3rem;
    }
  }

  @media (max-width: 768px) {
    .image-text {
      grid-template-columns: 1fr;
    }

    .image-text__media {
      aspect-ratio: 4/3;
    }

    .image-text--image-right .image-text__media {
      order: 0;
    }

    .image-text__content {
      padding: 2.5rem 1.5rem;
    }

    .image-text__inner {
      max-width: none;
    }
  }
/* END_SECTION:image-with-text */

/* START_SECTION:instagram-feed (INDEX:11, SCOPED:FALSE) */
.instagram-feed {
    padding: 4rem 0;
    background: var(--instagram-bg, var(--color-background));
  }

  .instagram-feed__header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
  }

  .instagram-feed__subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-foreground-muted);
    margin-bottom: 0.5rem;
  }

  .instagram-feed__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .instagram-feed__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 6), 1fr);
    gap: 4px;
  }

  .instagram-item {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
  }

  .instagram-item__media {
    width: 100%;
    height: 100%;
  }

  .instagram-item__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9fafb;
    transition: transform 0.4s ease;
  }

  .instagram-item:hover .instagram-item__media img {
    transform: scale(1.05);
  }

  .instagram-item__placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-border);
    opacity: 0.3;
  }

  .instagram-item__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .instagram-item:hover .instagram-item__overlay {
    opacity: 1;
  }

  .instagram-item__overlay .material-symbols-outlined {
    font-size: 2rem;
  }

  .instagram-feed__footer {
    text-align: center;
    margin-top: 2rem;
    padding: 0 1.5rem;
  }

  .instagram-feed__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--color-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
  }

  .instagram-feed__button:hover {
    background: var(--color-foreground);
    color: var(--color-background);
    border-color: var(--color-foreground);
  }

  .instagram-feed__button-icon {
    display: flex;
  }

  @media (max-width: 1024px) {
    .instagram-feed__grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 768px) {
    .instagram-feed {
      padding: 3rem 0;
    }

    .instagram-feed__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 480px) {
    .instagram-feed__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
/* END_SECTION:instagram-feed */

/* START_SECTION:lookbook (INDEX:12, SCOPED:FALSE) */
.lookbook {
    padding: 4rem 1.5rem;
    background: var(--lookbook-bg, var(--color-background));
  }

  .lookbook__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .lookbook__subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-foreground-muted);
    margin-bottom: 0.5rem;
  }

  .lookbook__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .lookbook__grid {
    display: grid;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .lookbook__grid--masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .lookbook__grid--masonry .lookbook__item:nth-child(3n+1) {
    grid-row: span 2;
  }

  .lookbook__grid--grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 400px;
  }

  .lookbook__grid--columns {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 500px;
  }

  .lookbook__item {
    position: relative;
    overflow: hidden;
  }

  .lookbook__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #ffffff;
  }

  .lookbook__media {
    width: 100%;
    height: 100%;
  }

  .lookbook__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9fafb;
    transition: transform 0.6s ease;
  }

  .lookbook__item:hover .lookbook__media img {
    transform: scale(1.05);
  }

  .lookbook__placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-border);
    opacity: 0.3;
  }

  .lookbook__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lookbook__item:hover .lookbook__overlay {
    opacity: 1;
  }

  .lookbook__item-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .lookbook__caption {
    font-size: 0.9375rem;
    margin: 0 0 1.5rem;
    opacity: 0.9;
    max-width: 300px;
  }

  .lookbook__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid currentColor;
  }

  .lookbook__cta .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.3s ease;
  }

  .lookbook__item:hover .lookbook__cta .material-symbols-outlined {
    transform: translateX(4px);
  }

  @media (max-width: 1024px) {
    .lookbook__grid--masonry {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 250px;
    }

    .lookbook__grid--masonry .lookbook__item:nth-child(3n+1) {
      grid-row: span 1;
    }

    .lookbook__grid--masonry .lookbook__item:nth-child(2n+1) {
      grid-row: span 2;
    }

    .lookbook__grid--grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 350px;
    }

    .lookbook__grid--columns {
      grid-template-columns: 1fr;
      grid-auto-rows: 400px;
    }
  }

  @media (max-width: 768px) {
    .lookbook {
      padding: 3rem 1.5rem;
    }

    .lookbook__grid--grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 400px;
    }

    .lookbook__item-title {
      font-size: 1.25rem;
    }

    .lookbook__caption {
      font-size: 0.875rem;
    }
  }

  @media (max-width: 640px) {
    .lookbook {
      padding: 2.5rem 1rem;
    }

    .lookbook__grid--masonry,
    .lookbook__grid--grid,
    .lookbook__grid--columns {
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }

    .lookbook__grid--masonry {
      grid-auto-rows: 300px;
    }

    .lookbook__grid--masonry .lookbook__item,
    .lookbook__grid--masonry .lookbook__item:nth-child(2n+1),
    .lookbook__grid--masonry .lookbook__item:nth-child(3n+1) {
      grid-row: span 1;
    }

    .lookbook__grid--grid {
      grid-auto-rows: 350px;
    }

    .lookbook__grid--columns {
      grid-auto-rows: 400px;
    }

    .lookbook__item {
      min-height: 300px;
    }

    .lookbook__overlay {
      opacity: 1;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 70%);
      justify-content: flex-end;
      align-items: flex-start;
      text-align: left;
      padding: 1.5rem;
    }

    .lookbook__item-title {
      font-size: 1.125rem;
    }

    .lookbook__caption {
      font-size: 0.8125rem;
      margin-bottom: 1rem;
    }
  }
/* END_SECTION:lookbook */

/* START_SECTION:newsletter (INDEX:13, SCOPED:FALSE) */
.newsletter {
    position: relative;
    padding: 5rem 2rem;
    background: var(--newsletter-bg, var(--color-foreground));
    color: var(--newsletter-text, var(--color-background));
    overflow: hidden;
  }

  .newsletter--center {
    text-align: center;
  }

  .newsletter--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    min-height: 500px;
  }

  .newsletter__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .newsletter--split .newsletter__media {
    position: relative;
  }

  .newsletter__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9fafb;
  }

  .newsletter__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .newsletter--split .newsletter__overlay {
    display: none;
  }

  .newsletter__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter--split .newsletter__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    max-width: none;
    margin: 0;
  }

  .newsletter__subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.5rem;
  }

  .newsletter__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
  }

  .newsletter__description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    opacity: 0.9;
  }

  .newsletter__form {
    margin-bottom: 1rem;
  }

  .newsletter__input-wrapper {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
  }

  .newsletter--center .newsletter__input-wrapper {
    margin: 0 auto;
  }

  .newsletter__input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: inherit;
    outline: none;
    transition: all 0.3s ease;
  }

  .newsletter__input::placeholder {
    color: inherit;
    opacity: 0.6;
  }

  .newsletter__input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .newsletter__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--newsletter-text, var(--color-background));
    color: var(--newsletter-bg, var(--color-foreground));
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .newsletter__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .newsletter__button .material-symbols-outlined {
    font-size: 1.125rem;
  }

  .newsletter__success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
    font-weight: 500;
  }

  .newsletter__error {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #fca5a5;
    font-size: 0.875rem;
  }

  .newsletter__disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
    margin: 1rem 0 0;
  }

  @media (max-width: 768px) {
    .newsletter {
      padding: 3rem 1.5rem;
    }

    .newsletter--split {
      grid-template-columns: 1fr;
    }

    .newsletter--split .newsletter__media {
      aspect-ratio: 16/9;
    }

    .newsletter--split .newsletter__content {
      padding: 2.5rem 1.5rem;
    }

    .newsletter__input-wrapper {
      flex-direction: column;
    }

    .newsletter__button {
      justify-content: center;
    }
  }
/* END_SECTION:newsletter */

/* START_SECTION:not-found (INDEX:14, SCOPED:FALSE) */
.not-found {
    min-height: calc(100vh - 140px - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--color-background, #ffffff);
  }

  .not-found__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
  }

  .not-found__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .not-found__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .not-found__number {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-foreground, #1f2937);
    opacity: 0.1;
    letter-spacing: -0.05em;
  }

  .not-found__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--color-foreground, #1f2937);
    letter-spacing: -0.02em;
  }

  .not-found__message {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-foreground-muted, #6b7280);
    margin: 0;
    max-width: 500px;
  }

  .not-found__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .not-found__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
  }

  .not-found__button .material-symbols-outlined {
    font-size: 1.25rem;
  }

  .not-found__button--primary {
    background: var(--color-foreground, #1f2937);
    color: var(--color-background, #ffffff);
  }

  .not-found__button--primary:hover {
    background: var(--color-foreground-muted, #374151);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .not-found__button--secondary {
    background: transparent;
    color: var(--color-foreground, #1f2937);
    border: 2px solid var(--color-border, #e5e7eb);
  }

  .not-found__button--secondary:hover {
    border-color: var(--color-foreground, #1f2937);
    background: var(--color-foreground, #1f2937);
    color: var(--color-background, #ffffff);
  }

  .not-found__suggestions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border, #e5e7eb);
  }

  .not-found__suggestions-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-foreground-muted, #6b7280);
    margin: 0 0 1rem;
  }

  .not-found__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .not-found__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-foreground, #1f2937);
    text-decoration: none;
    transition: all 0.2s ease;
    width: fit-content;
  }

  .not-found__link .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.2s ease;
  }

  .not-found__link:hover {
    color: var(--color-foreground-muted, #6b7280);
  }

  .not-found__link:hover .material-symbols-outlined {
    transform: translateX(4px);
  }

  .not-found__visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .not-found__image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 8px;
  }

  .not-found__svg {
    width: 100%;
    height: auto;
    max-width: 400px;
    color: var(--color-foreground, #1f2937);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .not-found__container {
      gap: 3rem;
    }
  }

  @media (max-width: 768px) {
    .not-found {
      min-height: calc(100vh - 60px - 4rem);
      padding: 3rem 1.5rem;
    }

    .not-found__container {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .not-found__visual {
      order: -1;
    }

    .not-found__svg,
    .not-found__image {
      max-width: 300px;
    }

    .not-found__actions {
      flex-direction: column;
    }

    .not-found__button {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .not-found {
      padding: 2.5rem 1rem;
    }

    .not-found__message {
      font-size: 1rem;
    }

    .not-found__suggestions {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
    }
  }
/* END_SECTION:not-found */

/* START_SECTION:page-about (INDEX:15, SCOPED:FALSE) */
.about-page {
  background: var(--color-background);
}

.about-hero {
  padding: 6rem 1.5rem;
  background: var(--hero-bg, #f8f8f8);
  text-align: center;
}

.about-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.about-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

.about-story {
  padding: 5rem 1.5rem;
}

.about-story__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-story__container {
    grid-template-columns: 1fr 1fr;
  }
}

.about-story__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.about-story__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.about-story__text {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.9;
}

.about-story__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-values {
  padding: 5rem 1.5rem;
  background: var(--color-background-alt, #f8f8f8);
}

.about-values__container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-values__title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 3rem;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about-value-card {
  background: var(--color-background);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.about-value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary, #000);
  color: var(--color-primary-contrast, #fff);
  border-radius: 50%;
}

.about-value-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.about-value-card__text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}

.about-mission {
  padding: 6rem 1.5rem;
  text-align: center;
}

.about-mission__container {
  max-width: 900px;
  margin: 0 auto;
}

.about-mission__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.about-mission__quote {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.about-custom {
  padding: 5rem 1.5rem;
}

.about-custom__container {
  max-width: 800px;
  margin: 0 auto;
}

.about-custom__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  text-align: center;
}

.about-custom__text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.page-rich-text {
  padding: 5rem 1.5rem;
}

.page-rich-text__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-rich-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-rich-text__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-rich-text__content {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}

.page-image-text {
  padding: 5rem 1.5rem;
}

.page-image-text__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-image-text.image-left .page-image-text__image {
  order: 1;
}

.page-image-text.image-left .page-image-text__content {
  order: 2;
}

.page-image-text.image-right .page-image-text__image {
  order: 2;
}

.page-image-text.image-right .page-image-text__content {
  order: 1;
}

.page-image-text__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-image-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-image-text__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-image-text__text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-image-text__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-image-text.image-left .page-image-text__image,
  .page-image-text.image-right .page-image-text__image {
    order: 1;
  }
  
  .page-image-text.image-left .page-image-text__content,
  .page-image-text.image-right .page-image-text__content {
    order: 2;
  }
}
/* END_SECTION:page-about */

/* START_SECTION:page-contact (INDEX:16, SCOPED:FALSE) */
.contact-page {
  background: var(--color-background);
}

.page-hero {
  padding: 5rem 1.5rem;
  text-align: center;
}

.page-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.page-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin: 0;
}

.page-rich-text {
  padding: 5rem 1.5rem;
}

.page-rich-text__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-rich-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-rich-text__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-rich-text__content {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}

.page-image-text {
  padding: 5rem 1.5rem;
}

.page-image-text__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-image-text.image-left .page-image-text__image {
  order: 1;
}

.page-image-text.image-left .page-image-text__content {
  order: 2;
}

.page-image-text.image-right .page-image-text__image {
  order: 2;
}

.page-image-text.image-right .page-image-text__content {
  order: 1;
}

.page-image-text__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-image-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-image-text__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-image-text__text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-image-text__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-image-text.image-left .page-image-text__image,
  .page-image-text.image-right .page-image-text__image {
    order: 1;
  }
  
  .page-image-text.image-left .page-image-text__content,
  .page-image-text.image-right .page-image-text__content {
    order: 2;
  }
}

.contact-page__form-section {
  padding: 4rem 1.5rem;
}

.contact-page__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-page__section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field label {
  font-weight: 500;
  font-size: 0.875rem;
}

.contact-form__field label .required {
  color: #e53935;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 4px;
  font-size: 1rem;
  background: var(--color-background);
  transition: border-color 0.2s;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-primary, #000);
}

.contact-form__submit {
  grid-column: 1 / -1;
  padding: 1rem 2rem;
  background: var(--color-primary, #000);
  color: var(--color-primary-contrast, #fff);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.contact-form__submit:hover {
  opacity: 0.9;
}

.contact-form__success {
  grid-column: 1 / -1;
  padding: 1rem;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 4px;
}

.contact-form__errors {
  grid-column: 1 / -1;
  padding: 1rem;
  background: #ffebee;
  color: #c62828;
  border-radius: 4px;
}

.contact-info-card,
.contact-hours-card {
  background: var(--color-background-alt, #f8f8f8);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary, #000);
  color: var(--color-primary-contrast, #fff);
  border-radius: 50%;
}

.contact-info-item__content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-item__content p,
.contact-info-item__content a {
  margin: 0;
  color: inherit;
  text-decoration: none;
}

.contact-info-item__content a:hover {
  text-decoration: underline;
}

.contact-hours-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.contact-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border, #e0e0e0);
}

.contact-hours-list li:last-child {
  border-bottom: none;
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .contact-form__field--full {
    grid-column: 1;
  }
}
/* END_SECTION:page-contact */

/* START_SECTION:page-featured (INDEX:17, SCOPED:FALSE) */
.featured-page {
  background: var(--color-background);
}

.page-hero {
  padding: 5rem 1.5rem;
  text-align: center;
}

.page-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.page-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin: 0;
}

.page-rich-text {
  padding: 5rem 1.5rem;
}

.page-rich-text__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-rich-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-rich-text__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-rich-text__content {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}

.page-image-text {
  padding: 5rem 1.5rem;
}

.page-image-text__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-image-text.image-left .page-image-text__image {
  order: 1;
}

.page-image-text.image-left .page-image-text__content {
  order: 2;
}

.page-image-text.image-right .page-image-text__image {
  order: 2;
}

.page-image-text.image-right .page-image-text__content {
  order: 1;
}

.page-image-text__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-image-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-image-text__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-image-text__text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-image-text__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-image-text.image-left .page-image-text__image,
  .page-image-text.image-right .page-image-text__image {
    order: 1;
  }
  
  .page-image-text.image-left .page-image-text__content,
  .page-image-text.image-right .page-image-text__content {
    order: 2;
  }
}

.featured-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.featured-page {
  padding: 0;
}

.featured-page__header {
  text-align: center;
  margin-bottom: 4rem;
}

.featured-page__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.featured-page__subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.featured-collection,
.featured-products {
  margin-bottom: 5rem;
}

.featured-collection__header,
.featured-products__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.featured-collection__title,
.featured-products__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.featured-collection__description,
.featured-products__description {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.featured-collection__grid,
.featured-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.featured-collection__footer {
  text-align: center;
  margin-top: 2.5rem;
}

.featured-collection__button {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: var(--color-primary, #000);
  color: var(--color-primary-contrast, #fff);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.featured-collection__button:hover {
  opacity: 0.9;
}

.featured-collection__empty,
.featured-products__empty {
  text-align: center;
  padding: 3rem;
  background: var(--color-background-alt, #f8f8f8);
  border-radius: 8px;
  opacity: 0.6;
}

.featured-banner {
  position: relative;
  margin-bottom: 4rem;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.featured-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 700px;
  color: var(--text-color, #fff);
}

.featured-banner__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.featured-banner__text {
  font-size: 1.25rem;
  margin: 0 0 1.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.featured-banner__button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-primary-contrast, #fff);
  color: var(--color-primary, #000);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.featured-banner__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .featured-collection__grid,
  .featured-products__grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  
  .featured-banner {
    min-height: 300px;
  }
}
/* END_SECTION:page-featured */

/* START_SECTION:page-privacy-policy (INDEX:18, SCOPED:FALSE) */
.privacy-policy-page {
  background: var(--color-background);
}

.page-hero {
  padding: 5rem 1.5rem;
  text-align: center;
}

.page-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.page-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin: 0;
}

.page-rich-text {
  padding: 5rem 1.5rem;
}

.page-rich-text__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-rich-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-rich-text__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-rich-text__content {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}

.page-image-text {
  padding: 5rem 1.5rem;
}

.page-image-text__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-image-text.image-left .page-image-text__image {
  order: 1;
}

.page-image-text.image-left .page-image-text__content {
  order: 2;
}

.page-image-text.image-right .page-image-text__image {
  order: 2;
}

.page-image-text.image-right .page-image-text__content {
  order: 1;
}

.page-image-text__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-image-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-image-text__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-image-text__text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-image-text__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-image-text.image-left .page-image-text__image,
  .page-image-text.image-right .page-image-text__image {
    order: 1;
  }
  
  .page-image-text.image-left .page-image-text__content,
  .page-image-text.image-right .page-image-text__content {
    order: 2;
  }
}

.privacy-policy-page__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.privacy-policy-page__header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 3rem;
}

.privacy-policy-page__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.privacy-policy-page__subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  margin: 0 0 1rem;
}

.privacy-policy-page__date {
  font-size: 0.9375rem;
  opacity: 0.7;
  margin: 0;
}

.privacy-policy-section {
  margin-bottom: 2.5rem;
}

.privacy-policy-section__title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--color-text, #000);
}

.privacy-policy-content {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.privacy-policy-content p {
  margin: 0 0 1rem;
}

.privacy-policy-content p:last-child {
  margin-bottom: 0;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.privacy-policy-content li {
  margin-bottom: 0.5rem;
}

.privacy-policy-content strong {
  font-weight: 600;
  color: var(--color-text, #000);
}

.privacy-policy-content a {
  color: var(--color-primary, #000);
  text-decoration: underline;
}

.privacy-policy-content a:hover {
  opacity: 0.8;
}

.privacy-policy-contact {
  background: var(--color-background-alt, #f8f8f8);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  margin: 3rem 0;
}

.privacy-policy-contact h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.privacy-policy-contact .privacy-policy-content {
  margin-bottom: 1.5rem;
}

.privacy-policy-contact__button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--color-primary, #000);
  color: var(--color-primary-contrast, #fff);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.privacy-policy-contact__button:hover {
  opacity: 0.9;
}

@media (max-width: 640px) {
  .privacy-policy-page__header {
    padding-top: 2rem;
  }
  
  .privacy-policy-section__title {
    font-size: 1.5rem;
  }
}
/* END_SECTION:page-privacy-policy */

/* START_SECTION:page-refund-policy (INDEX:19, SCOPED:FALSE) */
.policy-page {
  background: var(--color-background);
}

.page-hero {
  padding: 5rem 1.5rem;
  text-align: center;
}

.page-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.page-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin: 0;
}

.page-rich-text {
  padding: 5rem 1.5rem;
}

.page-rich-text__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-rich-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-rich-text__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-rich-text__content {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}

.page-image-text {
  padding: 5rem 1.5rem;
}

.page-image-text__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-image-text.image-left .page-image-text__image {
  order: 1;
}

.page-image-text.image-left .page-image-text__content {
  order: 2;
}

.page-image-text.image-right .page-image-text__image {
  order: 2;
}

.page-image-text.image-right .page-image-text__content {
  order: 1;
}

.page-image-text__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-image-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-image-text__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-image-text__text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-image-text__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-image-text.image-left .page-image-text__image,
  .page-image-text.image-right .page-image-text__image {
    order: 1;
  }
  
  .page-image-text.image-left .page-image-text__content,
  .page-image-text.image-right .page-image-text__content {
    order: 2;
  }
}

.policy-page {
  padding: 0;
}
  background: var(--color-background);
}

.policy-page__container {
  max-width: 900px;
  margin: 0 auto;  padding: 4rem 1.5rem;}

.policy-page__header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border, #e0e0e0);
}

.policy-page__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.policy-page__updated {
  font-size: 0.875rem;
  opacity: 0.6;
  margin: 0;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.policy-section__text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.policy-section__text ul,
.policy-section__text ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.policy-section__text li {
  margin-bottom: 0.5rem;
}

.policy-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policy-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.policy-step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary, #000);
  color: var(--color-primary-contrast, #fff);
  border-radius: 50%;
  font-weight: 600;
}

.policy-step__content {
  flex: 1;
}

.policy-step__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.policy-step__text {
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}

.policy-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.policy-info-card {
  background: var(--color-background-alt, #f8f8f8);
  padding: 1.5rem;
  border-radius: 8px;
}

.policy-info-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
  opacity: 0.7;
}

.policy-info-card__highlight {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-primary, #000);
}

.policy-info-card p:last-child {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

.policy-contact {
  background: var(--color-background-alt, #f8f8f8);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 3rem;
}

.policy-contact__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.policy-contact p {
  margin: 0 0 1.5rem;
  opacity: 0.8;
}

.policy-contact__button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--color-primary, #000);
  color: var(--color-primary-contrast, #fff);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.policy-contact__button:hover {
  opacity: 0.9;
}
/* END_SECTION:page-refund-policy */

/* START_SECTION:page-returns (INDEX:20, SCOPED:FALSE) */
.returns-page {
  background: var(--color-background);
}

.page-hero {
  padding: 5rem 1.5rem;
  text-align: center;
}

.page-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.page-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin: 0;
}

.page-rich-text {
  padding: 5rem 1.5rem;
}

.page-rich-text__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-rich-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-rich-text__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-rich-text__content {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}

.page-image-text {
  padding: 5rem 1.5rem;
}

.page-image-text__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-image-text.image-left .page-image-text__image {
  order: 1;
}

.page-image-text.image-left .page-image-text__content {
  order: 2;
}

.page-image-text.image-right .page-image-text__image {
  order: 2;
}

.page-image-text.image-right .page-image-text__content {
  order: 1;
}

.page-image-text__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-image-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-image-text__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-image-text__text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-image-text__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-image-text.image-left .page-image-text__image,
  .page-image-text.image-right .page-image-text__image {
    order: 1;
  }
  
  .page-image-text.image-left .page-image-text__content,
  .page-image-text.image-right .page-image-text__content {
    order: 2;
  }
}

.returns-page__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.returns-page__header {
  text-align: center;
  margin-bottom: 3rem;
}

.returns-page__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
}

.returns-page__container {
  max-width: 1000px;
  margin: 0 auto;
}

.returns-page__header {
  text-align: center;
  margin-bottom: 3rem;
}

.returns-page__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.returns-page__subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.returns-summary {
  margin-bottom: 4rem;
}

.returns-summary__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.returns-summary__card {
  background: var(--color-background-alt, #f8f8f8);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.returns-summary__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary, #000);
  color: var(--color-primary-contrast, #fff);
  border-radius: 50%;
}

.returns-summary__card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.returns-summary__card p {
  font-size: 0.9375rem;
  opacity: 0.8;
  margin: 0;
}

.returns-section {
  margin-bottom: 3rem;
}

.returns-section__title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.returns-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.returns-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.returns-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary, #000);
  color: var(--color-primary-contrast, #fff);
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.125rem;
}

.returns-step__content {
  flex: 1;
}

.returns-step__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.returns-step__text {
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}

.returns-content {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.returns-content ul,
.returns-content ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.returns-content li {
  margin-bottom: 0.5rem;
}

.returns-faq {
  margin: 3rem 0;
}

.returns-faq__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.returns-faq__item {
  background: var(--color-background-alt, #f8f8f8);
  border-radius: 8px;
  overflow: hidden;
}

.returns-faq__question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.returns-faq__question::-webkit-details-marker {
  display: none;
}

.returns-faq__question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.returns-faq__item[open] .returns-faq__question::after {
  transform: rotate(45deg);
}

.returns-faq__answer {
  padding: 0 1.5rem 1.25rem;
  opacity: 0.8;
  line-height: 1.6;
}

.returns-contact {
  background: var(--color-background-alt, #f8f8f8);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 3rem;
}

.returns-contact h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.returns-contact p {
  margin: 0 0 1.5rem;
  opacity: 0.8;
}

.returns-contact__button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--color-primary, #000);
  color: var(--color-primary-contrast, #fff);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.returns-contact__button:hover {
  opacity: 0.9;
}

@media (max-width: 640px) {
  .returns-summary__grid {
    grid-template-columns: 1fr;
  }
  
  .returns-step {
    flex-direction: column;
    gap: 1rem;
  }
}
/* END_SECTION:page-returns */

/* START_SECTION:page-size-chart (INDEX:21, SCOPED:FALSE) */
.size-chart-page {
  background: var(--color-background);
}

.page-hero {
  padding: 5rem 1.5rem;
  text-align: center;
}

.page-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.page-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin: 0;
}

.page-rich-text {
  padding: 5rem 1.5rem;
}

.page-rich-text__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-rich-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-rich-text__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-rich-text__content {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}

.page-image-text {
  padding: 5rem 1.5rem;
}

.page-image-text__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-image-text.image-left .page-image-text__image {
  order: 1;
}

.page-image-text.image-left .page-image-text__content {
  order: 2;
}

.page-image-text.image-right .page-image-text__image {
  order: 2;
}

.page-image-text.image-right .page-image-text__content {
  order: 1;
}

.page-image-text__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-image-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-image-text__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-image-text__text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-image-text__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-image-text.image-left .page-image-text__image,
  .page-image-text.image-right .page-image-text__image {
    order: 1;
  }
  
  .page-image-text.image-left .page-image-text__content,
  .page-image-text.image-right .page-image-text__content {
    order: 2;
  }
}

.size-chart-page__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.size-chart-page {
  padding: 0;
}

.size-chart-page__header {
  text-align: center;
  margin-bottom: 3rem;
}

.size-chart-page__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.size-chart-page__subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.size-chart-section {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--color-border, #e0e0e0);
}

.size-chart-section:last-of-type {
  border-bottom: none;
}

.size-chart-section__title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 2rem;
  color: var(--color-primary, #000);
}

.size-chart-category {
  margin-bottom: 3rem;
}

.size-chart-category:last-child {
  margin-bottom: 0;
}

.size-chart-category__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.size-chart-instructions {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.8;
}

.size-chart-instructions li {
  margin-bottom: 0.5rem;
}

.size-chart-note {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.size-chart-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 8px;
}

.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.size-chart-table thead {
  background: var(--color-background-alt, #f8f8f8);
}

.size-chart-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--color-border, #e0e0e0);
  white-space: nowrap;
}

.size-chart-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--color-border-light, #f0f0f0);
  text-align: left;
}

.size-chart-table tbody tr:hover {
  background: var(--color-background-alt, #fafafa);
}

.size-chart-table tbody tr:last-child td {
  border-bottom: none;
}

.size-chart-tip {
  font-size: 1rem;
  padding: 1.5rem;
  background: var(--color-background-alt, #f8f8f8);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary, #000);
  margin-top: 2rem;
}

.size-chart-custom {
  margin-bottom: 3rem;
}

.size-chart-custom__content {
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .size-chart-table {
    font-size: 0.875rem;
  }

  .size-chart-table th,
  .size-chart-table td {
    padding: 0.75rem 0.625rem;
  }
}
/* END_SECTION:page-size-chart */

/* START_SECTION:page-store-locations (INDEX:22, SCOPED:FALSE) */
.store-locations-page {
  background: var(--color-background);
}

.store-locations-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Hero Section */
.page-hero {
  padding: 5rem 1.5rem;
  text-align: center;
}

.page-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.page-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin: 0;
}

/* Rich Text */
.page-rich-text {
  padding: 5rem 1.5rem;
}

.page-rich-text__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-rich-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-rich-text__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-rich-text__content {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}

/* Image with Text */
.locations-image-text {
  width: 100%;
  padding: 4rem 0;
}

.locations-image-text__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.locations-image-text.image-left .locations-image-text__media {
  order: 1;
}

.locations-image-text.image-left .locations-image-text__content {
  order: 2;
}

.locations-image-text.image-right .locations-image-text__media {
  order: 2;
}

.locations-image-text.image-right .locations-image-text__content {
  order: 1;
}

.locations-image-text__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.locations-image-text__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.locations-image-text__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.locations-image-text__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary, #000);
  opacity: 0.7;
}

.locations-image-text__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--color-text, #000);
}

.locations-image-text__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-secondary, #666);
}

.locations-image-text__body p {
  margin: 0 0 1rem;
}

.locations-image-text__body p:last-child {
  margin-bottom: 0;
}

/* Store Card */
.store-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  background: var(--color-card-bg, #fff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.store-card__image {
  position: relative;
  height: 100%;
  min-height: 300px;
  background: var(--color-placeholder, #f5f5f5);
}

.store-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card__content {
  padding: 2.5rem 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.store-card__name {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}

.store-card__detail,
.store-card__hours {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.store-card__icon {
  flex-shrink: 0;
  color: var(--color-primary, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-icon-bg, #f5f5f5);
}

.store-card__text {
  flex: 1;
  line-height: 1.6;
  color: var(--color-text-secondary, #666);
}

.store-card__text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.store-card__text a:hover {
  color: var(--color-primary, #000);
}

.store-card__hours-text {
  margin-top: 0.5rem;
}

.store-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--color-button-bg, #000);
  color: var(--color-button-text, #fff);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
  width: fit-content;
}

.store-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .locations-image-text {
    padding: 3rem 0;
  }

  .locations-image-text__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .locations-image-text.image-left .locations-image-text__media,
  .locations-image-text.image-right .locations-image-text__media {
    order: 1;
  }

  .locations-image-text.image-left .locations-image-text__content,
  .locations-image-text.image-right .locations-image-text__content {
    order: 2;
  }

  .locations-image-text__heading {
    font-size: 1.75rem;
  }

  .store-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .store-card__image {
    min-height: 250px;
  }

  .store-card__content {
    padding: 2rem 1.5rem;
  }

  .store-card__name {
    font-size: 1.5rem;
  }
}
/* END_SECTION:page-store-locations */

/* START_SECTION:product-grid (INDEX:23, SCOPED:FALSE) */
.product-grid-section {
    padding: 4rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .product-grid-section__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .product-grid-section__subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-foreground-muted);
    margin-bottom: 0.5rem;
  }

  .product-grid-section__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 2rem 1.5rem;
  }

  .product-card {
    position: relative;
  }

  .product-card__link {
    text-decoration: none;
    color: inherit;
  }

  .product-card__media {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-border);
    margin-bottom: 1rem;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9fafb;
    transition: opacity 0.4s ease;
  }

  .product-card__image--secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
  }

  .product-card:hover .product-card__image--primary {
    opacity: 0;
  }

  .product-card:hover .product-card__image--secondary {
    opacity: 1;
  }

  .product-card__placeholder {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }

  .product-card__badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-card__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product-card__badge--sale {
    background: #dc2626;
    color: #ffffff;
  }

  .product-card__badge--new {
    background: var(--color-foreground);
    color: var(--color-background);
  }

  .product-card__badge--soldout {
    background: var(--color-foreground-muted);
    color: var(--color-background);
  }

  .product-card__quick-add {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .product-card__quick-add .material-symbols-outlined {
    font-size: 1rem;
  }

  .product-card:hover .product-card__quick-add {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .product-card__info {
    text-align: left;
  }

  .product-card__vendor {
    display: block;
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
  }

  .product-card__title {
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
    line-height: 1.4;
  }

  .product-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
  }

  .product-card__price--compare {
    text-decoration: line-through;
    color: var(--color-foreground-muted);
  }

  .product-card__price--sale {
    color: #dc2626;
    font-weight: 600;
  }

  .product-card__swatches {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
  }

  .product-card__swatch {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid var(--color-border);
  }

  .product-card__swatch-more {
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
  }

  .product-grid-section__footer {
    text-align: center;
    margin-top: 3rem;
  }

  .product-grid-section__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
  }

  .product-grid-section__view-all:hover {
    background: var(--color-foreground);
    color: var(--color-background);
  }

  @media (max-width: 1024px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .product-grid-section {
      padding: 3rem 1rem;
    }

    .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem 1rem;
    }

    .product-card__quick-add {
      display: none;
    }
  }
/* END_SECTION:product-grid */

/* START_SECTION:product-page (INDEX:24, SCOPED:FALSE) */
.product-page {
  padding: 1.5rem 0 4rem;
}

.product-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.product-page__layout {
  display: grid;
  gap: 2rem;
}

/* Breadcrumb */
.product-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-foreground-muted);
}

.product-page__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.product-page__breadcrumb a:hover {
  text-decoration: underline;
}

/* Vendor */
.product-page__vendor {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--color-foreground-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.product-page__vendor:hover {
  color: var(--color-foreground);
}

/* Title */
.product-page__title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1rem;
}

/* Price */
.product-page__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-page__price-current {
  font-size: 1.5rem;
  font-weight: 700;
}

.product-page__price-current.on-sale {
  color: #dc2626;
}

.product-page__price-compare {
  font-size: 1.125rem;
  color: var(--color-foreground-muted);
  text-decoration: line-through;
}

.product-page__price-save {
  padding: 0.25rem 0.75rem;
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 4px;
}

/* Short Description */
.product-page__short-desc {
  font-size: 0.9375rem;
  color: var(--color-foreground-muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

/* SKU */
.product-page__sku {
  font-size: 0.875rem;
  color: var(--color-foreground-muted);
  margin: 0 0 1.5rem;
}

.product-page__sku-label {
  font-weight: 500;
}

.product-page__sku-value {
  font-family: var(--font-primary--family);
}

/* Form */
.product-page__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Options */
.product-page__option {
  margin-bottom: 0.5rem;
}

.product-page__option-header {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.product-page__option-name {
  font-weight: 500;
}

.product-page__option-selected {
  color: var(--color-foreground-muted);
}

.product-page__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-page__option-item input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.product-page__option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 44px;
  padding: 0 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.product-page__option-item input:checked + .product-page__option-btn {
  border-color: var(--color-foreground);
  background: var(--color-foreground);
  color: var(--color-background);
}

.product-page__option-item:hover .product-page__option-btn {
  border-color: var(--color-foreground);
}

/* Unavailable option styles */
.product-page__option-item.is-unavailable .product-page__option-btn {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-page__option-item.is-unavailable .product-page__option-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--color-foreground);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
}

.product-page__option-item.is-unavailable:hover .product-page__option-btn {
  border-color: var(--color-border);
}

.product-page__option-item.is-unavailable input:disabled + .product-page__option-btn {
  cursor: not-allowed;
}

/* Color Swatches */
.product-page__option-values--colors {
  gap: 0.75rem;
}

.product-page__color-swatch {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.product-page__option-item--color input:checked + .product-page__color-swatch {
  border-color: var(--color-foreground);
  transform: scale(1.15);
}

/* Unavailable color styles */
.product-page__option-item--color.is-unavailable .product-page__color-swatch {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-page__option-item--color.is-unavailable .product-page__color-swatch::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 2px;
  background: var(--color-foreground);
  transform: translate(-50%, -50%) rotate(-45deg);
  pointer-events: none;
}

.product-page__option-item--color.is-unavailable:hover .product-page__color-swatch {
  transform: none;
}

.product-page__option-item--color.is-unavailable input:disabled + .product-page__color-swatch {
  cursor: not-allowed;
}

/* Quantity */
.product-page__quantity-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-page__quantity-label {
  font-size: 0.9375rem;
  font-weight: 500;
}

.product-page__quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}

.product-page__size-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-foreground);
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.2s;
}

.product-page__size-guide-link:hover {
  background: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

.product-page__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-foreground);
  transition: background 0.2s;
}

.product-page__qty-btn:hover {
  background: rgba(0,0,0,0.05);
}

.product-page__qty-btn:active {
  background: rgba(0,0,0,0.1);
}

.product-page__qty-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: 1rem;
  font-weight: 500;
  -moz-appearance: textfield;
}

.product-page__qty-input::-webkit-outer-spin-button,
.product-page__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Actions */
.product-page__actions {
  display: flex;
}

.product-page__add-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 54px;
  padding: 0 1.75rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.product-page__add-btn:hover:not(:disabled) {
  background: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-page__add-btn:active:not(:disabled) {
  transform: translateY(0);
}

.product-page__add-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.product-page__add-to-cart {
  width: 100%;
  height: 50px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.product-page__add-to-cart:hover:not(:disabled) {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-page__add-to-cart:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.product-page__buy-now {
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1.5px solid #000;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0;
}

.product-page__buy-now:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Trust */
.product-page__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.product-page__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-foreground-muted);
}

/* Accordion */
.product-page__accordion {
  margin-top: 0.5rem;
}

.product-page__accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.product-page__accordion-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.product-page__accordion-item summary::-webkit-details-marker {
  display: none;
}

.product-page__accordion-item summary svg {
  transition: transform 0.2s;
}

.product-page__accordion-item[open] summary svg {
  transform: rotate(180deg);
}

.product-page__accordion-body {
  padding-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-foreground-muted);
}

.product-page__accordion-body p {
  margin: 0;
}

/* Related */
.product-page__related {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.product-page__related-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  text-align: center;
}

.product-page__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile First - Base Styles */
@media (max-width: 767px) {
  .product-page {
    padding: 1rem 0 3rem;
  }

  .product-page__container {
    padding: 0 1rem;
  }

  .product-page__layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .product-page__media {
    margin: 0;
    width: 100%;
  }

  .product-page__title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }

  .product-page__price {
    margin-bottom: 0.75rem;
  }

  .product-page__price-current {
    font-size: 1.25rem;
  }

  .product-page__price-compare {
    font-size: 1rem;
  }

  .product-page__price-save {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }

  .product-page__sku {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }

  .product-page__form {
    gap: 1rem;
  }

  .product-page__option-header {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .product-page__option-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    font-size: 0.875rem;
  }

  .product-page__color-swatch {
    width: 32px;
    height: 32px;
  }

  .product-page__quantity-row {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .product-page__quantity-label {
    font-size: 0.875rem;
  }

  .product-page__quantity-wrapper {
    width: auto;
    flex-shrink: 0;
  }

  .product-page__qty-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .product-page__qty-input {
    height: 36px;
    width: 48px;
    font-size: 0.9375rem;
    flex-shrink: 0;
  }

  .product-page__add-btn {
    height: 48px;
    font-size: 0.9375rem;
  }

  .product-page__buy-now {
    height: 44px;
    font-size: 0.875rem;
  }

  .product-page__trust {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .product-page__trust-item {
    font-size: 0.75rem;
  }

  .product-page__accordion-item summary {
    padding: 0.875rem 0;
    font-size: 0.875rem;
  }

  .product-page__accordion-body {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .product-page__related {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }

  .product-page__related-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .product-page__related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .product-page__title {
    font-size: 2rem;
  }

  .product-page__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .product-page__media {
    margin: 0;
    width: 100%;
  }

  .product-page__trust {
    flex-direction: row;
  }

  .product-page__related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .product-page {
    padding: 2rem 0 5rem;
  }

  .product-page__container {
    padding: 0 2rem;
  }

  .product-page__layout {
    grid-template-columns: 50% 1fr;
    gap: 3rem;
    align-items: start;
  }

  .product-page__media {
    position: sticky;
    top: 2rem;
  }

  .product-page__title {
    font-size: 2.25rem;
  }

  .product-page__related-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .product-page__container {
    max-width: 1300px;
    padding: 0 2rem;
  }

  .product-page__layout {
    gap: 4rem;
  }

  .product-page__title {
    font-size: 2.5rem;
  }
}
/* END_SECTION:product-page */

/* START_SECTION:promo-banner (INDEX:25, SCOPED:FALSE) */
.promo-banner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    min-height: 300px;
    background: var(--promo-bg, var(--color-foreground));
    color: var(--promo-text, var(--color-background));
    overflow: hidden;
  }

  .promo-banner--left {
    justify-content: flex-start;
  }

  .promo-banner--center {
    justify-content: center;
    text-align: center;
  }

  .promo-banner--right {
    justify-content: flex-end;
  }

  .promo-banner--split {
    justify-content: space-between;
  }

  .promo-banner__media {
    position: absolute;
    inset: 0;
  }

  .promo-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9fafb;
  }

  .promo-banner--split .promo-banner__media {
    position: relative;
    width: 50%;
    flex-shrink: 0;
  }

  .promo-banner__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
  }

  .promo-banner--split .promo-banner__content {
    width: 50%;
    padding: 3rem;
  }

  .promo-banner__countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .promo-banner--left .promo-banner__countdown,
  .promo-banner--split .promo-banner__countdown {
    justify-content: flex-start;
  }

  .countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
  }

  .countdown__number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--promo-accent, var(--promo-text));
  }

  .countdown__label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
    opacity: 0.7;
  }

  .countdown__separator {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.5;
    margin-top: -1rem;
  }

  .promo-banner__subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--promo-accent, currentColor);
  }

  .promo-banner__title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .promo-banner__description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    opacity: 0.9;
  }

  .promo-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--promo-text, var(--color-background));
    color: var(--promo-bg, var(--color-foreground));
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
  }

  .promo-banner__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 1024px) {
    .promo-banner {
      padding: 3.5rem 2rem;
    }

    .promo-banner__content {
      max-width: 500px;
      padding: 1.5rem;
    }

    .promo-banner--split .promo-banner__content {
      padding: 2.5rem 2rem;
    }
  }

  @media (max-width: 768px) {
    .promo-banner {
      padding: 3rem 1.5rem;
      min-height: 300px;
    }

    .promo-banner--split {
      flex-direction: column;
      min-height: auto;
    }

    .promo-banner--split .promo-banner__media,
    .promo-banner--split .promo-banner__content {
      width: 100%;
    }

    .promo-banner--split .promo-banner__media {
      min-height: 300px;
      aspect-ratio: 16/9;
    }

    .promo-banner__content {
      padding: 1.5rem 1rem;
      max-width: 100%;
    }

    .promo-banner--split .promo-banner__content {
      padding: 2rem 1.5rem;
    }

    .promo-banner--left,
    .promo-banner--right {
      justify-content: center;
      text-align: center;
    }

    .promo-banner--left .promo-banner__countdown,
    .promo-banner--split .promo-banner__countdown {
      justify-content: center;
    }

    .countdown__item {
      min-width: 50px;
    }

    .countdown__number {
      font-size: 1.5rem;
    }

    .countdown__label {
      font-size: 0.5625rem;
    }

    .promo-banner__description {
      font-size: 0.9375rem;
    }
  }

  @media (max-width: 480px) {
    .promo-banner {
      padding: 2.5rem 1rem;
      min-height: 250px;
    }

    .promo-banner__content {
      padding: 1rem;
    }

    .promo-banner--split .promo-banner__content {
      padding: 1.5rem 1rem;
    }

    .promo-banner__countdown {
      gap: 0.25rem;
      margin-bottom: 1.25rem;
    }

    .countdown__item {
      min-width: 45px;
    }

    .countdown__number {
      font-size: 1.25rem;
    }

    .countdown__label {
      font-size: 0.5rem;
    }

    .countdown__separator {
      font-size: 1.25rem;
      margin-top: -0.75rem;
    }

    .promo-banner__button {
      width: 100%;
      padding: 1rem 1.5rem;
    }
  }
/* END_SECTION:promo-banner */

/* START_SECTION:rich-text (INDEX:26, SCOPED:FALSE) */
.rich-text {
    padding: 5rem 2rem;
    background: var(--richtext-bg, var(--color-background));
    color: var(--richtext-text, var(--color-foreground));
  }

  .rich-text__container {
    max-width: 800px;
    margin: 0 auto;
  }

  .rich-text--narrow .rich-text__container {
    max-width: 600px;
  }

  .rich-text--wide .rich-text__container {
    max-width: 1000px;
  }

  .rich-text--full .rich-text__container {
    max-width: 1200px;
  }

  .rich-text--left {
    text-align: left;
  }

  .rich-text--center {
    text-align: center;
  }

  .rich-text--right {
    text-align: right;
  }

  .rich-text__subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 1rem;
  }

  .rich-text__title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
  }

  .rich-text__content {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.9;
  }

  .rich-text__content p {
    margin: 0 0 1.5rem;
  }

  .rich-text__content p:last-child {
    margin-bottom: 0;
  }

  .rich-text__content a {
    color: inherit;
    font-weight: 500;
  }

  .rich-text__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--richtext-text, var(--color-foreground));
    color: var(--richtext-bg, var(--color-background));
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
  }

  .rich-text__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 768px) {
    .rich-text {
      padding: 3rem 1.5rem;
    }

    .rich-text__content {
      font-size: 1rem;
    }
  }
/* END_SECTION:rich-text */

/* START_SECTION:search-page (INDEX:27, SCOPED:FALSE) */
.search-page {
    min-height: calc(100vh - 140px - 4rem);
    padding: 3rem 2rem;
    background: var(--color-background, #ffffff);
  }

  .search-page__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .search-page__header {
    margin-bottom: 3rem;
    text-align: center;
  }

  .search-page__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 2rem;
    color: var(--color-foreground, #1f2937);
  }

  .search-page__form {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .search-page__input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
  }

  .search-page__icon {
    position: absolute;
    left: 1.25rem;
    display: flex;
    color: var(--color-foreground-muted, #6b7280);
    pointer-events: none;
  }

  .search-page__input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    font-size: 1rem;
    border: 2px solid var(--color-border, #e5e7eb);
    border-radius: 8px;
    background: var(--color-background, #ffffff);
    color: var(--color-foreground, #1f2937);
    transition: all 0.2s ease;
  }

  .search-page__input:focus {
    outline: none;
    border-color: var(--color-foreground, #1f2937);
  }

  .search-page__input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    background-size: contain;
    cursor: pointer;
  }

  .search-page__input::-webkit-search-cancel-button:hover {
    opacity: 0.7;
  }

  .search-page__submit {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--color-foreground, #1f2937);
    color: var(--color-background, #ffffff);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .search-page__submit:hover {
    background: var(--color-foreground-muted, #374151);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .search-page__results-count {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-foreground-muted, #6b7280);
    margin: 0 0 2rem;
  }

  .search-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
  }

  .search-result {
    background: var(--color-background, #ffffff);
    border: 1px solid var(--color-border, #e5e7eb);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .search-result:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  .search-result__link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .search-result__media {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--color-border, #e5e7eb);
  }

  .search-result__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .search-result__placeholder {
    width: 100%;
    height: 100%;
    opacity: 0.3;
  }

  .search-result__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
  }

  .search-result__badge--sale {
    background: #dc2626;
    color: #ffffff;
  }

  .search-result__badge--soldout {
    background: var(--color-foreground-muted, #6b7280);
    color: #ffffff;
  }

  .search-result__info {
    padding: 1.25rem;
  }

  .search-result__info--full {
    padding: 1.5rem;
  }

  .search-result__type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-foreground-muted, #6b7280);
    margin-bottom: 0.5rem;
  }

  .search-result__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--color-foreground, #1f2937);
    line-height: 1.4;
  }

  .search-result__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
  }

  .search-result__price--compare {
    text-decoration: line-through;
    color: var(--color-foreground-muted, #6b7280);
  }

  .search-result__price--sale {
    color: #dc2626;
    font-weight: 600;
  }

  .search-result__excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-foreground-muted, #6b7280);
    margin: 0;
  }

  .search-result__count {
    font-size: 0.875rem;
    color: var(--color-foreground-muted, #6b7280);
    margin: 0;
  }

  /* Empty State */
  .search-page__empty {
    text-align: center;
    padding: 4rem 2rem;
  }

  .search-page__empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--color-border, #e5e7eb);
    border-radius: 50%;
    margin-bottom: 1.5rem;
  }

  .search-page__empty-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--color-foreground-muted, #6b7280);
  }

  .search-page__empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--color-foreground, #1f2937);
  }

  .search-page__empty-text {
    font-size: 1rem;
    color: var(--color-foreground-muted, #6b7280);
    margin: 0 0 2rem;
  }

  .search-page__empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--color-foreground, #1f2937);
    color: var(--color-background, #ffffff);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .search-page__empty-button:hover {
    background: var(--color-foreground-muted, #374151);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Suggestions */
  .search-page__suggestions {
    padding: 2rem 0;
  }

  .search-page__popular {
    margin-bottom: 3rem;
  }

  .search-page__popular-title,
  .search-page__collections-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: var(--color-foreground, #1f2937);
  }

  .search-page__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .search-page__tag {
    display: inline-flex;
    padding: 0.625rem 1.25rem;
    background: var(--color-border, #e5e7eb);
    color: var(--color-foreground, #1f2937);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s ease;
  }

  .search-page__tag:hover {
    background: var(--color-foreground, #1f2937);
    color: var(--color-background, #ffffff);
  }

  .search-page__collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .search-page__collection-card {
    position: relative;
    aspect-ratio: 4/5;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
  }

  .search-page__collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .search-page__collection-card:hover img {
    transform: scale(1.05);
  }

  .search-page__collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #ffffff;
  }

  .search-page__collection-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
  }

  .search-page__collection-info span {
    font-size: 0.875rem;
    opacity: 0.9;
  }

  /* Pagination */
  .search-page__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border, #e5e7eb);
  }

  .search-page__pagination-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-border, #e5e7eb);
    color: var(--color-foreground, #1f2937);
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .search-page__pagination-link:hover {
    background: var(--color-foreground, #1f2937);
    color: var(--color-background, #ffffff);
  }

  .search-page__pagination-info {
    font-size: 0.9375rem;
    color: var(--color-foreground-muted, #6b7280);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .search-page {
      min-height: calc(100vh - 60px - 4rem);
      padding: 2rem 1.5rem;
    }

    .search-page__header {
      margin-bottom: 2rem;
    }

    .search-page__form {
      flex-direction: column;
    }

    .search-page__submit {
      width: 100%;
    }

    .search-page__grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .search-page__collections-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .search-page__pagination {
      gap: 1rem;
    }
  }

  @media (max-width: 480px) {
    .search-page {
      padding: 2rem 1rem;
    }

    .search-page__grid {
      grid-template-columns: 1fr;
    }

    .search-page__collections-grid {
      grid-template-columns: 1fr;
    }

    .search-page__pagination {
      flex-direction: column;
    }
  }
/* END_SECTION:search-page */

/* START_SECTION:testimonials (INDEX:28, SCOPED:FALSE) */
.testimonials {
    padding: 5rem 1.5rem;
    background: var(--testimonials-bg, #f8f8f8);
  }

  .testimonials__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .testimonials__subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-foreground-muted);
    margin-bottom: 0.5rem;
  }

  .testimonials__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .testimonials__slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
  }

  .testimonials__track {
    display: flex;
    transition: transform 0.5s ease;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
    padding: 2rem;
    text-align: center;
  }

  .testimonial-card__rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #f59e0b;
  }

  .testimonial-card__rating .material-symbols-outlined {
    font-size: 1.25rem;
  }

  .testimonial-card__quote {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    font-style: italic;
    margin: 0 auto 2rem;
    max-width: 800px;
    color: var(--color-foreground);
  }

  .testimonial-card__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .testimonial-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-card__info {
    text-align: left;
  }

  .testimonial-card__name {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .testimonial-card__role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
  }

  .testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .testimonials__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-background);
    color: var(--color-foreground);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .testimonials__arrow:hover {
    background: var(--color-foreground);
    color: var(--color-background);
  }

  .testimonials__dots {
    display: flex;
    gap: 0.5rem;
  }

  .testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .testimonials__dot.is-active {
    background: var(--color-foreground);
    transform: scale(1.25);
  }

  @media (min-width: 768px) {
    .testimonial-card {
      flex: 0 0 50%;
    }
  }

  @media (min-width: 1024px) {
    .testimonial-card {
      flex: 0 0 33.333%;
      padding: 2rem 1.5rem;
    }

    .testimonial-card__quote {
      font-size: 1rem;
    }
  }

  @media (max-width: 640px) {
    .testimonials {
      padding: 3rem 1rem;
    }

    .testimonial-card {
      padding: 1rem;
    }

    .testimonials__arrow {
      width: 40px;
      height: 40px;
    }
  }
/* END_SECTION:testimonials */

/* START_SECTION:video-hero (INDEX:29, SCOPED:FALSE) */
.video-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
  }

  .video-hero--medium { min-height: 70vh; }
  .video-hero--large { min-height: 85vh; }
  .video-hero--full { min-height: 100vh; }

  .video-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .video-hero__video,
  .video-hero__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f9fafb;
  }

  .video-hero__placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    opacity: 0.5;
  }

  .video-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--video-overlay, 0.4));
  }

  .video-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
  }

  .video-hero__subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }

  .video-hero__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .video-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 auto 2.5rem;
    max-width: 600px;
    opacity: 0.9;
  }

  .video-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
  }

  .video-hero__button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }

  .video-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
  }

  .video-hero__scroll-text {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
  }

  .video-hero__scroll-icon {
    display: flex;
    opacity: 0.7;
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }

  @media (max-width: 768px) {
    .video-hero__content {
      padding: 1.5rem;
    }

    .video-hero__description {
      font-size: 1rem;
    }

    .video-hero__button {
      padding: 1rem 2rem;
      width: 100%;
      max-width: 300px;
    }
  }
/* END_SECTION:video-hero */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:active-filters (INDEX:30, SCOPED:FALSE) */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .active-filters__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-foreground-muted);
  }

  .active-filters__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }

  .active-filters__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border-radius: 20px;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .active-filters__tag:hover {
    opacity: 0.85;
  }

  .active-filters__tag svg {
    opacity: 0.7;
  }

  .active-filters__tag:hover svg {
    opacity: 1;
  }

  .active-filters__clear {
    font-size: 0.8125rem;
    color: var(--color-foreground-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
  }

  .active-filters__clear:hover {
    color: var(--color-foreground);
  }
/* END_SNIPPET:active-filters */

/* START_SNIPPET:cart-drawer (INDEX:31, SCOPED:FALSE) */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    visibility: hidden;
  }

  .cart-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    cursor: pointer;
  }

  .cart-drawer.is-open .cart-drawer__overlay {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  }

  .cart-drawer.is-open .cart-drawer__panel {
    transform: translateX(0);
  }

  .cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-drawer__title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .cart-drawer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
  }

  .cart-drawer__count {
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
  }

  .cart-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
    border-radius: 50%;
    transition: background-color 0.2s;
  }

  .cart-drawer__close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem;
  }

  .cart-drawer__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--color-foreground-muted);
    gap: 1rem;
    padding: 2rem;
  }

  .cart-drawer__empty p {
    font-size: 1rem;
    margin: 0;
  }

  .cart-drawer__continue-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    transition: opacity 0.2s;
  }

  .cart-drawer__continue-btn:hover {
    opacity: 0.9;
  }

  .cart-drawer__footer {
    border-top: 1px solid var(--color-border);
    padding: 1rem 1.25rem;
    background-color: var(--color-background);
  }

  .cart-drawer__gift-wrap {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-drawer__gift-wrap-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
  }

  .cart-drawer__gift-wrap-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-foreground);
  }

  .cart-drawer__gift-wrap-icon {
    display: flex;
    color: var(--color-foreground-muted);
  }

  .cart-drawer__gift-wrap-text {
    flex: 1;
  }

  .cart-drawer__summary {
    margin-bottom: 1rem;
  }

  .cart-drawer__discounts {
    margin-bottom: 0.5rem;
  }

  .cart-drawer__discount {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #16a34a;
    margin-bottom: 0.25rem;
  }

  .cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
  }

  .cart-drawer__savings {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #16a34a;
    margin-top: 0.25rem;
  }

  .cart-drawer__taxes-note {
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
    margin-top: 0.5rem;
    text-align: right;
  }

  .cart-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cart-drawer__view-cart {
    display: block;
    text-align: center;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-foreground);
    color: var(--color-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s;
  }

  .cart-drawer__view-cart:hover {
    background-color: var(--color-foreground);
    color: var(--color-background);
  }

  .cart-drawer__checkout {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .cart-drawer__checkout:hover {
    opacity: 0.9;
  }

  .cart-drawer__checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Mobile adjustments */
  @media (max-width: 480px) {
    .cart-drawer__panel {
      max-width: 100%;
    }
  }
/* END_SNIPPET:cart-drawer */

/* START_SNIPPET:cart-item (INDEX:32, SCOPED:FALSE) */
.cart-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .cart-item__image-link {
    flex-shrink: 0;
    width: 80px;
  }

  .cart-item__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
  }

  .cart-item__image-placeholder {
    width: 80px;
    height: 107px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    color: var(--color-foreground-muted);
  }

  .cart-item__details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .cart-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cart-item__title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cart-item__title:hover {
    text-decoration: underline;
  }

  .cart-item__remove {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground-muted);
    border-radius: 4px;
    transition: all 0.2s;
  }

  .cart-item__remove:hover {
    color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
  }

  .cart-item__options,
  .cart-item__properties {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }

  .cart-item__option,
  .cart-item__property {
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
  }

  .cart-item__option-label,
  .cart-item__property-label {
    color: var(--color-foreground-muted);
  }

  .cart-item__option-value,
  .cart-item__property-value {
    color: var(--color-foreground);
  }

  .cart-item__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.5rem;
  }

  .cart-item__quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
  }

  .cart-item__quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
    transition: background-color 0.2s;
  }

  .cart-item__quantity-btn:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .cart-item__quantity-btn:disabled {
    color: var(--color-foreground-muted);
    cursor: not-allowed;
  }

  .cart-item__quantity-input {
    width: 36px;
    height: 28px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-size: 0.875rem;
    background: transparent;
    -moz-appearance: textfield;
  }

  .cart-item__quantity-input::-webkit-outer-spin-button,
  .cart-item__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-item__prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
  }

  .cart-item__price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .cart-item__price--sale {
    color: #dc2626;
  }

  .cart-item__price--original {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-foreground-muted);
    text-decoration: line-through;
  }

  .cart-item__unit-price {
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
  }

  .cart-item__discounts {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.25rem;
  }

  .cart-item__discount {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #16a34a;
  }
/* END_SNIPPET:cart-item */

/* START_SNIPPET:cart-notification (INDEX:33, SCOPED:FALSE) */
.cart-notification {
    position: fixed;
    top: 80px;
    right: 1rem;
    z-index: 999;
    width: 100%;
    max-width: 360px;
    background-color: var(--color-background);
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transform: translateX(calc(100% + 2rem));
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .cart-notification.is-visible {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .cart-notification__content {
    padding: 1rem;
  }

  .cart-notification__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .cart-notification__success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #16a34a;
    font-size: 0.875rem;
    font-weight: 500;
  }

  .cart-notification__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground-muted);
    border-radius: 50%;
    transition: background-color 0.2s;
  }

  .cart-notification__close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .cart-notification__product {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-notification__product-image {
    width: 64px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
  }

  .cart-notification__product-details {
    flex: 1;
    min-width: 0;
  }

  .cart-notification__product-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground);
    margin: 0 0 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cart-notification__product-variant {
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
    margin: 0 0 0.25rem;
  }

  .cart-notification__product-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin: 0;
  }

  .cart-notification__product-price--sale {
    color: #dc2626;
  }

  .cart-notification__product-price--original {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-foreground-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
  }

  .cart-notification__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .cart-notification__continue {
    flex: 1;
    padding: 0.75rem 1rem;
    background: none;
    border: 1px solid var(--color-border);
    color: var(--color-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .cart-notification__continue:hover {
    border-color: var(--color-foreground);
  }

  .cart-notification__view-cart {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .cart-notification__view-cart:hover {
    opacity: 0.9;
  }

  /* Mobile adjustments */
  @media (max-width: 480px) {
    .cart-notification {
      top: auto;
      bottom: calc(var(--nav-bottom-height) + 1rem);
      right: 0.5rem;
      left: 0.5rem;
      max-width: none;
    }
  }
/* END_SNIPPET:cart-notification */

/* START_SNIPPET:collection-filters (INDEX:34, SCOPED:FALSE) */
/* Filter Header */
.collection-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0.5rem;
}

.collection-filters__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.collection-filters__clear {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-foreground);
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.collection-filters__clear:hover {
  background: var(--color-foreground);
  color: var(--color-background);
  border-color: var(--color-foreground);
}

/* Form */
.facets-form {
  display: flex;
  flex-direction: column;
}

/* Filter Group */
.filter-group {
  border-bottom: 1px solid var(--color-border);
}

.filter-group__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  list-style: none;
}

.filter-group__summary::-webkit-details-marker {
  display: none;
}

.filter-group__summary svg {
  transition: transform 0.2s;
}

.filter-group:not([open]) .filter-group__summary svg {
  transform: rotate(-90deg);
}

.filter-group__content {
  padding-bottom: 1rem;
  position: relative;
  padding-top: 0.5rem;
}

.filter-group__clear {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: transparent;
  border: 1px solid #ddd;
  font-size: 0.75rem;
  color: #666;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.filter-group__clear:hover {
  background: #f5f5f5;
  border-color: #999;
  color: #000;
}

/* Filter List */
.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-height: 280px;
  overflow-y: auto;
}

.filter-list__item {
  margin: 0;
}

/* Color Swatches Filter */
.filter-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-color-swatch {
  cursor: pointer;
  position: relative;
}

.filter-color-swatch:hover {
  transform: scale(1.1);
}

.filter-color-swatch.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.filter-color-swatch__color {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ddd;
  transition: all 0.2s ease;
  display: block;
}

.filter-color-swatch.is-active .filter-color-swatch__color {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.filter-color-swatch__label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: #000;
  color: #fff;
  font-size: 0.75rem;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.filter-color-swatch__label::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #000;
}

.filter-color-swatch:hover .filter-color-swatch__label {
  opacity: 1;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Checkbox */
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.filter-checkbox:hover .filter-checkbox__label {
  color: var(--color-foreground);
}

.filter-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-checkbox__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s ease;
}

.filter-input:checked + .filter-checkbox__box {
  background: var(--color-foreground);
  border-color: var(--color-foreground);
}

.filter-input:checked + .filter-checkbox__box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid var(--color-background);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-input:disabled + .filter-checkbox__box {
  opacity: 0.4;
}

.filter-input:disabled ~ .filter-checkbox__label {
  opacity: 0.4;
  cursor: not-allowed;
}

.filter-checkbox__label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-foreground-muted);
  transition: color 0.2s;
}

.filter-checkbox__count {
  color: var(--color-foreground-muted);
  font-size: 0.8125rem;
}

/* Price Range Slider */
.filter-price-range {
  padding: 0.5rem 0;
}

.price-slider-container {
  position: relative;
  height: 50px;
  margin-bottom: 1rem;
  padding: 0 2px;
}

.price-slider-track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
}

.price-slider-range {
  position: absolute;
  height: 100%;
  background: var(--color-foreground);
  border-radius: 3px;
}

.price-slider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 30px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  z-index: 2;
  margin: 0;
  padding: 0;
}

.price-slider-min {
  z-index: 3;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--color-background);
  border: 2px solid var(--color-foreground);
  border-radius: 50%;
  cursor: grab;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.price-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.15);
}

.price-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--color-background);
  border: 2px solid var(--color-foreground);
  border-radius: 50%;
  cursor: grab;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.price-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
}

/* Price Inputs */
.price-range-inputs {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.price-input-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.price-input-label {
  font-size: 0.75rem;
  color: var(--color-foreground-muted);
  font-weight: 500;
}

.price-input-field {
  position: relative;
  display: flex;
  align-items: center;
}

.price-currency {
  position: absolute;
  left: 10px;
  font-size: 0.875rem;
  color: var(--color-foreground-muted);
  pointer-events: none;
  font-weight: 500;
  z-index: 1;
}

.filter-price-input {
  width: 100%;
  padding: 0.625rem 0.5rem 0.625rem 2.25rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.875rem;
  -moz-appearance: textfield;
  height: 40px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-price-input::-webkit-outer-spin-button,
.filter-price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter-price-input:focus {
  outline: none;
  border-color: var(--color-foreground);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.price-range-separator {
  font-size: 0.875rem;
  color: var(--color-foreground-muted);
  padding-bottom: 0.625rem;
  flex-shrink: 0;
}

.price-filter-go-btn {
  padding: 0.625rem 1rem;
  height: 40px;
  background: var(--color-foreground);
  color: var(--color-background);
  border: none;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-filter-go-btn:hover {
  opacity: 0.9;
}

/* Active Filters */
.active-filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.active-filters-wrapper:empty {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.active-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--color-foreground);
  color: var(--color-background);
  border-radius: 20px;
  font-size: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.active-filter:hover {
  opacity: 0.85;
}

.active-filter svg {
  width: 12px;
  height: 12px;
}

/* Noscript button */
.filter-apply-button {
  margin-top: 1rem;
  padding: 0.875rem 1.5rem;
  background: var(--color-foreground);
  color: var(--color-background);
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
/* END_SNIPPET:collection-filters */

/* START_SNIPPET:common-page-blocks (INDEX:36, SCOPED:FALSE) */
.page-hero {
  padding: 5rem 1.5rem;
  text-align: center;
}

.page-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
}

.page-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  margin: 0;
}

.page-rich-text {
  padding: 5rem 1.5rem;
}

.page-rich-text__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-rich-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-rich-text__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-rich-text__content {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: left;
}

.page-image-text {
  padding: 5rem 1.5rem;
}

.page-image-text__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-image-text.image-left .page-image-text__image {
  order: 1;
}

.page-image-text.image-left .page-image-text__content {
  order: 2;
}

.page-image-text.image-right .page-image-text__image {
  order: 2;
}

.page-image-text.image-right .page-image-text__content {
  order: 1;
}

.page-image-text__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-image-text__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.page-image-text__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.page-image-text__text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-image-text__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-image-text.image-left .page-image-text__image,
  .page-image-text.image-right .page-image-text__image {
    order: 1;
  }
  
  .page-image-text.image-left .page-image-text__content,
  .page-image-text.image-right .page-image-text__content {
    order: 2;
  }
}
/* END_SNIPPET:common-page-blocks */

/* START_SNIPPET:image (INDEX:39, SCOPED:FALSE) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:product-card (INDEX:41, SCOPED:FALSE) */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--color-background);
    overflow: hidden;
  }

  .product-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  .product-card__media {
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
    border-radius: 8px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: opacity 0.3s ease;
  }

  .product-card__image--secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  .product-card:hover .product-card__image--primary {
    opacity: 0;
  }

  .product-card:hover .product-card__image--secondary {
    opacity: 1;
  }

  .product-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-foreground-muted);
    background: #f0f0f0;
  }

  .product-card__badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    z-index: 2;
  }

  .product-card__badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-radius: 2px;
  }

  .product-card__badge--sale {
    background-color: #dc2626;
    color: #fff;
  }

  .product-card__badge--soldout {
    background-color: var(--color-foreground);
    color: var(--color-background);
  }

  .product-card__actions {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .product-card:hover .product-card__actions {
    opacity: 1;
    transform: translateX(0);
  }

  .product-card__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    min-width: 36px;
    height: 36px;
    padding: 0 0.75rem;
    background-color: var(--color-background);
    border: none;
    border-radius: 18px;
    cursor: pointer;
    color: var(--color-foreground);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .product-card__action-text {
    display: none;
    font-size: 0.75rem;
    font-weight: 500;
  }

  .product-card:hover .product-card__action-text {
    display: inline;
  }

  .product-card__action:hover {
    background-color: var(--color-foreground);
    color: var(--color-background);
  }

  .product-card__info {
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  .product-card__vendor {
    font-size: 0.75rem;
    color: var(--color-foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-card__title {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
  }

  .product-card__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .product-card__price-regular,
  .product-card__price-sale {
    font-size: 0.9375rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .product-card__price-sale {
    color: #dc2626;
  }

  .product-card__price-compare {
    font-size: 0.8125rem;
    color: var(--color-foreground-muted);
    text-decoration: line-through;
    white-space: nowrap;
  }

  .product-card__form {
    margin-top: auto;
  }

  .product-card__add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .product-card__add-to-cart:hover {
    opacity: 0.9;
  }

  .product-card__add-to-cart--options {
    background-color: transparent;
    color: var(--color-foreground);
    border: 1px solid var(--color-foreground);
  }

  .product-card__add-to-cart--options:hover {
    background-color: var(--color-foreground);
    color: var(--color-background);
    opacity: 1;
  }

  .product-card__add-to-cart--disabled {
    background-color: #e5e5e5;
    color: #999;
    cursor: not-allowed;
  }

  /* Mobile touch devices - always show actions */
  @media (hover: none) {
    .product-card__actions {
      opacity: 1;
      transform: translateX(0);
    }
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-gallery (INDEX:42, SCOPED:FALSE) */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-gallery__main {
    position: relative;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
  }

  .product-gallery__main-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-gallery__slide.is-active {
    opacity: 1;
    visibility: visible;
  }

  .product-gallery__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
  }

  .product-gallery__zoom {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .product-gallery__main:hover .product-gallery__zoom {
    opacity: 1;
  }

  .product-gallery__video,
  .product-gallery__model {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-gallery__video video,
  .product-gallery__video iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-gallery__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-foreground-muted);
  }

  /* Navigation */
  .product-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .product-gallery__main:hover .product-gallery__nav {
    opacity: 1;
  }

  .product-gallery__nav--prev {
    left: 1rem;
  }

  .product-gallery__nav--next {
    right: 1rem;
  }

  .product-gallery__nav:hover {
    background: var(--color-foreground);
    color: var(--color-background);
  }

  /* Badges */
  .product-gallery__badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
  }

  .product-gallery__badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-radius: 4px;
  }

  .product-gallery__badge--sale {
    background: #dc2626;
    color: #fff;
  }

  .product-gallery__badge--soldout {
    background: var(--color-foreground);
    color: var(--color-background);
  }

  /* Thumbnails */
  .product-gallery__thumbs {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.25rem;
    margin: -0.25rem;
    scrollbar-width: thin;
  }

  .product-gallery__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 90px;
    padding: 4px;
    background: #f8f8f8;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-gallery__thumb.is-active {
    border-color: var(--color-foreground);
  }

  .product-gallery__thumb:hover {
    border-color: var(--color-foreground-muted);
  }

  .product-gallery__thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .product-gallery__thumb-video,
  .product-gallery__thumb-model {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-gallery__thumb-video img,
  .product-gallery__thumb-model img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .product-gallery__thumb-play,
  .product-gallery__thumb-3d {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    color: #fff;
  }

  /* Zoom Modal */
  .product-gallery__zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .product-gallery__zoom-modal[hidden] {
    display: none;
  }

  .product-gallery__zoom-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
  }

  .product-gallery__zoom-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  /* Mobile */
  @media (max-width: 767px) {
    .product-gallery {
      gap: 0.75rem;
    }

    .product-gallery__main {
      border-radius: 8px;
      margin: 0;
    }

    .product-gallery__main-wrapper {
      aspect-ratio: 3/4;
      min-height: 350px;
    }

    .product-gallery__image {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .product-gallery__thumbs {
      padding: 0 0.5rem;
      gap: 0.5rem;
      justify-content: flex-start;
    }

    .product-gallery__thumb {
      width: 56px;
      height: 70px;
      padding: 3px;
    }
  }

  /* Desktop */
  @media (min-width: 1024px) {
    .product-gallery {
      flex-direction: row-reverse;
      gap: 1.5rem;
    }

    .product-gallery__main {
      flex: 1;
    }

    .product-gallery__main-wrapper {
      aspect-ratio: 3/4;
    }

    .product-gallery__thumbs {
      flex-direction: column;
      width: 80px;
      overflow-x: visible;
      overflow-y: auto;
      max-height: 600px;
    }

    .product-gallery__thumb {
      width: 72px;
      height: 90px;
    }
  }
/* END_SNIPPET:product-gallery */

/* START_SNIPPET:product-info (INDEX:43, SCOPED:FALSE) */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  /* Breadcrumbs */
  .product-info__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-foreground-muted);
  }

  .product-info__breadcrumbs a {
    color: inherit;
    text-decoration: none;
  }

  .product-info__breadcrumbs a:hover {
    color: var(--color-foreground);
    text-decoration: underline;
  }

  .product-info__breadcrumb-sep {
    opacity: 0.5;
  }

  /* Vendor */
  .product-info__vendor {
    margin: 0;
  }

  .product-info__vendor a {
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product-info__vendor a:hover {
    color: var(--color-foreground);
  }

  /* Title */
  .product-info__title {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
  }

  /* Reviews */
  .product-info__reviews {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .product-info__stars {
    display: flex;
    gap: 0.125rem;
    color: #fbbf24;
  }

  .product-info__review-count {
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
  }

  .product-info__write-review {
    font-size: 0.875rem;
    color: var(--color-foreground);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* Price */
  .product-info__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .product-info__price-current {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .product-info__price-current--sale {
    color: #dc2626;
  }

  .product-info__price-compare {
    font-size: 1.125rem;
    color: var(--color-foreground-muted);
    text-decoration: line-through;
  }

  .product-info__price-badge {
    padding: 0.25rem 0.625rem;
    background: #fef2f2;
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
  }

  /* Short Description */
  .product-info__short-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-foreground-muted);
  }

  /* Variants */
  .product-info__variants {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .product-info__option-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
  }

  .product-info__option-value {
    font-weight: 400;
    color: var(--color-foreground-muted);
  }

  /* Color Swatches */
  .product-info__swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
  }

  .product-info__swatch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .product-info__swatch-color {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .product-info__swatch input:checked + .product-info__swatch-color {
    border-color: var(--color-foreground);
    transform: scale(1.1);
  }

  /* Size Buttons */
  .product-info__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .product-info__size input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .product-info__size-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .product-info__size input:checked + .product-info__size-btn {
    background: var(--color-foreground);
    border-color: var(--color-foreground);
    color: var(--color-background);
  }

  .product-info__size input:disabled + .product-info__size-btn {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
  }

  .product-info__size-guide {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--color-foreground-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* Select */
  .product-info__select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .product-info__select {
    appearance: none;
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.9375rem;
    background: transparent;
    cursor: pointer;
  }

  .product-info__select-wrapper svg {
    position: absolute;
    right: 0.875rem;
    pointer-events: none;
    color: var(--color-foreground-muted);
  }

  /* Actions */
  .product-info__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-info__quantity-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .product-info__quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
  }

  .product-info__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
  }

  .product-info__qty-btn:hover {
    background: rgba(0,0,0,0.05);
  }

  .product-info__qty-input {
    width: 60px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-size: 1rem;
    -moz-appearance: textfield;
  }

  .product-info__qty-input::-webkit-outer-spin-button,
  .product-info__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .product-info__buttons {
    display: flex;
    gap: 0.75rem;
  }

  .product-info__add-to-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    background: var(--color-foreground);
    color: var(--color-background);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .product-info__add-to-cart:hover:not(:disabled) {
    opacity: 0.9;
  }

  .product-info__add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .product-info__wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .product-info__wishlist:hover {
    border-color: var(--color-foreground);
  }

  .product-info__buy-now {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--color-foreground);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .product-info__buy-now:hover {
    background: var(--color-foreground);
    color: var(--color-background);
  }

  /* Trust Badges */
  .product-info__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .product-info__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-foreground-muted);
  }

  /* Accordions */
  .product-info__accordions {
    display: flex;
    flex-direction: column;
  }

  .product-info__accordion {
    border-bottom: 1px solid var(--color-border);
  }

  .product-info__accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
  }

  .product-info__accordion-header::-webkit-details-marker {
    display: none;
  }

  .product-info__accordion-header svg {
    transition: transform 0.2s ease;
  }

  .product-info__accordion[open] .product-info__accordion-header svg {
    transform: rotate(180deg);
  }

  .product-info__accordion-content {
    padding-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-foreground-muted);
  }

  .product-info__accordion-content p {
    margin: 0 0 1rem;
  }

  .product-info__accordion-content p:last-child {
    margin-bottom: 0;
  }

  /* Share */
  .product-info__share {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .product-info__share-label {
    font-size: 0.875rem;
    color: var(--color-foreground-muted);
  }

  .product-info__share-links {
    display: flex;
    gap: 0.5rem;
  }

  .product-info__share-links a,
  .product-info__share-links button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-foreground);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .product-info__share-links a:hover,
  .product-info__share-links button:hover {
    background: var(--color-foreground);
    border-color: var(--color-foreground);
    color: var(--color-background);
  }

  /* Desktop */
  @media (min-width: 768px) {
    .product-info__title {
      font-size: 2rem;
    }

    .product-info__actions {
      flex-direction: row;
      align-items: flex-end;
      gap: 1.5rem;
    }

    .product-info__buttons {
      flex: 1;
    }
  }
/* END_SNIPPET:product-info */

/* START_SNIPPET:product-media (INDEX:44, SCOPED:FALSE) */
.product-media {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-media__main {
    position: relative;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
  }

  .product-media__item {
    position: relative;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
  }

  .product-media__item.is-active {
    display: block;
    opacity: 1;
  }

  .product-media__image {
    width: 100%;
    height: auto;
    display: block;
  }

  .product-media__video,
  .product-media__external-video,
  .product-media__external-video iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-media__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ccc;
  }

  .product-media__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: #dc2626;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 5;
  }

  .product-media__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: all 0.2s;
    opacity: 0;
  }

  .product-media__main:hover .product-media__arrow {
    opacity: 1;
  }

  .product-media__arrow:hover {
    background: #000;
    color: #fff;
  }

  .product-media__arrow--prev { left: 0.75rem; }
  .product-media__arrow--next { right: 0.75rem; }

  .product-media__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
  }

  .product-media__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(0,0,0,0.25);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
  }

  .product-media__dot.is-active {
    background: #000;
    width: 20px;
    border-radius: 4px;
  }

  /* Thumbnails Container - prevents overflow */
  .product-media__thumbs-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
  }

  .product-media__thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px;
  }

  .product-media__thumbs::-webkit-scrollbar {
    display: none;
  }

  .product-media__thumb {
    flex-shrink: 0;
    position: relative;
    width: 64px;
    height: 80px;
    padding: 4px;
    background: #f8f8f8;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-media__thumb.is-active {
    border-color: #000;
  }

  .product-media__thumb:hover {
    border-color: #666;
  }

  .product-media__thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .product-media__thumb-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: #fff;
  }

  /* Mobile */
  @media (max-width: 767px) {
    .product-media {
      gap: 0.5rem;
    }

    .product-media__main {
      border-radius: 8px;
      max-width: 100%;
    }

    .product-media__item {
      width: 100%;
    }

    .product-media__image {
      width: 100%;
      height: auto;
      display: block;
    }

    .product-media__badge {
      top: 0.75rem;
      left: 0.75rem;
      padding: 0.375rem 0.75rem;
      font-size: 0.75rem;
    }

    .product-media__arrow {
      width: 36px;
      height: 36px;
      opacity: 1;
    }

    .product-media__arrow--prev { left: 0.5rem; }
    .product-media__arrow--next { right: 0.5rem; }

    .product-media__dots {
      bottom: 0.75rem;
    }

    .product-media__thumbs-container {
      padding: 0;
    }

    .product-media__thumbs {
      gap: 0.5rem;
    }

    .product-media__thumb {
      width: 56px;
      height: 70px;
      padding: 2px;
    }
  }

  /* Desktop */
  @media (min-width: 1024px) {
    .product-media {
      flex-direction: row;
      gap: 1rem;
    }

    .product-media__main {
      flex: 0 1 auto;
      order: 2;
      max-width: 600px;
      max-height: 700px;
    }

    .product-media__item {
      width: auto;
    }

    .product-media__image {
      width: auto;
      height: auto;
      max-width: 600px;
      max-height: 700px;
      display: block;
    }

    .product-media__thumbs-container {
      width: 80px;
      order: 1;
      max-height: 480px;
      overflow: hidden;
    }

    .product-media__thumbs {
      flex-direction: column;
      overflow-x: visible;
      overflow-y: auto;
      max-height: 480px;
      padding: 4px;
    }

    .product-media__thumb {
      width: 68px;
      height: 85px;
      padding: 4px;
    }

    .product-media__dots {
      display: none;
    }

    .product-media__arrow {
      opacity: 1;
    }
  }
/* END_SNIPPET:product-media */

/* START_SNIPPET:size-guide (INDEX:45, SCOPED:FALSE) */
.size-guide-dialog {
    padding: 0;
    border: none;
    border-radius: 12px;
    max-width: 90vw;
    max-height: 85vh;
    width: 900px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .size-guide-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .size-guide-dialog__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
  }

  .size-guide-dialog__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    background: white;
  }

  .size-guide-dialog__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
  }

  .size-guide-dialog__close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background-color 0.2s;
    color: #666;
  }

  .size-guide-dialog__close:hover {
    background-color: #f5f5f5;
    color: #1a1a1a;
  }

  .size-guide-dialog__body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
  }

  .size-guide-dialog__body::-webkit-scrollbar {
    width: 8px;
  }

  .size-guide-dialog__body::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .size-guide-dialog__body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }

  .size-guide-dialog__body::-webkit-scrollbar-thumb:hover {
    background: #999;
  }

  .size-guide-section {
    margin-bottom: 2.5rem;
  }

  .size-guide-section:last-child {
    margin-bottom: 0;
  }

  .size-guide-section__title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #1a1a1a;
  }

  .size-guide-category {
    margin-bottom: 2rem;
  }

  .size-guide-category:last-child {
    margin-bottom: 0;
  }

  .size-guide-category__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: #333;
  }

  .size-guide-instructions {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
  }

  .size-guide-instructions li {
    margin-bottom: 0.5rem;
  }

  .size-guide-instructions li:last-child {
    margin-bottom: 0;
  }

  .size-guide-note {
    font-size: 0.8125rem;
    color: #666;
    margin-bottom: 1rem;
  }

  .size-guide-table-wrapper {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
  }

  .size-guide-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
  }

  .size-guide-table thead {
    background-color: #f8f8f8;
  }

  .size-guide-table th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e5e5e5;
    white-space: nowrap;
    color: #1a1a1a;
  }

  .size-guide-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    color: #333;
  }

  .size-guide-table tbody tr:hover {
    background-color: #fafafa;
  }

  .size-guide-table tbody tr:last-child td {
    border-bottom: none;
  }

  .size-guide-tip {
    font-size: 0.875rem;
    color: #666;
    padding: 1rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 3px solid #1a1a1a;
  }

  @media (max-width: 768px) {
    .size-guide-dialog {
      max-width: 95vw;
      max-height: 90vh;
      width: 100%;
    }

    .size-guide-dialog__header {
      padding: 1rem 1.25rem;
    }

    .size-guide-dialog__title {
      font-size: 1.25rem;
    }

    .size-guide-dialog__body {
      padding: 1.25rem;
    }

    .size-guide-section {
      margin-bottom: 2rem;
    }

    .size-guide-section__title {
      font-size: 1.25rem;
      margin-bottom: 1.25rem;
    }

    .size-guide-category__title {
      font-size: 1rem;
    }

    .size-guide-instructions {
      font-size: 0.8125rem;
    }

    .size-guide-table {
      font-size: 0.8125rem;
    }

    .size-guide-table th,
    .size-guide-table td {
      padding: 0.625rem 0.75rem;
    }

    .size-guide-tip {
      font-size: 0.8125rem;
      padding: 0.875rem;
    }
  }
/* END_SNIPPET:size-guide */