/** Shopify CDN: Minification failed

Line 1342:11 Expected identifier but found whitespace
Line 1342:13 Unexpected "{"
Line 1342:27 Expected ":"
Line 1342:71 Unexpected "{"
Line 1342:85 Expected ":"
Line 1344:15 Expected identifier but found whitespace
Line 1344:17 Unexpected "{"
Line 1344:31 Expected ":"
Line 1344:74 Unexpected "{"
Line 1344:88 Expected ":"
... and 25 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:404 (INDEX:0) */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 300px);
    margin-bottom: 24px;
  }

  .error-page__card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 300px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
  }

  .error-page__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .error-page__title {
    font-size: 7rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
  }

  .error-page__message {
    font-size: 1.125rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
  }

  .error-page__button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #F3FF75;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .error-page__button:hover {
    background: #e6f066;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(243, 255, 117, 0.3);
  }

  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .error-page {
      padding: 16px;
    }

    .error-page__card {
      padding: 32px 24px;
    }

    .error-page__title {
      font-size: 2.5rem;
    }

    .error-page__message {
      font-size: 1rem;
    }
  }

  @media screen and (max-width: 480px) {
    .error-page__card {
      padding: 24px 16px;
    }

    .error-page__title {
      font-size: 2rem;
    }

    .error-page__button {
      padding: 14px 28px;
      font-size: 0.9rem;
    }
  }
/* END_SECTION:404 */

/* START_SECTION:article (INDEX:1) */
.article-content {
    display: flex;
    justify-content: center;
    padding: 24px;
    min-height: calc(100vh - 200px);
  }

  .article-content__card {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .article-content__header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .article-content__image {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
  }

  .article-content__image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .article-content__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
  }

  .article-content__meta {
    color: #666666;
    font-size: 0.9rem;
  }

  .article-content__body {
    color: #333333;
    line-height: 1.6;
    font-size: 1.125rem;
    margin-bottom: 32px;
  }

  .article-content__body h1,
  .article-content__body h2,
  .article-content__body h3,
  .article-content__body h4,
  .article-content__body h5,
  .article-content__body h6 {
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .article-content__body h1 {
    font-size: 2rem;
  }

  .article-content__body h2 {
    font-size: 1.75rem;
  }

  .article-content__body h3 {
    font-size: 1.5rem;
  }

  .article-content__body h4 {
    font-size: 1.25rem;
  }

  .article-content__body p {
    margin-bottom: 1.5rem;
  }

  .article-content__body ul,
  .article-content__body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .article-content__body li {
    margin-bottom: 0.5rem;
  }

  .article-content__body a {
    color: #007acc;
    text-decoration: underline;
    transition: color 0.2s ease;
  }

  .article-content__body a:hover {
    color: #005999;
  }

  .article-content__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
  }

  .article-content__body blockquote {
    border-left: 4px solid #F3FF75;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666666;
  }

  /* Comments styling */
  .article-content__comments {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .article-content__comments-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
  }

  .article-content__comment {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .article-content__comment-author {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
  }

  .article-content__comment-date {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 8px;
  }

  .article-content__comment-content {
    color: #333333;
    line-height: 1.5;
  }

  .article-content__comment-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
  }

  .article-content__form-field {
    margin-bottom: 16px;
  }

  .article-content__form-field label {
    display: block;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
  }

  .article-content__form-field input,
  .article-content__form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #1a1a1a;
    font-size: 1rem;
  }

  .article-content__form-field input:focus,
  .article-content__form-field textarea:focus {
    outline: none;
    border-color: #F3FF75;
  }

  .article-content__comment-submit {
    background: #F3FF75;
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .article-content__comment-submit:hover {
    background: #e6f066;
  }

  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .article-content {
      padding: 16px;
    }

    .article-content__card {
      padding: 32px 24px;
    }

    .article-content__title {
      font-size: 2rem;
    }

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

  @media screen and (max-width: 480px) {
    .article-content__card {
      padding: 24px 16px;
    }

    .article-content__title {
      font-size: 1.75rem;
    }

    .article-content__body {
      font-size: 0.9rem;
    }
  }
/* END_SECTION:article */

/* START_SECTION:background (INDEX:2) */
.background-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background-color: var(--background-color);
  }

  .background-ellipse {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ellipse-color) 0%, color-mix(in srgb, var(--ellipse-color) 80%, transparent) 30%, color-mix(in srgb, var(--ellipse-color) 40%, transparent) 60%, transparent 100%);
    filter: blur(var(--blur-amount, 40px));
    -webkit-filter: blur(var(--blur-amount, 40px));
  }

  .background-ellipse--top-right {
    top: -30%;
    right: -10%;
    width: var(--top-ellipse-size, 50vw);
    height: var(--top-ellipse-size, 50vw);
    max-width: 2600px;
    max-height: 2600px;
  }

  .background-ellipse--bottom-left {
    bottom: -40%;
    left: -10%;
    width: var(--bottom-ellipse-size, 50vw);
    height: var(--bottom-ellipse-size, 50vw);
    max-width: 2600px;
    max-height: 2600px;
  }

  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .background-ellipse--top-right {
      width: calc(var(--top-ellipse-size, 50vw) * 1.6);
      height: calc(var(--top-ellipse-size, 50vw) * 1.6);
      top: -20%;
      right: -20%;
    }

    .background-ellipse--bottom-left {
      width: calc(var(--bottom-ellipse-size, 50vw) * 1.4);
      height: calc(var(--bottom-ellipse-size, 50vw) * 1.4);
      bottom: -20%;
      left: -20%;
    }
  }

  @media screen and (max-width: 480px) {
    .background-ellipse--top-right {
      width: calc(var(--top-ellipse-size, 50vw) * 2.8);
      height: calc(var(--top-ellipse-size, 50vw) * 2.8);
      top: -25%;
      right: -70%;
    }

    .background-ellipse--bottom-left {
      width: calc(var(--bottom-ellipse-size, 50vw) * 2.8);
      height: calc(var(--bottom-ellipse-size, 50vw) * 2.8);
      bottom: -25%;
      left: -70%;
    }
  }
