/** Shopify CDN: Minification failed

Line 7941:15 Expected identifier but found whitespace
Line 7941:17 Unexpected "{"
Line 7941:26 Expected ":"
Line 7956:15 Expected identifier but found whitespace
Line 7956:17 Unexpected "{"
Line 7956:26 Expected ":"
Line 8102:10 Expected identifier but found whitespace
Line 8102:12 Unexpected "{"
Line 8102:21 Expected ":"
Line 8171:10 Expected identifier but found whitespace
... and 5 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:1) */
.announcement-bar {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    padding: 0.5rem 0;
  }

  .announcement-bar__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: var(--gap);
    animation: marquee var(--speed) linear infinite;
  }

  .announcement-bar:hover .announcement-bar__content {
    animation-play-state: paused;
  }

  .announcement-bar__item {
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .announcement-bar__link {
    color: inherit;
    text-decoration: none;
  }

  .announcement-bar__link:hover {
    text-decoration: underline;
  }

  .announcement-bar__separator {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    color: inherit;
  }

  .announcement-bar__separator::before{
    content: ' ';
    height: 10px;
    width: 10px;
    background: #111111;
    border-radius: 50%;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }

  /* Respect reduced motion preferences */
  @media (prefers-reduced-motion: reduce) {
    .announcement-bar__content {
      animation: none;
      flex-wrap: wrap;
      justify-content: center;
    }
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:article (INDEX:2) */
/* ── Page wrapper ─────────────────────────────────────── */
  .article-page {
    padding-bottom: 5rem;
  }

  /* ── Breadcrumb ───────────────────────────────────────── */
  .article-page__breadcrumb {
    padding: 1.5rem 0 0;
  }

  .article-page__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(var(--color-foreground), 0.55);
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
  }

  .article-page__back:hover {
    color: rgb(var(--color-foreground));
    gap: 0.6rem;
  }

  .article-page__back i {
    width: 0.9rem;
    height: 0.9rem;
    transition: transform 0.2s ease;
  }

  .article-page__back:hover i {
    transform: translateX(-2px);
  }

  /* ── Hero image ───────────────────────────────────────── */
  .article-page__hero {
    position: relative;
    height: clamp(18rem, 40vw, 28rem);
    overflow: hidden;
    border-radius: 0.75rem;
    margin: 1.5rem 0 0;
  }

  .article-page__hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ── Article header ───────────────────────────────────── */
  .article-page__header {
    padding: 2.5rem 0 0;
    max-width: 72ch;
    margin: 0 auto;
  }

  .article-page__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .article-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #2a9d8f;
    background: rgba(42, 157, 143, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .article-tag:hover {
    background: rgba(42, 157, 143, 0.2);
  }

  .article-page__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
  }

  .article-page__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(var(--color-foreground), 0.55);
  }

  .article-page__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }

  .article-page__meta-item i {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
    opacity: 0.7;
  }

  .article-page__sep {
    opacity: 0.3;
  }

  /* ── Divider ──────────────────────────────────────────── */
  .article-page__divider {
    height: 1px;
    background: rgba(var(--color-foreground), 0.08);
    margin: 2rem auto;
    max-width: 72ch;
  }

  /* ── Article body ─────────────────────────────────────── */
  .article-page__content {
    /* intentionally no max-width here — article-body handles it */
  }

  .article-body {
    max-width: 72ch;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgb(var(--color-foreground));
  }

  .article-body > * + * {
    margin-top: 1.25rem;
  }

  .article-body h2 {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
  }

  .article-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }

  .article-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.4rem;
  }

  .article-body p {
    margin-top: 1.25rem;
    margin-bottom: 0;
  }

  .article-body a {
    color: #2a9d8f;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
  }

  .article-body a:hover {
    opacity: 0.8;
  }

  .article-body ul,
  .article-body ol {
    padding-left: 1.5rem;
    margin-top: 1.25rem;
  }

  .article-body li + li {
    margin-top: 0.5rem;
  }

  .article-body blockquote {
    border-left: 3px solid #2a9d8f;
    padding: 0.75rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(var(--color-foreground), 0.7);
    background: rgba(42, 157, 143, 0.04);
    border-radius: 0 0.5rem 0.5rem 0;
  }

  .article-body blockquote p {
    margin: 0;
  }

  .article-body img {
    border-radius: 0.75rem;
    width: 100%;
    height: auto;
    margin: 2rem 0;
  }

  .article-body pre {
    background: rgba(var(--color-foreground), 0.05);
    border-radius: 0.5rem;
    padding: 1.25rem;
    overflow-x: auto;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 1.75rem 0;
    border: 1px solid rgba(var(--color-foreground), 0.07);
  }

  .article-body code {
    font-family: ui-monospace, 'SF Mono', 'Cascadia Code', monospace;
    font-size: 0.875em;
    background: rgba(var(--color-foreground), 0.07);
    padding: 0.15em 0.4em;
    border-radius: 0.3rem;
  }

  .article-body pre code {
    background: none;
    padding: 0;
    font-size: inherit;
  }

  .article-body hr {
    border: none;
    border-top: 1px solid rgba(var(--color-foreground), 0.1);
    margin: 3rem 0;
  }

  .article-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 1.75rem 0;
  }

  .article-body th,
  .article-body td {
    text-align: left;
    padding: 0.6rem 0.9rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
  }

  .article-body th {
    font-weight: 600;
    background: rgba(var(--color-foreground), 0.04);
  }

  /* ── Share row ────────────────────────────────────────── */
  .article-page__share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--color-foreground), 0.08);
    max-width: 72ch;
  }

  .article-page__share-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(var(--color-foreground), 0.45);
  }

  .article-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgb(var(--color-foreground));
    background: transparent;
    border: 1px solid rgba(var(--color-foreground), 0.15);
    border-radius: 2rem;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    font-family: inherit;
  }

  .article-share-btn:hover {
    border-color: rgba(var(--color-foreground), 0.35);
    background: rgba(var(--color-foreground), 0.04);
  }

  .article-share-btn i {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
  }

  /* ── Comments ─────────────────────────────────────────── */
  .article-page__comments {
    max-width: 72ch;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(var(--color-foreground), 0.08);
  }

  .article-comments__heading {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .article-comments__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(var(--color-foreground), 0.08);
    border-radius: 2rem;
  }

  .article-comments__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .article-comment {
    display: flex;
    gap: 1rem;
  }

  .article-comment__avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(42, 157, 143, 0.15);
    color: #2a9d8f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .article-comment__body {
    flex: 1;
    min-width: 0;
  }

  .article-comment__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .article-comment__author {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .article-comment__date {
    font-size: 0.78rem;
    color: rgba(var(--color-foreground), 0.45);
  }

  .article-comment__text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(var(--color-foreground), 0.8);
    margin: 0;
  }

  /* Comment form */
  .article-comment-form {
    background: rgba(var(--color-foreground), 0.02);
    border: 1px solid rgba(var(--color-foreground), 0.08);
    border-radius: 0.75rem;
    padding: 1.75rem;
    margin-top: 2.5rem;
  }

  .article-comment-form__heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
  }

  .article-comment-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  @media screen and (max-width: 599px) {
    .article-comment-form__row {
      grid-template-columns: 1fr;
    }
  }

  .article-comment-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .article-comment-form__row .article-comment-form__field {
    margin-bottom: 0;
  }

  .article-comment-form__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.65);
  }

  .article-comment-form__input,
  .article-comment-form__textarea {
    padding: 0.6rem 0.9rem;
    border: 1px solid rgba(var(--color-foreground), 0.15);
    border-radius: 0.5rem;
    background: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
    width: 100%;
  }

  .article-comment-form__input:focus,
  .article-comment-form__textarea:focus {
    outline: none;
    border-color: #2a9d8f;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.12);
  }

  .article-comment-form__textarea {
    resize: vertical;
    min-height: 8rem;
  }

  .article-comment-form__submit {
    padding: 0.7rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
    font-family: inherit;
    margin-top: 0.5rem;
  }

  .article-comment-form__submit:hover {
    opacity: 0.85;
  }

  /* ── Back to blog bottom ──────────────────────────────── */
  .article-page__back-row {
    max-width: 72ch;
    margin: 3.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(var(--color-foreground), 0.08);
  }

  .article-page__back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(var(--color-foreground));
    border: 1px solid rgba(var(--color-foreground), 0.15);
    border-radius: 2rem;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, gap 0.2s ease;
  }

  .article-page__back-btn:hover {
    border-color: rgba(var(--color-foreground), 0.35);
    background: rgba(var(--color-foreground), 0.04);
    gap: 0.7rem;
  }

  .article-page__back-btn i {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .article-page__back-btn:hover i {
    transform: translateX(-2px);
  }

  @media screen and (max-width: 767px) {
    .article-page__hero {
      height: auto;
      border-radius: 0.5rem;
    }

    .article-page__hero-image {
      position: static;
      width: 100%;
      height: auto;
      object-fit: unset;
    }

    .article-page__header {
      padding-top: 1.75rem;
    }

    .article-page__title {
      font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .article-page__meta {
      font-size: 0.8rem;
    }

    .article-body {
      font-size: 1rem;
    }

    .article-body h2 {
      font-size: 1.4rem;
    }

    .article-body h3 {
      font-size: 1.15rem;
    }
  }
/* END_SECTION:article */

/* START_SECTION:banner (INDEX:3) */
.banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  /* All height modes use natural image dimensions — no cropping */
  .banner--small,
  .banner--medium,
  .banner--large,
  .banner--full-height,
  .banner--adapt {
    min-height: 0;
  }

  .banner__media {
    position: relative;
    width: 100%;
    z-index: 1;
  }

  .banner__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: unset;
  }

  .banner__image--mobile { display: none; }

  @media screen and (max-width: 749px) {
    .banner__image--desktop { display: none; }
    .banner__image--mobile { display: block; }
  }

  .banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: var(--overlay-opacity, 0);
    z-index: 2;
  }

  .banner__content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .banner__content {
    max-width: 60rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Alineación */
  .left .banner__content { align-items: flex-start; text-align: left; }
  .center .banner__content { align-items: center; text-align: center; margin: 0 auto; }
  .right .banner__content { align-items: flex-end; text-align: right; margin-left: auto; }

  .banner__heading {
    margin: 0;
    color: inherit;
    line-height: 1.1;
  }

  .banner__text {
    font-size: calc(var(--font-body-size) * 1.25);
    line-height: 1.4;
    max-width: 50ch;
  }

  .banner__button {
    min-width: 18rem;
    padding: 1.2rem 3rem;
    border-radius: 3rem;
    font-weight: 600;
    transition: transform 0.3s ease;
  }

  .banner__button:hover {
    transform: translateY(-2px);
  }

  .banner__link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
  }
/* END_SECTION:banner */

/* START_SECTION:blog (INDEX:4) */
/* ── Page layout ──────────────────────────────────────── */
  .blog-page {
    padding: 2.5rem 0 4rem;
  }

  /* ── Toolbar ──────────────────────────────────────────── */
  .blog-page__toolbar {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .blog-page__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
  }

  .blog-page__count {
    font-size: 0.875rem;
    color: rgba(var(--color-foreground), 0.45);
    font-weight: 500;
  }

  /* ── Article grid ─────────────────────────────────────── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  @media screen and (max-width: 1023px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }
  }

  @media screen and (max-width: 599px) {
    .blog-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
  }

  /* ── Article card ─────────────────────────────────────── */
  .article-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(var(--color-foreground), 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    background: rgb(var(--color-background));
    height: 100%;
  }

  .article-card:hover {
    border-color: rgba(var(--color-foreground), 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
  }

  /* Image */
  .article-card__image-link {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
  }

  .article-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden;
    background: rgba(var(--color-foreground), 0.04);
  }

  .article-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .article-card:hover .article-card__image {
    transform: scale(1.05);
  }

  /* Body */
  .article-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem;
    border-top: 1px solid rgba(var(--color-foreground), 0.08);
  }

  /* Title */
  .article-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0 0 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .article-card__title-link {
    color: rgb(var(--color-foreground));
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .article-card__title-link:hover {
    color: #2a9d8f;
  }

  /* Excerpt */
  .article-card__excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(var(--color-foreground), 0.6);
    margin: 0 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Footer row */
  .article-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1.1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(var(--color-foreground), 0.07);
  }

  .article-card__meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: rgba(var(--color-foreground), 0.5);
    min-width: 0;
    flex: 1;
  }

  .article-card__date { white-space: nowrap; }
  .article-card__sep { opacity: 0.5; }
  .article-card__author {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .article-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #2a9d8f;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: gap 0.2s ease;
  }

  .article-card__read-more:hover {
    gap: 0.55rem;
  }

  .article-card__read-more i {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
  }

  /* ── Infinite scroll helpers ──────────────────────────── */
  .blog-sentinel {
    height: 1px;
    margin-top: 2rem;
  }

  .blog-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.5rem;
    font-size: 0.875rem;
    color: rgba(var(--color-foreground), 0.5);
    margin-top: 1rem;
  }

  .blog-loading[aria-hidden='true'] { display: none; }

  .blog-loading__icon {
    width: 1.25rem;
    height: 1.25rem;
    animation: blogSpin 1s linear infinite;
    flex-shrink: 0;
  }

  .blog-end {
    text-align: center;
    padding: 2rem;
    font-size: 0.875rem;
    color: rgba(var(--color-foreground), 0.4);
    margin: 0;
  }

  .blog-end[aria-hidden='true'] { display: none; }

  /* ── Empty state ──────────────────────────────────────── */
  .blog-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 5rem 2rem;
    text-align: center;
  }

  .blog-empty__icon {
    width: 3rem;
    height: 3rem;
    opacity: 0.25;
  }

  .blog-empty__text {
    font-size: 1rem;
    color: rgba(var(--color-foreground), 0.5);
    margin: 0;
  }

  @keyframes blogSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
/* END_SECTION:blog */

