/** Shopify CDN: Minification failed

Line 162:1 Expected "}" to go with "{"

**/



@media screen and (max-width: 768px) {

    /* Product Title */
    .m-product-card__name,
    .m-product-card__name a {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    /* Product Price */
    .m-product-card__price,
    .m-product-card__price .m-price {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .size-guide-wrapper {
  text-align: left;
}

.size-guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #d8d8d8;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  color: #111;
}

.size-guide-btn:hover {
  background: #111;
  color: #fff;
}

.size-guide-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
}

.size-guide-modal.active {
  display: flex;
}

.size-guide-content {
  background: #fff;
  width: 100%;
  max-width: 950px;
  max-height: 90vh;
  border-radius: 14px;
  position: relative;
  animation: popupFade .3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.size-guide-header {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.size-guide-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.size-guide-close {
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  color: #555;
  transition: .25s;
}

.size-guide-close:hover {
  color: #000;
}

.size-guide-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  flex: 1;
}

.size-guide-image img {
  width: auto;
  max-width: 100%;
  max-height: calc(90vh - 95px);
  object-fit: contain;
  display: block;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width:768px) {

  .size-guide-btn {
    width: 100%;
    justify-content: center;
  }

  .size-guide-content {
    width: 95%;
    max-height: 90vh;
    border-radius: 12px;
  }

  .size-guide-header {
    padding: 14px;
  }

  .size-guide-header h3 {
    font-size: 18px;
  }

  .size-guide-image {
    padding: 10px;
  }

  .size-guide-image img {
    max-height: calc(90vh - 80px);
    max-width: 100%;
  }

}