/** Shopify CDN: Minification failed

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

**/
/* ─────────────────────────────────────────────────────────────
   Estimated Delivery Date — styles (JoffzArt / Copenhagen)
   Design goals:
   • Native look: inherits the theme's font and text color
     (currentColor), so it automatically follows any color scheme,
     including dark sections.
   • Zero CLS: the element is rendered server-side with its final
     content; nothing pops in.
   ───────────────────────────────────────────────────────────── */

estimated-delivery {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  border: 1px solid color-mix(in srgb, currentColor 14%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, currentColor 4%, transparent);
  font-size: 1.6225rem;
  line-height: 1.45;
  color: inherit;
}

/* Fallback for the few browsers without color-mix() */
@supports not (background: color-mix(in srgb, red 4%, transparent)) {
  estimated-delivery {
    border-color: rgba(128, 128, 128, 0.3);
    background: rgba(128, 128, 128, 0.08);
  }
}

.edd__icon {
  flex: 0 0 auto;
  display: inline-flex;
  margin-top: 0.05em;
  opacity: 0.85;
}

.edd__text {
  min-width: 0; /* allow wrapping inside flex parents (cart drawer) */
}

/* Dates stand out slightly — premium, not shouty */
estimated-delivery time {
  font-weight: 600;
  white-space: nowrap;
}

/* Compact variant used in the cart drawer & cart page */
.edd--drawer,
.edd--cart {
  margin: 0.75rem 0;
  padding: 0.7rem 0.9rem;
}

.edd--drawer .edd__label,
.edd--cart .edd__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.1rem;
}

/* Small screens: keep everything on one comfortable line height */
@media (max-width: 480px) {
  estimated-delivery {
    font-size: 1.2375rem;
    padding: 0.75rem 0.85rem;
  }
  /* ─────────────────────────────────────────────────────────────
   JoffzArt — Product price tweaks (FINAL)
   ───────────────────────────────────────────────────────────── */

/* Compare-at (old) price — muted red strikethrough */
.price--on-sale .price__compare .price-item--regular,
.price--on-sale .price__compare .price-item {
  color: #c0392b !important;
  text-decoration-color: #c0392b !important;
  opacity: 0.8;
}

/* Sale (current) price — reduce size a notch */
.price--on-sale .price__sale .price-item--sale,
.price--on-sale .price__sale .price-item--regular {
  font-size: 2rem;      /* küçük: 1.75rem — büyük: 2.25rem */
  line-height: 1.1;
  font-weight: 700;
}

@media (max-width: 480px) {
  .price--on-sale .price__sale .price-item--sale,
  .price--on-sale .price__sale .price-item--regular {
    font-size: 1.6rem;
  }
}
/* JoffzArt — Cart drawer: eski fiyat kırmızı, ödenen fiyat belirgin */
.cart-item__old-price {
  color: #c0392b !important;
  text-decoration: line-through;
  text-decoration-color: #c0392b;
  opacity: 0.85;
}
.cart-item__final-price {
  font-weight: 700;
}