/* START_SECTION:collection-grid (INDEX:6) */
.bubble-grid {
    padding: 4rem 4rem;
    text-align: center;
  }

  .bubble-grid__header {
    margin-bottom: 3rem;
  }

  .bubble-grid__heading {
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgb(var(--color-foreground));
  }

  .bubble-grid__container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
  }

  .bubble-grid__item {
    min-width: 0;
  }

  .bubble-grid__link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .bubble-grid__link:hover {
    transform: scale(1.08);
  }

  .bubble-grid__bubble {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--bubble-radius);
    overflow: hidden;
    background: rgba(var(--color-foreground), 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bubble-grid__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .bubble-grid__link:hover .bubble-grid__image {
    transform: scale(1.1);
  }

  .bubble-grid__placeholder {
    width: 100%;
    height: 100%;
  }

  .bubble-grid__label {
    padding: 1rem;
    text-align: center;
    pointer-events: none;
  }

  .bubble-grid--text-over .bubble-grid__label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.1);
  }

  .bubble-grid--text-below .bubble-grid__label {
    margin-top: 1.25rem;
  }

  .bubble-grid__label-text {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .bubble-grid--text-over .bubble-grid__label-text {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }

  .bubble-grid--text-below .bubble-grid__label-text {
    color: rgb(var(--color-foreground));
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.01em;
  }

  @media screen and (max-width: 749px) {
    .bubble-grid {
      padding: 3rem 0;
    }
    .bubble-grid__header {
      padding: 0 20px;
    }

    /* ── Scrollable carousel (default) ───────────────────── */
    .bubble-grid--mobile-carousel {
      overflow-x: hidden;
    }
    .bubble-grid--mobile-carousel .bubble-grid__container {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 0.75rem;
      padding: 0.5rem 20px 1rem;
      margin: 0;
    }
    .bubble-grid--mobile-carousel .bubble-grid__container::-webkit-scrollbar {
      display: none;
    }
    .bubble-grid--mobile-carousel .bubble-grid__item {
      flex: 0 0 calc((100vw - 40px) / 3.2);
      scroll-snap-align: start;
      min-width: 0;
    }

    /* ── Wrapping grid ────────────────────────────────────── */
    .bubble-grid--mobile-wrap .bubble-grid__container {
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      padding: 0;
      margin: 0 20px;
    }

    /* ── Single compressed row ────────────────────────────── */
    .bubble-grid--mobile-single-row .bubble-grid__container {
      grid-template-columns: repeat(var(--item-count), 1fr);
      gap: 0.35rem;
      padding: 0;
      margin: 0 20px;
    }
    .bubble-grid--mobile-single-row .bubble-grid__label-text {
      font-size: clamp(0.45rem, 2vw, 0.65rem);
    }
  }
/* END_SECTION:collection-grid */

/* START_SECTION:collection (INDEX:7) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* 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: 6rem 4rem;
  }

  .featured-collection__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }

  .featured-collection__title {
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .featured-collection__link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
  }

  .featured-collection__link:hover {
    opacity: 0.7;
  }

  .featured-collection__subtitle {
    margin: 1rem 0 0 0;
    font-family: var(--font-body--family);
    font-size: calc(var(--font-body-size) * 1.125);
    font-weight: var(--font-body--weight);
    color: rgba(var(--color-foreground), 0.6);
    line-height: 1.5;
    max-width: 60ch;
  }

  .featured-collection__view-all-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgb(var(--color-foreground));
    font-family: var(--font-body--family);
    font-weight: 600;
    font-size: var(--font-body-size);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgb(var(--color-foreground));
    transition: gap 0.3s ease;
  }

  .featured-collection__view-all-header:hover {
    gap: 1rem;
  }

  .featured-collection__view-all-header svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .featured-collection__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-mobile), minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }

  @media screen and (min-width: 750px) {
    .featured-collection__grid {
      grid-template-columns: repeat(var(--columns-desktop), minmax(0, 1fr));
    }
  }

  .featured-collection__item {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .featured-collection__item > * {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .featured-collection__footer {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
  }

  .featured-collection__button {
    min-width: 200px;
    padding: 1rem 2rem;
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border: none;
    border-radius: 3rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .featured-collection__button:hover {
    transform: translateY(-2px);
  }

  .hide-mobile { display: flex; }
  .show-mobile { display: none; }

  @media screen and (max-width: 749px) {
    .featured-collection {
      padding: 4rem 0;
      overflow-x: hidden;
    }
    .featured-collection__header {
      padding: 0 20px;
      margin-bottom: 3rem;
    }
    .featured-collection__grid {
      gap: 1rem;
      row-gap: 2.5rem;
    }

    .featured-collection__grid--slider {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 1rem;
      margin: 0 -20px 0 0;
      padding-left: 20px;
      padding-right: 20px;
      gap: calc(1.5rem / var(--columns-mobile));
      scrollbar-width: none;
      align-items: stretch;
    }

    .featured-collection__grid--slider::-webkit-scrollbar {
      display: none;
    }

    .featured-collection__grid--slider .featured-collection__item {
      flex: 0 0 calc((100% - (var(--columns-mobile) - 1) * (1.5rem / var(--columns-mobile))) / var(--columns-mobile));
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
    }


    .featured-collection__footer.show-mobile {
      margin-top: 2rem;
      padding: 0 20px;
    }

    .hide-mobile { display: none; }
    .show-mobile { display: flex; }
  }
/* END_SECTION:featured-collection */

/* START_SECTION:footer (INDEX:10) */
.footer-op {
    border-top: 2px solid var(--top-border, #c8b800);
    background-color: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
  }

  .footer-op__body {
    padding: 3rem clamp(1.5rem, 4vw, 6rem);
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
  }

  /* ── Grid ─────────────────────────────────────── */
  .footer-op__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
    gap: 2.5rem 3rem;
    align-items: start;
  }

  /* ── Brand column ─────────────────────────────── */
  .footer-op__col--brand {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-op__logo-link {
    display: block;
    margin-bottom: 0.75rem;
  }

  .footer-op__logo {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .footer-op__shop-name {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: inherit;
    margin-bottom: 0.75rem;
    display: block;
  }

  .footer-op__tagline {
    font-style: italic;
    font-size: 0.85rem;
    text-align: center;
    color: rgba(var(--color-foreground), 0.65);
    margin: 0 0 1.1rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(var(--color-foreground), 0.15);
    border-bottom: none;
  }

  .footer-op__desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(var(--color-foreground), 0.72);
    margin: 0 0 1.25rem;
  }

  .footer-op__social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.25rem;
  }

  .footer-op__social-btn {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
    flex-shrink: 0;
  }

  .footer-op__social-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
  }

  .footer-op__social-btn--linkedin { background-color: #0a66c2; border-radius: 6px; }
  .footer-op__social-btn--whatsapp { background-color: #25d366; border-radius: 50%; }
  .footer-op__social-btn--youtube  { background-color: #ff0000; border-radius: 6px; }

  /* ── Menu columns ─────────────────────────────── */
  .footer-op__col-heading {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    color: rgb(var(--color-foreground));
  }

  .footer-op__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-op__link {
    font-size: 0.9rem;
    color: rgba(var(--color-foreground), 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    display: inline-block;
  }

  .footer-op__link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.25s ease;
  }

  .footer-op__link:hover {
    color: rgb(var(--color-foreground));
  }

  .footer-op__link:hover::after {
    width: 100%;
  }

  /* ── Newsletter + Contact column ──────────────── */
  .footer-op__updates-heading {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: rgb(var(--color-foreground));
    letter-spacing: -0.01em;
  }

  .footer-op__newsletter-row {
    display: flex;
    gap: 0;
    margin-bottom: 1.75rem;
    border: 1.5px solid rgba(var(--color-foreground), 0.15);
    border-radius: 8px;
    overflow: hidden;
    background: rgb(var(--color-background));
  }

  .footer-op__newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    background: transparent;
    color: rgba(var(--color-foreground), 0.5);
    font-family: inherit;
    min-width: 0;
  }

  .footer-op__newsletter-input::placeholder {
    color: rgba(var(--color-foreground), 0.4);
  }

  .footer-op__newsletter-btn {
    border: none;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: filter 0.2s ease;
    letter-spacing: 0.01em;
    border-radius: 0 6px 6px 0;
  }

  .footer-op__newsletter-btn:hover {
    filter: brightness(1.1);
  }

  .footer-op__contact-heading {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.85rem;
    color: rgb(var(--color-foreground));
  }

  .footer-op__contact-row {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
  }

  .footer-op__contact-icon {
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: flex-start;
  }

  .footer-op__contact-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(var(--color-foreground), 0.78);
    margin: 0;
  }

  .footer-op__contact-text--phone {
    font-size: 0.82rem;
  }

  /* ── Bottom bar ───────────────────────────────── */
  .footer-op__bar {
    background-color: var(--bar-bg, #7bc144);
    padding: 0.85rem 1.5rem;
    text-align: center;
  }

  .footer-op__bar-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bar-text, #ffffff);
    margin: 0;
    letter-spacing: 0.01em;
  }

  /* ── Responsive ───────────────────────────────── */
  @media screen and (max-width: 1023px) {
    .footer-op__grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media screen and (max-width: 599px) {
    .footer-op__grid {
      grid-template-columns: 1fr 1fr;
    }
    .footer-op__col--brand,
    .footer-op__col--updates {
      grid-column: 1 / -1;
    }
    .footer-op__newsletter-row {
      flex-direction: column;
      border-radius: 8px;
    }
    .footer-op__newsletter-btn {
      border-radius: 0 0 6px 6px;
      width: 100%;
      padding: 0.65rem;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:11) */
.header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 4vw, 6rem);
    background-color: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    position: relative;
    width: 100%;
    box-shadow: 0 4px 15px rgba(var(--color-foreground), 0.05);
  }

  .header__title a {
    color: inherit;
    text-decoration: none;
  }

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

  .header__nav {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    gap: 0;
    height: 100%;
    align-items: center;
  }

  .header__menu-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }

  .header__menu-link {
    text-decoration: none;
    color: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    height: 100%;
    position: relative;
    padding: 0 0.875rem;
    transition: color 0.2s ease;
    white-space: nowrap;
  }

  .header__menu-text {
    position: relative;
  }

  .header__menu-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: currentColor;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header__menu-link:hover .header__menu-text::after,
  .header__menu-link--active .header__menu-text::after {
    width: 100%;
  }

  .header__menu-link:hover {
    color: rgba(var(--color-foreground), 0.7);
  }

  .header__menu-link--active {
    font-weight: 600;
  }

  .header__dropdown-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
  }

  .header__menu-item:hover .header__dropdown-icon {
    transform: rotate(180deg);
  }

  /* Standard Dropdown */
  .header__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    min-width: 20rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(var(--color-foreground), 0.08);
    border-radius: 0 0 1.2rem 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border: 1px solid rgba(var(--color-foreground), 0.05);
    z-index: 101;
  }

  /* Mega Dropdown Shared Style */
  .header__menu-item--mega {
    position: static;
  }

  .header__dropdown--mega {
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(10px) translateX(0);
    border-radius: 0;
    padding: 0.5rem 4rem;
  }

  .header__menu-item--mega:hover .header__dropdown--mega {
    transform: translateY(0) translateX(0);
  }

  .header__dropdown-list--mega {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem 1.5rem;
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
  }

  /* ── Catalog two-panel dropdown ────────────────── */
  .header__dropdown--catalog {
    background-color: #ffffff !important;
    padding: 0 !important;
    border: 1px solid #e0e0e0 !important;
  }

  .catalog-dd {
    display: flex;
    gap: 0;
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    min-height: 300px;
  }

  .catalog-dd__left {
    width: 260px;
    flex-shrink: 0;
    background-color: #f4f4f4;
    border-right: 1px solid #e0e0e0;
    padding: 0;
  }

  .catalog-dd__heading {
    display: none;
  }

  .catalog-dd__cats {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .catalog-dd__cat {
    border-bottom: 1px solid #e0e0e0;
  }

  .catalog-dd__cat-link {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 0;
    border-left: 3px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
  }

  .catalog-dd__cat.is-active .catalog-dd__cat-link,
  .catalog-dd__cat-link:hover {
    font-weight: 700;
    background: #ffffff;
    border-left-color: #7bc144;
    color: #7bc144;
  }

  .catalog-dd__right {
    flex: 1;
    background-color: #ffffff;
    border-radius: 0;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
  }

  .catalog-dd__panel {
    display: none;
  }

  .catalog-dd__panel.is-active {
    display: block;
  }

  .catalog-dd__panel-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    border: 1.5px solid #7bc144;
    padding: 0.4rem 1.25rem;
  }

  .catalog-dd__pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1rem;
  }

  .catalog-dd__pill {
    display: block;
    background: none;
    color: #333333;
    border-radius: 0;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: normal;
    border: none;
  }

  .catalog-dd__pill:hover {
    background: none;
    transform: none;
    color: #7bc144;
    text-decoration: none;
  }

  .header__menu-item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
  }

  /* Alphabetical Layout */
  .header__alpha-container {
    display: flex;
    gap: 2rem;
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    height: 500px;
  }

  .header__alpha-sidebar {
    width: 300px;
    height: 100%;
    overflow-y: auto;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(var(--color-foreground), 0.05);
  }

  .header__alpha-group-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: rgb(var(--color-foreground));
    position: sticky;
    top: 0;
    background-color: rgb(var(--color-background));
    padding: 0.5rem 0;
    z-index: 1;
  }

  .header__alpha-link {
    display: block;
    text-decoration: none;
    color: rgba(var(--color-foreground), 0.7);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
  }

  .header__alpha-link:hover {
    color: rgb(var(--color-foreground));
  }

  .header__alpha-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .header__brand-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: rgba(var(--color-foreground), 0.03);
    padding: 0.4rem;
    border-radius: 0.8rem;
  }

  .header__brand-tab {
    background: transparent;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0.6rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    color: rgba(var(--color-foreground), 0.6);
  }

  .header__brand-tab.active {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
  }

  .header__brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    contain: layout style;
  }

  .header__brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    border-radius: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-align: center;
  }

  .header__brand-item:hover {
    background: rgba(var(--color-foreground), 0.03);
    transform: translateY(-4px);
  }

  .header__brand-item.hidden {
    display: none;
  }

  .header__brand-logo-wrapper {
    width: 100%;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .header__brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .header__brand-name {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
  }

  .header__dropdown-link {
    text-decoration: none;
    color: rgba(var(--color-foreground), 0.8);
    display: block;
    padding: 0.45rem 0 0.75rem 0;
    border-radius: 0.4rem;
    font-size: 0.875rem;
    transition: background-color 0.15s ease, color 0.15s ease, padding 0.15s ease;
  }

  .header__dropdown-link:hover {
    background: rgba(var(--color-foreground), 0.05);
    padding: 0.45rem 0.75rem;
    color: rgb(var(--color-foreground));
  }

  .header__dropdown-link--active {
    font-weight: 600;
    color: rgb(var(--color-foreground));
  }

  .header__alpha-link--active {
    font-weight: 600;
    color: rgb(var(--color-foreground));
  }

  .header__dropdown-link--mega-heading {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .header__mega-sublist {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .header__mega-sublink {
    text-decoration: none;
    color: rgba(var(--color-foreground), 0.7);
    font-size: 0.8rem;
    transition: color 0.2s ease;
  }

  .header__mega-sublink:hover {
    color: rgb(var(--color-foreground));
  }

  .header__mega-cat-label {
    display: none;
  }

  .mobile-submenu {
    display: none;
  }

  .header__icons {
    display: flex;
    gap: 1.5px;
    align-items: center;
  }

  /* ── Lecture category filters in navbar ── */
  .header-lf {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    margin-right: 10px;
  }

  .header-lf__pill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(var(--color-foreground), 0.05);
    border: 1.5px solid rgba(var(--color-foreground), 0.12);
    border-radius: 9999px;
    padding: 0 10px 0 13px;
    height: 34px;
    transition: border-color 0.18s, background 0.18s;
    position: relative;
  }

  .header-lf__pill:focus-within {
    border-color: #17C3D8;
    background: rgba(23, 195, 216, 0.05);
  }

  .header-lf__sel {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgb(var(--color-foreground));
    cursor: pointer;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    line-height: 1;
  }

  .header-lf__arrow {
    color: rgba(var(--color-foreground), 0.45);
    flex-shrink: 0;
    pointer-events: none;
    margin-left: 2px;
  }

  .header__icons .header__icon-link {
    display: flex;
    align-items: center;
  }

  .header__icon-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 2.75rem;
    min-height: 2.75rem;
    transition: transform 0.2s ease;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .header__icon-link:hover {
    transform: scale(1.1);
  }

  .header__icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 1.5px;
  }

  .header__cart-count {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: rgb(var(--color-button));
    color: rgb(var(--color-button-text));
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(var(--color-foreground), 0.15);
    z-index: 2;
  }

  .header__cart-count.is-hidden {
    display: none;
  }

  /* Search Modal */
  .search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .search-modal--active {
    visibility: visible;
    opacity: 1;
  }

  .search-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--color-foreground), 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .search-modal__content {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: rgb(var(--color-background));
    margin-top: 5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(var(--color-foreground), 0.1);
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow: hidden;
    transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .search-modal--active .search-modal__content {
    transform: translateY(0);
  }

  .search-modal__header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.05);
  }

  .search-modal__field {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
  }

  .search-modal__input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    font-weight: 500;
    outline: none;
    color: rgb(var(--color-foreground));
    padding: 0.5rem 0;
  }

  .search-modal__input::placeholder {
    color: rgba(var(--color-foreground), 0.3);
    font-weight: 400;
    font-size: 1rem;
  }

  .search-modal__input-icon {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.4;
  }

  .search-modal__close {
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    padding: 0.5rem;
  }

  .search-modal__close:hover {
    opacity: 1;
  }

  .search-modal__close i {
    width: 1.5rem;
    height: 1.5rem;
  }

  .search-modal__results {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    min-height: 200px;
    contain: paint;
  }

  .search-modal__empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    opacity: 0.4;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    font-weight: 600;
  }

  /* Compact Predictive Results */
  .predictive-search__list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .predictive-search__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    padding: 0.6rem;
    border-radius: 0.8rem;
    transition: background 0.2s ease;
  }

  .predictive-search__item:hover {
    background: rgba(var(--color-foreground), 0.03);
  }

  .predictive-search__image-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.6rem;
    overflow: hidden;
    background: rgba(var(--color-foreground), 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .predictive-search__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .predictive-search__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .predictive-search__title {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .predictive-search__price {
    font-size: 0.8rem;
    opacity: 0.7;
    font-weight: 500;
  }

  .predictive-search__view-all {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 0.6rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(var(--color-foreground), 0.07);
    font-size: 0.875rem;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    border-radius: 0 0 0.5rem 0.5rem;
    transition: background 0.2s ease;
  }

  .predictive-search__view-all:hover {
    background: rgba(var(--color-foreground), 0.04);
  }

  .predictive-search__view-all i {
    width: 1rem;
    height: 1rem;
    opacity: 0.5;
    flex-shrink: 0;
  }

  .predictive-search__section-title {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.4;
    letter-spacing: 0.1rem;
    margin: 1rem 0 0.5rem;
    text-transform: uppercase;
  }

  .skip-to-content-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 0.5rem 0.5rem;
    transition: top 0.2s ease;
  }

  .skip-to-content-link:focus {
    top: 0;
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 2px;
  }

  .header__menu-link:focus-visible,
  .header__dropdown-link:focus-visible,
  .header__mega-sublink:focus-visible,
  .header__alpha-link:focus-visible,
  .header__brand-tab:focus-visible,
  .header__brand-item:focus-visible,
  .header__icon-link:focus-visible,
  .search-modal__close:focus-visible {
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 2px;
    border-radius: 4px;
  }

  .header__menu-item--open .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
  }

  .header__menu-item--open .header__dropdown--mega {
    transform: translateY(0) translateX(0);
  }

  /* Hamburger icon states */
  .header__icon-link--menu .header__hamburger-close {
    display: none !important;
  }

  .header__icon-link--menu[aria-expanded="true"] .header__hamburger-open {
    display: none !important;
  }

  .header__icon-link--menu[aria-expanded="true"] .header__hamburger-close {
    display: flex !important;
  }

  /* Mobile overlay */
  .header__mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(var(--color-foreground), 0.5);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header__mobile-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  @media (max-width: 1023px) {
    .header {
      padding: 0 1.25rem;
    }

    .header__nav-header,
    .header__nav-footer {
      display: flex;
    }

    .header__nav-body {
      display: block;
    }

    /* ── Off-canvas drawer shell ────────────────────────── */
    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: min(380px, 90vw);
      height: 100dvh;
      background-color: rgb(var(--color-background));
      color: rgb(var(--color-foreground));
      z-index: 200;
      transform: translateX(-110%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
      display: flex;
      flex-direction: column;
      border-right: 1px solid rgba(var(--color-foreground), 0.07);
      will-change: transform;
    }

    .header__nav.is-open {
      transform: translateX(0);
      box-shadow: 12px 0 48px rgba(0, 0, 0, 0.12);
    }

    /* ── Drawer header ──────────────────────────────────── */
    .header__nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 1.25rem;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.07);
      flex-shrink: 0;
      min-height: 4rem;
    }

    .header__nav-logo-link {
      display: flex;
      align-items: center;
    }

    .header__nav-logo {
      height: auto;
      max-height: 1.75rem;
      width: auto;
      display: block;
    }

    .header__nav-site-name {
      font-size: 1.1rem;
      font-weight: 700;
      text-decoration: none;
      color: rgb(var(--color-foreground));
      letter-spacing: -0.02em;
    }

    .header__nav-close {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.1rem;
      height: 2.1rem;
      border-radius: 50%;
      background: rgba(var(--color-foreground), 0.07);
      border: none;
      cursor: pointer;
      color: rgb(var(--color-foreground));
      transition: background-color 0.2s ease, transform 0.2s ease;
      flex-shrink: 0;
    }

    .header__nav-close:hover {
      background: rgba(var(--color-foreground), 0.13);
      transform: rotate(90deg);
    }

    .header__nav-close i {
      width: 1rem;
      height: 1rem;
      pointer-events: none;
    }

    /* ── Scrollable body ────────────────────────────────── */
    .header__nav-body {
      flex: 1;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      overscroll-behavior: contain;
    }

    .header__nav-body::-webkit-scrollbar {
      display: none;
    }

    /* ── Drawer footer ──────────────────────────────────── */
    .header__nav-footer {
      flex-shrink: 0;
      border-top: 1px solid rgba(var(--color-foreground), 0.07);
      padding: 0.5rem 0;
      padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
      background: rgba(var(--color-foreground), 0.02);
    }

    .header__nav-footer-link {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.8rem 1.5rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(var(--color-foreground), 0.55);
      text-decoration: none;
      transition: color 0.2s ease, background-color 0.2s ease;
    }

    .header__nav-footer-link:hover {
      color: rgb(var(--color-foreground));
      background: rgba(var(--color-foreground), 0.04);
    }

    .header__nav-footer-link i {
      width: 1rem;
      height: 1rem;
      flex-shrink: 0;
    }

    /* ── Menu list ──────────────────────────────────────── */
    .header__menu {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      height: auto;
    }

    .header__menu-item,
    .header__menu-item--mega {
      width: 100%;
      height: auto;
      flex-direction: column;
      align-items: stretch;
      position: relative;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
    }

    .header__menu-link {
      width: 100%;
      height: auto;
      min-height: 52px;
      padding: 0.9rem 1.25rem;
      justify-content: space-between;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .header__menu-link:hover {
      background: rgba(var(--color-foreground), 0.03);
    }

    .header__menu-item--open > .header__menu-link {
      color: #2a9d8f;
      background: rgba(42, 157, 143, 0.05);
    }

    .header__menu-link--active {
      color: #2a9d8f !important;
    }

    .header__menu-link--active .header__menu-text::after {
      display: none;
    }

    /* ── Accordion dropdowns with smooth animation ──────── */
    .header__dropdown,
    .header__dropdown--mega {
      position: static !important;
      transform: none !important;
      opacity: 1 !important;
      visibility: visible !important;
      box-shadow: none !important;
      border-radius: 0 !important;
      padding: 0 !important;
      min-width: 0 !important;
      width: 100% !important;
      display: block !important;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
      background: rgba(var(--color-foreground), 0.02);
      border: none !important;
    }

    .header__menu-item--open > .header__dropdown {
      max-height: 60vh;
    }

    .header__menu-item--open > .header__dropdown--mega {
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch;
    }

    .header__menu-item--open > .header__dropdown--mega::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 4px;
    }

    .header__menu-item--open > .header__dropdown--mega::-webkit-scrollbar-track {
      background: rgba(var(--color-foreground), 0.05);
    }

    .header__menu-item--open > .header__dropdown--mega::-webkit-scrollbar-thumb {
      background: rgba(var(--color-foreground), 0.2);
      border-radius: 99px;
    }

    /* Chevron rotation */
    .header__menu-item--open > .header__menu-link .header__dropdown-icon {
      transform: rotate(180deg);
    }

    /* ── Dropdown links ─────────────────────────────────── */
    .header__dropdown-list--mega {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .header__dropdown-item--mega {
      border-bottom: 1px solid rgba(var(--color-foreground), 0.04);
    }

    .header__dropdown-link {
      display: block;
      padding: 0.75rem 1.25rem 0.75rem 2.5rem;
      color: rgba(var(--color-foreground), 0.65);
      font-size: 0.9rem;
      font-weight: 500;
      border-left: 2px solid transparent;
      transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
      /* override desktop hover padding */
      padding-left: 2.5rem !important;
    }

    .header__dropdown-link:hover {
      color: rgb(var(--color-foreground));
      background: rgba(var(--color-foreground), 0.04);
      border-left-color: rgba(42, 157, 143, 0.5);
    }

    .header__dropdown-link--active {
      color: #2a9d8f !important;
      border-left-color: #2a9d8f !important;
    }

    .header__dropdown-link--mega-heading {
      padding: 0.9rem 1.25rem 0.3rem !important;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: rgba(var(--color-foreground), 0.4) !important;
    }

    .header__mega-sublist {
      padding-bottom: 0.75rem;
    }

    .header__mega-sublink {
      display: block;
      padding: 0.45rem 1.25rem 0.45rem 3rem;
      font-size: 0.875rem;
    }

    /* ── Alpha / brand menu on mobile ───────────────────── */
    .header__alpha-container {
      flex-direction: column;
      height: auto;
    }

    .header__alpha-sidebar {
      width: 100%;
      height: auto;
      max-height: none;
      border-right: none;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
      padding: 0.5rem 0;
      display: flex;
      flex-direction: column;
      gap: 0;
      overflow-y: visible;
    }

    .header__alpha-group-title {
      position: static;
      background: none;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin: 0.75rem 0 0.25rem;
      padding: 0 1.25rem;
      color: rgba(var(--color-foreground), 0.35);
    }

    .header__alpha-link {
      padding: 0.6rem 1.25rem;
      font-size: 0.9rem;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.04);
    }

    .header__alpha-link:last-child {
      border-bottom: none;
    }

    .header__alpha-content {
      padding: 1rem 1.5rem;
    }

    .header__brand-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .header__brand-tabs {
      overflow-x: auto;
      flex-wrap: nowrap;
      padding-bottom: 0.25rem;
      -webkit-overflow-scrolling: touch;
    }

    /* Hide original nav drawer on mobile - data source only */
    .header__nav {
      display: none !important;
    }

    /* Main menu list rendered inside sub-panel */
    .mobile-main-list {
      list-style: none;
      margin: 0;
      padding: 0.5rem 0;
    }

    .mobile-main-item {
      border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
    }

    .mobile-main-link,
    .mobile-main-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 0.95rem 1.25rem;
      font-size: 1rem;
      font-weight: 600;
      color: rgb(var(--color-foreground));
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      gap: 0.5rem;
    }

    .mobile-main-trigger svg {
      flex-shrink: 0;
      opacity: 0.35;
    }

    /* ── Search modal on mobile ─────────────────────────── */
    .search-modal__content {
      max-width: calc(100% - 2rem);
      border-radius: 1rem;
    }

    /* ── Mobile sub-panel (drill-down) ──────────────────── */
    .mobile-submenu {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: 0;
      width: min(380px, 90vw);
      height: 100dvh;
      background-color: rgb(var(--color-background));
      z-index: 201;
      transform: translateX(110%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
      border-right: 1px solid rgba(var(--color-foreground), 0.07);
      box-shadow: 12px 0 48px rgba(0, 0, 0, 0.12);
    }

    .mobile-submenu.is-open {
      transform: translateX(0);
    }

    .mobile-submenu__header {
      display: flex;
      align-items: center;
      padding: 1.1rem 1.25rem;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.07);
      flex-shrink: 0;
      min-height: 4rem;
      gap: 0.5rem;
    }

    .mobile-submenu__back {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      background: none;
      border: none;
      cursor: pointer;
      color: rgb(var(--color-foreground));
      padding: 0;
      flex-shrink: 0;
    }

    .mobile-submenu__back i {
      width: 1.1rem;
      height: 1.1rem;
    }

    .mobile-submenu__title {
      flex: 1;
      font-size: 1rem;
      font-weight: 700;
      color: rgb(var(--color-foreground));
      text-align: center;
    }

    .mobile-submenu__close {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.1rem;
      height: 2.1rem;
      border-radius: 50%;
      background: rgba(var(--color-foreground), 0.07);
      border: none;
      cursor: pointer;
      color: rgb(var(--color-foreground));
      flex-shrink: 0;
      transition: background-color 0.2s ease;
    }

    .mobile-submenu__close:hover {
      background: rgba(var(--color-foreground), 0.13);
    }

    .mobile-submenu__close i {
      width: 1rem;
      height: 1rem;
    }

    .mobile-submenu__body {
      flex: 1;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      overscroll-behavior: contain;
    }

    .mobile-submenu__body::-webkit-scrollbar {
      display: none;
    }

    /* Mega menu content inside sub-panel */
    .mobile-submenu .header__mega-cat-label {
      display: block;
      font-weight: 700;
      font-size: 0.9rem;
      color: rgb(var(--color-foreground));
      margin-bottom: 0.45rem;
    }

    .mobile-submenu .header__dropdown-list--mega {
      display: flex;
      flex-direction: column;
    }

    .mobile-submenu .header__dropdown-item--mega {
      border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
      padding: 1rem 1.25rem;
    }

    .mobile-submenu .header__dropdown-link--mega-heading {
      display: inline-block;
      padding: 0.35rem 0.9rem !important;
      border: 1.5px solid rgba(var(--color-foreground), 0.35) !important;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: rgb(var(--color-foreground)) !important;
      text-decoration: none;
      margin-bottom: 0.5rem;
      border-left-width: 1.5px !important;
      background: none;
    }

    .mobile-submenu .header__mega-sublink {
      display: block;
      padding: 0.55rem 0;
      font-size: 0.9rem;
      color: #17c3d8;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
      text-decoration: none;
    }

    .mobile-submenu .header__mega-sublist li:last-child .header__mega-sublink {
      border-bottom: none;
    }

    /* Catalog content inside sub-panel */
    .mobile-submenu .catalog-dd {
      flex-direction: column;
      min-height: auto;
    }

    .mobile-submenu .catalog-dd__left {
      display: none;
    }

    .mobile-submenu .catalog-dd__right {
      padding: 0;
    }

    .mobile-submenu .catalog-dd__panel {
      display: block !important;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.07);
      padding: 1rem 1.25rem;
    }

    .mobile-submenu .catalog-dd__panel-heading {
      font-size: 0.8rem;
      font-weight: 600;
      border: 1.5px solid rgba(var(--color-foreground), 0.35);
      display: inline-block;
      padding: 0.35rem 0.9rem;
      margin: 0 0 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: rgb(var(--color-foreground));
    }

    .mobile-submenu .catalog-dd__pills {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .mobile-submenu .catalog-dd__pill {
      display: block;
      padding: 0.55rem 0;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
      color: #17c3d8;
      font-size: 0.9rem;
      font-weight: 400;
    }

    .mobile-submenu .catalog-dd__pills a:last-child {
      border-bottom: none;
    }

    /* Standard dropdown content inside sub-panel */
    .mobile-submenu .header__dropdown-list:not(.header__dropdown-list--mega) {
      display: flex;
      flex-direction: column;
      padding: 0.5rem 0;
    }

    .mobile-submenu .header__dropdown-item:not(.header__dropdown-item--mega) .header__dropdown-link {
      padding: 0.7rem 1.25rem !important;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
      font-size: 0.9rem;
      color: #17c3d8;
      border-left: none;
      background: none;
    }

    /* Alpha/brand menu inside sub-panel */
    .mobile-submenu .header__alpha-container {
      flex-direction: column;
      height: auto;
      padding: 0;
      gap: 0;
    }

    .mobile-submenu .header__alpha-sidebar {
      width: 100%;
      height: auto;
      border-right: none;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.07);
      padding: 0.5rem 0;
      overflow-y: visible;
    }

    .mobile-submenu .header__alpha-link {
      padding: 0.6rem 1.25rem;
    }

    .mobile-submenu .header__alpha-content {
      padding: 1rem 1.25rem;
    }

    .mobile-submenu .header__brand-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }


  @media (max-width: 479px) {
    .header__brand-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .header__menu-link,
    .header__menu-text::after,
    .header__dropdown-icon,
    .header__dropdown,
    .search-modal,
    .search-modal__content,
    .header__brand-item,
    .header__alpha-link,
    .header__icon-link,
    .header__brand-tab,
    .header__nav,
    .header__mobile-overlay {
      transition: none !important;
      animation: none !important;
    }
  }

  .mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4.5rem;
    background-color: #FFFFFF;
    color: rgb(var(--color-foreground));
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9;
    box-shadow: 0 -4px 15px rgba(var(--color-foreground), 0.08);
    border-top: 1px solid rgba(var(--color-foreground), 0.05);
    padding: 0 1rem;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-bottom-menu__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    text-decoration: none;
    color: inherit;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    flex: 1;
    transition: transform 0.2s ease;
  }

  .mobile-bottom-menu__link:active {
    transform: scale(0.92);
  }

  .mobile-bottom-menu__icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 1.5px;
  }

  .mobile-bottom-menu__text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
    opacity: 0.8;
  }

  .mobile-bottom-menu__cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-bottom-menu__cart-wrapper .header__cart-count {
    top: -0.4rem;
    right: -0.6rem;
  }

  /* Mobile-drawer chrome — hidden on desktop */
  .header__nav-header,
  .header__nav-footer {
    display: none;
  }

  /* Pass-through wrapper — no layout effect on desktop */
  .header__nav-body {
    display: contents;
  }

  .hide-mobile { display: block; }
  .show-mobile { display: none !important; }

  @media screen and (max-width: 1023px) {
    .hide-mobile { display: none !important; }
    .show-mobile { display: flex !important; }
    
    body {
      padding-bottom: 4.5rem;
    }
  }
