/* ===== SplitLookbook — lookbook image beside a 2×2 product grid ===== */
.cc_pSmp65GtZr_hHPotA22sW .slook {
  width: 100%;
  overflow: hidden;
}

.cc_pSmp65GtZr_hHPotA22sW .slook__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-lg) var(--container-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .cc_pSmp65GtZr_hHPotA22sW .slook__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl) var(--container-pad);
    align-items: stretch;
  }
  /* Default: image on the right, products on the left */
  .cc_pSmp65GtZr_hHPotA22sW .slook--img-right .slook__media {
    order: 2;
  }
  .cc_pSmp65GtZr_hHPotA22sW .slook--img-right .slook__products {
    order: 1;
  }
  .cc_pSmp65GtZr_hHPotA22sW .slook--img-left .slook__media {
    order: 1;
  }
  .cc_pSmp65GtZr_hHPotA22sW .slook--img-left .slook__products {
    order: 2;
  }
}

/* ---- Media panel ---- */
.cc_pSmp65GtZr_hHPotA22sW .slook__media {
  position: relative;
  min-height: 0;
}

.cc_pSmp65GtZr_hHPotA22sW .slook__media-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-surface-alt);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .cc_pSmp65GtZr_hHPotA22sW .slook__media-link {
    aspect-ratio: auto;
    height: 100%;
  }
}

.cc_pSmp65GtZr_hHPotA22sW .slook__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cc_pSmp65GtZr_hHPotA22sW .slook__img--empty {
  background: var(--color-surface-2);
}

.cc_pSmp65GtZr_hHPotA22sW .slook__media-link:hover .slook__img {
  transform: scale(1.04);
}

.cc_pSmp65GtZr_hHPotA22sW .slook__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 28, 28, 0.5) 0%,
    rgba(26, 28, 28, 0.1) 50%,
    rgba(26, 28, 28, 0) 80%
  );
  pointer-events: none;
}

/* ---- Overlay copy ---- */
.cc_pSmp65GtZr_hHPotA22sW .slook__overlay {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: min(420px, 80%);
  padding: clamp(20px, 4vw, 44px);
  pointer-events: none;
}

.cc_pSmp65GtZr_hHPotA22sW .slook__overlay > * {
  pointer-events: auto;
}

/* Position presets */
.cc_pSmp65GtZr_hHPotA22sW .slook__overlay--top-left {
  top: 0;
  left: 0;
  align-items: flex-start;
  text-align: left;
}
.cc_pSmp65GtZr_hHPotA22sW .slook__overlay--bottom-left {
  bottom: 0;
  left: 0;
  align-items: flex-start;
  text-align: left;
}
/* Centred presets need a wider column or the big serif title wraps to one
   word per line. Widen + cap the title measure instead. */
.cc_pSmp65GtZr_hHPotA22sW .slook__overlay--bottom-center {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  text-align: center;
  max-width: min(640px, 92%);
}
.cc_pSmp65GtZr_hHPotA22sW .slook__overlay--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  text-align: center;
  max-width: min(640px, 92%);
}

.cc_pSmp65GtZr_hHPotA22sW .slook__overlay--bottom-center .slook__title, .cc_pSmp65GtZr_hHPotA22sW .slook__overlay--center .slook__title {
  max-width: 14ch;
}

.cc_pSmp65GtZr_hHPotA22sW .slook__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.92;
}

.cc_pSmp65GtZr_hHPotA22sW .slook__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.cc_pSmp65GtZr_hHPotA22sW .slook__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.cc_pSmp65GtZr_hHPotA22sW .slook__overlay--bottom-center .slook__ctas, .cc_pSmp65GtZr_hHPotA22sW .slook__overlay--center .slook__ctas {
  justify-content: center;
}

.cc_pSmp65GtZr_hHPotA22sW .slook__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.cc_pSmp65GtZr_hHPotA22sW .slook__btn--primary {
  background: var(--color-on-primary);
  color: var(--color-text);
  border: 1px solid var(--color-on-primary);
}

.cc_pSmp65GtZr_hHPotA22sW .slook__btn--primary:hover {
  background: transparent;
  color: var(--color-on-primary);
}

.cc_pSmp65GtZr_hHPotA22sW .slook__btn--ghost {
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}

.cc_pSmp65GtZr_hHPotA22sW .slook__btn--ghost:hover {
  background: var(--color-on-primary);
  color: var(--color-text);
}

.cc_pSmp65GtZr_hHPotA22sW .slook__btn:focus-visible {
  outline: 2px solid var(--color-on-primary);
  outline-offset: 3px;
}

