/** Shopify CDN: Minification failed

Line 253:0 Unexpected "}"

**/
/*
  Wishlist CSS
  Failas: assets/wishlist.css
*/

/* Bendras wishlist mygtukas */
.vr-wishlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--wishlist-border-color, rgba(0, 0, 0, 0.16));
  border-radius: var(--wishlist-radius, 999px);
  background: var(--wishlist-bg-color, #ffffff);
  color: var(--wishlist-icon-color, #111111);
  padding: 9px 14px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.vr-wishlist-btn:hover {
  transform: translateY(-1px);
}

.vr-wishlist-btn.is-active {
  color: var(--wishlist-icon-active-color, #e60023);
}

.vr-wishlist-btn__icon,
.vr-wishlist-btn [data-wishlist-icon] {
  font-size: var(--wishlist-icon-size, 24px);
  line-height: 1;
  color: inherit;
}

.vr-wishlist-btn__text {
  color: inherit;
}

/* Collection / home kortelės */
.product-card__content {
  position: relative;
}

.wishlist-card-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.wishlist-card-button .vr-wishlist-btn {
  width: var(--wishlist-button-size, 42px);
  height: var(--wishlist-button-size, 42px);
  padding: 0;
  border-radius: var(--wishlist-radius, 50%);
  background: var(--wishlist-bg-color, #ffffff);
  border: 1px solid var(--wishlist-border-color, #dddddd);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wishlist-card-button .vr-wishlist-btn__text {
  display: none;
}

/* Product page wishlist mygtukas */
.wishlist-product-button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--wishlist-border-color, #000000);
  border-radius: var(--wishlist-radius, 8px);
  background: var(--wishlist-bg-color, #ffffff);
  color: var(--wishlist-icon-color, #000000);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.wishlist-product-button [data-wishlist-icon] {
  font-size: var(--wishlist-icon-size, 24px);
  color: inherit;
}

.wishlist-product-button.is-active {
  color: var(--wishlist-icon-active-color, #e60023);
}

/* Header wishlist */
.header-wishlist-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--wishlist-icon-color, #000000);
  text-decoration: none;
}

.header-wishlist-heart {
  font-size: var(--wishlist-icon-size, 24px);
  line-height: 1;
  color: inherit;
}

.header-wishlist-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

/* Wishlist puslapis */
.vr-wishlist-page {
  padding-top: 32px;
  padding-bottom: 48px;
}

.vr-wishlist-page__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.vr-wishlist-page__header h1 {
  margin-bottom: 8px;
}

.vr-wishlist-empty {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 36px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fafafa;
}

.vr-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.vr-wishlist-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.vr-wishlist-card__image {
  display: block;
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  overflow: hidden;
}

.vr-wishlist-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vr-wishlist-card__content {
  padding: 14px;
}

.vr-wishlist-card__title {
  display: block;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 7px;
}

.vr-wishlist-card__price {
  margin-bottom: 12px;
  font-weight: 600;
}

.vr-wishlist-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vr-wishlist-card__remove {
  border: 0;
  background: transparent;
  color: #777777;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}

@media screen and (max-width: 989px) {
  .vr-wishlist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  .vr-wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .vr-wishlist-btn {
    padding: 8px 11px;
    font-size: 13px;
  }
}
/* Wishlist širdutė po "Išpardavimas" ženkliuku */
.wishlist-card-button {
  top: 38px !important;
  right: 10px !important;
  z-index: 9;
}

/* Jeigu badge didesnis arba tekstas ilgesnis */
.product-card__content .wishlist-card-button {
  top: 42px !important;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .wishlist-card-button {
    top: 36px !important;
    right: 8px !important;
  }
}
}