/* ══════════════════════════════════════════════════════════
   prices.php — page-level overrides
══════════════════════════════════════════════════════════ */

/* Remove top padding — nav sits on dark bg */
.pricing-page-section {
  padding-top: 2rem;
}

/* ── Services ──────────────────────────────────────────── */
.services-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 5rem 0 4rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
}

.service-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: default;
}
.service-item:first-child {
  border-top: 1px solid rgba(255,255,255,.07);
}

/* Hover image — floats above the row */
.service-preview {
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-60%) scale(.92);
  width: 300px;
  height: 200px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity .35s cubic-bezier(.22,1,.36,1),
    transform .35s cubic-bezier(.22,1,.36,1);
  z-index: 20;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.service-item:hover .service-preview {
  opacity: 1;
  transform: translateY(-60%) scale(1);
}
.service-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service info */
.service-info {
  flex: 1;
}
.service-name {
  font-family: var(--font-cormorant);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  color: #fff;
  transition: color .2s;
  line-height: 1.3;
}
.service-item:hover .service-name {
  color: var(--sand);
}
.service-desc {
  font-family: var(--font-jost);
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .05em;
  color: rgba(255,255,255,.35);
  margin-top: .35rem;
}

/* Service price */
.service-price {
  flex-shrink: 0;
  text-align: right;
}
.service-price-val {
  font-family: var(--font-cormorant);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #fff;
  display: block;
  line-height: 1;
}
.service-price-unit {
  font-family: var(--font-jost);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: rgba(255,255,255,.3);
  display: block;
  margin-top: .25rem;
}

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .service-preview {
    right: 0;
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateY(6px) scale(.92);
    width: 100%;
    height: 160px;
    max-width: 320px;
    right: 0;
  }
  .service-item:hover .service-preview {
    transform: translateY(0) scale(1);
  }
  .service-price-val { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .service-item { gap: 1rem; }
  .service-preview {
    display: block;
    right: 0;
    left: 0;
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateY(6px) scale(.92);
    width: 100%;
    height: 160px;
    max-width: 100%;
  }
  .service-item--active .service-preview {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