/* 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-cta (INDEX:13) */
.hero-cta {
    padding: 1.5rem clamp(1rem, 3vw, 3rem);
  }

  .hero-cta__inner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Aspect ratio from desktop image dimensions; min-height is the no-image fallback */
    aspect-ratio: var(--hero-desktop-ratio, auto);
    min-height: 480px;
    padding: 4rem 2rem;
  }

  .hero-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-cta__bg picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero-cta__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-cta__bg--color {
    background-color: #222;
  }

  .hero-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-cta__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    text-align: center;
  }

  .hero-cta__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-cta__heading {
    font-size: var(--hero-heading-d, clamp(1.8rem, 4vw, 3.2rem));
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  }

  .hero-cta__subheading {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 400;
    margin: 0;
    opacity: 0.88;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
    max-width: 580px;
    line-height: 1.6;
  }

  .hero-cta__buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .hero-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: var(--hero-btn-pad-d, 1rem) 2.5rem;
    border-radius: 9999px;
    font-size: var(--hero-btn-font-d, 1.1rem);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    white-space: nowrap;
    flex: 1 1 180px;
    max-width: 320px;
  }

  .hero-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    filter: brightness(1.08);
  }

  .hero-cta__btn:active {
    transform: translateY(-1px);
  }

  @media screen and (max-width: 767px) {
    .hero-cta {
      padding: 1rem;
    }

    .hero-cta__inner {
      /* Switch to mobile image ratio; falls back to desktop ratio, then auto */
      aspect-ratio: var(--hero-mobile-ratio, var(--hero-desktop-ratio, auto));
      min-height: 260px;
      padding: 2.5rem 1.25rem;
    }

    .hero-cta__buttons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .hero-cta__heading {
      font-size: var(--hero-heading-m, 1.8rem);
    }

    .hero-cta__btn {
      min-width: 0;
      width: 100%;
      padding: var(--hero-btn-pad-m, 0.85rem) 1rem;
      font-size: var(--hero-btn-font-m, 1rem);
      flex: none;
    }

    .hero-cta__btn--lectures {
      grid-column: 1 / -1;
      order: -1;
      max-width: 240px;
      margin: 0 auto;
    }
  }
/* END_SECTION:hero-cta */

/* START_SECTION:info-bar (INDEX:14) */
.info-bar {
    width: 100%;
    padding: 0.5rem 0;
  }

  .info-bar__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    padding: 0 clamp(4rem, 8vw, 10rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .info-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
  }

  .info-bar__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .info-bar__text {
    line-height: 1.3;
  }

  @media screen and (max-width: 767px) {
    .info-bar__container {
      padding: 0 1rem;
      justify-content: center;
      text-align: center;
      gap: 0.25rem;
    }

    .info-bar__item {
      font-size: 0.68rem;
      white-space: normal;
      width: 100%;
      justify-content: center;
    }

    .info-bar__item--address {
      display: none;
    }
  }
/* END_SECTION:info-bar */

