/** Shopify CDN: Minification failed

Line 867:0 Unexpected "{"
Line 867:1 Expected identifier but found "%"
Line 869:5 Unexpected "`"
Line 871:73 Unterminated string token
Line 872:26 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:404 (INDEX:0) */
.error-page {
    display: flex;
    min-height: 100svh;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    padding-inline: 1rem;
  }

  .error-page__inner {
    max-width: 28rem;
    text-align: center;
  }

  .error-page__code {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
  }

  .error-page__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 1rem 0 0;
  }

  .error-page__description {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
  }

  .error-page__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
/* END_SECTION:404 */

/* START_SECTION:all-products-grid (INDEX:1) */
.all-products {
    padding-block: 4rem;
  }

  .all-products__heading {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .all-products__heading h2 {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin: 0;
  }

  @media screen and (min-width: 768px) {
    .all-products__heading h2 {
      font-size: 3rem;
    }
  }

  .all-products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media screen and (min-width: 640px) {
    .all-products__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (min-width: 1024px) {
    .all-products__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .all-products__empty {
    text-align: center;
    padding-block: 4rem 2rem;
  }

  .all-products__empty svg {
    width: 4rem;
    height: 4rem;
    color: var(--color-accent);
    margin: 0 auto 1.5rem;
  }

  .all-products__empty h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
  }

  .all-products__empty p {
    color: var(--color-muted-foreground);
    max-width: 28rem;
    margin: 0 auto;
  }
/* END_SECTION:all-products-grid */

/* START_SECTION:cart (INDEX:4) */
.cart-page-wrap {
    background: color-mix(in oklab, var(--color-cream) 30%, transparent);
  }

  .cart-page {
    max-width: 42rem;
    padding-block: 2.5rem;
  }

  .cart-page__title {
    text-align: center;
    font-size: 1.85rem;
    color: var(--color-primary);
    margin: 0 0 2rem;
  }

  .cart-page__card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  }

  .cart-page__note-card {
    margin-top: 1.5rem;
  }

  .cart-page__card-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .cart-page__card-heading svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent);
  }

  .cart-page__card-heading h2 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin: 0;
  }

  .cart-page__optional {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
  }

  .cart-page__empty {
    text-align: center;
    color: var(--color-muted-foreground);
    padding-block: 1.5rem;
  }

  .cart-page__items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cart-page__item {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
  }
  .cart-page__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .cart-page__item-image {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-muted);
  }
  .cart-page__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-page__item-body {
    flex: 1;
    min-width: 0;
  }

  .cart-page__item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .cart-page__item-top h4 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cart-page__item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-muted-foreground);
    flex-shrink: 0;
  }
  .cart-page__item-remove:hover {
    color: var(--color-destructive);
  }
  .cart-page__item-remove svg {
    width: 1rem;
    height: 1rem;
  }

  .cart-page__item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
  }

  .cart-page__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
  }

  .cart-page__qty-btn {
    width: 1.75rem;
    height: 1.75rem;
    border: none;
    background: var(--color-background);
    cursor: pointer;
  }
  .cart-page__qty-btn:hover {
    background: var(--color-secondary);
  }

  .cart-page__qty-value {
    width: 1.75rem;
    text-align: center;
    font-size: 0.8rem;
    display: inline-block;
  }

  .cart-page__item-price {
    font-size: 0.875rem;
    font-weight: 500;
  }

  .cart-page__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
  }
  .cart-page__total span:last-child {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
  }

  .cart-page__min-order-notice {
    margin: 0.75rem 0 0;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    background: color-mix(in oklab, var(--color-accent) 15%, transparent);
    color: var(--color-foreground);
    font-size: 0.85rem;
    text-align: center;
  }

  .cart-page__form textarea {
    width: 100%;
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: var(--color-background);
    color: var(--color-foreground);
    font-family: inherit;
    resize: vertical;
  }

  .cart-page__delivery-card {
    margin-top: 1.5rem;
  }

  .cart-page__delivery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  @media screen and (min-width: 640px) {
    .cart-page__delivery-grid {
      grid-template-columns: 1fr 1fr;
    }
    .cart-page__field--wide {
      grid-column: 1 / -1;
    }
  }

  .cart-page__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .cart-page__field label {
    font-size: 0.8rem;
    color: var(--color-muted-foreground);
  }

  .cart-page__field input,
  .cart-page__field select {
    width: 100%;
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: var(--color-background);
    color: var(--color-foreground);
    font-family: inherit;
    font-size: 0.95rem;
  }

  .cart-page__delivery-hint {
    margin: 0.75rem 0 0;
    font-size: 0.8rem;
    color: var(--color-muted-foreground);
  }

  .cart-page__item--fee {
    align-items: center;
    background: color-mix(in oklab, var(--color-accent) 12%, transparent);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.75rem;
  }
  .cart-page__item--fee h4 {
    font-size: 0.9rem;
    font-weight: 500;
  }
  .cart-page__item--fee .cart-page__item-bottom {
    margin-top: 0.35rem;
  }

  .cart-page__checkout {
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1rem;
    padding-block: 0.8rem;
  }

  .cart-page__whatsapp {
    width: 100%;
    margin-top: 0.75rem;
    font-size: 1rem;
    padding-block: 0.8rem;
  }