/* ---- Product side ---- */
.cc_pSmp65GtZr_hHPotA22sW .slook__empty {
  margin: 0;
  padding: var(--space-xl) 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-muted);
}

/* Desktop: fixed 2×2 grid */
.cc_pSmp65GtZr_hHPotA22sW .slook__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
  align-content: start;
}

@media (min-width: 1024px) {
  .cc_pSmp65GtZr_hHPotA22sW .slook__products {
    gap: 24px;
  }
}

.cc_pSmp65GtZr_hHPotA22sW .slook__cell {
  min-width: 0;
}

/* Mobile: horizontal scroll, ~1.5 cards visible. Stays inside the section
   padding (no negative-margin edge-bleed) so it never pushes page width. */
@media (max-width: 767px) {
  .cc_pSmp65GtZr_hHPotA22sW .slook__products {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .cc_pSmp65GtZr_hHPotA22sW .slook__products::-webkit-scrollbar {
    display: none;
  }
  .cc_pSmp65GtZr_hHPotA22sW .slook__cell {
    flex: 0 0 62%;
    min-width: 0;
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc_pSmp65GtZr_hHPotA22sW .slook__img, .cc_pSmp65GtZr_hHPotA22sW .slook__btn {
    transition: none;
  }
}

/* ===== Shared quick-buy card styles appended below ===== */
/* ===== FabricProductCard =====
   NOTE: ikas only bundles a component's REGISTERED styles.css. Sub-component
   stylesheets are not picked up, so the card's styles live here (the card is
   only ever rendered inside FabricCategory, so this scope is correct). */
.cc_pSmp65GtZr_hHPotA22sW .fab-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

/* Positioning context for the quick-add action, which is a SIBLING of the media
   link (not nested inside the <a>, which would hijack taps into navigation). */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__media-wrap {
  position: relative;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--color-surface-alt);
  text-decoration: none;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__img--main {
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 400ms ease;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__img--empty {
  background: var(--color-surface-2);
}

/* Crossfade to the secondary shot on hover */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__img--hover {
  opacity: 0;
  transition: opacity 500ms ease;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__media:hover .fab-card__img--main {
  transform: scale(1.04);
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__media:hover .fab-card__img--hover {
  opacity: 1;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 10px;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Quick-add + size picker overlay ===== */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__action {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  pointer-events: none; /* children opt back in */
}

@keyframes cc_pSmp65GtZr_hHPotA22sW_fab-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Quick-add: a fixed hairline disc; the label glides out beside it.
   Only opacity/transform animate (GPU), so the reveal is buttery — no
   layout reflow, no "snap". --- */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__qa {
  pointer-events: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border-soft);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: 0 1px 2px rgba(26, 28, 28, 0.05), 0 4px 12px rgba(26, 28, 28, 0.07);
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 240ms ease,
    box-shadow 220ms ease, border-color 220ms ease;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__qa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Label sits to the left of the disc, hidden behind it until hover */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__qa-label {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  padding: 7px 12px;
  border: 1px solid var(--color-border-soft);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: 0 1px 2px rgba(26, 28, 28, 0.05), 0 4px 12px rgba(26, 28, 28, 0.07);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(10px, -50%);
  transition: opacity 200ms ease,
    transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Reveal the disc on card hover/focus */
.cc_pSmp65GtZr_hHPotA22sW .fab-card:hover .fab-card__qa, .cc_pSmp65GtZr_hHPotA22sW .fab-card:focus-within .fab-card__qa {
  opacity: 1;
  transform: translateY(0);
}

/* Lift the disc + glide the label out on the disc's own hover/focus */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__qa:hover:not(:disabled), .cc_pSmp65GtZr_hHPotA22sW .fab-card__qa:focus-visible {
  border-color: var(--color-border);
  box-shadow: 0 2px 4px rgba(26, 28, 28, 0.07), 0 8px 18px rgba(26, 28, 28, 0.13);
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__qa:hover:not(:disabled) .fab-card__qa-label, .cc_pSmp65GtZr_hHPotA22sW .fab-card__qa:focus-visible .fab-card__qa-label, .cc_pSmp65GtZr_hHPotA22sW .fab-card__qa[data-state="added"] .fab-card__qa-label {
  opacity: 1;
  transform: translate(0, -50%);
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__qa[data-state="added"] {
  opacity: 1;
  transform: translateY(0);
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__qa[data-state="added"] .fab-card__qa-label {
  color: #2e7d54;
  border-color: #2e7d54;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__qa:disabled {
  cursor: not-allowed;
  box-shadow: none;
  filter: grayscale(0.35);
}

/* --- Size picker (slides in after the quick-add is tapped on a sized item) --- */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__sizes {
  pointer-events: auto;
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 7px 8px;
  border: 1px solid var(--color-border-soft);
  border-radius: 999px;
  background: var(--color-surface);
  box-shadow: 0 1px 2px rgba(26, 28, 28, 0.05), 0 6px 16px rgba(26, 28, 28, 0.1);
  animation: cc_pSmp65GtZr_hHPotA22sW_fab-rise 200ms ease;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: var(--color-text);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__size:hover:not(:disabled), .cc_pSmp65GtZr_hHPotA22sW .fab-card__size:focus-visible {
  background: var(--color-surface-alt);
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__size.is-added {
  background: var(--color-text);
  color: var(--color-on-primary);
}

/* Out-of-stock size: struck through, not selectable */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__size.is-oos {
  color: var(--color-text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.55;
}

/* Floating confirm pill — mirrors the hovered size ("L Sepete Ekle") */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__confirm {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 7px 12px;
  border: 1px solid var(--color-border-soft);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: 0 1px 2px rgba(26, 28, 28, 0.05), 0 4px 12px rgba(26, 28, 28, 0.07);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  animation: cc_pSmp65GtZr_hHPotA22sW_fab-rise 180ms ease;
}

/* ---- Colour swatches: swap with the colour-count line on hover ---- */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__meta {
  display: grid;
  min-height: 18px;
}

/* Both children share one grid cell so the swap never shifts layout */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__colors, .cc_pSmp65GtZr_hHPotA22sW .fab-card__swatches {
  grid-area: 1 / 1;
  transition: opacity 180ms ease;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__swatches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card:hover .fab-card__colors, .cc_pSmp65GtZr_hHPotA22sW .fab-card:focus-within .fab-card__colors {
  opacity: 0;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card:hover .fab-card__swatches, .cc_pSmp65GtZr_hHPotA22sW .fab-card:focus-within .fab-card__swatches {
  opacity: 1;
  pointer-events: auto;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__swatch {
  position: relative;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface-alt);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__swatch img, .cc_pSmp65GtZr_hHPotA22sW .fab-card__swatch-color, .cc_pSmp65GtZr_hHPotA22sW .fab-card__swatch-empty {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__swatch-empty {
  background: var(--color-surface-2);
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__swatch:hover {
  border-color: var(--color-border);
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__swatch.is-active {
  border-color: var(--fab-brand, var(--color-text));
  outline: 1px solid var(--fab-brand, var(--color-text));
  outline-offset: -2px;
}

/* Out-of-stock colour: diagonal strike across the swatch */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__swatch.is-oos::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    transparent calc(50% - 1px),
    var(--color-error, #c0392b) calc(50% - 1px),
    var(--color-error, #c0392b) calc(50% + 1px),
    transparent calc(50% + 1px)
  );
}

/* Text block */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__name {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-secondary);
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__price-old {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: 12px;
}

.cc_pSmp65GtZr_hHPotA22sW .fab-card__colors {
  margin: 0;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Visually hidden helper link text — keeps the whole card keyboard-reachable */
.cc_pSmp65GtZr_hHPotA22sW .fab-card__view {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (hover: none) {
  /* Touch: quick-add stays visible but compact (icon only, no expand) */
  .cc_pSmp65GtZr_hHPotA22sW .fab-card__qa {
    opacity: 1;
    transform: none;
    width: 34px;
    height: 34px;
    box-shadow: 0 1px 2px rgba(26, 28, 28, 0.06), 0 4px 12px rgba(26, 28, 28, 0.1);
  }
  .cc_pSmp65GtZr_hHPotA22sW .fab-card__qa-label {
    display: none;
  }
  /* Colours are always shown on touch (no hover to reveal them) */
  .cc_pSmp65GtZr_hHPotA22sW .fab-card__colors {
    opacity: 0;
  }
  .cc_pSmp65GtZr_hHPotA22sW .fab-card__swatches {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc_pSmp65GtZr_hHPotA22sW .fab-card__img--main, .cc_pSmp65GtZr_hHPotA22sW .fab-card__img--hover, .cc_pSmp65GtZr_hHPotA22sW .fab-card__qa, .cc_pSmp65GtZr_hHPotA22sW .fab-card__qa-label, .cc_pSmp65GtZr_hHPotA22sW .fab-card__size, .cc_pSmp65GtZr_hHPotA22sW .fab-card__colors, .cc_pSmp65GtZr_hHPotA22sW .fab-card__swatches, .cc_pSmp65GtZr_hHPotA22sW .fab-card__swatch {
    transition: none;
  }
  .cc_pSmp65GtZr_hHPotA22sW .fab-card__sizes, .cc_pSmp65GtZr_hHPotA22sW .fab-card__confirm {
    animation: none;
  }
}
