/** Shopify CDN: Minification failed

Line 17:13 Unexpected "{"
Line 17:22 Expected ":"
Line 20:14 Unexpected "{"
Line 20:23 Expected ":"
Line 21:18 Expected identifier but found whitespace
Line 21:20 Unexpected "{"
Line 21:29 Expected ":"
Line 21:76 Expected ":"
Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
... and 2 more hidden warnings

**/
  .ymal-section { width: 100%; }
   .section-{{ section.id }}-padding  .page-width { padding: 0 8px; }

  @media (max-width: 768px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.mobile_padding_top | default: pt }}px !important;
      padding-bottom: {{ section.settings.mobile_padding_bottom | default: pb }}px !important;
    }
  }

  /* Header */
  .ymal-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin:0px 0 40px;
    position:relative;
  }
  .ymal-heading { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 400; margin: 0 0 .5rem; }
  .ymal-description {
            color: #000;

        /* Le sarah/Montserrat Regular */
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%; /* 19.2px */
        margin: 0;
            max-width: 517px;
}
.ymal-header__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
 .ymal-section .ymal-btn {
    color: #000;
    text-align: center;

    /* Le sarah/Montserrat medium Upercase */
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
    text-transform: uppercase;
    display: inline-block;
    margin:  0 0;
    text-decoration:underline !important;
  }
 .ymal-section button:hover{
      background:transparent !important;
      background-color:transparent !important;
  }

  /* Nav arrows */
  .ymal-nav {
    display: flex;
    gap: .5rem;
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.ymal-nav { display: flex; gap: 6px; }
  .ymal-prev, .ymal-next {
    width: 24px; height: 24px;
    border: 0px solid #ccc;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
  }

  /* Swiper */
  .ymal-swiper { overflow: hidden; }

  /* Card */
  .ymal-card {
    background: #fff;
    overflow: hidden;
    position: relative;
  }
  .ymal-card__img-wrap { 
    position: relative; overflow: hidden; aspect-ratio: 1 / 1;
    
    padding: 0px;
 }
  .ymal-card__img {
    width: 100%;
    height:100% !important;
    object-fit: contain;
    display: block;
    max-width: 100% !important;

  }
  .ymal-card__img--placeholder { width: 100%; height: 100%; }

  /* Badge */
  .ymal-badge {
    position: absolute; top: 8px; left: 8px; z-index: 2;
   background: #2C2C2C;
   color: #FFF;
text-align: center;
font-family: Montserrat;
font-size: 10px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 12px */
letter-spacing: -0.2px;
    padding: 4px 6px;
  }
  .ymal-badge--sold { background: #222; color: #fff; }

  /* Wishlist */
  .ymal-wishlist {
    position: absolute; top: 8px; right: 8px; z-index: 2;
    background: transparent; border: none; cursor: pointer; padding: 4px;
    color: #aaa;
  }
  .ymal-wishlist svg { width: 18px; height: 18px; }

  /* Quick-add */
  .ymal-quick-add {
    position: absolute; bottom: 8px; right: 8px; z-index: 2;
    width: 30px; height: 30px;
    border: 0px solid #ddd;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    background:transparent;
    padding: 0;    
  }

  /* Card info */
  .ymal-card__info { padding: 10px 12px 12px; }
  .ymal-card__title { 
     color: #1D1D1B;
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 14.4px */
    letter-spacing: -0.36px;
    text-transform: uppercase;
    margin: 0;
  }
  .ymal-card__meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
  .ymal-card__stars { font-size: .7rem; color: #555; }
  .ymal-card__price {
    color: #4D4D4D;
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 14.4px */
    letter-spacing: -0.36px;
    text-transform: uppercase; 
    margin: 0;}

  .ymal-empty { color: #888; font-size: .875rem; }
  .ymal-card__info {
    padding: 16px 12px 0;
}

.ymal-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 8px;
}
span.jdgm-prev-badge__text {
    color: #1D1D1B;
    leading-trim: both;
    text-edge: cap;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.36px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
   .ymal-card__img {
    width: 100%;
    height: fit-content;
    object-fit: contain;
    display: block;
    max-width: 100%;
}
.ymal-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;

}
.ymal-header__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.ymal-nav, .ymal-btn {
    display: none !important;
}
.ymal-description {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    max-width: 517px;
}

.ymal-header {
   margin: 0 0 24px; 
}

}