/* END_SECTION:cart */

/* START_SECTION:categories-grid (INDEX:5) */
.categories-grid {
    padding-block: 4rem;
  }

  .categories-grid__heading {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .categories-grid__heading h2 {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin: 0;
  }

  @media screen and (min-width: 768px) {
    .categories-grid__heading h2 {
      font-size: 3rem;
    }
  }

  .categories-grid__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  @media screen and (min-width: 1024px) {
    .categories-grid__grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
  }

  .categories-grid__card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    display: block;
  }

  .categories-grid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  .categories-grid__card:hover .categories-grid__image {
    transform: scale(1.1);
  }

  .categories-grid__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.08) 60%, transparent);
  }

  .categories-grid__label {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 1rem;
    text-align: center;
  }

  .categories-grid__label h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  }
/* END_SECTION:categories-grid */

/* START_SECTION:collection (INDEX:6) */
.collection-page {
    padding-block: 3rem;
  }

  .collection-page__breadcrumb {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 1rem;
  }
  .collection-page__breadcrumb a {
    text-decoration: none;
  }
  .collection-page__breadcrumb a:hover {
    color: var(--color-accent);
  }
  .collection-page__breadcrumb span {
    margin-inline: 0.5rem;
  }

  .collection-page__title {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin: 0 0 2.5rem;
  }

  @media screen and (min-width: 768px) {
    .collection-page__title {
      font-size: 3rem;
    }
  }

  .collection-page__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  @media screen and (min-width: 1024px) {
    .collection-page__layout {
      grid-template-columns: 1fr 260px;
    }
  }

  .collection-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  @media screen and (min-width: 640px) {
    .collection-page__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (min-width: 1024px) {
    .collection-page__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .collection-page__empty {
    text-align: center;
    color: var(--color-muted-foreground);
    padding-block: 2.5rem;
  }

  .collection-page__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    font-size: 0.875rem;
  }
  .collection-page__pagination a {
    color: var(--color-accent);
    text-decoration: none;
  }

  .collection-page__sidebar {
    order: -1;
  }
  @media screen and (min-width: 1024px) {
    .collection-page__sidebar {
      order: 1;
    }
  }

  .collection-page__filter-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    position: sticky;
    top: 6rem;
  }

  .collection-page__filter-card h2 {
    font-size: 1.35rem;
    color: var(--color-primary);
    margin: 0 0 1rem;
  }

  .collection-page__slider {
    position: relative;
    height: 1.25rem;
    display: flex;
    align-items: center;
    direction: ltr;
    /* Range inputs with appearance:none always position their thumb using
       LTR math regardless of `direction`, so we compute everything as LTR
       internally and mirror the whole component visually for RTL display. */
    transform: scaleX(-1);
  }

  .collection-page__slider-track {
    position: absolute;
    left: 0;
    right: 0;
    height: 0.35rem;
    border-radius: 999px;
    background: color-mix(in oklab, var(--color-primary) 20%, transparent);
  }

  .collection-page__slider-range {
    position: absolute;
    height: 0.35rem;
    border-radius: 999px;
    background: var(--color-primary);
  }

  .collection-page__slider-input {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 1.25rem;
    background: transparent;
    pointer-events: none;
    margin: 0;
  }

  .collection-page__slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: var(--color-background);
    border: 1px solid color-mix(in oklab, var(--color-primary) 50%, transparent);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }

  .collection-page__slider-input::-moz-range-thumb {
    pointer-events: auto;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: var(--color-background);
    border: 1px solid color-mix(in oklab, var(--color-primary) 50%, transparent);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }

  .collection-page__slider-input::-webkit-slider-runnable-track,
  .collection-page__slider-input::-moz-range-track {
    -webkit-appearance: none;
    background: transparent;
  }

  .collection-page__filter-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-muted-foreground);
  }

  .collection-page__filter-submit {
    width: 100%;
    margin-top: 0.75rem;
  }

  .collection-page__filter-clear {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: var(--color-muted-foreground);
  }

  .collection-page__filter-count {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    margin: 1rem 0 0;
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:7) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:8) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:featured-collection (INDEX:9) */
.featured-collection {
    padding-block: 4rem;
  }

  .featured-collection__heading {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .featured-collection__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0 0 0.5rem;
  }

  .featured-collection__heading h2 {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin: 0;
  }

  @media screen and (min-width: 768px) {
    .featured-collection__heading h2 {
      font-size: 3rem;
    }
  }

  .featured-collection__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  @media screen and (min-width: 768px) {
    .featured-collection__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
  }

  @media screen and (min-width: 1024px) {
    .featured-collection__grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .featured-collection__cta {
    text-align: center;
    margin-top: 2rem;
  }
/* END_SECTION:featured-collection */

/* START_SECTION:footer (INDEX:10) */
.site-footer {
    border-top: 1px solid var(--color-border);
    background: color-mix(in oklab, var(--color-cream) 50%, transparent);
    margin-top: 6rem;
  }

  .site-footer__grid {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 3rem var(--page-margin);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    font-size: 0.875rem;
  }

  @media screen and (min-width: 640px) {
    .site-footer__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (min-width: 1024px) {
    .site-footer__grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .site-footer__brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
  }

  .site-footer__heading {
    font-weight: 500;
    margin: 0 0 0.5rem;
  }

  .site-footer__muted {
    color: var(--color-muted-foreground);
    margin: 0 0 0.25rem;
  }

  .site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-footer__link {
    color: var(--color-muted-foreground);
    text-decoration: none;
    transition: color 0.15s ease;
  }

  .site-footer__link:hover {
    color: var(--color-accent);
  }

  .site-footer__bottom {
    border-top: 1px solid var(--color-border);
    padding: 1rem var(--page-margin);
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
  }

  .site-footer__payment {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:11) */
{%- comment -%} Shopify wraps this section in its own .shopify-section
  wrapper div, sized to fit exactly around the header with no extra room --
  so `position: sticky` on .site-header itself has nowhere to "stick" (its
  containing block is already exactly its own height) and just scrolls away.
  Making the *wrapper* sticky instead gives it the whole page's height as
  slack to stick within. {%- endcomment -%}
  .shopify-section-group-header-group {
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .site-header {
    width: 100%;
    background: color-mix(in oklab, var(--color-background) 80%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
  }

  .site-header__row {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  @media screen and (min-width: 768px) {
    .site-header__row {
      height: 5rem;
    }
  }

  .site-header__icons {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
  }

  .site-header__icon-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-foreground);
    text-decoration: none;
    border-radius: var(--radius);
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
    transition: color 0.15s ease, background-color 0.15s ease;
  }

  .site-header__icon-link:hover {
    color: var(--color-accent);
    background: var(--color-secondary);
  }

  .site-header__icon-link svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .site-header__badge {
    position: absolute;
    top: 0.1rem;
    inset-inline-end: 0.1rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-accent-foreground);
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.1rem;
    text-align: center;
  }

  .site-header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    text-decoration: none;
    color: var(--color-primary);
  }

  .site-header__logo svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent);
    flex-shrink: 0;
  }

  .site-header__logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  @media screen and (min-width: 768px) {
    .site-header__logo-text {
      font-size: 1.875rem;
    }
  }

  .site-header__contact {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .site-header__contact-link {
    font-size: 0.8125rem;
    color: var(--color-foreground);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease;
  }

  @media screen and (min-width: 768px) {
    .site-header__contact-link {
      font-size: 0.875rem;
    }
  }

  .site-header__contact-link:hover {
    color: var(--color-accent);
  }

  .site-header__nav {
    border-top: 1px solid var(--color-border);
    background: color-mix(in oklab, var(--color-background) 60%, transparent);
  }

  .site-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--page-width);
    margin: 0 auto;
    padding-inline: var(--page-margin);
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
  }

  @media screen and (min-width: 768px) {
    .site-header__nav-list {
      gap: 2rem;
    }
  }

  .site-header__nav-link {
    font-size: 0.875rem;
    color: var(--color-foreground);
    text-decoration: none;
    transition: color 0.15s ease;
  }

  .site-header__nav-link:hover {
    color: var(--color-accent);
  }

  .site-header__nav-link[aria-current="page"] {
    color: var(--color-accent);
    font-weight: 500;
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:12) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero (INDEX:13) */
.hero {
    overflow: hidden;
    position: relative;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    padding-block: 3.5rem;
  }

  @media screen and (min-width: 1024px) {
    .hero__grid {
      grid-template-columns: 1fr 1fr;
      padding-block: 5.5rem;
    }
  }

  .hero__copy {
    text-align: right;
  }

  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0 0 1rem;
  }

  .hero__eyebrow svg {
    width: 1rem;
    height: 1rem;
  }

  .hero__title {
    font-size: 2.25rem;
    line-height: 1.15;
    color: var(--color-primary);
    margin: 0 0 1.25rem;
  }

  @media screen and (min-width: 640px) {
    .hero__title {
      font-size: 3rem;
    }
  }

  @media screen and (min-width: 768px) {
    .hero__title {
      font-size: 4.5rem;
    }
  }

  .hero__title-accent {
    font-style: italic;
    color: var(--color-accent);
    display: inline-block;
    margin-top: 0.5rem;
  }

  .hero__lead {
    font-size: 1.05rem;
    color: var(--color-muted-foreground);
    max-width: 30rem;
    margin-inline-start: 0;
    margin-inline-end: auto;
    margin-block: 0 1.75rem;
  }

  .hero__media {
    position: relative;
  }

  .hero__media-glow {
    position: absolute;
    inset: -1.5rem;
    background: color-mix(in oklab, var(--color-blush) 35%, transparent);
    border-radius: 2rem;
    filter: blur(40px);
  }

  .hero__slider {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
    aspect-ratio: 4 / 3;
    background: var(--color-muted);
  }

  .hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .hero__slide.is-active {
    opacity: 1;
  }

  .hero__slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
  }

  .hero__dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 999px;
    background: color-mix(in oklab, var(--color-primary) 40%, transparent);
    border: none;
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
  }
  .hero__dot.is-active {
    width: 1.5rem;
    background: var(--color-primary);
  }
