/* ─── Clockoloco Detail Page — Glashütte-inspired layout ─────────────────── */

/* Hide original YOOtheme elements while JS layout builds */
.watch-detail .uk-container { min-height: 0; }

/* ─── Outer wrapper ─────────────────────────────────────────────────────────*/
.cba-layout {
  width: 100%;
  background: #fff;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #0d0d0d;
}

/* ─── Hero ──────────────────────────────────────────────────────────────────*/
.cba-hero {
  width: 100%;
  height: 70vh;
  min-height: 420px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cba-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .88;
}

/* ─── Product section ───────────────────────────────────────────────────────*/
.cba-product {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: start;
}

/* Left: image column */
.cba-product-img-col {
  position: sticky;
  top: 40px;
}
.cba-product-img-wrap {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}
.cba-product-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform .35s ease;
}
.cba-product-img:hover {
  transform: scale(1.04);
}

/* Thumbnails */
.cba-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cba-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1.5px solid #e0e0e0;
  border-radius: 3px;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s, border-color .2s;
}
.cba-thumb:hover,
.cba-thumb.active {
  opacity: 1;
  border-color: #0d0d0d;
}

/* Right: info column */
.cba-product-info-col {
  padding-top: 8px;
}

.cba-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 14px;
}

.cba-watch-title {
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: #0d0d0d;
  margin: 0 0 44px;
  font-family: Georgia, 'Times New Roman', serif;
}

/* Specs */
.cba-specs-grid {
  margin-bottom: 40px;
  border-top: .5px solid #e0e0e0;
}
.cba-spec-item {
  padding: 16px 0;
  border-bottom: .5px solid #e0e0e0;
}
.cba-spec-val {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #0d0d0d;
  line-height: 1.3;
}
.cba-spec-key {
  display: block;
  font-size: 12px;
  color: #888;
  letter-spacing: .04em;
  margin-top: 3px;
}

/* CTA block */
.cba-cta-block {
  margin-bottom: 32px;
}
.cba-price {
  font-size: 22px;
  font-weight: 500;
  color: #0d0d0d;
  margin: 0 0 18px;
  letter-spacing: -.01em;
}
.cba-buy-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #0d0d0d;
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
  border: 1.5px solid #0d0d0d;
}
.cba-buy-btn:hover {
  background: transparent;
  color: #0d0d0d !important;
}

.cba-back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  color: #999;
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .2s;
}
.cba-back-link:hover {
  color: #0d0d0d;
}

/* ─── Review section ────────────────────────────────────────────────────────*/
.cba-review-section {
  background: #f8f8f8;
  padding: 80px 40px;
}
.cba-review-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cba-review-inner p.cba-review,
.cba-review-inner .cba-review {
  font-size: 19px;
  line-height: 1.75;
  color: #1a1a1a;
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0 0 32px;
}
.cba-review-inner p.cba-disclosure,
.cba-review-inner .cba-disclosure {
  font-size: 12px;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────*/
@media (max-width: 768px) {
  .cba-hero { height: 50vh; }

  .cba-product {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 60px;
  }
  .cba-product-img-col { position: static; }

  .cba-watch-title { font-size: 26px; margin-bottom: 28px; }
  .cba-review-section { padding: 48px 20px; }
}
