
/* ── ProductGallery — classical product gallery: contained main image, arrows, position bar + thumbs ── */

.cc_Z0fv8wUkj4_umGk94zaNA .ug-gallery, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 24px;
}

/* Stage — square frame, image is CONTAINED so proportions never distort */
.cc_Z0fv8wUkj4_umGk94zaNA .ug-stage, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f3ef;
}

.cc_Z0fv8wUkj4_umGk94zaNA .ug-main, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  display: block;
}

/* Campaign badge overlay */
.cc_Z0fv8wUkj4_umGk94zaNA .ug-badge, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cc_Z0fv8wUkj4_umGk94zaNA .ug-placeholder, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8e2da 0%, #d0c8be 100%);
}

/* Prev / next arrows */
.cc_Z0fv8wUkj4_umGk94zaNA .ug-nav, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.cc_Z0fv8wUkj4_umGk94zaNA .ug-stage:hover .ug-nav, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-stage:hover .ug-nav { opacity: 1; }
.cc_Z0fv8wUkj4_umGk94zaNA .ug-nav--prev, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-nav--prev { left: 14px; }
.cc_Z0fv8wUkj4_umGk94zaNA .ug-nav--next, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-nav--next { right: 14px; }
.cc_Z0fv8wUkj4_umGk94zaNA .ug-nav:hover, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-nav:hover { transform: translateY(-50%) scale(1.08); }

/* Position bar — segmented "which photo am I on" indicator */
.cc_Z0fv8wUkj4_umGk94zaNA .ug-bar, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-bar {
  display: flex;
  gap: 6px;
  padding: 0 2px;
}

.cc_Z0fv8wUkj4_umGk94zaNA .ug-bar-seg, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-bar-seg {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.25s ease;
}

.cc_Z0fv8wUkj4_umGk94zaNA .ug-bar-seg--active, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-bar-seg--active { background: #1a1a18; }

/* Thumbnails */
.cc_Z0fv8wUkj4_umGk94zaNA .ug-thumbs, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.cc_Z0fv8wUkj4_umGk94zaNA .ug-thumbs::-webkit-scrollbar, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-thumbs::-webkit-scrollbar { display: none; }

.cc_Z0fv8wUkj4_umGk94zaNA .ug-thumb, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-thumb {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #f5f3ef;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.cc_Z0fv8wUkj4_umGk94zaNA .ug-thumb-img, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .cc_Z0fv8wUkj4_umGk94zaNA .ug-gallery, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-gallery { position: relative; top: 0; }
  .cc_Z0fv8wUkj4_umGk94zaNA .ug-nav, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-nav { opacity: 1; }
  .cc_Z0fv8wUkj4_umGk94zaNA .ug-thumb, .cc_Z0fv8wUkj4_2YVvK0PszF .ug-thumb { width: 60px; height: 60px; }
}

/* ── QuantitySelector — +/- stepper ── */

.cc_Z0fv8wUkj4_umGk94zaNA .qty, .cc_Z0fv8wUkj4_2YVvK0PszF .qty {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: system-ui, -apple-system, sans-serif;
}

.cc_Z0fv8wUkj4_umGk94zaNA .qty-label, .cc_Z0fv8wUkj4_2YVvK0PszF .qty-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

.cc_Z0fv8wUkj4_umGk94zaNA .qty-box, .cc_Z0fv8wUkj4_2YVvK0PszF .qty-box {
  display: inline-flex;
  align-items: stretch;
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.cc_Z0fv8wUkj4_umGk94zaNA .qty-btn, .cc_Z0fv8wUkj4_2YVvK0PszF .qty-btn {
  width: 44px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: inherit;
  cursor: pointer;
  transition: background 0.18s ease;
}
.cc_Z0fv8wUkj4_umGk94zaNA .qty-btn:hover:not(:disabled), .cc_Z0fv8wUkj4_2YVvK0PszF .qty-btn:hover:not(:disabled) { background: rgba(0, 0, 0, 0.05); }
.cc_Z0fv8wUkj4_umGk94zaNA .qty-btn:disabled, .cc_Z0fv8wUkj4_2YVvK0PszF .qty-btn:disabled { opacity: 0.3; cursor: default; }

.cc_Z0fv8wUkj4_umGk94zaNA .qty-input, .cc_Z0fv8wUkj4_2YVvK0PszF .qty-input {
  width: 48px;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  background: none;
  text-align: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
  padding: 10px 0;
  -moz-appearance: textfield;
}
.cc_Z0fv8wUkj4_umGk94zaNA .qty-input:focus, .cc_Z0fv8wUkj4_2YVvK0PszF .qty-input:focus { outline: none; }
.cc_Z0fv8wUkj4_umGk94zaNA .qty-input::-webkit-outer-spin-button, .cc_Z0fv8wUkj4_2YVvK0PszF .qty-input::-webkit-outer-spin-button, .cc_Z0fv8wUkj4_umGk94zaNA .qty-input::-webkit-inner-spin-button, .cc_Z0fv8wUkj4_2YVvK0PszF .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