/* END_SECTION:background */

/* START_SECTION:card-grid (INDEX:4) */
.card-grid {
    display: grid;
    gap: var(--grid-gap);
    width: 100%;
    margin-top: 40px;
  }

  .card-grid__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
  }

  .card-grid__empty p {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    margin: 5px 0;
  }



  /* Grid column variants */
  .card-grid--2-columns {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .card-grid--4-columns {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid--5-columns {
    grid-template-columns: repeat(5, 1fr);
  }

  .card-grid--6-columns {
    grid-template-columns: repeat(6, 1fr);
  }

  .card-grid--7-columns {
    grid-template-columns: repeat(7, 1fr);
  }

  .card-grid--8-columns {
    grid-template-columns: repeat(8, 1fr);
  }

  .card-grid--9-columns {
    grid-template-columns: repeat(9, 1fr);
  }

  .card-grid--10-columns {
    grid-template-columns: repeat(10, 1fr);
  }

  .card-grid--11-columns {
    grid-template-columns: repeat(11, 1fr);
  }

  .card-grid--12-columns {
    grid-template-columns: repeat(12, 1fr);
  }

  .card-grid--13-columns {
    grid-template-columns: repeat(13, 1fr);
  }

  .card-grid--14-columns {
    grid-template-columns: repeat(14, 1fr);
  }

  .card-grid--15-columns {
    grid-template-columns: repeat(15, 1fr);
  }

  .card-grid--16-columns {
    grid-template-columns: repeat(16, 1fr);
  }

  .card-grid--17-columns {
    grid-template-columns: repeat(17, 1fr);
  }

  .card-grid--18-columns {
    grid-template-columns: repeat(18, 1fr);
  }

  .card-grid--19-columns {
    grid-template-columns: repeat(19, 1fr);
  }

  .card-grid--20-columns {
    grid-template-columns: repeat(20, 1fr);
  }

  /* Responsive behavior */
  @media screen and (max-width: 768px) {
    .card-grid--3-columns,
    .card-grid--4-columns,
    .card-grid--5-columns,
    .card-grid--6-columns,
    .card-grid--7-columns,
    .card-grid--8-columns,
    .card-grid--9-columns,
    .card-grid--10-columns,
    .card-grid--11-columns,
    .card-grid--12-columns,
    .card-grid--13-columns,
    .card-grid--14-columns,
    .card-grid--15-columns,
    .card-grid--16-columns,
    .card-grid--17-columns,
    .card-grid--18-columns,
    .card-grid--19-columns,
    .card-grid--20-columns {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Force all cards to 1x1 on mobile for better layout */
    .card-grid__item {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
    }
  }

  @media screen and (max-width: 480px) {
    .card-grid--2-columns,
    .card-grid--3-columns,
    .card-grid--4-columns,
    .card-grid--5-columns,
    .card-grid--6-columns,
    .card-grid--7-columns,
    .card-grid--8-columns,
    .card-grid--9-columns,
    .card-grid--10-columns,
    .card-grid--11-columns,
    .card-grid--12-columns,
    .card-grid--13-columns,
    .card-grid--14-columns,
    .card-grid--15-columns,
    .card-grid--16-columns,
    .card-grid--17-columns,
    .card-grid--18-columns,
    .card-grid--19-columns,
    .card-grid--20-columns {
      grid-template-columns: 1fr;
    }

    /* Force all cards to 1x1 on mobile for better layout */
    .card-grid__item {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
    }
  }
/* END_SECTION:card-grid */

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

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

/* START_SECTION:custom-section (INDEX:9) */
.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:footer (INDEX:20) */
.footer-card {
    border-radius: var(--footer-radius, 24px);
    padding: var(--footer-padding, 24px);
    background: radial-gradient(120% 140% at 60% 0%, var(--footer-bg-from, #ffffff) 0%, var(--footer-bg-to, #E9F7B7) 100%);
  }
  .footer-card__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; }
  .footer-card__brand { display: flex; align-items: center; }
  .footer-card__logo { height: var(--logo-height, 40px); width: auto; object-fit: contain; }
  .footer-card__logo-text { font-weight: 700; font-size: 18px; color: var(--color-text); text-decoration: none; }
  .footer-card__link-group { display: flex; flex-direction: column; gap: 30px; }
  .footer-card__link-heading { font-size: 11px; font-weight: 400; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
  .footer-card__link-item a { color: var(--color-text); text-decoration: none; }
  .footer-card__link-item--corp a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
  .footer-card__link-item--corp .corp-wa { color: #1f7a45; flex: none; }
  .footer-card__cta { display: flex; flex-direction: column; align-items: end; gap: 12px; }
  .footer-card__cta-button { background: #0A0A0A; color: #fff; text-decoration: none; padding: 12px 24px; border-radius: 12px; font-weight: 700; font-size: 16px; }
  .footer-card__contact { display: flex; flex-direction: column; align-items: end; gap: 6px; }
  .footer-card__location-text p { display: flex; flex-direction: column; gap: 6px; }
  .footer-card__contact-link { color: #000; font-weight: 600; text-decoration: none; font-size: 12px; }
  .footer-card__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-card__link-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
  .footer-card__link-fallback { font-size: 12px; font-weight: 700; }
  .footer-card__location { font-size: 11px; color: var(--color-text-muted); line-height: 1.4; }
  .footer-card__metric { display: flex; align-items: center !important; justify-content: flex-end; gap: 4px; }
  .footer-card__metric-number { font-size: 28px; font-weight: 700; color: var(--color-text); }
  .footer-card__metric-label { font-size: 12px; font-weight: 600; color: #000; width: 60px; text-align: left; line-height: 1.15; overflow-wrap: anywhere; word-break: normal; }
  .footer-card__metric-divider { width: 1px; height: 36px; margin-left: 20px; margin-right: 20px; background: #CACCC2; rotate: 45deg; }
  .footer-card__bottom { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: center; }
  .footer-card__bottom > .footer-card__icons { width: 100%; justify-self: start; }
  .footer-card__bottom > .footer-card__location { width: 100%; justify-self: start; text-align: left; }
  .footer-card__bottom > .footer-card__metric { width: 100%; justify-self: end; align-items: end; }
  .footer-card__icons { display: flex; align-items: center; gap: 10px; }
  .footer-card__icon { border-radius: 50%; background: #7C2D1E; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: transform .15s ease; }
  .footer-card__icon:hover { transform: translateY(-2px); }
  .footer-card__icon svg path { fill: #fff !important; }
  @media screen and (max-width: 1024px) {
    .footer-card__grid { grid-template-columns: 1fr; }
    .footer-card__links { grid-template-columns: 1fr; }
    .footer-card__bottom { grid-template-columns: 1fr; justify-items: start; }
    .footer-card__bottom > .footer-card__location { text-align: left; }
    .footer-card__cta { align-items: start; }
    .footer-card__metric { align-items: start; justify-content: flex-start; text-align: left; }
    .footer-card__icons { justify-content: flex-start; }
    .footer-card.main-grid__item { grid-column: 1 / -1 !important; }
    .footer-card__contact { align-items: start; }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:21) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
  }

  .header__container {
    margin: 0 auto;
    max-width: var(--layout-max-width);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }

  .header__logo {
    flex-shrink: 0;
  }

  .header__logo-link {
    width: auto;
    max-width: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .header__logo-image {
    height: var(--logo-height, calc(var(--header-height) * 0.6));
    width: auto;
    object-fit: contain;
    display: block;
    max-height: calc(var(--header-height) - 20px);
  }

  .header__cart {
    flex-shrink: 0;
  }

  .header__cart-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #000000;
  }

  .header__cart-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #000000;
  }

  .header__cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .header__cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s ease;
  }

  @media (max-width: 768px) {
    .header__container {
      padding: 0 20px;
    }

    .header__logo-image {
      height: var(--logo-height, calc(var(--header-height) * 0.5));
      max-height: calc(var(--header-height) - 20px);
    }

    .header__cart-btn {
      width: 44px;
      height: 44px;
    }

    .header__cart-icon svg {
      width: 18px;
      height: 18px;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:22) */
.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:main-grid (INDEX:25) */
.main-grid {
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-rows: minmax(80px, auto);
    grid-template-columns: repeat(var(--grid-columns, 4), 1fr);
    grid-template-rows: repeat(var(--grid-rows, 11), minmax(80px, auto));
    gap: var(--grid-gap, 16px);
    margin: 0 auto 40px 0 !important;
    width: 100%;
    max-height: none;
    height: auto;
  }

  .main-grid__item {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    border-radius: 24px;
    padding: 24px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .main-grid__image-text-card {
    padding: 0;
    border-radius: 24px 24px 24px 0;
    border: none;
  }

  /* Remove inner overlay border for Image Text Card when used in this section */
  .main-grid__image-text-card .image-text-card__overlay-inner {
    border: 0;
  }


  .main-grid__image-text-card {
    min-height: 430px;
  }

  .main-grid__icon-text-card {
    min-height: 330px;
  }

  @media (max-width: 1024px) {
    .main-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(var(--grid-rows, 11), minmax(100px, auto));
    }
  }

  @media (max-width: 768px) {
    .main-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      display: flex;
      flex-direction: column;
      max-height: none;
      height: auto;
    }

    .main-grid__item {
      grid-column: span 1 !important;
      grid-row: auto !important;
      height: auto;
    }

    /* Ensure overlay-only cards have usable height on mobile */
    .main-grid__image-text-card {
      min-height: var(--image-card-min-height, 450px);
    }

    /* Move product carousel to top on mobile */
    .main-grid__product-carousel {
      order: -1;
    }

    .main-grid__image-text-card {
      min-height: 430px;
    }

    .main-grid__icon-text-card {
      min-height: 330px;
    }
  }
/* END_SECTION:main-grid */

/* START_SECTION:page (INDEX:26) */
.page-content {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }

  .page-content__card {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .page-content__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
  }

  .page-content__body {
    color: #333333;
    line-height: 1.6;
    font-size: 1.125rem;
  }

  .page-content__body h1,
  .page-content__body h2,
  .page-content__body h3,
  .page-content__body h4,
  .page-content__body h5,
  .page-content__body h6 {
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .page-content__body h1 {
    font-size: 2rem;
  }

  .page-content__body h2 {
    font-size: 1.75rem;
  }

  .page-content__body h3 {
    font-size: 1.5rem;
  }

  .page-content__body h4 {
    font-size: 1.25rem;
  }

  .page-content__body p {
    margin-bottom: 1.5rem;
  }

  .page-content__body ul,
  .page-content__body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }

  .page-content__body li {
    margin-bottom: 0.5rem;
  }

  .page-content__body a {
    color: #007acc;
    text-decoration: underline;
    transition: color 0.2s ease;
  }

  .page-content__body a:hover {
    color: #005999;
  }

  .page-content__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
  }

  .page-content__body blockquote {
    border-left: 4px solid #F3FF75;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666666;
  }

  .page-content__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
  }

  .page-content__body th,
  .page-content__body td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .page-content__body th {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
  }

  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .page-content__card {
      padding: 32px 24px;
    }

    .page-content__title {
      font-size: 2rem;
    }

    .page-content__body {
      font-size: 1rem;
    }

    .page-content__body h1 {
      font-size: 1.75rem;
    }

    .page-content__body h2 {
      font-size: 1.5rem;
    }

    .page-content__body h3 {
      font-size: 1.25rem;
    }
  }

  @media screen and (max-width: 480px) {
    .page-content__card {
      padding: 24px 16px;
    }

    .page-content__title {
      font-size: 1.75rem;
    }

    .page-content__body {
      font-size: 0.9rem;
    }
  }
/* END_SECTION:page */

/* START_SECTION:product (INDEX:28) */
.product-redirect {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 300px);
    margin-bottom: 24px;
  }

  .product-redirect__card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 300px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
  }

  .product-redirect__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .product-redirect__title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
  }

  .product-redirect__message {
    font-size: 1.125rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
  }

  .product-redirect__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #F3FF75;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .product-redirect__button:hover {
    background: #e6f066;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(243, 255, 117, 0.3);
  }

  /* Responsive adjustments */
  @media screen and (max-width: 768px) {
    .product-redirect {
      padding: 16px;
    }

    .product-redirect__card {
      padding: 32px 24px;
    }

    .product-redirect__title {
      font-size: 2.5rem;
    }

    .product-redirect__message {
      font-size: 1rem;
    }
  }

  @media screen and (max-width: 480px) {
    .product-redirect__card {
      padding: 24px 16px;
    }

    .product-redirect__title {
      font-size: 2rem;
    }

    .product-redirect__button {
      padding: 14px 28px;
      font-size: 0.9rem;
    }
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:30) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:card (INDEX:31) */
.block-card {
    /* Additional block-specific styles can be added here */
  }
/* END_BLOCK:card */

/* START_BLOCK:group (INDEX:33) */
.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:35) */
.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:card (INDEX:37) */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    background: rgba(var(--card-background-rgb, 255, 255, 255), var(--card-transparency, 0.8));
    backdrop-filter: blur({{ card_styling.card_backdrop_blur | default: 10 }}px);
    -webkit-backdrop-filter: blur({{ card_styling.card_backdrop_blur | default: 10 }}px);
    border: {{ card_styling.card_border_width | default: 1 }}px solid {{ card_styling.card_border_color | default: 'rgba(255, 255, 255, 0.2)' }};
    border-radius: var(--card-border-radius, {{ card_styling.card_border_radius | default: 12 }}px);
    box-shadow: {{ card_styling.card_shadow_horizontal | default: 0 }}px {{ card_styling.card_shadow_vertical | default: 8 }}px {{ card_styling.card_shadow_blur | default: 32 }}px {{ card_styling.card_shadow_spread | default: 0 }}px {{ card_styling.card_shadow_color | default: 'rgba(0, 0, 0, 0.1)' }};
    overflow: hidden;
    transition: all {{ card_styling.card_transition_duration | default: 300 }}ms ease;
    min-height: {{ card_styling.card_min_height | default: 120 }}px;
    height: 100%;
    padding: var(--card-padding);
  }

  /* Header styles */
  .card__header {
    border-bottom: {{ card_styling.card_header_border_width | default: 1 }}px solid {{ card_styling.card_header_border_color | default: 'rgba(255, 255, 255, 0.1)' }};
    font-size: var(--header-font-size);
    color: var(--header-color);
    font-weight: var(--header-font-weight);
  }

  .card--header-default .card__header {
    /* Use custom typography settings */
  }

  .card--header-large .card__header {
    /* Override with larger size if needed */
    font-size: calc(var(--header-font-size) * 1.2);
  }

  .card--header-small .card__header {
    /* Override with smaller size if needed */
    font-size: calc(var(--header-font-size) * 0.8);
  }

  .card--header-accent .card__header {
    /* Use accent color from theme settings */
    color: var(--color-accent);
  }

  /* Content area */
  .card__content {
    font-size: var(--content-font-size);
    color: var(--content-color);
    font-weight: var(--content-font-weight);
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }



  /* Dark mode support */
  @media (prefers-color-scheme: dark) {
    .card {
      background: {{ card_styling.card_dark_background_color | default: 'rgba(0, 0, 0, 0.8)' }};
      border-color: {{ card_styling.card_dark_border_color | default: 'rgba(255, 255, 255, 0.1)' }};
    }
  }
