/* LookHotspot — a shoppable pin + reveal-on-hover product card, placed over the
   ShopTheLook image. left/top come from inline % (set in JSX); translate centers
   the pin on that point. Inherits --stl-ac (accent) from the parent section. */
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot:hover, .cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot:focus-within {
  z-index: 6;
}

/* Pin */
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__pin {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--paper, #fff);
  box-shadow: 0 4px 14px rgba(13, 13, 13, 0.28);
  cursor: pointer;
}
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--stl-ac, var(--accent));
}
/* Pulsing ring */
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__pin::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--stl-ac, var(--accent));
  opacity: 0.7;
  animation: cc_oe6aXTYiT2_JSWWeKeH3p_look-hotspot-pulse 2.2s var(--ease) infinite;
}
@keyframes cc_oe6aXTYiT2_JSWWeKeH3p_look-hotspot-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Product card — hidden until the pin is hovered/focused. */
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__card {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 248px;
  display: flex;
  gap: 12px;
  padding: 10px;
  background: var(--paper, #fff);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(13, 13, 13, 0.18);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot:hover .look-hotspot__card, .cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot:focus-within .look-hotspot__card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* little caret under the card pointing at the pin */
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__card::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--paper, #fff);
}

.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__media {
  flex: none;
  width: 72px;
  height: 88px;
  overflow: hidden;
  background: var(--paper-2);
}
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  color: var(--ink);
  /* keep to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
}
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__price-now {
  color: var(--ink);
}
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__price-was {
  color: var(--ink-3);
  font-size: 11px;
}

@media (max-width: 768px) {
  .cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__card {
    width: 210px;
  }
  /* Shrink the pins ~50% on mobile so they don't dominate the image. The pulse
     ring is inset:0, so it scales with the pin automatically. */
  .cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__pin {
    width: 10px;
    height: 10px;
  }
  .cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__dot {
    width: 4px;
    height: 4px;
  }
}

/* TOKEN KÖPRÜ — bkz. global.css */
.cc_oe6aXTYiT2_JSWWeKeH3p .look-hotspot__cat { letter-spacing: var(--ts-label-narrow-ls, .1em); }