/* START_SECTION:lectures-catalog (INDEX:15) */
.lectures-catalog {
    padding: 3rem clamp(1rem, 3vw, 3rem);
  }

  .lectures-catalog__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  /* ── Heading ────────────────────────── */
  .lectures-catalog__eyebrow {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
  }

  .lectures-catalog__heading-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .lectures-catalog__heading {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.03em;
  }

  /* ── Filters ────────────────────────── */
  .lectures-catalog__filters {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }

  .lectures-catalog__filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .lectures-catalog__filter-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgb(var(--color-foreground));
    letter-spacing: 0.01em;
  }

  .lectures-catalog__field-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }

  .lectures-catalog__field {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid var(--field-border, #7bc144);
    border-radius: 9999px;
    padding: 0.75rem 2.75rem 0.75rem 1.4rem;
    font-size: 0.9rem;
    color: rgba(var(--color-foreground), 0.55);
    background: transparent;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    font-family: inherit;
  }

  .lectures-catalog__field--text { cursor: text; }
  .lectures-catalog__field--text::placeholder { color: rgba(var(--color-foreground), 0.45); }

  .lectures-catalog__field:focus {
    box-shadow: 0 0 0 3px rgba(123, 193, 68, 0.18);
  }

  .lectures-catalog__arrow {
    position: absolute;
    right: 1rem;
    pointer-events: none;
    display: flex;
    align-items: center;
  }

  /* ── Product grid ───────────────────── */
  .lectures-catalog__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding-bottom: 0.75rem;
    scrollbar-width: none;
  }

  .lectures-catalog__grid::-webkit-scrollbar { display: none; }

  /* 4 columns on desktop — calc accounts for 3 gaps between 4 items */
  .lectures-catalog__grid .lc-card-wrap {
    flex: 0 0 calc(25% - 1.125rem);
    scroll-snap-align: start;
  }

  /* ── Footer ─────────────────────────── */
  .lectures-catalog__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
  }

  .lectures-catalog__view-more {
    padding: 0.75rem 2.5rem;
    border: 2px solid;
    border-radius: 9999px;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
    letter-spacing: 0.02em;
  }

  .lectures-catalog__view-more:hover {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border-color: rgb(var(--color-foreground));
  }

  .lectures-catalog__no-results {
    font-size: 0.9rem;
    opacity: 0.5;
    text-align: center;
    padding: 2rem 0;
  }

  .lectures-catalog__empty {
    font-size: 0.9rem;
    opacity: 0.5;
    padding: 3rem 0;
    text-align: center;
  }

  /* ── Responsive ─────────────────────── */
  @media screen and (max-width: 1023px) {
    /* filters: keep 1 row on tablet */
    /* carousel: 3 columns */
    .lectures-catalog__grid .lc-card-wrap { flex: 0 0 calc(33.333% - 1rem); }
  }

  @media screen and (max-width: 767px) {
    /* filters: 2 columns → 3 rows (5 items ÷ 2 = 3 rows) */
    .lectures-catalog__filters { grid-template-columns: repeat(2, 1fr); }
    /* Keywords (last filter) spans full width */
    .lectures-catalog__filters .lectures-catalog__filter-group:last-child { grid-column: 1 / -1; }
    /* carousel: 2 columns */
    .lectures-catalog__grid .lc-card-wrap { flex: 0 0 calc(50% - 0.75rem); }
  }

  @media screen and (max-width: 479px) {
    /* filters: stay at 2 columns → 3 rows */
    /* carousel: tighter gap */
    .lectures-catalog__grid { gap: 0.75rem; }
    .lectures-catalog__grid .lc-card-wrap { flex: 0 0 calc(50% - 0.375rem); }
  }
/* END_SECTION:lectures-catalog */

/* START_SECTION:main-cart (INDEX:17) */
.cart-items-section {
    padding-top: 6rem;
    padding-bottom: 8rem;
    min-height: 60vh;
  }

  .cart-items__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
    padding-bottom: 2rem;
  }

  .cart-items__header h1 { margin: 0; }
  .cart-items__count { font-weight: 500; opacity: 0.6; }

  .cart-items__content {
    display: grid;
    grid-template-columns: 1fr 38rem;
    gap: 6rem;
  }

  @media screen and (max-width: 1199px) {
    .cart-items__content {
      grid-template-columns: 1fr;
      gap: 4rem;
    }
    .cart-items__summary {
      max-width: 100%;
    }
  }

  .cart-items__list {
    display: flex;
    flex-direction: column;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 10rem 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.05);
  }

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

  .cart-item__media {
    background: rgba(var(--color-foreground), 0.03);
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/5;
  }

  .cart-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

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

  .cart-item__details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem 0;
  }

  .cart-item__name {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
  }

  .cart-item__name:hover { opacity: 0.7; }

  .cart-item__variant {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0;
  }

  .cart-item__totals {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .cart-item__price {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .cart-item__controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .quantity-selector {
    display: flex;
    align-items: center;
    background: rgba(var(--color-foreground), 0.05);
    border-radius: 0.8rem;
    padding: 0.3rem;
  }

  .quantity-button {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: opacity 0.2s;
  }

  .quantity-button:hover { opacity: 0.6; }
  .quantity-button i { width: 1.2rem; height: 1.2rem; }

  .quantity-selector input {
    width: 3rem;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: inherit;
    -moz-appearance: textfield;
  }

  .quantity-selector input::-webkit-outer-spin-button,
  .quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-item__remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(var(--color-foreground), 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  .cart-item__remove:hover {
    color: #e63946;
    transform: scale(1.1);
  }

  .cart-item__remove i { width: 1.8rem; height: 1.8rem; }

  /* Summary */
  .cart-summary__card {
    background: rgba(var(--color-foreground), 0.03);
    padding: 3rem;
    border-radius: 2rem;
    position: sticky;
    top: 10rem;
  }

  .cart-summary__title { margin-top: 0; margin-bottom: 3rem; }

  .cart-summary__row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .cart-summary__note {
    font-size: 0.95rem;
    opacity: 0.6;
    margin-bottom: 4rem;
  }

  .cart-summary__actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .checkout-button {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border-radius: 4rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    height: 3.5rem;
    font-size: 0.95rem;
  }

  .cart-summary__continue {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
  }

  /* Empty State */
  .cart-items__empty {
    padding: 10rem 0;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .cart-items__empty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .empty-icon {
    width: 6rem;
    height: 6rem;
    stroke-width: 1.5px;
    opacity: 0.3;
  }

  .cart-items__empty-content a {
    min-width: 25rem;
    margin-top: 2rem;
  }

  /* Loading State */
  .cart-items-section.is-loading { opacity: 0.5; pointer-events: none; }

  @media screen and (max-width: 749px) {
    .cart-item {
      grid-template-columns: 8rem 1fr;
      gap: 2rem;
      padding: 2rem 0;
    }
    .cart-item__totals {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .cart-item__controls {
      width: 100%;
      justify-content: space-between;
    }
    .cart-summary__card {
      padding: 3rem 2rem;
    }
  }
/* END_SECTION:main-cart */

/* START_SECTION:main-collection (INDEX:18) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

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

  /* ── Page shell ─────────────────────────────────────── */
  .collection-page {
    background-color: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    min-height: 60vh;
  }

  /* ── Hero ────────────────────────────────────────────── */
  .collection-page__hero {
    position: relative;
    overflow: hidden;
    background: rgba(var(--color-foreground), 0.04);
    border-radius: 0.75rem;
  }

  .collection-page__hero-image {
    display: block;
    width: 100%;
    height: auto;
  }

  .collection-page__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
  }

  .collection-page__hero-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
  }

  .collection-page__hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    max-width: 55ch;
  }

  /* ── Content column ──────────────────────────────────── */
  .collection-page__content {
    min-width: 0;
    padding: 0 5px;
  }

  /* ── Collection title (no banner) ───────────────────── */
  .collection-page__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0;
    padding: 1.25rem 0 0.75rem;
    line-height: 1.2;
    color: rgb(var(--color-foreground));
    text-align: center;
  }

  /* ── Floating filter pill (mobile only) ─────────────── */
  .collection-filter-toggle--float {
    display: none;
    background: #111111 !important;
    color: #fff !important;
    font-weight: 700 !important;
    border: none !important;
  }

  @media (max-width: 1023px) {
    .collection-filter-toggle--float {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      position: fixed;
      bottom: 5.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 400;
      background: #111111;
      color: #fff;
      border: none;
      border-radius: 2rem;
      padding: 0.7rem 1.5rem;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      cursor: pointer;
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .collection-filter-toggle--float:active {
      transform: translateX(-50%) scale(0.96);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .collection-filter-toggle--float i {
      width: 0.9rem;
      height: 0.9rem;
    }

    .collection-filter-toggle__divider {
      opacity: 0.3;
      font-weight: 300;
      margin: 0 0.1rem;
    }

    .collection-filter-toggle--float .collection-filter-toggle__badge {
      background: #fff;
      color: #111;
    }
  }

  /* ── Filter toggle button (mobile only) ─────────────── */
  .collection-filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(var(--color-foreground), 0.15);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
  }

  .collection-filter-toggle:hover {
    border-color: rgba(var(--color-foreground), 0.35);
    background: rgba(var(--color-foreground), 0.03);
  }

  .collection-filter-toggle i { width: 1rem; height: 1rem; }

  .collection-filter-toggle__badge {
    background: rgb(var(--color-button));
    color: rgb(var(--color-button-text));
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
  }

  @media (min-width: 1024px) {
    .collection-filter-toggle { display: none; }
  }

  /* ── Sort in sidebar ─────────────────────────────────── */
  .collection-filters__group-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #17c3d8;
    padding: 1.2rem 0 0.6rem;
    border-top: 1px solid rgba(var(--color-foreground), 0.08);
    margin-top: 0.5rem;
  }

  .collection-filters__group-heading--native {
    margin-top: 1rem;
  }

  .lec-filter__empty {
    font-size: 0.78rem;
    opacity: 0.45;
    font-style: italic;
    padding: 0.25rem 0;
  }

  .lec-filter__empty code {
    font-size: 0.75rem;
    background: rgba(var(--color-foreground), 0.06);
    padding: 0.1em 0.3em;
    border-radius: 3px;
  }

  .collection-filters__sort {
    padding: 0 0 1rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
    margin-bottom: 0.25rem;
  }

  .collection-filters__sort-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .collection-sort__wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .collection-sort__select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(var(--color-foreground), 0.15);
    border-radius: 0.5rem;
    padding: 0.5rem 2.25rem 0.5rem 0.875rem;
    font-size: 0.875rem;
    color: inherit;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease;
  }

  .collection-sort__select:hover,
  .collection-sort__select:focus {
    border-color: rgba(var(--color-foreground), 0.35);
  }

  .collection-sort__icon {
    position: absolute;
    right: 0.625rem;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    opacity: 0.5;
  }

  /* ── Active filter chips (in sidebar) ───────────────── */
  .collection-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
  }

  .collection-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    background: rgba(var(--color-foreground), 0.06);
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
  }

  .collection-active-filter:hover {
    background: rgba(var(--color-foreground), 0.12);
  }

  .collection-active-filter i {
    width: 0.6rem;
    height: 0.6rem;
    opacity: 0.5;
  }

  .collection-active-filter--clear {
    background: rgba(var(--color-foreground), 0.04);
    font-weight: 400;
    opacity: 0.7;
  }

  /* ── Page layout (sidebar + content) ────────────────── */
  .collection-page__layout {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  /* Sidebar open: 2-column layout on desktop */
  @media (min-width: 1024px) {
    .collection-page__layout:has(.collection-filters.is-open) {
      grid-template-columns: 280px 1fr;
    }
  }

  /* ── Filter sidebar ──────────────────────────────────── */

  /* Mobile: fixed drawer */
  @media (max-width: 1023px) {
    .collection-filters {
      position: fixed;
      top: 0;
      left: 0;
      width: min(360px, 90vw);
      height: 100dvh;
      background: rgb(var(--color-background));
      color: rgb(var(--color-foreground));
      z-index: 500;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 0;
      transform: translateX(-100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border-right: 1px solid rgba(var(--color-foreground), 0.08);
    }

    .collection-filters.is-open {
      transform: translateX(0);
    }

    .collection-filters__header {
      padding: 1.25rem 1.5rem;
      flex-shrink: 0;
    }

    .collection-filters__form {
      display: flex;
      flex-direction: column;
      flex: 1;
      overflow: hidden;
      min-height: 0;
      padding: 0 1.5rem;
    }

    .collection-filters__scroll {
      flex: 1;
      overflow-y: auto;
      padding-right: 0.25rem;
    }

    .collection-filters__footer {
      flex-shrink: 0;
      border-top: 1px solid rgba(var(--color-foreground), 0.07);
      padding: 1rem 1.5rem;
      background: rgb(var(--color-background));
    }
  }

  /* Desktop: sticky panel, hidden/shown via class */
  @media (min-width: 1024px) {
    .collection-filters {
      display: none;
      position: sticky;
      top: 5rem;
      height: calc(100vh - 5rem);
      overflow: hidden;
      flex-direction: column;
      border-right: 1px solid rgba(var(--color-foreground), 0.07);
      padding: 1.5rem 1.5rem 0;
    }

    .collection-filters.is-open {
      display: flex;
    }

    .collection-filters__form {
      display: flex;
      flex-direction: column;
      flex: 1;
      overflow: hidden;
      min-height: 0;
    }

    .collection-filters__scroll {
      flex: 1;
      overflow-y: auto;
      padding-right: 0.75rem;
      scrollbar-gutter: stable;
    }

    .collection-filters__footer {
      flex-shrink: 0;
      border-top: 1px solid rgba(var(--color-foreground), 0.07);
      padding-top: 1rem;
      margin-top: 0;
      padding-bottom: 1rem;
    }
  }

  .collection-filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.07);
  }

  .collection-filters__title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.6;
  }

  .collection-filters__close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: inherit;
    padding: 0.25rem;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    display: none;
  }

  .collection-filters__close:hover {
    opacity: 1;
  }

  .collection-filters__close:focus-visible {
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 2px;
    border-radius: 4px;
  }

  .collection-filters__close i {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
  }

  @media (max-width: 1023px) {
    .collection-filters__close {
      display: flex;
    }
  }

  /* ── Filter accordion ────────────────────────────────── */
  .collection-filter {
    border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
  }

  .collection-filter__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
    gap: 0.5rem;
  }

  .collection-filter__summary::-webkit-details-marker {
    display: none;
  }

  .collection-filter__summary:focus-visible {
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 2px;
    border-radius: 4px;
  }

  .collection-filter__name {
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
  }

  .collection-filter__active-badge {
    background: rgb(var(--color-button));
    color: rgb(var(--color-button-text));
    border-radius: 50%;
    width: 1.1rem;
    height: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
  }

  .collection-filter__chevron {
    width: 0.9rem;
    height: 0.9rem;
    transition: transform 0.2s ease;
    opacity: 0.5;
    flex-shrink: 0;
    pointer-events: none;
  }

  .collection-filter[open] .collection-filter__chevron {
    transform: rotate(180deg);
  }

  .collection-filter__body {
    padding: 0 0 1rem;
    overflow: hidden;
    transition: height 0.25s ease;
  }

  /* ── Filter list / checkboxes ────────────────────────── */
  .collection-filter__list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .collection-filter__option {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 0.5rem;
    border-radius: 0.4rem;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.15s ease;
  }

  .collection-filter__option:hover {
    background: rgba(var(--color-foreground), 0.04);
  }

  .collection-filter__option:has(.collection-filter__checkbox:checked) {
    font-weight: 500;
  }

  .collection-filter__option.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }

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

  .collection-filter__checkmark {
    width: 1rem;
    height: 1rem;
    border: 1.5px solid rgba(var(--color-foreground), 0.3);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s ease, background-color 0.15s ease;
  }

  .collection-filter__checkbox:checked ~ .collection-filter__checkmark {
    background: rgb(var(--color-foreground));
    border-color: rgb(var(--color-foreground));
  }

  .collection-filter__checkbox:checked ~ .collection-filter__checkmark::after {
    content: '';
    display: block;
    width: 0.35rem;
    height: 0.6rem;
    border-right: 2px solid rgb(var(--color-background));
    border-bottom: 2px solid rgb(var(--color-background));
    transform: rotate(45deg) translateY(-0.05rem);
  }

  .collection-filter__option-label {
    flex: 1;
    line-height: 1.3;
  }

  .collection-filter__option-count {
    font-size: 0.75rem;
    opacity: 0.4;
    flex-shrink: 0;
  }

  /* ── Price range filter ──────────────────────────────── */
  /* ── Price range slider ──────────────────────────────── */
  .price-slider {
    padding: 0.25rem 0 0.5rem;
  }

  .price-slider__labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(var(--color-foreground));
  }

  .price-slider__track-wrap {
    position: relative;
    height: 1.25rem;
    display: flex;
    align-items: center;
  }

  .price-slider__track,
  .price-slider__fill {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 2px;
    pointer-events: none;
  }

  .price-slider__track {
    background: rgba(var(--color-foreground), 0.12);
  }

  .price-slider__fill {
    background: rgb(var(--color-foreground));
    left: 0%;
    width: 100%;
  }

  .price-slider__input {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    pointer-events: none;
    margin: 0;
    padding: 0;
  }

  .price-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: rgb(var(--color-foreground));
    border: 2px solid rgb(var(--color-background));
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .price-slider__input::-moz-range-thumb {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: rgb(var(--color-foreground));
    border: 2px solid rgb(var(--color-background));
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
  }

  .price-slider__input::-webkit-slider-thumb:hover,
  .price-slider__input:active::-webkit-slider-thumb {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  }

  .price-slider__input--min { z-index: 3; }
  .price-slider__input--max { z-index: 3; }

  /* ── Filter footer ───────────────────────────────────── */
  .collection-filters__footer {
    display: flex;
    gap: 0.75rem;
    padding-top: 1.5rem;
  }

  .collection-filters__clear-btn {
    flex: 1;
    text-align: center;
    padding: 0.625rem;
    border: 1px solid rgba(var(--color-foreground), 0.15);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease;
  }

  .collection-filters__clear-btn:hover {
    border-color: rgba(var(--color-foreground), 0.35);
  }

  .collection-filters__clear-btn:focus-visible {
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 2px;
    border-radius: 0.5rem;
  }

  .collection-filters__apply-btn {
    flex: 1;
    padding: 0.625rem;
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .collection-filters__apply-btn:hover {
    opacity: 0.85;
  }

  .collection-filters__apply-btn:focus-visible {
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 2px;
    border-radius: 0.5rem;
  }

  /* ── Mobile filter overlay ───────────────────────────── */
  .collection-filters-overlay {
    position: fixed;
    inset: 0;
    background: rgba(var(--color-foreground), 0.45);
    z-index: 499;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .collection-filters-overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }

  /* ── Product grid ────────────────────────────────────── */
  .collection-area {
    position: relative;
  }

  .collection-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--color-background), 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
  }

  .collection-grid-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .collection-main {
    padding: 0.75rem 0 1.75rem;
    min-height: 20rem;
  }

  .collection-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), minmax(0, 1fr));
    gap: 1rem;
  }

  /* ── Infinite scroll ─────────────────────────────────── */
  .collection-sentinel {
    height: 1px;
    margin-top: 2rem;
  }

  .collection-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .collection-loading[aria-hidden="true"] {
    display: none;
  }

  .collection-loading__icon {
    width: 3rem;
    height: 3rem;
    opacity: 0.4;
    animation: collection-spin 1s linear infinite;
  }

  @keyframes collection-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .collection-end {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.35;
    letter-spacing: 0.05em;
  }

  .collection-end[aria-hidden="true"] {
    display: none;
  }

  /* ── Empty state ─────────────────────────────────────── */
  .collection-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
    gap: 1rem;
  }

  .collection-empty__icon {
    width: 3.5rem;
    height: 3.5rem;
    opacity: 0.2;
  }

  .collection-empty__text {
    font-size: 1rem;
    opacity: 0.55;
    margin: 0;
  }

  .collection-empty__btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border: 1px solid rgba(var(--color-foreground), 0.25);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease;
  }

  .collection-empty__btn:hover {
    border-color: rgba(var(--color-foreground), 0.5);
  }

  /* ── Responsive ──────────────────────────────────────── */
  @media (max-width: 1023px) {
    .collection-page__content {
      padding: 0;
    }

    .collection-page__hero-overlay {
      padding: 2rem 0;
    }

    .collection-grid {
      grid-template-columns: repeat(var(--columns-mobile, 2), 1fr);
      gap: 0.5rem;
    }
  }


  @media (prefers-reduced-motion: reduce) {
    .collection-filters,
    .collection-filters-overlay,
    .collection-filter-toggle,
    .collection-sort__select,
    .collection-filter__option,
    .collection-filter__chevron,
    .collection-active-filter {
      transition: none !important;
    }

    .collection-loading__icon {
      animation: none !important;
    }
  }

  /* ── Compare sidebar panel ── */
  .coll-compare-sidebar {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
  }

  .coll-compare-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
  }

  .coll-compare-sidebar__title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.6;
  }

  .coll-compare-sidebar__hint {
    font-size: 0.75rem;
    opacity: 0.45;
  }

  .coll-compare-sidebar__slots {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0.75rem;
  }

  .coll-compare-sidebar__empty-slot {
    font-size: 0.8rem;
    color: rgba(var(--color-foreground), 0.35);
    border: 1.5px dashed rgba(var(--color-foreground), 0.15);
    border-radius: 8px;
    padding: 7px 10px;
  }

  .coll-compare-sidebar__product {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(23, 195, 216, 0.07);
    border: 1px solid rgba(23, 195, 216, 0.2);
    border-radius: 8px;
    padding: 5px 8px;
  }

  .coll-compare-sidebar__product img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
  }

  .coll-compare-sidebar__product span {
    flex: 1;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgb(var(--color-foreground));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .coll-compare-sidebar__remove {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(var(--color-foreground), 0.4);
    font-size: 1rem;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.15s;
  }

  .coll-compare-sidebar__remove:hover { color: #e53e3e; }

  .coll-compare-sidebar__btn {
    width: 100%;
    background: #17c3d8;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    padding: 0.6rem 1rem;
    transition: filter 0.15s, opacity 0.15s;
  }

  .coll-compare-sidebar__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .coll-compare-sidebar__btn:not(:disabled):hover { filter: brightness(1.08); }

  /* ── Compare toggle on cards ── */
  .collection-grid__item {
    position: relative;
  }

  .coll-compare-toggle {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 3;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.92);
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 9999px;
    padding: 5px 10px 5px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: inherit;
    color: #555;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  }

  .coll-compare-toggle:hover {
    border-color: #17c3d8;
    color: #17c3d8;
  }

  .coll-compare-toggle__check { display: none; }

  .coll-card--comparing .coll-compare-toggle {
    background: #17c3d8;
    border-color: #17c3d8;
    color: #fff;
  }

  .coll-card--comparing .coll-compare-toggle__plus  { display: none; }
  .coll-card--comparing .coll-compare-toggle__check { display: block; }

  .coll-card--comparing {
    outline: 2.5px solid #17c3d8;
    outline-offset: 3px;
    border-radius: 10px;
  }

  @keyframes coll-shake {
    0%, 100% { transform: translateX(0); }
    20%  { transform: translateX(-5px); }
    40%  { transform: translateX(5px); }
    60%  { transform: translateX(-4px); }
    80%  { transform: translateX(4px); }
  }

  .coll-card--shake { animation: coll-shake 0.5s ease; }

  /* ── Compare bar ── */
  .coll-compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: #1a1a2e;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    padding: 0.75rem clamp(1rem, 4vw, 3rem);
  }

  .coll-compare-bar[hidden] { display: none; }

  .coll-compare-bar__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .coll-compare-bar__label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    flex-shrink: 0;
  }

  .coll-compare-bar__slots {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    flex-wrap: wrap;
  }

  .coll-compare-bar__product {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 5px 10px 5px 6px;
    max-width: 200px;
  }

  .coll-compare-bar__product img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .coll-compare-bar__product-name {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
  }

  .coll-compare-bar__remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 0 0 4px;
    flex-shrink: 0;
    transition: color 0.15s;
  }

  .coll-compare-bar__remove:hover { color: #ff6b6b; }

  .coll-compare-bar__empty-slot {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1.5px dashed rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 6px 14px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
  }

  .coll-compare-bar__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .coll-compare-bar__clear {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9999px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    padding: 0.5rem 1.1rem;
    transition: border-color 0.15s, color 0.15s;
  }

  .coll-compare-bar__clear:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

  .coll-compare-bar__cta {
    background: #17c3d8;
    border: none;
    border-radius: 9999px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    padding: 0.55rem 1.4rem;
    transition: filter 0.15s;
    box-shadow: 0 4px 14px rgba(23,195,216,0.35);
  }

  .coll-compare-bar__cta:hover { filter: brightness(1.1); }

  /* ── Compare modal ── */
  .coll-compare-modal {
    position: fixed;
    inset: 0;
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .coll-compare-modal[hidden] { display: none; }

  .coll-compare-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    cursor: pointer;
  }

  .coll-compare-modal__panel {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #111;
  }

  .coll-compare-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
  }

  .coll-compare-modal__title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0;
  }

  .coll-compare-modal__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
  }

  .coll-compare-modal__close:hover { color: #111; background: #f5f5f5; }

  .coll-compare-modal__scroll {
    overflow: auto;
    flex: 1;
    padding: 1.25rem 1.5rem;
  }

  /* ── Compare table ── */
  .coll-compare-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .coll-compare-table__param-head { width: 140px; }

  .coll-compare-table__product-head {
    padding: 0 0.75rem 1.25rem;
    text-align: center;
    vertical-align: top;
    border-bottom: 2px solid #f0f0f0;
  }

  .coll-compare-table__product-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
  }

  .coll-compare-table__img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f5f5;
  }

  .coll-compare-table__prod-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
  }

  .coll-compare-table__prod-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: #17c3d8;
  }

  .coll-compare-table__param-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #555;
    padding: 0.65rem 0.75rem 0.65rem 0;
    white-space: nowrap;
    vertical-align: middle;
  }

  .coll-compare-table__param-val {
    font-size: 0.88rem;
    color: #222;
    font-weight: 500;
    padding: 0.65rem 0.75rem;
    text-align: center;
    vertical-align: middle;
  }

  .coll-compare-table__row--alt .coll-compare-table__param-label,
  .coll-compare-table__row--alt .coll-compare-table__param-val {
    background: #f8fffe;
  }

  .coll-compare-table__action-row td {
    padding: 1rem 0.75rem 0.25rem;
    text-align: center;
  }

  .coll-compare-table__view-btn {
    display: inline-block;
    background: #17c3d8;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.5rem 1.1rem;
    transition: filter 0.15s;
  }

  .coll-compare-table__view-btn:hover { filter: brightness(1.1); }
  /* ── Top-bar filter (home screen style) ── */
  .coll-topbar-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  /* ── Subject filter strip ── */
  .coll-subject-strip {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .coll-subject-strip::before,
  .coll-subject-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 32px;
    z-index: 1;
    pointer-events: none;
  }

  .coll-subject-strip::before {
    left: 0;
    background: linear-gradient(to right, rgb(var(--color-background)), transparent);
  }

  .coll-subject-strip::after {
    right: 0;
    background: linear-gradient(to left, rgb(var(--color-background)), transparent);
  }

  .coll-subject-track {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px 8px;
  }

  .coll-subject-track::-webkit-scrollbar { display: none; }

  .coll-subject-chip {
    flex-shrink: 0;
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    border: 1.5px solid rgba(var(--color-foreground), 0.18);
    background: transparent;
    color: rgb(var(--color-foreground));
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
  }

  .coll-subject-chip:hover:not(.is-active) {
    border-color: #17C3D8;
    color: #17C3D8;
  }

  .coll-subject-chip.is-active {
    background: #17C3D8;
    border-color: #17C3D8;
    color: #fff;
  }

  .coll-topbar-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .coll-topbar-filter-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: rgb(var(--color-foreground));
    letter-spacing: 0.01em;
  }

  .coll-topbar-field-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }

  .coll-topbar-field {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid #7bc144;
    border-radius: 9999px;
    padding: 0.65rem 2.5rem 0.65rem 1.2rem;
    font-size: 0.85rem;
    color: rgba(var(--color-foreground), 0.65);
    background: transparent;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    transition: box-shadow 0.2s ease;
  }

  .coll-topbar-field:focus {
    box-shadow: 0 0 0 3px rgba(123, 193, 68, 0.18);
  }

  .coll-topbar-arrow {
    position: absolute;
    right: 1rem;
    pointer-events: none;
    color: #7bc144;
    display: flex;
    align-items: center;
  }

  .coll-topbar-filters { display: none; }