/* END_SNIPPET:card */

/* START_SNIPPET:icon-text-card (INDEX:41) */
.icon-text-card {
    --icon-size: 48px;
    --frame-color: rgba(0, 0, 0, 0.12);
    --card-bg: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
  }

  .icon-text-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .icon-text-card__icon {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 10px;
  }

  .icon-text-card__icon-inner {
    width: 44px;
    height: 44px;
    background-image: url('{{ 'icon-bg.png' | asset_url }}');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
  }

  /* Use ellipse-cut.png for the decorative ring with top-right cut */

  .icon-text-card__icon-inner img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
  }
  .icon-text-card__icon-inner svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  .icon-text-card__svg svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  .icon-text-card__icon-placeholder {
    width: 50%;
    height: 50%;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.15);
    display: block;
  }

  .icon-text-card__title {
    position: absolute;
    top: 25px;
    left: 95px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
    width: 140px;
  }

  .icon-text-card__frame {
    position: relative;
    padding: 16px;
    border-radius: 12px;
  }

  /* Only draw top-left and bottom-right frame corners */
  .icon-text-card__frame::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    --corner: 16px;
    background: linear-gradient(var(--frame-color), var(--frame-color)) 0 0 / var(--corner) 1px no-repeat
    , linear-gradient(var(--frame-color), var(--frame-color)) 0 0 / 1px var(--corner) no-repeat
    , linear-gradient(var(--frame-color), var(--frame-color)) 100% 100% / var(--corner) 1px no-repeat
    , linear-gradient(var(--frame-color), var(--frame-color)) 100% 100% / 1px var(--corner) no-repeat;
  }

  .icon-text-card__text {
    font-size: 12px;
    line-height: 1.5;
    color: #000;
  }

  @media (max-width: 768px) {
    .icon-text-card {
      gap: 12px;
    }
    .icon-text-card__title {
      font-size: 15px;
    }
    .icon-text-card__text {
      font-size: 14px;
    }
  }