/* END_SECTION:hero */

/* START_SECTION:page-contact (INDEX:14) */
.contact-page {
    border-top: 1px solid var(--color-border);
    background: color-mix(in oklab, var(--color-cream) 40%, transparent);
  }

  .contact-page__inner {
    padding-block: 3.5rem;
    text-align: center;
  }

  .contact-page__inner h1 {
    font-size: 1.875rem;
    color: var(--color-primary);
    margin: 0 0 2rem;
  }

  .contact-page__lead {
    color: var(--color-muted-foreground);
    max-width: 34rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  .contact-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 42rem;
    margin: 0 auto;
  }

  @media screen and (min-width: 640px) {
    .contact-page__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .contact-page__item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-accent);
    margin: 0 auto 0.5rem;
  }

  .contact-page__label {
    font-weight: 500;
    margin: 0 0 0.25rem;
  }

  .contact-page__item a,
  .contact-page__item p:last-child {
    color: var(--color-muted-foreground);
    text-decoration: none;
  }
  .contact-page__item a:hover {
    color: var(--color-accent);
  }
/* END_SECTION:page-contact */

/* START_SECTION:page (INDEX:15) */
.content-page {
    border-top: 1px solid var(--color-border);
    background: color-mix(in oklab, var(--color-cream) 40%, transparent);
  }

  .content-page__inner {
    max-width: 42rem;
    padding-block: 3.5rem;
  }

  .content-page__title {
    text-align: center;
    font-size: 1.875rem;
    color: var(--color-primary);
    margin: 0 0 2rem;
  }

  .content-page__body.rte {
    color: var(--color-muted-foreground);
    line-height: 1.8;
  }
  .content-page__body.rte p {
    margin: 0 0 1rem;
  }
  .content-page__body.rte h2 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 2rem 0 0.75rem;
  }
  .content-page__body.rte ul {
    padding-inline-start: 1.25rem;
    margin: 0 0 1rem;
  }
  .content-page__body.rte li {
    margin-bottom: 0.5rem;
  }
  .content-page__body.rte table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
  }
  .content-page__body.rte table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
  }
  .content-page__body.rte a {
    color: var(--color-primary);
    text-decoration-line: underline;
    text-underline-offset: 3px;
  }
  .content-page__body.rte strong {
    color: var(--color-foreground);
  }

  .content-page__back {
    margin-top: 2.5rem;
    text-align: center;
  }
  .content-page__back a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9rem;
  }
  .content-page__back a:hover {
    text-decoration: underline;
  }
  .content-page__back svg {
    width: 1rem;
    height: 1rem;
  }
