/** Shopify CDN: Minification failed

Line 360:2 Unexpected "{"
Line 360:3 Expected identifier but found "%"
Line 361:12 Unexpected "{"
Line 361:19 Expected ":"
Line 361:26 Unexpected "{"
Line 362:9 Expected identifier but found whitespace
Line 362:11 Unexpected "{"
Line 362:18 Expected ":"
Line 362:48 Expected identifier but found "%"
Line 363:8 Expected identifier but found whitespace
... and 5 more hidden warnings

**/


/* CSS from section stylesheet tags */
@media screen and (max-width: 786px) {
/* .card--standard>.card__content{
  padding: 0 25px 25px !important;
} */

  .shop-the-look-product-card .price{
    text-align:left ;
  }

  .shop-the-look-product-card .title-price,
.shop-the-look-product-card .title-price .card__heading,
.shop-the-look-product-card .title-price .card__price {
   all: unset;
  display: revert;
  flex: revert;
  white-space: normal;
  gap: 0;
}
.shop-the-look-product-card .variant-thumbnails,
.shop-the-look-product-card .variant-thumbnails-wrapper {
  display: none;
}


  .shop-the-look-product-card .card:not(.ratio) {
  padding: 1rem;
  gap: 1em;
  flex-direction: row !important;
    width: 100%;
}
  /* .shop-the-look-product-card {
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 1rem;
    width: 100%;
  } */

  .shop-the-look-product-card .card-wrapper {
    background-color:#f8f1e6;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    padding: 1rem;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
  }
  .shop-the-look-product-card .card__inner {
  width: 120px !important;
}

  .shop-the-look-product-card .card__media {
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    flex-shrink: 0;
  }

  .shop-the-look-product-card .card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .shop-the-look-product-card .card__content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .shop-the-look-product-card .card__information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 100%;
  }

   .shop-the-look-product-card .card__heading {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #2e2e2e;
  }

  .shop-the-look-product-card .price {
    font-size: 13px;
    color: #4d4d4d;
  }
/*
  .shop-the-look-product-card .quick-add {
    flex-shrink: 0;
  }

  .shop-the-look-product-card .quick-add__submit {
    background-color: #3c4632;
    color: #fff;
    font-size: 1.4rem;
    width: 5.6rem;
    height: 3.2rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0;
    line-height: 1;
    transition: background 0.3s ease;
  }

  .shop-the-look-product-card .quick-add__submit svg {
    width: 1rem;
    height: 1rem;
  } */
}


@media screen and (min-width: 786px) {
  .shop-the-look-product-card{
    display: block !important;
  }
  .shop-the-look-product-card .stl-image{
    width: 100% !important;
    height: 300px !important;
  }
  .shop-the-look-product-card .stl-add-button {
  width: 100%;
  justify-content: center;
  }
}
  
.shop-the-look-section {
  padding: 40px 0;
}
.shop-the-look-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
}
.shop-the-look-banner {
  flex: 1 1 60%;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.shop-the-look-products {
  flex: 1 1 35%;
  overflow: hidden;
  position: relative;
  width: 100%;
  /* padding: 0 15px; */
}
.shop-the-look-slide {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.shop-the-look-slide.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.shop-the-look-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid #fff;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  transition: background-color 0.3s ease;
}
.hotspot-dot {
  width: 14px;
  height: 14px;
  background-color: #000;
  border-radius: 9999px;
}
.hotspot:hover .hotspot-popup,
.hotspot:focus .hotspot-popup,
.hotspot.active .hotspot-popup {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hotspot-popup {
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%) translateY(10px);
  background: #fdfcf7;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  width: max-content;
  max-width: 260px;
  display: flex;
  gap: 8px;
  align-items: center;
  text-align: left;
  z-index: 4;
}
.hotspot-popup img {
  width: 56px;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;
}
.hotspot-popup .text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hotspot-popup .stl-title {
  font-weight: 600;
  font-size: 13px;
  color: #1c1c1c;
  line-height: 1.2;
}
.hotspot-popup .stl-price {
  font-size: 12px;
  color: #4d4d4d;
}
/* .shop-the-look-product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9f8f3;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
} */
.shop-the-look-product-card .stl-image {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.shop-the-look-product-card .stl-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-the-look-product-card .stl-details {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  margin:10px;
  gap: 4px;
}
.shop-the-look-product-card .stl-title {
  font-size: 15px;
  font-weight: 600;
  color: #2e2e2e;
  line-height: 1.4;
}
.shop-the-look-product-card .stl-price {
  font-size: 14px;
  color: #4d4d4d;
}
.shop-the-look-product-card .stl-add-button {
  background: #3c4632;
  color: white;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 786px) {
  .shop-the-look-product-card .stl-details {
  flex-direction: column;
}
  .shop-the-look-inner {
    flex-direction: column;
    gap: 15px;
  }
  .shop-the-look-banner,
  .shop-the-look-products {
    flex: 1 1 100%;
  }
}
@media screen and (max-width: 786px) {
  .shop-the-look-banner img {
    border-radius: 0;
  }
  .hotspot {
    width: 36px;
    height: 36px;
  }
  .hotspot-dot {
    width: 10px;
    height: 10px;
  }
  .hotspot-popup {
    bottom: auto;
    /* top: 100%; */
    transform: translateX(-50%) translateY(10px);
    flex-direction: row;
    gap: 6px;
    padding: 6px;
        max-width: 139px;
            left: 90%;
  }
  .hotspot-popup img {
    width: 35px;
            border-radius: 4px;
  }

  .hotspot-popup .stl-title {
    font-size: 10px;
  }
  .hotspot-popup .stl-price {
    font-size: 10px;
  }

  {% for block in section.blocks %}
  #hotspot-{{ block.id }} {
    left: {{ block.settings.horizontal_mobile }}% !important;
    top: {{ block.settings.vertical_mobile }}% !important;
  }
  {% endfor %}
}