/* END_SNIPPET:icon-text-card */

/* START_SNIPPET:image-text-card (INDEX:42) */
.image-text-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: stretch;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px 24px 24px 0;
    overflow: hidden;
  }

  .image-text-card__video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000;
    background-repeat: no-repeat;
  }

  .image-text-card__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 24px 24px 0;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    /* 300ms */
  }
  .image-text-card.video-visible .image-text-card__video {
    opacity: 1;
  }

  /* Transparent scrim (click-layer only, no dark overlay) */
  .image-text-card__scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* under button, above video */
    background: transparent;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    /* capture clicks to toggle */
  }
  .image-text-card__scrim.is-hidden {
    opacity: 0;
    /* let video receive events when hidden */
  }

  /* Play/Pause Button — keep top-right */
  .image-text-card__play-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 9999px;
    background: #F3FF75;
    display: grid;
    place-items: center;
    z-index: 5;
    /* above scrim and video */
    cursor: pointer;
    transition: opacity 0.3s ease;
    backdrop-filter: saturate(120%) blur(2px);
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
    will-change: opacity;
  }

  .image-text-card__play-btn svg {
    fill: #000;
    width: 24px;
    height: 24px;
    stroke: none;
  }

  /* Icons toggle */
  .image-text-card__pause-icon {
    display: none;
  }
  .image-text-card.is-playing .image-text-card__play-icon {
    display: none;
  }
  .image-text-card.is-playing .image-text-card__pause-icon {
    display: inline;
  }

  /* Hidden state for auto-hide */
  .image-text-card__play-btn.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .image-text-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    pointer-events: none;
    z-index: 3;
    /* above scrim */
  }

  .image-text-card__overlay-inner {
    pointer-events: auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 24px 24px 24px 0;
    padding: 24px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(var(--overlay-blur-amount, 12px));
  }

  .image-text-card__text {
    color: #000;
    font-size: 16px;
    font-weight: 500;
  }