/* END_SECTION:page */

/* START_SECTION:product (INDEX:17) */
.product-page {
    padding-block: 3rem;
  }

  .product-page__breadcrumb {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 1.5rem;
  }
  .product-page__breadcrumb a {
    text-decoration: none;
  }
  .product-page__breadcrumb span {
    margin-inline: 0.5rem;
  }

  .product-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  @media screen and (min-width: 1024px) {
    .product-page__grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .product-page__main-media {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-muted);
  }
  .product-page__main-media--wide {
    aspect-ratio: 16 / 9;
  }

  .product-page__track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .product-page__track::-webkit-scrollbar {
    display: none;
  }

  .product-page__slide {
    min-width: 100%;
    height: 100%;
    scroll-snap-align: center;
  }

  .product-page__slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-page__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted-foreground);
  }

  .product-page__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: color-mix(in oklab, var(--color-card) 95%, transparent);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    cursor: pointer;
  }
  .product-page__nav--prev {
    inset-inline-start: 0.75rem;
  }
  .product-page__nav--next {
    inset-inline-end: 0.75rem;
  }
  .product-page__nav svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .product-page__thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    margin-top: 0.75rem;
  }

  .product-page__thumb {
    width: 5rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--color-border);
    padding: 0;
    cursor: pointer;
    background: none;
  }
  .product-page__thumb.is-active {
    border-color: var(--color-primary);
  }
  .product-page__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-page__info {
    text-align: right;
  }

  .product-page__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    text-decoration: none;
    margin-bottom: 1rem;
  }
  .product-page__back:hover {
    color: var(--color-accent);
  }
  .product-page__back svg {
    width: 1rem;
    height: 1rem;
  }

  .product-page__title {
    font-size: 2.25rem;
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0 0 1rem;
  }

  @media screen and (min-width: 768px) {
    .product-page__title {
      font-size: 3rem;
    }
  }

  .product-page__price {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin: 0 0 1.25rem;
  }

  .product-page__description {
    color: var(--color-muted-foreground);
    line-height: 1.7;
    white-space: pre-line;
    margin-bottom: 1.25rem;
  }

  .product-page__option {
    margin-bottom: 1rem;
    max-width: 16rem;
    margin-inline-start: auto;
  }
  .product-page__option label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: var(--color-muted-foreground);
  }
  .product-page__option select {
    width: 100%;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: var(--color-background);
    color: var(--color-foreground);
  }

  .product-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
    margin-top: 1.5rem;
  }

  .product-page__panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
  }

  @media screen and (min-width: 768px) {
    .product-page__panels {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .product-page__panel {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: right;
  }

  .product-page__panel h2 {
    font-size: 1.35rem;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
  }

  .product-page__panel p,
  .product-page__panel div {
    color: var(--color-muted-foreground);
    line-height: 1.7;
    margin: 0;
  }

  .product-page__related {
    margin-top: 5rem;
  }

  .product-page__related h2 {
    text-align: center;
    font-size: 1.875rem;
    color: var(--color-primary);
    margin: 0 0 2rem;
  }

  @media screen and (min-width: 768px) {
    .product-page__related h2 {
      font-size: 2.25rem;
    }
  }

  .product-page__related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  @media screen and (min-width: 768px) {
    .product-page__related-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media screen and (min-width: 1024px) {
    .product-page__related-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:18) */
.search-page {
    width: 100%;
    padding-block: 3rem;
    max-width: 60rem;
    margin-inline: auto;
  }

  .search-page__title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-primary);
    margin: 0 0 2rem;
  }

  .search-page__form {
    display: flex;
    gap: 0.75rem;
    max-width: 32rem;
    margin: 0 auto 2.5rem;
  }

  .search-page__input {
    flex: 1;
    padding: 0.65rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    background: var(--color-background);
    color: var(--color-foreground);
  }

  .search-page__status {
    text-align: center;
    color: var(--color-muted-foreground);
    margin-bottom: 2rem;
  }

  .search-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  @media screen and (min-width: 640px) {
    .search-page__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (min-width: 1024px) {
    .search-page__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .search-page__other-result {
    display: block;
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
  }

  .search-page__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    font-size: 0.875rem;
  }
  .search-page__pagination a {
    color: var(--color-accent);
    text-decoration: none;
  }
/* END_SECTION:search */

/* START_SECTION:value-props (INDEX:19) */
.value-props {
    border-block: 1px solid var(--color-border);
    background: color-mix(in oklab, var(--color-cream) 40%, transparent);
  }

  .value-props__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 3.5rem;
  }

  @media screen and (min-width: 768px) {
    .value-props__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .value-props__item {
    text-align: center;
  }

  .value-props__item svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-accent);
    margin: 0 auto 0.5rem;
  }

  .value-props__item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0 0 0.35rem;
  }

  .value-props__item p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin: 0;
  }