/* END_SECTION:main-collection */

/* START_SECTION:main-list-collections (INDEX:19) */
/* ── Page shell ──────────────────────────────────────── */
  .collections-page {
    background-color: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    min-height: 60vh;
    padding: 2rem 6rem 4rem;
  }

  /* ── Toolbar ─────────────────────────────────────────── */
  .collections-page__toolbar {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.07);
  }

  .collections-page__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    flex: 1;
  }

  .collections-page__count {
    font-size: 0.8rem;
    opacity: 0.4;
    white-space: nowrap;
  }

  /* ── Grid ────────────────────────────────────────────── */
  .collections-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), minmax(0, 1fr));
    gap: 1.5rem;
  }

  /* ── Collection card ─────────────────────────────────── */
  .collection-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 0.875rem;
    overflow: hidden;
    border: 1px solid rgba(var(--color-foreground), 0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    background: rgb(var(--color-background));
  }

  .collection-card:hover {
    border-color: rgba(var(--color-foreground), 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
  }

  /* Image */
  .collection-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    background: rgba(var(--color-foreground), 0.04);
    overflow: hidden;
  }

  .collection-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .collection-card:hover .collection-card__image {
    transform: scale(1.04);
  }

  .collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.18) 0%, transparent 55%);
    pointer-events: none;
  }

  .collection-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--color-foreground), 0.04);
  }

  .collection-card__placeholder i {
    width: 2.5rem;
    height: 2.5rem;
    opacity: 0.15;
  }

  /* Content */
  .collection-card__content {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid rgba(var(--color-foreground), 0.07);
  }

  .collection-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .collection-card__count {
    font-size: 0.75rem;
    opacity: 0.4;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .collection-card__arrow {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--color-foreground), 0.06);
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .collection-card__arrow i {
    width: 0.9rem;
    height: 0.9rem;
  }

  .collection-card:hover .collection-card__arrow {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    transform: translateX(2px);
  }

  /* ── Infinite scroll ─────────────────────────────────── */
  .collections-sentinel {
    height: 1px;
    margin-top: 2rem;
  }

  .collections-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .collections-loading[aria-hidden="true"] {
    display: none;
  }

  .collections-loading__icon {
    width: 2rem;
    height: 2rem;
    opacity: 0.4;
    animation: collections-spin 1s linear infinite;
  }

  @keyframes collections-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .collections-end {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.35;
    letter-spacing: 0.05em;
  }

  .collections-end[aria-hidden="true"] {
    display: none;
  }

  /* ── Empty state ─────────────────────────────────────── */
  .collections-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
    gap: 1rem;
  }

  .collections-empty__icon {
    width: 3.5rem;
    height: 3.5rem;
    opacity: 0.2;
  }

  .collections-empty__text {
    font-size: 1rem;
    opacity: 0.55;
    margin: 0;
  }

  /* ── Responsive ──────────────────────────────────────── */
  @media (max-width: 1023px) {
    .collections-page {
      padding: 1.5rem 1.25rem 3rem;
    }

    .collections-grid {
      grid-template-columns: repeat(var(--columns-mobile, 2), minmax(0, 1fr));
      gap: 1rem;
    }
  }

  @media (max-width: 479px) {
    .collections-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .collection-card,
    .collection-card__image,
    .collection-card__arrow {
      transition: none !important;
    }

    .collections-loading__icon {
      animation: none !important;
    }
  }
/* END_SECTION:main-list-collections */