/* END_SNIPPET:image-text-card */

/* START_SNIPPET:image (INDEX:43) */
.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:45) */
.product-card {
    height: min-content;
    display: flex;
    flex-direction: column;
    position: relative;
  }


  .product-card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .product-card__vendor {
    color: #666;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
  }

  .product-card__title {
    font-size: 40px;
    color: #000000;
    font-weight: 600;
    line-height: 0.9;
  }

  .product-card__link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .product-card__link:hover {
    color: #007acc;
  }

  .product-card__description {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
  }

  /* Size Options */
  .product-card__size-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .product-card__size-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    border: 1px solid #CCCCCC;
    background: transparent;
  }

  .product-card__size-btn-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    color: #000000;
  }

  .product-card__size-btn-text-label {
    font-size: 16px;
    font-weight: 600;
  }

  .product-card__size-btn-text-price {
    font-size: 14px;
    font-weight: 400;
  }

  .product-card__size-btn--active {
    outline: 2px solid #000000;
  }

  .product-card__size-price {
    font-size: 16px;
    font-weight: 500;
  }

  /* Bottom Actions */
  .product-card__bottom-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  /* Ensure 3 equal-width actions */
  .product-card__bottom-actions > * {
    flex: 1 1 0;
    min-width: 0;
  }

  .product-card__quantity {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #000000;
    padding: 10px 16px;
    border-radius: 12px;
    flex: 1;
  }

  .product-card__qty-btn {
    border: none;
    background: transparent;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 12px;
  }

  .product-card__qty-input {
    border: none;
    background: transparent;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    flex: 1;
  }

  .product-card__qty-input:focus {
    outline: none;
  }

  /* Hide number input spinners */
  .product-card__qty-input::-webkit-outer-spin-button,
  .product-card__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Firefox */
  .product-card__qty-input[type=number] {
    -moz-appearance: textfield;
  }

  .product-card__form {
    flex: 1;
    display: flex;
    border-radius: 12px;
  }

  .product-card__add-to-cart {
    padding: 14px 16px;
    background: transparent;
    border: 1px solid #000000;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
  }

  .product-card__buy-now {
    flex: 1;
    padding: 14px 16px;
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .product-card__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn__text {
    color: #000;
  }

  .product-card__form {
    margin: 0;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    line-height: 1;
  }

  .btn--primary {
    background: #007acc;
    color: white;
  }

  .btn--primary:hover {
    background: #005999;
    transform: translateY(-1px);
  }

  .btn--disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
  }

  .product-card__view-details {
    text-align: center;
    color: #007acc;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem;
  }

  .product-card__size-btn-text-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .product-card__view-details:hover {
    text-decoration: underline;
  }


  @media (max-width: 768px) {
    .product-card__bottom-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }

    .product-card__bottom-actions > * {
      width: 100%;
      flex: 0 0 auto;
    }

    .product-card__form,
    .product-card__add-to-cart,
    .product-card__buy-now,
    .product-card__quantity {
      width: 100%;
    }

    .product-card__img {
      height: 150px;
    }

    .product-card__title {
      font-size: 1.125rem;
    }
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-carousel (INDEX:46) */
.product-carousel .owl-carousel .owl-stage-outer {
    width: 300px !important;
    height: 420px !important;
  }

  /* Match review carousel nav placement and styles exactly */
  .product-carousel {
    position: relative;
  }
  .product-carousel .owl-nav {
    position: absolute !important;
    bottom: 0;
    right: 0;
    transform: none !important;
    pointer-events: auto;
    z-index: 2;
    margin-top: 0 !important;
  }
  .product-carousel .owl-nav [class*='owl-'] {
    position: static !important;
    display: inline-flex !important;
  }
  .product-carousel .owl-nav button {
    background: transparent !important;
    color: #333 !important;
    border: none !important;
    font-size: 0 !important;
    width: 28px !important;
    height: 28px !important;
    cursor: pointer;
    pointer-events: auto;
  }
  .product-carousel .owl-nav button::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin: auto;
  }
  .product-carousel .owl-nav .owl-prev::before {
    transform: rotate(45deg);
  }
  .product-carousel .owl-nav .owl-next::before {
    transform: rotate(225deg);
  }

  /* Height + contain (show full image) and narrower left-aligned card */
  .product-carousel {
    --carousel-height: 420px;
    --product-item-width: 280px;
  }
  .product-carousel .owl-stage-outer {
    height: var(--carousel-height) !important;
    overflow: hidden;
  }
  .product-carousel .owl-item,
  .product-carousel .owl-item .item {
    height: var(--carousel-height) !important;
  }
  .product-carousel .owl-item .item {
    width: var(--product-item-width) !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .product-carousel .owl-item .item img,
  .product-carousel .owl-item .item video,
  .product-carousel .owl-item .item iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center left;
    display: block;
  }


  /* Keep existing badge styles */
  .product-carousel__badges {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 10;
    pointer-events: none;
  }
  .product-carousel__badge {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0.25rem 0.5rem;
    font-size: 15px;
    font-weight: 400;
    color: #000000
  }
  .product-carousel__badge-icon {
    width: 24px;
    height: 24px;
    color: #292D32;
  }

  /* Smaller height on mobile */
  @media (max-width: 1024px) {
    .product-carousel {
      --carousel-height: 260px;
      --product-item-width: 260px;
    }
    .product-carousel .owl-carousel .owl-stage-outer {
      height: 260px !important;
    }
    .product-carousel .owl-stage-outer {
      height: var(--carousel-height) !important;
    }
    .product-carousel .owl-item,
    .product-carousel .owl-item .item {
      height: var(--carousel-height) !important;
    }

    /* Smaller badge text and icons */
    .product-carousel__badge {
      font-size: 10px;
    }
    .product-carousel__badge-icon {
      width: 18px;
      height: 18px;
    }
  }