/* END_SECTION:value-props */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:20) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:21) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:accessibility-widget (INDEX:22) */
html {
    font-size: calc(100% * var(--a11y-font-scale, 1));
  }

  html.a11y-contrast {
    --color-background: #ffffff;
    --color-foreground: #000000;
    --color-primary: #000000;
    --color-muted-foreground: #1a1a1a;
    --color-border: #000000;
    --color-accent: #0033cc;
    --color-accent-foreground: #ffffff;
  }

  html.a11y-light {
    --color-background: oklch(0.985 0.008 70);
    --color-foreground: oklch(0.25 0.025 30);
  }

  html.a11y-dark {
    --color-background: oklch(0.18 0.01 260);
    --color-foreground: oklch(0.95 0.01 260);
    --color-card: oklch(0.22 0.01 260);
    --color-primary: oklch(0.85 0.03 145);
    --color-primary-foreground: oklch(0.15 0.01 260);
    --color-muted: oklch(0.28 0.01 260);
    --color-muted-foreground: oklch(0.75 0.01 260);
    --color-border: oklch(0.35 0.01 260);
    --color-cream: oklch(0.24 0.01 260);
    --color-secondary: oklch(0.3 0.01 260);
  }

  html.a11y-underline-links a {
    text-decoration: underline !important;
  }

  html.a11y-readable-font body {
    font-family: Arial, Helvetica, sans-serif;
  }

  html.a11y-text-spacing body {
    letter-spacing: 0.03em;
    word-spacing: 0.15em;
    line-height: 1.9;
  }

  html.a11y-stop-animations *,
  html.a11y-stop-animations *::before,
  html.a11y-stop-animations *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html.a11y-big-cursor,
  html.a11y-big-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='black' stroke='white' stroke-width='1'%3E%3Cpath d='M4 2l14 10-6 1 3 7-3 1-3-7-5 4z'/%3E%3C/svg%3E") 4 4, auto !important;
  }

  .a11y-widget__toggle {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 55;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-primary-foreground);
    border: 2px solid var(--color-background);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .a11y-widget__toggle svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .a11y-widget__panel {
    position: fixed;
    right: 1rem;
    bottom: 6rem;
    z-index: 55;
    width: min(92vw, 22rem);
    max-height: 80vh;
    overflow-y: auto;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    color: var(--color-foreground);
  }

  .a11y-widget__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
  }

  .a11y-widget__header h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin: 0;
  }

  .a11y-widget__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
    border-radius: 999px;
    padding: 0.25rem;
  }
  .a11y-widget__close:hover {
    background: var(--color-muted);
  }
  .a11y-widget__close svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .a11y-widget__row {
    margin-bottom: 1rem;
  }
  .a11y-widget__row > span {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .a11y-widget__btn-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.5rem;
  }
  .a11y-widget__btn-group button {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--color-muted);
    cursor: pointer;
  }
  .a11y-widget__btn-group button svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .a11y-widget__font-value {
    font-size: 0.875rem;
  }

  .a11y-widget__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .a11y-widget__option {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-background);
    color: var(--color-foreground);
    font-size: 0.75rem;
    text-align: center;
    cursor: pointer;
  }
  .a11y-widget__option:hover {
    background: var(--color-muted);
  }
  .a11y-widget__option[aria-pressed="true"] {
    background: var(--color-primary);
    color: var(--color-primary-foreground);
    border-color: var(--color-primary);
  }

  .a11y-widget__reset {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.75rem;
    padding: 0.6rem;
    border: none;
    border-radius: var(--radius);
    background: var(--color-muted);
    color: var(--color-foreground);
    font-size: 0.8rem;
    cursor: pointer;
  }