/* START_SECTION:newsletter (INDEX:20) */
/* ── Wrapper ──────────────────────────────────────────── */
  .newsletter {
    background: radial-gradient(ellipse at 50% 0%, #4a4a4a 0%, #3a3a3a 100%);
    position: relative;
    overflow: hidden;
  }

  /* Subtle grid overlay */
  .newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }

  .newsletter__inner {
    position: relative;
    max-width: 580px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) var(--page-margin);
    text-align: center;
    z-index: 1;
  }

  /* ── Icon ─────────────────────────────────────────────── */
  .newsletter__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.75rem;
    color: #fff;
  }

  .newsletter__icon-wrap i {
    width: 1.4rem;
    height: 1.4rem;
  }

  /* ── Heading ──────────────────────────────────────────── */
  .newsletter__heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  /* ── Subheading ───────────────────────────────────────── */
  .newsletter__subheading {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
  }

  .newsletter__subheading p { margin: 0; }

  /* ── Form pill ────────────────────────────────────────── */
  .newsletter-form__pill {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3rem;
    padding: 0.35rem 0.35rem 0.35rem 1.4rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
  }

  .newsletter-form__pill:focus-within {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.11);
  }

  .newsletter-form__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: #fff;
    min-width: 0;
  }

  .newsletter-form__input::placeholder {
    color: rgba(255, 255, 255, 0.38);
  }

  .newsletter-form__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    background: #fff;
    color: #111111;
    border: none;
    border-radius: 2rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .newsletter-form__button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(2px);
  }

  .newsletter-form__button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  .newsletter-form__button i {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .newsletter-form__button:hover i {
    transform: translateX(2px);
  }

  /* ── Paragraph (privacy note) ─────────────────────────── */
  .newsletter__paragraph {
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
  }

  .newsletter__paragraph p { margin: 0; }
  .newsletter__paragraph a { color: rgba(255, 255, 255, 0.55); text-underline-offset: 2px; }
  .newsletter__paragraph a:hover { color: rgba(255, 255, 255, 0.8); }

  /* ── Mobile ───────────────────────────────────────────── */
  @media screen and (max-width: 499px) {
    .newsletter-form__pill {
      flex-direction: column;
      align-items: stretch;
      border-radius: 1rem;
      padding: 1rem;
      gap: 0.75rem;
    }

    .newsletter-form__input {
      text-align: center;
      padding: 0.25rem 0;
    }

    .newsletter-form__button {
      justify-content: center;
      border-radius: 0.65rem;
      padding: 0.85rem;
    }
  }
/* END_SECTION:newsletter */

/* START_SECTION:offers-carousel (INDEX:21) */
.offers-carousel {
    padding: 2.5rem clamp(1rem, 3vw, 3rem);
  }

  .offers-carousel__container {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
  }

  /* ── Header ─────────────────────────── */
  .offers-carousel__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
  }

  .offers-carousel__heading {
    font-size: var(--offers-heading-d, clamp(1.8rem, 3vw, 2.4rem));
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .offers-carousel__counter {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgb(var(--color-foreground));
    opacity: 0.6;
    letter-spacing: -0.02em;
  }

  /* ── Stage with nav buttons ─────────── */
  .offers-carousel__stage {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .offers-carousel__nav {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: rgba(var(--color-foreground), 0.08);
    color: rgb(var(--color-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
  }

  .offers-carousel__nav:hover:not(:disabled) {
    background: rgba(var(--color-foreground), 0.15);
    transform: scale(1.08);
  }

  .offers-carousel__nav:disabled {
    opacity: 0.3;
    cursor: default;
  }

  /* ── Viewport & Track ───────────────── */
  .offers-carousel__viewport {
    flex: 1;
    overflow: hidden;
    padding: 1.5rem 0;
  }

  .offers-carousel__track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  /* card width by slides-per-view */
  .offers-carousel__track--1 .offers-carousel__card { flex: 0 0 100%; }
  .offers-carousel__track--2 .offers-carousel__card { flex: 0 0 calc(50% - 0.625rem); }
  .offers-carousel__track--3 .offers-carousel__card { flex: 0 0 calc(33.333% - 0.834rem); }
  .offers-carousel__track--4 .offers-carousel__card { flex: 0 0 calc(25% - 0.938rem); }
  .offers-carousel__track--5 .offers-carousel__card { flex: 0 0 calc(20% - 1rem); }

  /* ── Offer Card ─────────────────────── */
  .offers-carousel__card {
    border: 1.5px solid #87ceeb;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    transform: scale(0.92);
    transform-origin: center center;
    box-shadow: none;
  }

  .offers-carousel__card.is-active {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .offers-carousel__card-title-bar {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .offers-carousel__card-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.7;
    border-bottom: 1.5px solid rgba(0,0,0,0.12);
    padding-bottom: 0.5rem;
  }

  .offers-carousel__card-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.75;
    flex: 1;
  }

  .offers-carousel__card-link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: inherit;
    text-decoration: underline;
    margin-top: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
  }

  .offers-carousel__card-link:hover {
    opacity: 1;
  }

  /* ── Dots ───────────────────────────── */
  .offers-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
  }

  .offers-carousel__dot {
    width: 1.8rem;
    height: 0.3rem;
    border-radius: 99px;
    border: none;
    background: rgba(var(--color-foreground), 0.15);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
    padding: 0;
  }

  .offers-carousel__dot.is-active {
    background: rgb(var(--color-foreground));
    width: 2.8rem;
  }

  /* ── Mobile ─────────────────────────── */
  @media screen and (max-width: 767px) {
    .offers-carousel {
      padding: 2rem 1rem;
    }

    .offers-carousel__heading {
      font-size: var(--offers-heading-m, 1.8rem);
    }

    .offers-carousel__track--2 .offers-carousel__card,
    .offers-carousel__track--3 .offers-carousel__card,
    .offers-carousel__track--4 .offers-carousel__card,
    .offers-carousel__track--5 .offers-carousel__card {
      flex: 0 0 calc(100% - 0rem);
    }

    .offers-carousel__nav {
      width: 2rem;
      height: 2rem;
    }
  }
/* END_SECTION:offers-carousel */

/* START_SECTION:product-tabs (INDEX:24) */
.ptabs-section {
    padding-top: var(--ptabs-pt, 2.5rem);
    padding-bottom: var(--ptabs-pb, 2.5rem);
  }

  .ptabs-container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .ptabs-section__heading {
    font-family: var(--font-header--family);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: rgb(var(--color-foreground));
    margin: 0 0 1.5rem;
  }

  .ptabs-wrap {
    border: 1px solid #dde0e4;
    border-radius: 0.5rem;
    overflow: hidden;
  }

  .ptabs-bar {
    display: flex;
    flex-wrap: wrap;
    background: #17C3D8;
  }

  .ptabs-btn {
    padding: 0.7rem 1.25rem;
    background: #17C3D8;
    color: #fff;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
    line-height: 1.3;
  }

  .ptabs-btn:last-child { border-right: none; }
  .ptabs-btn.is-active { background: #7BC144; }
  .ptabs-btn:hover:not(.is-active) { background: #12afc2; }

  .ptabs-panel { display: none; }
  .ptabs-panel.is-active { display: block; padding: 1.35rem 1.25rem; }

  .ptabs-content {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(var(--color-foreground), 0.85);
  }

  .ptabs-richtext p { margin: 0 0 0.75rem; }
  .ptabs-richtext p:last-child { margin-bottom: 0; }
  .ptabs-richtext ul, .ptabs-richtext ol { padding-left: 1.4em; margin: 0 0 0.75rem; }
  .ptabs-richtext li { margin-bottom: 0.3rem; }

  .ptabs-description p { margin: 0 0 0.75rem; }
  .ptabs-description p:last-child { margin-bottom: 0; }
  .ptabs-description ul, .ptabs-description ol { padding-left: 1.4em; margin: 0 0 0.75rem; }
  .ptabs-description table { width: 100%; border-collapse: collapse; }
  .ptabs-description table td, .ptabs-description table th {
    padding: 0.65rem 1rem;
    border: 1px solid #dde0e4;
    vertical-align: top;
    text-align: left;
  }
  .ptabs-description table td:first-child,
  .ptabs-description table th:first-child { width: 32%; font-weight: 700; background: #f4f6f9; }
  .ptabs-description table tr:nth-child(even) td:first-child,
  .ptabs-description table tr:nth-child(even) th:first-child { background: #eef0f4; }

  .ptabs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }
  .ptabs-table th, .ptabs-table td {
    padding: 0.7rem 1rem;
    border: 1px solid #dde0e4;
    vertical-align: top;
    text-align: left;
  }
  .ptabs-table__key {
    width: 32%;
    font-weight: 700;
    background: #f4f6f9;
    color: rgb(var(--color-foreground));
    white-space: nowrap;
  }
  .ptabs-table__val { background: #fff; color: rgb(var(--color-foreground)); }
  .ptabs-table tr:nth-child(even) .ptabs-table__key { background: #eef0f4; }
  .ptabs-table tr:nth-child(even) .ptabs-table__val { background: #fafbfc; }

  .ptabs-description--below-table {
    border-top: 1px solid #dde0e4;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .ptabs-faculty {
    display: grid;
    grid-template-columns: 20% 80%;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .ptabs-faculty__img-col {
    width: 100%;
  }

  .ptabs-faculty__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.375rem;
    object-fit: cover;
  }

  .ptabs-faculty__info-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .ptabs-faculty__name {
    font-family: var(--font-header--family);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: rgb(var(--color-foreground));
    margin: 0 0 1rem;
  }

  .ptabs-faculty__desc br {
    display: block;
    content: '';
    margin-top: 0.6rem;
  }

  .ptabs-faculty__desc {
    margin: 0;
  }

  @media screen and (max-width: 600px) {
    .ptabs-faculty {
      grid-template-columns: 1fr;
    }
    .ptabs-faculty__img {
      max-width: 160px;
    }
  }

  .ptabs-empty {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(var(--color-foreground), 0.45);
    font-style: italic;
  }

  @media screen and (max-width: 767px) {
    .ptabs-btn { font-size: 0.78rem; padding: 0.55rem 0.85rem; }
    .ptabs-table__key { width: 40%; white-space: normal; }
    .ptabs-description table td:first-child,
    .ptabs-description table th:first-child { width: 40%; }
  }
/* END_SECTION:product-tabs */

/* START_SECTION:product (INDEX:25) */
.product-page {
    padding: 2rem var(--page-margin);
    max-width: var(--page-width);
    margin: 0 auto;
    width: 100%;
    overflow-x: clip;
  }

  .product-page__inner {
    display: grid;
    grid-template-columns: var(--gallery-w-d, 50%) 1fr;
    gap: 0;
    align-items: start;
    min-width: 0;
  }

  .product-gallery {
    position: sticky;
    top: 2rem;
    min-width: 0;
    width: 100%;
  }

  .product-gallery__stage {
    position: relative;
    background: rgba(var(--color-foreground), 0.03);
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
  }

  .product-gallery__track {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .product-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .product-gallery__slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .product-gallery__zoom-trigger {
    display: block;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    cursor: zoom-in;
    padding: 0;
  }

  .product-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-gallery__placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
  }

  .product-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgb(var(--color-background));
    border: 1px solid rgba(var(--color-foreground), 0.12);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgb(var(--color-foreground));
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }

  .product-gallery__arrow:hover {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border-color: transparent;
  }

  .product-gallery__arrow--prev { left: 0.75rem; }
  .product-gallery__arrow--next { right: 0.75rem; }

  .product-gallery__arrow.is-hidden { opacity: 0; pointer-events: none; }

  .product-gallery__counter {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    pointer-events: none;
  }

  .product-gallery__thumbs-carousel {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .product-gallery__thumbs-track-wrap {
    flex: 1 1 0%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .product-gallery__thumbs {
    display: flex;
    gap: 0.5rem;
    width: max-content;
    will-change: transform;
    transition: transform 0.3s ease;
  }

  .product-gallery__thumb-arrow {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgb(var(--color-background));
    border: 1px solid rgba(var(--color-foreground), 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(var(--color-foreground));
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .product-gallery__thumb-arrow:hover {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border-color: transparent;
  }

  .product-gallery__thumb-arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
  }

  .product-gallery__thumb {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(var(--color-foreground), 0.04);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease;
  }

  .product-gallery__thumb.is-active {
    border-color: rgb(var(--color-foreground));
  }

  .product-gallery__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-left: 3rem;
  }

.product-info__title {
    font-family: var(--font-header--family);
    font-size: var(--title-fs-d, clamp(1.5rem, 3vw, 2.25rem));
    font-weight: var(--title-fw, 400);
    line-height: 1.2;
    margin: 0;
    color: rgb(var(--color-foreground));
  }

  .product-info__price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  .product-info__price-regular {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(var(--color-foreground));
  }

  .product-info__price-sale {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f35487;
  }

  .product-info__price-compare {
    font-size: 1rem;
    font-weight: 400;
    text-decoration: line-through;
    color: rgba(var(--color-foreground), 0.4);
  }

  .product-info__price-badge {
    background: #f35487;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 2rem;
  }

  .product-info__unit-price {
    font-size: 0.8rem;
    color: rgba(var(--color-foreground), 0.5);
    width: 100%;
  }

  .product-info__tax-note {
    font-size: 0.8rem;
    color: rgba(var(--color-foreground), 0.5);
    margin: 0.5rem 0 0;
  }

  .product-info__shipping-link {
    color: rgba(var(--color-foreground), 0.5);
    text-underline-offset: 2px;
  }

  .product-info__shipping-link:hover {
    color: rgb(var(--color-foreground));
  }

  .product-info__shipping-notice {
    font-size: 0.8rem;
    color: rgba(var(--color-foreground), 0.6);
    margin: 0.35rem 0 0;
    line-height: 1.5;
  }

  .product-info__shipping-notice strong {
    font-weight: 600;
    color: rgb(var(--color-foreground));
  }

  .product-info__description {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(var(--color-foreground), 0.75);
  }

  .product-info__description p:first-child { margin-top: 0; }
  .product-info__description p:last-child { margin-bottom: 0; }

  .product-form__options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .product-form__option-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(var(--color-foreground), 0.6);
    margin-bottom: 0.6rem;
  }

  .product-form__option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .product-form__option-select {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 0.875rem;
    border: 1.5px solid rgba(var(--color-foreground), 0.2);
    border-radius: var(--style-border-radius-inputs, 0.5rem);
    background-color: rgb(var(--color-background));
    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='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(var(--color-foreground));
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
  }

  .product-form__option-select:focus {
    outline: none;
    border-color: rgb(var(--color-foreground));
  }

  .product-form__design-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }

  .product-form__design-select {
    flex: 1;
    min-width: 160px;
  }

  .product-form__option-input { display: none; }

  .product-form__option-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    border: 1.5px solid rgba(var(--color-foreground), 0.2);
    border-radius: 0.4rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgb(var(--color-foreground));
    min-width: 2.5rem;
    text-align: center;
  }

  .product-form__option-input:checked + .product-form__option-value {
    border-color: var(--option-active-bg, rgb(var(--color-foreground)));
    background: var(--option-active-bg, rgb(var(--color-foreground)));
    color: var(--option-active-text, rgb(var(--color-background)));
  }

  .product-form__option-value:hover {
    border-color: var(--option-active-bg, rgb(var(--color-foreground)));
  }

  .product-form__option-value.is-unavailable {
    opacity: 0.35;
    text-decoration: line-through;
    cursor: not-allowed;
  }

  .product-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  .product-form__quantity-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-form__quantity-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(var(--color-foreground), 0.6);
  }

  .product-form__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .product-form__actions-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
  }

  .product-form__quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(var(--color-foreground), 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
    width: fit-content;
  }

  .product-form__qty-btn {
    background: none;
    border: none;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(var(--color-foreground));
    transition: background 0.2s ease;
  }

  .product-form__qty-btn:hover {
    background: rgba(var(--color-foreground), 0.06);
  }

  .product-form__qty-input {
    width: 3.5rem;
    border: none;
    border-left: 1.5px solid rgba(var(--color-foreground), 0.1);
    border-right: 1.5px solid rgba(var(--color-foreground), 0.1);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgb(var(--color-foreground));
    background: transparent;
    padding: 0;
    height: 2.75rem;
    -moz-appearance: textfield;
  }

  .product-form__qty-input::-webkit-outer-spin-button,
  .product-form__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

  .product-form__add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex: 1;
    padding: 0 1.5rem;
    background: #111111;
    color: #fff;
    border: none;
    border-radius: var(--style-border-radius-inputs, 0.5rem);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease;
    position: relative;
  }

  .product-form__add-to-cart:hover:not(:disabled) { opacity: 0.88; transform: translateY(-1px); }
  .product-form__add-to-cart:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

  .product-form__add-to-cart.is-loading .add-to-cart-text,
  .product-form__add-to-cart.is-loading svg { opacity: 0; }

  .add-to-cart-loading {
    display: none;
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
  }

  .product-form__add-to-cart.is-loading .add-to-cart-loading { display: block; }

  .product-form__buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.95rem 2rem;
    background: #111111;
    color: #fff;
    border: none;
    border-radius: var(--style-border-radius-inputs, 0.5rem);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease;
  }

  .product-form__buy-now:hover:not(:disabled) { opacity: 0.85; transform: translateY(-1px); }
  .product-form__buy-now:disabled { opacity: 0.45; cursor: not-allowed; }

  @media screen and (min-width: 768px) {
    .product-form__add-to-cart,
    .product-form__buy-now {
      flex: 0 1 auto;
      max-width: 220px;
    }
  }

  .product-form__whatsapp-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #128C7E;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
  }

  .product-form__whatsapp-quote:hover {
    color: #075E54;
    border-bottom-color: #075E54;
  }

  .product-form__whatsapp-quote svg {
    flex-shrink: 0;
  }

  .gallery-zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .gallery-zoom-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .gallery-zoom-overlay__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
  }

  .gallery-zoom-overlay__close:hover { background: rgba(255,255,255,0.2); }

  .gallery-zoom-overlay__img-wrap {
    max-width: 92vw;
    max-height: 92vh;
    overflow: auto;
    cursor: zoom-in;
  }

  .gallery-zoom-overlay__img-wrap.is-zoomed { cursor: zoom-out; }

  .gallery-zoom-overlay__img {
    display: block;
    max-width: 100%;
    max-height: 92vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: center center;
  }

  .gallery-zoom-overlay__img-wrap.is-zoomed .gallery-zoom-overlay__img {
    transform: scale(2);
    max-width: none;
    max-height: none;
  }

  @media screen and (max-width: 767px) {
    .product-page__inner {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .product-gallery {
      position: static;
      max-width: var(--gallery-max-m, 100%);
      margin-left: auto;
      margin-right: auto;
    }

    .product-gallery__thumb { width: 4rem; height: 4rem; }

    .product-info { padding-left: 0; }

    .product-info__title { font-size: var(--title-fs-m, 1.5rem); }
  }

  .product-accordions {
    border-top: 1px solid rgba(var(--color-foreground), 0.1);
  }

  .product-accordion {
    border-bottom: 1px solid rgba(var(--color-foreground), 0.1);
  }

  .product-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }

  .product-accordion__summary::-webkit-details-marker { display: none; }

  .product-accordion__title-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .product-accordion__icon-lead {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    color: rgba(var(--color-foreground), 0.65);
  }

  .product-accordion__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgb(var(--color-foreground));
  }

  .product-accordion__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--color-foreground), 0.2);
    color: rgba(var(--color-foreground), 0.6);
    transition: transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
  }

  .product-accordion[open] .product-accordion__icon {
    transform: rotate(180deg);
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border-color: transparent;
  }

  .product-accordion__content {
    padding-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(var(--color-foreground), 0.7);
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .product-accordion__content p:first-child { margin-top: 0; }
  .product-accordion__content p:last-child { margin-bottom: 0; }

  .sticky-atc {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9;
    width: 420px;
    background: rgb(var(--color-background));
    border: 1px solid rgba(var(--color-foreground), 0.1);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(calc(100% + 2rem));
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    pointer-events: none;
  }

  .sticky-atc.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sticky-atc__inner {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }

  .sticky-atc__product {
    display: flex;
    align-items: center;
    gap: 0.875rem;
  }

  .sticky-atc__image {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(var(--color-foreground), 0.04);
  }

  .sticky-atc__details {
    flex: 1;
    min-width: 0;
  }

  .sticky-atc__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(var(--color-foreground));
    margin: 0 0 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-atc__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .sticky-atc__price-regular,
  .sticky-atc__price-sale {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgb(var(--color-foreground));
  }

  .sticky-atc__price-sale { color: #f35487; }

  .sticky-atc__price-compare {
    font-size: 0.8rem;
    font-weight: 400;
    text-decoration: line-through;
    color: rgba(var(--color-foreground), 0.4);
  }

  .sticky-atc__controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .sticky-atc__qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(var(--color-foreground), 0.18);
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
  }

  .sticky-atc__qty-btn {
    background: none;
    border: none;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(var(--color-foreground));
    transition: background 0.2s;
  }

  .sticky-atc__qty-btn:hover { background: rgba(var(--color-foreground), 0.06); }

  .sticky-atc__qty-input {
    width: 2.5rem;
    border: none;
    border-left: 1.5px solid rgba(var(--color-foreground), 0.1);
    border-right: 1.5px solid rgba(var(--color-foreground), 0.1);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(var(--color-foreground));
    background: transparent;
    padding: 0;
    height: 2.25rem;
    -moz-appearance: textfield;
  }

  .sticky-atc__qty-input::-webkit-outer-spin-button,
  .sticky-atc__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

  .sticky-atc__actions {
    display: flex;
    gap: 0.5rem;
    flex: 1;
  }

  .sticky-atc__add-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 2.5rem;
    padding: 0 1rem;
    background: #111111;
    color: #fff;
    border: none;
    border-radius: var(--style-border-radius-inputs, 0.5rem);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: opacity 0.2s;
  }

  .sticky-atc__add-btn:hover:not(:disabled) { opacity: 0.88; }
  .sticky-atc__add-btn:disabled { opacity: 0.45; cursor: not-allowed; }

  .sticky-atc__add-btn.is-loading .sticky-atc__add-text { opacity: 0; }

  .sticky-atc__add-loading {
    display: none;
    position: absolute;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
  }

  .sticky-atc__add-btn.is-loading .sticky-atc__add-loading { display: block; }

  .sticky-atc__buy-btn {
    flex: 1;
    height: 2.5rem;
    padding: 0 1rem;
    background: #111111;
    color: #fff;
    border: none;
    border-radius: var(--style-border-radius-inputs, 0.5rem);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .sticky-atc__buy-btn:hover:not(:disabled) { opacity: 0.85; }
  .sticky-atc__buy-btn:disabled { opacity: 0.45; cursor: not-allowed; }

  @media screen and (max-width: 1023px) {
    .sticky-atc {
      bottom: calc(5.5rem + env(safe-area-inset-bottom));
      right: 0.75rem;
      left: 0.75rem;
      width: auto;
      border-radius: 1rem;
      transform: translateY(calc(100% + 2rem));
    }

    .sticky-atc.is-visible {
      transform: translateY(0);
    }

    .sticky-atc__inner {
      padding: 0.75rem 1rem;
      flex-direction: row;
      align-items: center;
      gap: 0.75rem;
    }

    .sticky-atc__product {
      flex: 1;
      min-width: 0;
    }

    .sticky-atc__image { display: none; }

    .sticky-atc__title {
      font-size: 0.8rem;
    }

    .sticky-atc__controls {
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    .sticky-atc__buy-btn { display: none; }
  }

  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  /* ── Detail Tabs ──────────────────────────────────────── */
  .product-detail-tabs { margin-top: 1.25rem; border: 1px solid #dde0e4; border-radius: 0.5rem; overflow: hidden; }

  .pdt-tab-bar { display: flex; flex-wrap: wrap; background: #00AEEF; }

  .pdt-tab-btn {
    padding: 0.65rem 1.15rem;
    background: #00AEEF;
    color: #fff;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.15);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
  }

  .pdt-tab-btn:last-child { border-right: none; }
  .pdt-tab-btn.is-active { background: #22a845; }
  .pdt-tab-btn:hover:not(.is-active) { background: #0099d4; }

  .pdt-tab-panel { display: none; padding: 0; }
  .pdt-tab-panel.is-active { display: block; }

  .pdt-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
  .pdt-table th,
  .pdt-table td { padding: 0.7rem 1rem; border: 1px solid #dde0e4; vertical-align: top; text-align: left; }
  .pdt-table th.pdt-table__key {
    width: 32%;
    font-weight: 700;
    background: #f4f6f9;
    color: rgb(var(--color-foreground));
    white-space: nowrap;
  }
  .pdt-table td.pdt-table__val { background: #fff; color: rgb(var(--color-foreground)); }
  .pdt-table tr:nth-child(even) th.pdt-table__key { background: #eef0f4; }
  .pdt-table tr:nth-child(even) td.pdt-table__val { background: #fafbfc; }

  .pdt-tab-richtext { padding: 1.25rem; font-size: 0.92rem; line-height: 1.7; }
  .pdt-tab-richtext p { margin: 0 0 0.75rem; }
  .pdt-tab-richtext p:last-child { margin-bottom: 0; }

  /* Product description rendered inside a tab */
  .pdt-tab-description { font-size: 0.92rem; line-height: 1.7; }

  /* Native <table> from Shopify rich text editor */
  .pdt-tab-description table { width: 100%; border-collapse: collapse; }
  .pdt-tab-description table td,
  .pdt-tab-description table th { padding: 0.7rem 1rem; border: 1px solid #dde0e4; vertical-align: top; text-align: left; }
  .pdt-tab-description table td:first-child,
  .pdt-tab-description table th:first-child { width: 32%; font-weight: 700; background: #f4f6f9; }
  .pdt-tab-description table td:last-child,
  .pdt-tab-description table th:last-child { background: #fff; }
  .pdt-tab-description table tr:nth-child(even) td:first-child,
  .pdt-tab-description table tr:nth-child(even) th:first-child { background: #eef0f4; }
  .pdt-tab-description table tr:nth-child(even) td:last-child { background: #fafbfc; }

  /* <dl>/<dt>/<dd> definition lists */
  .pdt-tab-description dl { display: grid; grid-template-columns: 32% 1fr; margin: 0; border: 1px solid #dde0e4; border-bottom: none; }
  .pdt-tab-description dt,
  .pdt-tab-description dd { padding: 0.7rem 1rem; border-bottom: 1px solid #dde0e4; margin: 0; vertical-align: top; }
  .pdt-tab-description dt { font-weight: 700; background: #f4f6f9; }
  .pdt-tab-description dd { background: #fff; }
  .pdt-tab-description dl > *:nth-child(4n+1),
  .pdt-tab-description dl > *:nth-child(4n+2) { background-color: #eef0f4; }
  .pdt-tab-description dl > *:nth-child(4n+2) { background-color: #fafbfc; }

  /* Paragraph fallback */
  .pdt-tab-description > p { padding: 0.75rem 1rem; margin: 0; border-bottom: 1px solid #f0f0f0; }
  .pdt-tab-description > p:last-child { border-bottom: none; }
  .pdt-tab-description > p > strong:first-child { display: inline-block; width: 32%; font-weight: 700; }

  @media screen and (max-width: 767px) {
    .pdt-tab-description table td:first-child,
    .pdt-tab-description table th:first-child { width: 40%; }
    .pdt-tab-description dl { grid-template-columns: 40% 1fr; }
    .pdt-tab-description > p > strong:first-child { width: 40%; }
  }

  @media screen and (max-width: 767px) {
    .pdt-tab-btn { font-size: 0.75rem; padding: 0.55rem 0.75rem; }
    .pdt-table th.pdt-table__key { width: 40%; white-space: normal; }
  }
/* END_SECTION:product */

/* START_SECTION:reels (INDEX:26) */
/* ── Section ────────────────────────────────────── */
  .reels-section {
    padding: 4rem 0;
  }

  .reels-section__header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .reels-section__heading {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
  }

  .reels-section__heading-link {
    color: inherit;
    text-decoration: none;
  }

  .reels-section__heading-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  .reels-section__subheading {
    margin: 0.75rem auto 0;
    max-width: 48ch;
    opacity: 0.65;
    font-size: 1rem;
  }

  /* ── Track ──────────────────────────────────────── */
  .reels-section__track-wrapper {
    position: relative;
  }

  .reels-section__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 2rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .reels-section__track::-webkit-scrollbar {
    display: none;
  }

  /* ── Nav arrows ─────────────────────────────────── */
  .reels-section__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgb(var(--color-background));
    border: 1px solid rgba(var(--color-foreground), 0.12);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: opacity 0.2s, transform 0.2s;
    color: rgb(var(--color-foreground));
  }

  .reels-section__nav:hover {
    opacity: 0.85;
    transform: translateY(-50%) scale(1.08);
  }

  .reels-section__nav--prev { left: 0.25rem; }
  .reels-section__nav--next { right: 0.25rem; }

  @media screen and (max-width: 749px) {
    .reels-section__nav { display: none; }
    .reels-section__track {
      padding: 0.5rem 1rem 1.25rem;
      gap: 0.5rem;
    }
  }

  /* ── Dots (mobile only) ─────────────────────────── */
  .reels-section__dots {
    display: none;
  }

  @media screen and (max-width: 749px) {
    .reels-section__dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 0.75rem;
      padding-bottom: 0.25rem;
    }
  }

  .reels-section__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(var(--color-foreground), 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
  }

  .reels-section__dot.is-active {
    background: rgb(var(--color-foreground));
    transform: scale(1.4);
  }

  /* ── Reel card ──────────────────────────────────── */
  .reel {
    flex-shrink: 0;
    width: 300px;
    scroll-snap-align: start;
  }

  @media screen and (max-width: 749px) {
    /* 2 columns: (100vw - 2×1rem padding - 0.5rem gap) / 2 */
    .reel { width: calc(50vw - 1.25rem); }
  }

  .reel__card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #111;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    cursor: pointer;
  }

  /* ── Video ──────────────────────────────────────── */
  .reel__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ── Placeholder ────────────────────────────────── */
  .reel__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
  }

  .reel__placeholder-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  /* ── Overlay gradient ───────────────────────────── */
  .reel__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25) 0%,
      transparent 30%,
      transparent 55%,
      rgba(0, 0, 0, 0.65) 100%
    );
    padding: 1rem;
  }

  /* ── Top controls (instagram + mute) ───────────── */
  .reel__top-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .reel__instagram-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
  }

  .reel__instagram-badge svg {
    width: 1rem;
    height: 1rem;
  }

  @media screen and (max-width: 749px) {
    .reel__instagram-badge { width: 1.75rem; height: 1.75rem; }
    .reel__instagram-badge svg { width: 0.75rem; height: 0.75rem; }
  }

  .reel__mute-btn {
    background: rgba(0, 0, 0, 0.45);
    border: none;
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.2s;
  }

  .reel__mute-btn:hover {
    background: rgba(0, 0, 0, 0.65);
  }

  .reel__mute-btn svg {
    width: 1rem;
    height: 1rem;
  }

  /* Higher specificity (0,2,0) beats svg.lucide (0,1,1) from theme.liquid */
  .reel__mute-btn .reel__icon-unmuted { display: none; }
  .reel.is-unmuted .reel__mute-btn .reel__icon-muted   { display: none; }
  .reel.is-unmuted .reel__mute-btn .reel__icon-unmuted { display: block; }


  /* ── Bottom content ─────────────────────────────── */
  .reel__bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .reel__caption {
    margin: 0;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .reel__discover-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(var(--color-background), 0.92);
    color: rgb(var(--color-foreground));
    border: none;
    border-radius: 2rem;
    padding: 0.6rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    width: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  }

  .reel__discover-btn:hover {
    background: rgb(var(--color-background));
    transform: translateY(-1px);
  }

  @media screen and (max-width: 749px) {
    .reel__overlay { padding: 0.6rem; }
    .reel__bottom { gap: 0.4rem; }
    .reel__mute-btn { width: 1.75rem; height: 1.75rem; }
    .reel__mute-btn svg { width: 0.75rem; height: 0.75rem; }
    .reel__caption { font-size: 0.7rem; }
    .reel__discover-btn { padding: 0.45rem 0.6rem; font-size: 0.65rem; gap: 0.3rem; }
  }

  .reel__discover-icon {
    width: 0.95rem;
    height: 0.95rem;
    flex-shrink: 0;
  }

  /* ── Product modal ──────────────────────────────── */
  .reel-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }

  .reel-modal[hidden] { display: none; }

  .reel-modal__backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
    cursor: pointer;
  }

  /* ── Desktop: centered, 60vh tall ───────────────── */
  .reel-modal__sheet {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 680px;
    height: 60vh;
    background: rgb(var(--color-background));
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.96) translateY(12px);
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .reel-modal.is-open .reel-modal__sheet {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  .reel-modal__handle {
    display: none;
  }

  .reel-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem 1rem;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.07);
    background: rgb(var(--color-background));
  }

  /* ── Mobile: bottom sheet ────────────────────────── */
  @media screen and (max-width: 749px) {
    .reel-modal {
      align-items: flex-end;
      justify-content: stretch;
    }

    .reel-modal__sheet {
      width: 100%;
      max-width: 100%;
      height: auto;
      max-height: 75vh;
      border-radius: 1.5rem 1.5rem 0 0;
      opacity: 1;
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    }

    .reel-modal.is-open .reel-modal__sheet {
      opacity: 1;
      transform: translateY(0);
    }

    .reel-modal__handle {
      display: block;
      width: 2.5rem;
      height: 4px;
      background: rgba(var(--color-foreground), 0.15);
      border-radius: 2px;
      margin: 0.75rem auto 0;
      flex-shrink: 0;
    }

    .reel-modal__header {
      padding: 1rem 1.25rem 0.875rem;
      border-bottom: 1px solid rgba(var(--color-foreground), 0.07);
    }
  }

  .reel-modal__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
  }

  .reel-modal__close {
    background: rgba(var(--color-foreground), 0.07);
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(var(--color-foreground));
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .reel-modal__close:hover {
    background: rgba(var(--color-foreground), 0.12);
  }

  .reel-modal__close svg {
    width: 1rem;
    height: 1rem;
  }

  .reel-modal__grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem 1.5rem;
    overflow-y: auto;
    flex: 1;
  }

  @media screen and (max-width: 749px) {
    .reel-modal__grid {
      padding: 1rem 1.25rem 1.5rem;
    }
  }

  /* ── Product card — horizontal list ─────────────── */
  .reel-product-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(var(--color-foreground), 0.08);
    background: rgba(var(--color-foreground), 0.02);
    padding: 0.75rem;
  }

  .reel-product-card__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
  }

  .reel-product-card__image-wrap {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    border-radius: 0.625rem;
    overflow: hidden;
    background: rgba(var(--color-foreground), 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .reel-product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .reel-product-card__no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--color-foreground), 0.3);
  }

  .reel-product-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
  }

  .reel-product-card__title {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgb(var(--color-foreground));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .reel-product-card__price {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgb(var(--color-foreground));
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .reel-product-card__compare {
    font-weight: 400;
    opacity: 0.45;
    font-size: 0.75rem;
    text-decoration: line-through;
  }

  .reel-product-card__atc {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.15s;
  }

  .reel-product-card__atc:hover:not(:disabled) {
    transform: translateY(-1px);
    opacity: 0.9;
  }

  @media screen and (max-width: 749px) {
    .reel-product-card__image-wrap {
      width: 4rem;
      height: 4rem;
    }
    .reel-product-card__title { font-size: 0.8rem; }
    .reel-product-card__atc { padding: 0.45rem 0.75rem; font-size: 0.72rem; }
  }

  .reel-product-card__atc:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .reel-product-card__atc.is-loading {
    opacity: 0.6;
    pointer-events: none;
  }
/* END_SECTION:reels */

/* START_SECTION:related-products (INDEX:27) */
.related-products-section {
    padding: var(--padding-top) var(--page-margin) var(--padding-bottom);
  }

  .related-products__inner {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .related-products__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .related-products__heading {
    font-family: var(--font-header--family);
    font-size: var(--h2-size);
    font-weight: 700;
    margin: 0;
    color: rgb(var(--color-foreground));
  }

  .related-products__controls {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .rp-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--color-foreground), 0.2);
    background: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }

  .rp-nav-btn:hover:not(:disabled) {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border-color: transparent;
  }

  .rp-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .related-products__viewport {
    overflow: hidden;
    container-type: inline-size;
  }

  .related-products__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
  }

  .related-products__card {
    flex: 0 0 calc((100cqi - 3 * 1.5rem) / 4);
    min-width: 0;
  }

  @media screen and (max-width: 767px) {
    .related-products__heading {
      font-size: var(--h3-size);
    }

    .related-products__card {
      flex: 0 0 calc((100cqi - 1.5rem) / 2);
    }
  }
/* END_SECTION:related-products */

/* START_SECTION:search-bar (INDEX:28) */
.search-bar-section {
    width: 100%;
    background: {{ section.settings.section_bg }};
    padding: 0.75rem clamp(1rem, 4vw, 3rem);
  }

  .search-bar__outer {
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    position: relative;
  }

  .search-bar__form {
    display: flex;
    align-items: center;
    border-radius: 9999px;
    overflow: hidden;
    background: {{ section.settings.bar_bg }};
    box-shadow: 0 2px 12px rgba(23, 195, 216, 0.15);
  }

  /* ── Category custom dropdown ── */
  .search-bar__cat {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-radius: 9999px;
    margin: 4px;
  }

  .search-bar__cat-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    padding: 0 1rem 0 1.4rem;
    min-height: 44px;
    white-space: nowrap;
    border-radius: 9999px;
    transition: filter 0.15s ease;
  }

  .search-bar__cat-trigger:hover {
    filter: brightness(1.1);
  }

  .search-bar__cat-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .search-bar__cat[data-open] .search-bar__cat-chevron {
    transform: rotate(180deg);
  }

  .search-bar__cat-panel[hidden] {
    display: none;
  }

  .search-bar__cat-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 4px;
    min-width: 150px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(23, 195, 216, 0.1);
    border: 1px solid #e0f6fb;
    z-index: 300;
    overflow: hidden;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .search-bar__cat-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    color: #222;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    text-align: left;
    transition: background 0.13s ease, color 0.13s ease;
  }

  .search-bar__cat-option:hover {
    background: #e8f8fb;
    color: #17c3d8;
  }

  .search-bar__cat-option.is-selected {
    background: #e0f6fb;
    color: #17c3d8;
  }

  .search-bar__cat-option-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #cde9ef;
    flex-shrink: 0;
    transition: background 0.13s ease, border-color 0.13s ease;
  }

  .search-bar__cat-option.is-selected .search-bar__cat-option-dot {
    background: #17c3d8;
    border-color: #17c3d8;
  }

  .search-bar__cat-option:hover .search-bar__cat-option-dot {
    border-color: #17c3d8;
  }

  /* ── Input ── */
  .search-bar__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    padding: 0.85rem 0.5rem 0.85rem 1rem;
    min-width: 0;
  }

  .search-bar__input::placeholder {
    color: #9bbac5;
  }

  /* ── Submit button ── */
  .search-bar__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.85rem 1.25rem;
    color: #9bbac5;
    transition: color 0.2s ease;
    flex-shrink: 0;
  }

  .search-bar__submit:hover {
    color: {{ section.settings.dropdown_color }};
  }

  /* ── Live results dropdown ── */
  .search-bar__results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(23, 195, 216, 0.1);
    z-index: 200;
    overflow: hidden;
    border: 1px solid #e8f8fb;
  }

  .search-bar__result-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f0f8fb;
  }

  .search-bar__result-item:last-of-type {
    border-bottom: none;
  }

  .search-bar__result-item:hover,
  .search-bar__result-item.is-active {
    background: #f0fafe;
  }

  .search-bar__result-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #e8f8fb;
  }

  .search-bar__result-img--placeholder {
    background: #e8f8fb;
  }

  .search-bar__result-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
  }

  .search-bar__result-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .search-bar__result-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: {{ section.settings.dropdown_color }};
  }

  .search-bar__results-viewall {
    display: block;
    padding: 0.75rem 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: {{ section.settings.dropdown_color }};
    text-decoration: none;
    background: #f7fdfe;
    border-top: 1px solid #e8f8fb;
    transition: background 0.15s ease;
  }

  .search-bar__results-viewall:hover {
    background: #e8f8fb;
  }

  .search-bar__results-loading,
  .search-bar__results-empty {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #6b8fa0;
    text-align: center;
  }

  /* ── Mobile ── */
  @media screen and (max-width: 767px) {
    .search-bar-section {
      padding: 0.5rem 1rem;
    }

    .search-bar__cat-trigger {
      font-size: 0.9rem;
      padding: 0 0.75rem 0 1rem;
    }

    .search-bar__input {
      font-size: 0.9rem;
      padding: 0.75rem 0.25rem 0.75rem 0.75rem;
    }

    .search-bar__submit {
      padding: 0.75rem 1rem;
    }
  }