/* END_SNIPPET:product-carousel */

/* START_SNIPPET:review-carousel (INDEX:47) */
.review-carousel {
    width: 100%;
  }
  .review-carousel .owl-carousel {
    margin-top: 0 !important;
    padding: 0 !important;
    /* full width */
  }
  .review-carousel .owl-stage-outer {
    width: 100% !important;
  }

  .review-carousel__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
  }
  .review-carousel__avg {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    line-height: 1;
  }
  .review-carousel__count {
    color: #666;
    font-size: 24px;
  }

  /* Force slide media to use full available height */
  /* Ensure the actual carousel viewport has a fixed height */.review-carousel {
    --carousel-height: 165px;
  }
  .review-carousel .owl-stage-outer {
    height: var(--carousel-height) !important;
    width: 100% !important;
    overflow: hidden;
  }

  /* Make each slide fill that height */
  .review-carousel .owl-item {
    height: 165px !important;
  }
  .review-carousel .owl-item .item {
    height: 165px !important;
  }

  .review-carousel .owl-carousel {
    position: relative;
  }
  .review-carousel .owl-nav {
    position: absolute !important;
    bottom: 4px;
    right: 8px;
    transform: none !important;
    pointer-events: auto;
    z-index: 2;
    margin-top: 0 !important;
  }

  .review-carousel .owl-nav [class*='owl-'] {
    position: static !important;
    display: inline-flex !important;
  }

  .review-carousel .owl-nav button {
    background: transparent !important;
    color: #333 !important;
    border: none !important;
    font-size: 0 !important;
    width: 28px !important;
    height: 28px !important;
    cursor: pointer;
    pointer-events: auto;
  }
  .review-carousel .owl-nav button::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin: auto;
  }
  .review-carousel .owl-nav .owl-prev::before {
    transform: rotate(45deg);
  }
  .review-carousel .owl-nav .owl-next::before {
    transform: rotate(225deg);
  }

  .review-carousel__title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
  }

  .review-card {
    height: 100% !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #000;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    margin-right: 16px;
    box-sizing: border-box;
    gap: 12px;
  }
  .review-card__header {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .review-card__stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000;
  }
  .review-card__star {
    color: #111;
    font-size: 14px;
    flex-shrink: 0;
  }
  .review-card__star--empty {
    color: #ddd;
    flex-shrink: 0;
  }

  .review-card__star__inner {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }

  .review-card__star__inner--empty {
    color: #ddd;
    flex-shrink: 0;
  }

  .review-card__content {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
  }
  .review-card__footer {
    margin-top: auto;
    font-size: 13px;
    color: #555;
  }
  .review-card__name {
    font-size: 16px;
    color: #000;
    font-weight: 400;
  }
  /* .review-card__total { position: absolute; top: 12px; right: 12px; font-size: 12px; color: #333; background: rgba(255,255,255,0.9); padding: 4px 8px; border-radius: 999px; border: 1px solid rgba(0,0,0,.08); } */

  .review-carousel__stars-container {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .rating-value {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    line-height: 0.9;
  }

  .review-carousel__stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000;
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .review-carousel__stars-container {
      flex-direction: column;
      align-items: flex-end;
      gap: 2px;
    }
    .review-carousel__avg {
      font-size: 28px;
    }
    .review-carousel__count {
      font-size: 14px;
    }
    .review-carousel__stars svg {
      width: 12px;
      height: 12px;
    }
  }
