
/* ===== Product Card — Goofie sticker style =====
 * Hard-offset shadow frame, rotated sticker badges, cream-pill favorite.
 * Hover: card lifts -3,-3 with bigger 6px shadow.
 */

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card, .cc_mk3yghcw_navbar .kombos-product-card, .cc_mk3yghcw_product_slider .kombos-product-card, .cc_mk3yghcw_product_list .kombos-product-card, .cc_mk3yghcw_account_favorites .kombos-product-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-width: 0;
  /* Reserve room for the hover lift (-3,-3) + 6px hard shadow so it doesn't
   * get clipped by parent containers (ProductSlider scroll track, CategoryList grid).
   * 8px on every side fits the 3px lift + 6px shadow comfortably and keeps
   * cards visually centered within their grid slot.
   */
  padding: 8px;
}

/* ===== Image frame ===== */
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__image-wrapper, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__image-wrapper, .cc_mk3yghcw_navbar .kombos-product-card__image-wrapper, .cc_mk3yghcw_product_slider .kombos-product-card__image-wrapper, .cc_mk3yghcw_product_list .kombos-product-card__image-wrapper, .cc_mk3yghcw_account_favorites .kombos-product-card__image-wrapper {
  position: relative;
  border: 2px solid var(--studio-ink);
  border-radius: var(--studio-r-md);
  background: var(--studio-cream-soft);
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--studio-ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__image-wrapper:hover, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__image-wrapper:hover, .cc_mk3yghcw_navbar .kombos-product-card__image-wrapper:hover, .cc_mk3yghcw_product_slider .kombos-product-card__image-wrapper:hover, .cc_mk3yghcw_product_list .kombos-product-card__image-wrapper:hover, .cc_mk3yghcw_account_favorites .kombos-product-card__image-wrapper:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--studio-ink);
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__media-link, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__media-link, .cc_mk3yghcw_navbar .kombos-product-card__media-link, .cc_mk3yghcw_product_slider .kombos-product-card__media-link, .cc_mk3yghcw_product_list .kombos-product-card__media-link, .cc_mk3yghcw_account_favorites .kombos-product-card__media-link {
  display: block;
  position: relative;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__media, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__media, .cc_mk3yghcw_navbar .kombos-product-card__media, .cc_mk3yghcw_product_slider .kombos-product-card__media, .cc_mk3yghcw_product_list .kombos-product-card__media, .cc_mk3yghcw_account_favorites .kombos-product-card__media {
  width: 100%;
  height: auto;
  display: block;
  background: var(--studio-cream-soft);
}

/* Primary never fades. Hover image (if any) overlays absolutely on top
 * and fades IN on hover. If no hover img is rendered, hovering does nothing
 * to the image — primary stays fully visible. Bulletproof against the
 * "blank background on hover" bug regardless of JS state or selector quirks.
 */
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__media--primary, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__media--primary, .cc_mk3yghcw_navbar .kombos-product-card__media--primary, .cc_mk3yghcw_product_slider .kombos-product-card__media--primary, .cc_mk3yghcw_product_list .kombos-product-card__media--primary, .cc_mk3yghcw_account_favorites .kombos-product-card__media--primary {
  position: relative;
  z-index: 1;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__media--hover, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__media--hover, .cc_mk3yghcw_navbar .kombos-product-card__media--hover, .cc_mk3yghcw_product_slider .kombos-product-card__media--hover, .cc_mk3yghcw_product_list .kombos-product-card__media--hover, .cc_mk3yghcw_account_favorites .kombos-product-card__media--hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__image-wrapper:hover .kombos-product-card__media--hover, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__image-wrapper:hover .kombos-product-card__media--hover, .cc_mk3yghcw_navbar .kombos-product-card__image-wrapper:hover .kombos-product-card__media--hover, .cc_mk3yghcw_product_slider .kombos-product-card__image-wrapper:hover .kombos-product-card__media--hover, .cc_mk3yghcw_product_list .kombos-product-card__image-wrapper:hover .kombos-product-card__media--hover, .cc_mk3yghcw_account_favorites .kombos-product-card__image-wrapper:hover .kombos-product-card__media--hover {
  opacity: 1;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__media--placeholder, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__media--placeholder, .cc_mk3yghcw_navbar .kombos-product-card__media--placeholder, .cc_mk3yghcw_product_slider .kombos-product-card__media--placeholder, .cc_mk3yghcw_product_list .kombos-product-card__media--placeholder, .cc_mk3yghcw_account_favorites .kombos-product-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--studio-ink);
  font-size: 4rem;
  aspect-ratio: 4 / 5;
}

/* ===== Sticker badge (top-left, rotated, peeks above border) ===== */
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__badge, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__badge, .cc_mk3yghcw_navbar .kombos-product-card__badge, .cc_mk3yghcw_product_slider .kombos-product-card__badge, .cc_mk3yghcw_product_list .kombos-product-card__badge, .cc_mk3yghcw_account_favorites .kombos-product-card__badge {
  position: absolute;
  top: -0.625rem;
  left: 0.75rem;
  background: var(--studio-accent);
  color: var(--studio-accent-ink);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  border: 2px solid var(--studio-ink);
  transform: rotate(-4deg);
  z-index: 2;
  white-space: nowrap;
}

/* ===== Discount circle (top-right, rotated) ===== */
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__discount, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__discount, .cc_mk3yghcw_navbar .kombos-product-card__discount, .cc_mk3yghcw_product_slider .kombos-product-card__discount, .cc_mk3yghcw_product_list .kombos-product-card__discount, .cc_mk3yghcw_account_favorites .kombos-product-card__discount {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--studio-ink);
  color: var(--studio-cream);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--studio-cream);
  box-shadow: 0 0 0 2px var(--studio-ink);
  transform: rotate(8deg);
  z-index: 2;
}