/* END_SECTION:search-bar */

/* START_SECTION:search (INDEX:29) */
/* ── Search hero ─────────────────────────────────────── */
  .search-page__hero {
    padding: 2.5rem 6rem 1.75rem;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.07);
  }

  .search-page__hero-inner {
    max-width: 720px;
  }

  .search-page__heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 1.25rem;
    line-height: 1.2;
  }

  .search-page__form {
    width: 100%;
  }

  .search-page__input-wrap {
    display: flex;
    align-items: stretch;
    border: 1.5px solid rgba(var(--color-foreground), 0.18);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: rgb(var(--color-background));
  }

  .search-page__input-wrap:focus-within {
    border-color: rgba(var(--color-foreground), 0.45);
    box-shadow: 0 0 0 3px rgba(var(--color-foreground), 0.06);
  }

  .search-page__input-icon {
    width: 1.1rem;
    height: 1.1rem;
    margin-left: 1rem;
    opacity: 0.35;
    flex-shrink: 0;
    pointer-events: none;
    align-self: center;
  }

  .search-page__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
    color: inherit;
    min-width: 0;
  }

  .search-page__input::-webkit-search-cancel-button {
    display: none;
  }

  .search-page__clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    flex-shrink: 0;
    align-self: center;
    color: inherit;
    opacity: 0.4;
    transition: opacity 0.15s ease;
    text-decoration: none;
  }

  .search-page__clear:hover {
    opacity: 0.8;
  }

  .search-page__clear i {
    width: 1rem;
    height: 1rem;
  }

  .search-page__submit {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border: none;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
  }

  .search-page__submit:hover {
    opacity: 0.85;
  }

  /* ── No-query prompt ─────────────────────────────────── */
  .search-page__prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
    gap: 1rem;
  }

  .search-page__prompt-icon {
    width: 3.5rem;
    height: 3.5rem;
    opacity: 0.15;
  }

  .search-page__prompt-text {
    font-size: 1rem;
    opacity: 0.45;
    margin: 0;
  }

  /* ── Toolbar uses .collection-page__toolbar — no extra styles needed ── */
  .search-page .collection-page__toolbar {
    padding-top: 1.25rem;
  }

  /* ── Responsive ──────────────────────────────────────── */
  @media (max-width: 1023px) {
    .search-page__hero {
      padding: 1.5rem 1.25rem 1.25rem;
    }
  }