/* END_SNIPPET:review-carousel */

/* START_SNIPPET:video-carousel (INDEX:48) */
/* ---------------- Your existing carousel styles (unchanged) ---------------- */
  .video-carousel .owl-carousel {
    margin-top: 20px !important;
    padding: 0 50px !important;
  }
  .video-carousel .owl-carousel {
    position: relative;
  }
  .video-carousel .owl-nav {
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    pointer-events: none;
    z-index: 2;
    margin-top: 0 !important;
  }
  .video-carousel .owl-nav [class*='owl-'] {
    position: absolute !important;
    display: flex !important;
  }
  .video-carousel .owl-nav .owl-prev {
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
    margin: 0 !important;
  }
  .video-carousel .owl-nav .owl-next {
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
    margin: 0 !important;
  }
  .video-carousel .owl-nav button {
    background: transparent !important;
    color: #333 !important;
    border: none !important;
    font-size: 0 !important;
    width: 28px !important;
    height: 28px !important;
    cursor: pointer;
    pointer-events: auto;
  }
  .video-carousel .owl-nav button::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin: auto;
  }
  .video-carousel .owl-nav .owl-prev::before {
    transform: rotate(45deg);
  }
  .video-carousel .owl-nav .owl-next::before {
    transform: rotate(225deg);
  }
  .video-carousel .owl-carousel .owl-item img {
    height: 100% !important;
  }
  .video-carousel {
    --carousel-height: 270px;
  }
  .video-carousel .owl-stage-outer {
    height: var(--carousel-height) !important;
    width: 100% !important;
    overflow: hidden;
  }
  .video-carousel .owl-item {
    height: 270px !important;
    border-radius: 12px;
    overflow: hidden;
  }
  .video-carousel .owl-item .item {
    height: 270px !important;
  }
  .video-carousel .owl-item .item img,
  .video-carousel .owl-item .item video,
  .video-carousel .owl-item .item iframe {
    width: 270px !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
  }
  .video-carousel__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
  }

  /* ---------------- Minimal video UI styles (scoped & additive) ---------------- */
  .video-carousel .owl-item .item {
    position: relative;
  } /* allow overlays */
  .video-carousel .vc-media {
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    touch-action: manipulation;
  }
  .video-carousel .item.video-visible .vc-media {
    opacity: 1;
  }

  /* Transparent scrim: click layer only (no black bg) */
  .video-carousel .vc-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
    /* no dark overlay */
    pointer-events: auto;
    touch-action: manipulation;
  }

  /* Centered play button */
  .video-carousel .vc-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 9999px;
    background: #F3FF75;
    display: grid;
    place-items: center;
    z-index: 3;
    cursor: pointer;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
  }
  .video-carousel .vc-play-btn svg {
    width: 28px;
    height: 28px;
    fill: #000;
  }
  .video-carousel .vc-pause-icon {
    display: none;
  }
  .video-carousel .item.is-playing .vc-play-icon {
    display: none;
  }
  .video-carousel .item.is-playing .vc-pause-icon {
    display: inline;
  }
  .video-carousel .vc-play-btn.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  /* Poster layer */
  .video-carousel .owl-item .item[data-has-poster="true"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--vc-poster) center/cover no-repeat;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
  }
  .video-carousel .owl-item .item.video-visible::before {
    opacity: 0;
  }
/* END_SNIPPET:video-carousel */