/* ===== Sold-out overlay — rotated TÜKENDİ ===== */
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__sold-overlay, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__sold-overlay, .cc_mk3yghcw_navbar .kombos-product-card__sold-overlay, .cc_mk3yghcw_product_slider .kombos-product-card__sold-overlay, .cc_mk3yghcw_product_list .kombos-product-card__sold-overlay, .cc_mk3yghcw_account_favorites .kombos-product-card__sold-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 237, 224, 0.7);
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--studio-ink);
  letter-spacing: 0.05em;
  transform: rotate(-8deg);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
}

/* ===== Favorite — cream circle, position configurable =====
 * Default = bottom-right (Goofie spec). Modifier class flips to top-right.
 * Bottom-right is the BASE so it works even before the prop class applies.
 */
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__favorite, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__favorite, .cc_mk3yghcw_navbar .kombos-product-card__favorite, .cc_mk3yghcw_product_slider .kombos-product-card__favorite, .cc_mk3yghcw_product_list .kombos-product-card__favorite, .cc_mk3yghcw_account_favorites .kombos-product-card__favorite {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  top: auto;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  background: var(--studio-cream);
  border: 2px solid var(--studio-ink);
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  color: var(--studio-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: color 0.15s ease;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__favorite--bottom-right, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__favorite--bottom-right, .cc_mk3yghcw_navbar .kombos-product-card__favorite--bottom-right, .cc_mk3yghcw_product_slider .kombos-product-card__favorite--bottom-right, .cc_mk3yghcw_product_list .kombos-product-card__favorite--bottom-right, .cc_mk3yghcw_account_favorites .kombos-product-card__favorite--bottom-right {
  bottom: 0.625rem;
  right: 0.625rem;
  top: auto;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__favorite--top-right, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__favorite--top-right, .cc_mk3yghcw_navbar .kombos-product-card__favorite--top-right, .cc_mk3yghcw_product_slider .kombos-product-card__favorite--top-right, .cc_mk3yghcw_product_list .kombos-product-card__favorite--top-right, .cc_mk3yghcw_account_favorites .kombos-product-card__favorite--top-right {
  top: 0.625rem;
  right: 0.625rem;
  bottom: auto;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__favorite:hover, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__favorite:hover, .cc_mk3yghcw_navbar .kombos-product-card__favorite:hover, .cc_mk3yghcw_product_slider .kombos-product-card__favorite:hover, .cc_mk3yghcw_product_list .kombos-product-card__favorite:hover, .cc_mk3yghcw_account_favorites .kombos-product-card__favorite:hover {
  color: var(--studio-accent);
}

/* ===== Body: name (left) + price (right) ===== */
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__body, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__body, .cc_mk3yghcw_navbar .kombos-product-card__body, .cc_mk3yghcw_product_slider .kombos-product-card__body, .cc_mk3yghcw_product_list .kombos-product-card__body, .cc_mk3yghcw_account_favorites .kombos-product-card__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0 0.125rem;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__body-main, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__body-main, .cc_mk3yghcw_navbar .kombos-product-card__body-main, .cc_mk3yghcw_product_slider .kombos-product-card__body-main, .cc_mk3yghcw_product_list .kombos-product-card__body-main, .cc_mk3yghcw_account_favorites .kombos-product-card__body-main {
  flex: 1;
  min-width: 0;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__name, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__name, .cc_mk3yghcw_navbar .kombos-product-card__name, .cc_mk3yghcw_product_slider .kombos-product-card__name, .cc_mk3yghcw_product_list .kombos-product-card__name, .cc_mk3yghcw_account_favorites .kombos-product-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
  color: var(--studio-ink);
  text-decoration: none;
  display: block;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__name:hover, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__name:hover, .cc_mk3yghcw_navbar .kombos-product-card__name:hover, .cc_mk3yghcw_product_slider .kombos-product-card__name:hover, .cc_mk3yghcw_product_list .kombos-product-card__name:hover, .cc_mk3yghcw_account_favorites .kombos-product-card__name:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__name--one-line, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__name--one-line, .cc_mk3yghcw_navbar .kombos-product-card__name--one-line, .cc_mk3yghcw_product_slider .kombos-product-card__name--one-line, .cc_mk3yghcw_product_list .kombos-product-card__name--one-line, .cc_mk3yghcw_account_favorites .kombos-product-card__name--one-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__body-aside, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__body-aside, .cc_mk3yghcw_navbar .kombos-product-card__body-aside, .cc_mk3yghcw_product_slider .kombos-product-card__body-aside, .cc_mk3yghcw_product_list .kombos-product-card__body-aside, .cc_mk3yghcw_account_favorites .kombos-product-card__body-aside {
  text-align: right;
  flex-shrink: 0;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__price, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__price, .cc_mk3yghcw_navbar .kombos-product-card__price, .cc_mk3yghcw_product_slider .kombos-product-card__price, .cc_mk3yghcw_product_list .kombos-product-card__price, .cc_mk3yghcw_account_favorites .kombos-product-card__price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--studio-ink);
  white-space: nowrap;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__was, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__was, .cc_mk3yghcw_navbar .kombos-product-card__was, .cc_mk3yghcw_product_slider .kombos-product-card__was, .cc_mk3yghcw_product_list .kombos-product-card__was, .cc_mk3yghcw_account_favorites .kombos-product-card__was {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-decoration: line-through;
  color: var(--studio-ink-soft);
  opacity: 0.6;
  margin-top: 0.125rem;
  white-space: nowrap;
}

/* ===== Variant selector — avatar-group overlay =====
 * Small circular tokens that overlap left-to-right (negative margin),
 * each ringed with cream to separate from the next. Positioned at the
 * bottom-left of the image; right padding reserves space for the
 * bottom-right favorite button. Sits above the sold-out overlay.
 */
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__variants, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__variants, .cc_mk3yghcw_navbar .kombos-product-card__variants, .cc_mk3yghcw_product_slider .kombos-product-card__variants, .cc_mk3yghcw_product_list .kombos-product-card__variants, .cc_mk3yghcw_account_favorites .kombos-product-card__variants {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 3rem;
  display: flex;
  gap: 0.375rem;
  z-index: 2;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__variant, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__variant, .cc_mk3yghcw_navbar .kombos-product-card__variant, .cc_mk3yghcw_product_slider .kombos-product-card__variant, .cc_mk3yghcw_product_list .kombos-product-card__variant, .cc_mk3yghcw_account_favorites .kombos-product-card__variant {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid var(--studio-cream);
  background: var(--studio-cream);
  color: var(--studio-ink);
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 600;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.15s ease, z-index 0s;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__variant:hover:not(:disabled), .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__variant:hover:not(:disabled), .cc_mk3yghcw_navbar .kombos-product-card__variant:hover:not(:disabled), .cc_mk3yghcw_product_slider .kombos-product-card__variant:hover:not(:disabled), .cc_mk3yghcw_product_list .kombos-product-card__variant:hover:not(:disabled), .cc_mk3yghcw_account_favorites .kombos-product-card__variant:hover:not(:disabled) {
  transform: translateY(-2px);
  z-index: 3;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__variant--selected, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__variant--selected, .cc_mk3yghcw_navbar .kombos-product-card__variant--selected, .cc_mk3yghcw_product_slider .kombos-product-card__variant--selected, .cc_mk3yghcw_product_list .kombos-product-card__variant--selected, .cc_mk3yghcw_account_favorites .kombos-product-card__variant--selected {
  border-color: var(--studio-accent);
  z-index: 2;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__variant--unavailable, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__variant--unavailable, .cc_mk3yghcw_navbar .kombos-product-card__variant--unavailable, .cc_mk3yghcw_product_slider .kombos-product-card__variant--unavailable, .cc_mk3yghcw_product_list .kombos-product-card__variant--unavailable, .cc_mk3yghcw_account_favorites .kombos-product-card__variant--unavailable {
  opacity: 0.5;
  cursor: not-allowed;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__variant--unavailable:hover, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__variant--unavailable:hover, .cc_mk3yghcw_navbar .kombos-product-card__variant--unavailable:hover, .cc_mk3yghcw_product_slider .kombos-product-card__variant--unavailable:hover, .cc_mk3yghcw_product_list .kombos-product-card__variant--unavailable:hover, .cc_mk3yghcw_account_favorites .kombos-product-card__variant--unavailable:hover {
  transform: none;
}

.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__variant--more, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__variant--more, .cc_mk3yghcw_navbar .kombos-product-card__variant--more, .cc_mk3yghcw_product_slider .kombos-product-card__variant--more, .cc_mk3yghcw_product_list .kombos-product-card__variant--more, .cc_mk3yghcw_account_favorites .kombos-product-card__variant--more {
  background: var(--studio-ink);
  color: var(--studio-cream);
}

/* ===== Add to Cart Button (kept for compat — hidden on most rails via prop) ===== */
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__add-btn, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__add-btn, .cc_mk3yghcw_navbar .kombos-product-card__add-btn, .cc_mk3yghcw_product_slider .kombos-product-card__add-btn, .cc_mk3yghcw_product_list .kombos-product-card__add-btn, .cc_mk3yghcw_account_favorites .kombos-product-card__add-btn {
  width: 100%;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .kombos-product-card__image-wrapper,
  .kombos-product-card__media--primary,
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__media--hover, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__media--hover, .cc_mk3yghcw_navbar .kombos-product-card__media--hover, .cc_mk3yghcw_product_slider .kombos-product-card__media--hover, .cc_mk3yghcw_product_list .kombos-product-card__media--hover, .cc_mk3yghcw_account_favorites .kombos-product-card__media--hover {
    transition: none;
  }
.cc_mk3yghcw_WGrqumbgBt .kombos-product-card__image-wrapper:hover, .cc_mk3yghcw_CChTMiKq4A .kombos-product-card__image-wrapper:hover, .cc_mk3yghcw_navbar .kombos-product-card__image-wrapper:hover, .cc_mk3yghcw_product_slider .kombos-product-card__image-wrapper:hover, .cc_mk3yghcw_product_list .kombos-product-card__image-wrapper:hover, .cc_mk3yghcw_account_favorites .kombos-product-card__image-wrapper:hover {
    transform: none;
  }
}
