/* Imported from: ../../sub-components/ProductCard/styles.css */
.cc_y1jbqclb_l69S7G93ak .product-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.cc_y1jbqclb_l69S7G93ak .product-card-media {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--color-surface-alt);
}

.cc_y1jbqclb_l69S7G93ak .product-card.is-portrait .product-card-media {
  aspect-ratio: 3 / 4;
}

.cc_y1jbqclb_l69S7G93ak .product-card.is-square .product-card-media {
  aspect-ratio: 1 / 1;
}

.cc_y1jbqclb_l69S7G93ak .product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc_y1jbqclb_l69S7G93ak .product-card-image--empty {
  background: linear-gradient(135deg, var(--color-surface-alt), var(--color-border));
}

.cc_y1jbqclb_l69S7G93ak .product-card.has-hover-image .product-card-image--primary, .cc_y1jbqclb_l69S7G93ak .product-card-image--hover {
  position: absolute;
  top: 0;
  left: 0;
}

.cc_y1jbqclb_l69S7G93ak .product-card-image--hover {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@media (hover: hover) {
  .cc_y1jbqclb_l69S7G93ak .product-card.has-hover-image:hover .product-card-image--hover {
    opacity: 1;
  }
}

.cc_y1jbqclb_l69S7G93ak .product-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
}

.cc_y1jbqclb_l69S7G93ak .product-card-name {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 400;
  line-height: 1.4;
  color: var(--slider-text-color, var(--color-text-primary));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cc_y1jbqclb_l69S7G93ak .product-card-price {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.4;
  color: var(--slider-text-color, var(--color-text-primary));
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: no-preference) {
  .cc_y1jbqclb_l69S7G93ak .product-card-image {
    transition: transform 400ms ease-out;
  }

  .cc_y1jbqclb_l69S7G93ak .product-card:hover .product-card-image {
    transform: scale(1.04);
  }
}

/* End import: ../../sub-components/ProductCard/styles.css */

/* CompleteTheLookV2 — full-width section under PDP; horizontal slider. */

.cc_y1jbqclb_l69S7G93ak .ctlv2 {
  width: 100%;
  font-family: var(--font-body);
  color: var(--color-text-primary);
  /* Match PDP / site surface; inline style also forces #FAF8F5 over Studio white. */
  background: var(--color-bg, #faf8f5);
  overflow-x: clip;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  /* Top: space-sm (16px) — cohesive gap after PDP; was space-md/lg */
  padding: var(--space-sm) clamp(1rem, 3vw, 3rem) var(--space-lg);
  box-sizing: border-box;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__title {
  margin: 0;
  font-family: var(--font-display);
  /* Stable ~20–24px; avoid vw-driven shrink at 1080 */
  font-size: clamp(1.25rem, 1.1vw + 0.85rem, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text-primary);
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__arrows {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: 0.25rem;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-text-primary, #1c1917);
  cursor: pointer;
  font-size: 1rem;
  transition: opacity 0.15s ease;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__arrow .ketroy-icon {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__arrow .ketroy-icon path {
  stroke-width: 1;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__arrow:hover:not(:disabled) {
  opacity: 0.55;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__arrow:focus-visible {
  outline: 1px solid var(--color-text-primary, #1c1917);
  outline-offset: 2px;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--space-xs);
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Vertical page scroll stays native; horizontal carousel is JS-gated. */
  touch-action: pan-y;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  /* Never fall back to multi-row grid from stale theme CSS. */
  grid-template-columns: none;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__track:active, .cc_y1jbqclb_l69S7G93ak .ctlv2__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__track.is-dragging .product-card {
  pointer-events: none;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__track::-webkit-scrollbar {
  display: none;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__item {
  box-sizing: border-box;
  flex: 0 0 78%;
  flex-shrink: 0;
  min-width: 0;
  max-width: 18rem;
  width: auto;
  scroll-snap-align: start;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__item .product-card {
  width: 100%;
  /* Image → name: space-sm (16px) */
  gap: var(--space-sm);
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__item .product-card-body {
  /* Name → price: space-xs (8px) */
  gap: var(--space-xs);
}

/* Match PDP gallery radius; taller media; full product without head-crop */
.cc_y1jbqclb_l69S7G93ak .ctlv2__item .product-card-media {
  border-radius: var(--radius-media);
  aspect-ratio: 2 / 3;
  background-color: var(--color-surface-alt);
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__item .product-card.is-portrait .product-card-media, .cc_y1jbqclb_l69S7G93ak .ctlv2__item .product-card.is-square .product-card-media {
  aspect-ratio: 2 / 3;
}

.cc_y1jbqclb_l69S7G93ak .ctlv2__item .product-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

@media (min-width: 640px) {
  .cc_y1jbqclb_l69S7G93ak .ctlv2__item {
    flex: 0 0 46%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .cc_y1jbqclb_l69S7G93ak .ctlv2__inner {
    padding: var(--space-sm) clamp(1.25rem, 3vw, 3.5rem) var(--space-xl);
  }

  .cc_y1jbqclb_l69S7G93ak .ctlv2__arrows {
    display: inline-flex;
  }

  .cc_y1jbqclb_l69S7G93ak .ctlv2__track {
    gap: 0.875rem;
  }

  .cc_y1jbqclb_l69S7G93ak .ctlv2__item {
    flex: 0 0 calc((100% - 1.75rem) / 3);
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .cc_y1jbqclb_l69S7G93ak .ctlv2__inner {
    padding: var(--space-sm) clamp(1.25rem, 2.5vw, 3rem) var(--space-xl);
  }

  .cc_y1jbqclb_l69S7G93ak .ctlv2__track {
    gap: 1rem;
  }

  .cc_y1jbqclb_l69S7G93ak .ctlv2__item {
    /* Exactly 4 cards visible; remaining cards scroll horizontally. */
    flex: 0 0 calc((100% - 3rem) / 4);
  }
}

@media (min-width: 1280px) {
  .cc_y1jbqclb_l69S7G93ak .ctlv2__inner {
    padding: var(--space-sm) clamp(1.5rem, 4vw, 5rem) var(--space-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc_y1jbqclb_l69S7G93ak .ctlv2__track {
    scroll-behavior: auto;
  }
}