/* END_SNIPPET:accessibility-widget */

/* START_SNIPPET:cart-drawer (INDEX:23) */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .cart-drawer-overlay[data-open] {
    opacity: 1;
    pointer-events: auto;
  }

  .cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: min(28rem, 100vw);
    background: var(--color-background);
    z-index: 61;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  }
  .cart-drawer[data-open] {
    transform: translateX(0);
  }

  .cart-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-drawer__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0;
  }

  .cart-drawer__description {
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
    margin: 0.25rem 0 0;
  }

  .cart-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
    padding: 0.25rem;
    display: flex;
  }

  .cart-drawer__close svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .cart-drawer__empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-muted-foreground);
  }

  .cart-drawer__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-drawer__item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-drawer__item-image {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-muted);
  }

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

  .cart-drawer__item-body {
    flex: 1;
    min-width: 0;
  }

  .cart-drawer__item-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cart-drawer__item-opts {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    margin: 0.15rem 0 0;
  }

  .cart-drawer__item-price {
    font-weight: 500;
    margin: 0.35rem 0 0;
  }

  .cart-drawer__item--fee {
    background: color-mix(in oklab, var(--color-accent) 12%, transparent);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.75rem;
    border-bottom: none;
  }
  .cart-drawer__item--fee .cart-drawer__item-title {
    font-size: 0.9rem;
    white-space: normal;
  }

  .cart-drawer__qty {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
  }

  .cart-drawer__qty-btn {
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-background);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-drawer__qty-value {
    width: 2rem;
    text-align: center;
    font-size: 0.875rem;
  }

  .cart-drawer__remove {
    align-self: flex-start;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-muted-foreground);
    padding: 0.25rem;
  }

  .cart-drawer__remove:hover {
    color: var(--color-destructive);
  }

  .cart-drawer__remove svg {
    width: 1rem;
    height: 1rem;
  }

  .cart-drawer__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-drawer__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
  }

  .cart-drawer__total span:last-child {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
  }

  .cart-drawer__checkout {
    text-align: center;
  }