/* END_SECTION:search */

/* START_SECTION:stats (INDEX:30) */
.stats-section {
    padding: var(--padding-top) var(--page-margin) var(--padding-bottom);
  }

  .stats-section__inner {
    max-width: var(--page-width);
    margin: 0 auto;
  }

  .stats-section__heading {
    font-family: var(--font-header--family);
    font-size: var(--h2-size);
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem;
    color: rgb(var(--color-foreground));
  }

  .stats-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 1rem;
    background: rgba(var(--color-foreground), 0.03);
    border: 1px solid rgba(var(--color-foreground), 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  .stat-item__number {
    font-family: var(--font-header--family);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    color: var(--stat-color, rgb(var(--color-foreground)));
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
  }

  .stat-item__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgb(var(--color-foreground));
    letter-spacing: 0.02em;
  }

  .stat-item__description {
    font-size: 0.8rem;
    color: rgba(var(--color-foreground), 0.55);
    margin-top: 0.35rem;
    line-height: 1.5;
  }

  @media screen and (max-width: 767px) {
    .stats-section__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .stat-item {
      padding: 1.5rem 0.75rem;
    }

    .stats-section__heading {
      font-size: var(--h3-size);
      margin-bottom: 2rem;
    }
  }
/* END_SECTION:stats */

/* START_SECTION:testimonials (INDEX:31) */
.testimonials {
    padding: 6rem 4rem;
    overflow: hidden;
  }

  .testimonials__container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .testimonials__header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .testimonials__heading {
    margin: 0;
    font-weight: 700;
  }

  .testimonials__description {
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 1.1em;
  }

  .testimonials__slider {
    position: relative;
  }

  .testimonials__slides {
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .testimonials__slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
  }

  .testimonials__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .testimonials__card {
    background: rgba(var(--color-foreground), 0.03);
    padding: 3rem;
    border-radius: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(var(--color-foreground), 0.05);
    max-width: 650px;
    margin: 0 auto;
  }

  .testimonials__quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 6rem;
    height: 6rem;
    transform: rotate(180deg);
  }

  .testimonials__stars {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
  }

  .testimonials__star {
    width: 2.25rem;
    height: 2.25rem;
    color: rgba(var(--color-foreground), 0.2);
    fill: none;
    stroke-width: 2px;
  }

  .testimonials__star.is-filled {
    color: #FFB800;
    fill: #FFB800;
  }

  .testimonials__text {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 2rem;
    font-style: italic;
    color: rgb(var(--color-foreground));
  }

  .testimonials__author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-align: left;
  }

  .testimonials__avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(var(--color-foreground), 0.05);
    flex-shrink: 0;
    border: 2px solid rgb(var(--color-background));
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

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

  .testimonials__meta {
    display: flex;
    flex-direction: column;
  }

  .testimonials__name {
    font-size: 1.1em;
    font-weight: 700;
    font-style: normal;
  }

  .testimonials__title {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
  }

  .testimonials__controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .testimonials__button {
    background: rgb(var(--color-background));
    border: 1px solid rgba(var(--color-foreground), 0.1);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgb(var(--color-foreground));
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    pointer-events: auto;
    flex-shrink: 0;
  }

  .testimonials__button:hover {
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border-color: rgb(var(--color-foreground));
  }

  .testimonials__button i {
    width: 1.4rem;
    height: 1.4rem;
    stroke-width: 1.5px;
  }


  @media screen and (max-width: 749px) {
    .testimonials {
      padding: 4rem 0;
      overflow-x: hidden;
    }
    .testimonials__header {
      padding: 0 20px;
    }
    .testimonials__card {
      padding: 2rem;
      margin: 0 20px;
    }
    .testimonials__text {
      font-size: 1.2rem;
    }
    .testimonials__button {
      width: 2.5rem;
      height: 2.5rem;
    }
  }
/* END_SECTION:testimonials */

/* START_SECTION:text-slider (INDEX:32) */
.text-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 1rem;
    position: relative;
    min-height: 2.5rem;
  }

  .text-slider__slides {
    flex-grow: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .text-slider__slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
  }

  .text-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
  }

  .text-slider__button {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: opacity 0.2s ease;
    z-index: 2;
  }

  .text-slider__button:hover {
    opacity: 0.7;
  }

  .text-slider__button svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .text-slider__link {
    color: inherit;
    text-decoration: none;
  }

  .text-slider__link:hover {
    text-decoration: underline;
  }
/* END_SECTION:text-slider */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:35) */
.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:36) */
.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:image (INDEX:42) */
.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:44) */
.product-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(var(--color-foreground), 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
    flex: 1;
    min-width: 0;
  }

  .product-card__link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; flex: 1; min-width: 0; }

  .product-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: calc(100% / var(--aspect-ratio, 1.0));
    background: rgba(var(--color-foreground), 0.03);
    overflow: hidden;
  }

  .product-card__image-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
  .product-card__image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
  .product-card__image--secondary { display: none; }

  .product-card__badge {
    position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.35rem 0.75rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; border-radius: 2rem; z-index: 2; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .product-card__badge--sale { background: #f35487; color: white; }
  .product-card__badge--new { background: #2A9D8F; color: white; }
  .product-card__badge--favourite { background: #FFB800; color: white; }

  .product-card__content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(var(--color-foreground), 0.08); /* THE DIVIDER */
  }

  .product-card__exam-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.22rem 0.65rem;
    border-radius: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .product-card__title {
    margin: 0;
    font-size: var(--title-font-size);
    font-weight: 500;
    line-height: 1.4;
    color: rgb(var(--color-foreground));
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
  }

  .product-card__bottom {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .product-card__price-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.5rem;
    min-width: 0;
    flex: 1;
  }
  .product-card__price { font-size: var(--price-font-size); font-weight: var(--price-font-weight); color: rgb(var(--color-foreground)); }
  .product-card__price--sale { color: #f35487; }
  .product-card__price--regular-compare { font-size: 0.85rem; font-weight: 500; text-decoration: line-through; color: rgba(var(--color-foreground), 0.4); }

  .product-card__quick-add {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgb(var(--color-foreground));
    color: rgb(var(--color-background));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
  }

  .product-card__quick-add:hover { transform: scale(1.1); background: rgba(var(--color-foreground), 0.9); }
  .product-card__quick-add i { width: 1.2rem; height: 1.2rem; stroke-width: 2.5px; }

  .product-card__quick-add-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product-card__quick-add .loader-icon,
  .product-card__quick-add .success-icon { display: none; }

  .product-card__quick-add.is-loading .quick-add-icon,
  .product-card__quick-add.is-loading .product-card__quick-add-text { display: none; }
  .product-card__quick-add.is-loading .loader-icon { display: block; animation: spin 1s linear infinite; }

  .product-card__quick-add.is-success { background: #2A9D8F; }
  .product-card__quick-add.is-success .quick-add-icon,
  .product-card__quick-add.is-success .product-card__quick-add-text,
  .product-card__quick-add.is-success .loader-icon { display: none; }
  .product-card__quick-add.is-success .success-icon { display: block; }

  @media screen and (max-width: 1023px) {
    .product-card__content {
      padding: 0.75rem;
    }

    .product-card__bottom {
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      margin-top: 0.75rem;
    }

    .product-card__actions-row {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0.5rem;
    }

    .product-card__quick-add {
      width: 100%;
      flex: none;
      height: 2.5rem;
      border-radius: 0.5rem;
    }

    .product-card__quick-add-text {
      font-size: 0.65rem;
    }

    .pc-mobile-secondary-row {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }
  }

  .product-card__sold-out {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    background: rgba(var(--color-foreground), 0.07);
    color: rgba(var(--color-foreground), 0.45);
    white-space: nowrap;
    flex-shrink: 0;
  }

  @media screen and (max-width: 1023px) {
    .product-card__sold-out {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }
  }

  @media screen and (min-width: 1024px) {
    .product-card__quick-add { display: none; }
  }

  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  /* Desktop hover action bar */
  .pc-hover-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #17c3d8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 5;
  }

  @media (min-width: 1024px) {
    .product-card:hover .pc-hover-actions {
      opacity: 1;
      pointer-events: auto;
    }
  }

  @media (max-width: 1023px) {
    .pc-hover-actions { display: none !important; }
  }

  .pc-hover-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    transition: opacity 0.15s;
  }

  .pc-hover-btn:hover { opacity: 0.82; }

  .pc-hover-cart {
    flex: 1;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    justify-content: flex-start;
    gap: 0.4rem;
  }

  .pc-hover-cart .loader-icon,
  .pc-hover-cart .success-icon { display: none; }
  .pc-hover-cart.is-loading .pc-hover-cart-text { display: none; }
  .pc-hover-cart.is-loading .loader-icon { display: block; animation: spin 1s linear infinite; }
  .pc-hover-cart.is-success .pc-hover-cart-text { display: none; }
  .pc-hover-cart.is-success .success-icon { display: block; }

  .pc-hover-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #111;
    flex-shrink: 0;
  }

  .pc-hover-icon:hover { background: #fff; opacity: 1; }

  .pc-hover-wa { background: #25D366 !important; }
  .pc-hover-wa:hover { background: #1ebe5a !important; }

  /* Mobile-only compare icon next to Add to Cart */
  .pc-mobile-compare-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--color-foreground), 0.18);
    background: transparent;
    color: rgb(var(--color-foreground));
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
  }

  .pc-mobile-wa-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #25D366;
    color: #25D366;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .pc-mobile-wa-btn:hover { background: #25D366; color: #fff; }

  @media (max-width: 1023px) {
    .pc-mobile-wa-btn { display: flex; }
  }

  .pc-mobile-compare-btn:hover,
  .pc-mobile-compare-btn.is-comparing {
    background: #17c3d8;
    border-color: #17c3d8;
    color: #fff;
  }

  @media (max-width: 1023px) {
    .pc-mobile-compare-btn { display: flex; }
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-customisation (INDEX:45) */
.product-customisation {
    border: 1.5px solid rgba(var(--color-foreground), 0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
    background: rgba(var(--color-foreground), 0.02);
  }

  .product-customisation__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
  }

  .product-customisation__icon {
    display: flex;
    align-items: center;
    color: rgba(var(--color-foreground), 0.5);
  }

  .product-customisation__icon i {
    width: 1rem;
    height: 1rem;
  }

  .product-customisation__title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(var(--color-foreground), 0.55);
  }

  .product-customisation__fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .customisation-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .customisation-field__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(var(--color-foreground), 0.7);
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .customisation-field__required {
    color: #e63946;
    font-size: 0.65rem;
    line-height: 1;
  }

  .customisation-field__input,
  .customisation-field__select,
  .customisation-field__textarea {
    width: 100%;
    padding: 0.6rem 0.875rem;
    border: 1.5px solid rgba(var(--color-foreground), 0.15);
    border-radius: var(--style-border-radius-inputs, 0.5rem);
    background: rgb(var(--color-background));
    color: rgb(var(--color-foreground));
    font-family: inherit;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
  }

  .customisation-field__input:focus,
  .customisation-field__select:focus,
  .customisation-field__textarea:focus {
    outline: none;
    border-color: #38b2ac;
    box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.12);
  }

  .customisation-field__input.has-error,
  .customisation-field__select.has-error,
  .customisation-field__textarea.has-error {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
  }

  .customisation-field__textarea {
    resize: vertical;
    min-height: 80px;
  }

  .customisation-field__select {
    padding-right: 2.5rem;
    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='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }

  .customisation-field__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .customisation-field__error {
    font-size: 0.75rem;
    color: #e63946;
    display: none;
  }

  .customisation-field__counter {
    font-size: 0.72rem;
    color: rgba(var(--color-foreground), 0.4);
    margin-left: auto;
  }

  .customisation-field__counter.is-over {
    color: #e63946;
  }

  .customisation-field__helper {
    font-size: 0.75rem;
    color: rgba(var(--color-foreground), 0.45);
    line-height: 1.4;
  }
/* END_SNIPPET:product-customisation */

/* START_SNIPPET:toast (INDEX:46) */
.toast-container {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translate(-50%, calc(100% + 4rem));
    z-index: 9999;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    max-width: 90vw;
  }

  .toast-container.is-active {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
  }

  .toast__content {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
  }

  .toast__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    color: #2A9D8F;
  }

  .toast__icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 3px;
  }

  .toast__message {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  @media screen and (max-width: 749px) {
    .toast-container { bottom: 2rem; }
    .toast__content { padding: 0.6rem 1.25rem; }
  }
/* END_SNIPPET:toast */