/* Shop the Look Block Styling */
.shop-look-section {
  width: 100%;
}

.shop-look-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.look-grid {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.look-image-col {
  flex: 1 1 55%;
  max-width: 600px;
  position: relative;
}

.look-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.look-main-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.1/1;
  object-fit: cover;
}

/* Hotspots */
.look-hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.look-hotspot::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  opacity: 0;
  animation: pulse-hotspot 2.2s infinite;
}

.look-hotspot.active {
  background-color: #1c1b1b;
  border-color: #ffffff;
  transform: translate(-50%, -50%) scale(1.15);
}

@keyframes pulse-hotspot {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.look-details-col {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.look-product-carousel-track {
  width: 320px;
  overflow: hidden;
}

.look-product-carousel {
  display: flex;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.look-product-slide {
  flex: 0 0 100%;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.look-product-slide.active {
  opacity: 1;
}

.look-prod-img-box {
  width: 240px;
  height: 240px;
  background-color: #eae8e2;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 10px;
}

.look-prod-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.look-prod-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  color: #393938;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.look-prod-price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1c1b1b;
  margin-bottom: 20px;
}

.look-prod-view-btn {
  width: 240px;
  height: 48px;
  background-color: var(--btn-bg);
  color: #ffffff;
  font-family: var(--font-cta);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.look-prod-view-btn:hover {
  background-color: var(--btn-hover);
  text-decoration: none;
}

.look-product-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.look-prod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbc9c4;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.look-prod-dot.active {
  background-color: #1c1b1b;
}

/* Outer Look Navigation — Owl nav */
.shop-look-slider-wrapper .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  font-size: 1.25rem;
  color: var(--text-color) !important;
  background: none !important;
  border: none;
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

.shop-look-slider-wrapper .owl-nav button:hover {
  opacity: 0.9 !important;
}

.shop-look-slider-wrapper .owl-nav button.owl-prev {
  left: 0px;
}

.shop-look-slider-wrapper .owl-nav button.owl-next {
  right: 0px;
}

.shop-look-slider-wrapper .owl-nav button.disabled {
  opacity: 0.2 !important;
  cursor: default;
}

/* Hotspot modal (mobile only) — fixed backdrop + centered card */
#look-product-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#look-product-modal.is-open {
  display: flex;
}

.look-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.look-modal-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  width: 260px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.look-modal-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0;
}

.look-modal-img-box {
  width: 180px;
  height: 180px;
  background: #eae8e2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.look-modal-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.look-modal-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 400;
  color: #393938;
  letter-spacing: 0.4px;
  line-height: 1.4;
}

.look-modal-price {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: #1c1b1b;
}

.look-modal-btn {
  display: block;
  width: 100%;
  padding: 11px 0;
  background-color: var(--btn-bg);
  color: #ffffff;
  font-family: var(--font-cta);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.look-modal-btn:hover {
  background-color: var(--btn-hover);
  text-decoration: none;
  color: #ffffff;
}

/* Prevent body scroll while modal is open */
body.look-modal-open {
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .look-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0;
  }

  .look-image-col {
    width: 100%;
    max-width: 500px;
  }

  .shop-look-slider-wrapper .owl-nav button {
    font-size: 1.125rem;
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  /* Hide desktop product panel on mobile only; modal handles product display */
  .look-details-col {
    display: none;
  }
}