/* END_SNIPPET:cart-drawer */

/* START_SNIPPET:cookie-consent (INDEX:24) */
/* Must win over the plain .cookie-consent rule below regardless of
     stylesheet load order -- otherwise `hidden` (equal CSS specificity to
     a bare class) can lose the cascade and the banner stays visible even
     when JS has correctly marked it hidden for a returning visitor who
     already chose accept/decline. Confirmed this was happening live before
     this rule was added: hidden attribute present, but computed
     display:flex anyway. */
  .cookie-consent[hidden] {
    display: none;
  }

  .cookie-consent {
    position: fixed;
    inset-inline: 1rem;
    bottom: 1rem;
    z-index: 60;
    max-width: 40rem;
    margin-inline: auto;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }

  .cookie-consent__text {
    flex: 1 1 16rem;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-foreground);
  }
  .cookie-consent__text a {
    color: var(--color-accent);
  }

  .cookie-consent__actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
  }

  .cookie-consent__actions .button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
/* END_SNIPPET:cookie-consent */

/* START_SNIPPET:image (INDEX:29) */
.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:31) */
.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
  }
  .product-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }

  .product-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--color-muted);
    overflow: hidden;
  }
  .product-card__media--wide {
    aspect-ratio: 16 / 9;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .product-card:hover .product-card__image {
    transform: scale(1.06);
  }

  .product-card__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
  }

  .product-card__actions {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity 0.25s ease;
    background: color-mix(in oklab, var(--color-primary) 8%, transparent);
    pointer-events: none;
  }
  .product-card:hover .product-card__actions {
    opacity: 1;
  }

  .product-card__action-btn {
    pointer-events: auto;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: color-mix(in oklab, var(--color-card) 95%, transparent);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    cursor: pointer;
  }
  .product-card__action-btn:hover {
    background: var(--color-accent);
    color: var(--color-accent-foreground);
  }
  .product-card__action-btn svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .product-card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-card__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
  }

  .product-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
  }

  .product-card__price {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    flex-shrink: 0;
  }

  .product-card__add {
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  @media screen and (max-width: 400px) {
    .product-card__price {
      font-size: 0.9rem;
    }
    .product-card__add {
      font-size: 0.7rem;
      padding: 0.4rem 0.6rem;
    }
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:quick-view-modal (INDEX:32) */
.quick-view {
    border: none;
    border-radius: var(--radius-xl);
    padding: 0;
    max-width: 42rem;
    width: calc(100vw - 2rem);
    max-height: 90vh;
    background: var(--color-card);
    color: var(--color-foreground);
    /* The theme's global reset (`* { margin: 0 }`) strips the UA stylesheet's
       `margin: auto` that normally centers a <dialog>, so center it explicitly.
       The UA stylesheet also sets inset-block/inset-inline to 0 on all four
       sides; on an RTL page an unset `left` alongside a UA `right:0` gets
       resolved in favor of `right` (overconstrained-box rule), so every inset
       must be pinned to `auto` explicitly or the dialog renders off-screen. */
    position: fixed;
    inset: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .quick-view::backdrop {
    background: rgba(0, 0, 0, 0.5);
  }

  .quick-view__close {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
  }
  .quick-view__close svg {
    width: 1rem;
    height: 1rem;
  }

  .quick-view__body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 90vh;
  }

  .quick-view__loading {
    text-align: center;
    padding: 3rem 0;
    color: var(--color-muted-foreground);
  }

  .quick-view__media {
    width: 100%;
    max-height: 40vh;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-muted);
    margin-bottom: 1.25rem;
  }
  .quick-view__media img {
    width: 100%;
    max-height: 40vh;
    object-fit: contain;
    background: var(--color-muted);
  }

  .quick-view__info h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-primary);
    margin: 0 0 0.5rem;
  }

  .quick-view__price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin: 0 0 0.75rem;
  }

  .quick-view__description {
    color: var(--color-muted-foreground);
    line-height: 1.7;
    margin: 0 0 1.25rem;
    white-space: pre-line;
  }

  .quick-view__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
