/* ============================================================
   PAVI'S LAB — pages/how-to-order.css
   ============================================================ */

/* ── Hero ── */
.hto-hero {
  position: relative;
  padding: 72px 0 56px;
  text-align: center;
  overflow: hidden;
}

.hto-bg {
  position: absolute;
  inset: 0;
  background: url('https://res.cloudinary.com/dhpxr9ubq/image/upload/v1779472936/bg_xzjklr.png') center / cover no-repeat;
  filter: brightness(0.22);
  z-index: 0;
}

.hto-hero .container { position: relative; z-index: 1; }

.hto-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-top: -12px;
  margin-bottom: 14px;
}

.hto-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}


/* ── Cards Section ── */
.hto-cards-section {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
}

.hto-cards-bg {
  position: absolute;
  inset: 0;
  background: url('https://res.cloudinary.com/dhpxr9ubq/image/upload/v1779472936/bg_xzjklr.png') center / cover no-repeat;
  filter: brightness(0.14);
  z-index: 0;
}

.hto-cards-section .container { position: relative; z-index: 1; }

.hto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}


/* ── Card (image wrapper) ── */
.hto-card {
  border: 2px solid rgba(255, 0, 127, 0.5);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(255, 0, 127, 0.2),
    0 0 80px rgba(255, 0, 127, 0.08),
    inset 0 0 40px rgba(255, 0, 127, 0.03);
}

.hto-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}


/* ── Bottom Banner ── */
.hto-bottom {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.hto-bottom-bg {
  position: absolute;
  inset: 0;
  background: url('https://res.cloudinary.com/dhpxr9ubq/image/upload/v1779472936/bg_xzjklr.png') center / cover no-repeat;
  filter: brightness(0.25);
  z-index: 0;
}

.hto-bottom .container { position: relative; z-index: 1; }

.hto-bottom-text {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

.hto-bottom-text span {
  color: var(--pink);
  font-weight: 800;
}


/* ── Responsive ── */
@media (max-width: 768px) {
  .hto-grid { grid-template-columns: 1fr; gap: 20px; }
  .hto-hero { padding: 52px 0 40px; }
  .br-desk  { display: none; }
}