/* END_SNIPPET:quick-view-modal */

/* START_SNIPPET:search-overlay (INDEX:33) */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
  }

  .search-overlay__panel {
    position: absolute;
    top: 0;
    inset-inline: 0;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding-block: 1.5rem;
  }

  .search-overlay__field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.75rem;
    max-width: 42rem;
    margin: 0 auto;
  }

  .search-overlay__field svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-muted-foreground);
    flex-shrink: 0;
  }

  .search-overlay__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.125rem;
    color: var(--color-foreground);
    text-align: right;
  }

  .search-overlay__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
    padding: 0.25rem;
    border-radius: var(--radius-sm);
  }
  .search-overlay__close:hover {
    background: var(--color-muted);
  }
  .search-overlay__close svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .search-overlay__results {
    max-width: 42rem;
    margin: 0 auto;
    margin-top: 1rem;
    max-height: 60vh;
    overflow-y: auto;
  }

  .search-overlay__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .search-overlay__list li {
    border-bottom: 1px solid var(--color-border);
  }
  .search-overlay__list li:last-child {
    border-bottom: none;
  }

  .search-overlay__result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: inherit;
  }
  .search-overlay__result:hover {
    background: var(--color-muted);
  }

  .search-overlay__result img {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  .search-overlay__result-title {
    font-weight: 500;
    margin: 0;
  }

  .search-overlay__result-price {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin: 0.15rem 0 0;
  }
/* END_SNIPPET:search-overlay */

/* START_SNIPPET:whatsapp-button (INDEX:34) */
.whatsapp-button {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 50;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background: #25D366;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
  }
  .whatsapp-button:hover {
    transform: scale(1.05);
  }
  .whatsapp-button svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
  }
/* END_SNIPPET:whatsapp-button */