/* ============================================================
   peluqueria.css — Yerall Martínez · Página Peluquería
   ============================================================ */

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("../DSC09535 (1).jpg") center center / cover no-repeat;
  z-index: 0;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(212, 175, 90, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(44, 36, 22, 0.12) 0%, transparent 45%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin-left: 0;
  margin-right: auto;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ECDFC8;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeSlideUpPage 0.75s ease 0.2s forwards;
}

.page-hero__eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #ECDFC8;
}

.page-hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #ECDFC8;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeSlideUpPage 0.8s ease 0.35s forwards;
}

.page-hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #ECDFC8;
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeSlideUpPage 0.8s ease 0.5s forwards;
}

/* Decorative wave at bottom */
.page-hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
}

.page-hero__wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Services Layout ────────────────────────────────────────── */
.services-page {
  padding-bottom: var(--space-3xl);
}

/* ── Category Block ─────────────────────────────────────────── */
.category {
  padding-block: var(--space-2xl);
}

.category + .category {
  border-top: 1px solid var(--border-color);
}

.category__header {
  display: flex;
  align-items: flex-end;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.category__label {
  flex-shrink: 0;
}

.category__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-xs);
}

.category__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0;
}

.category__divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--color-sand), transparent);
  margin-bottom: 6px;
}

/* ── Service Cards Grid ─────────────────────────────────────── */
.services-grid {
  display: grid;
  gap: var(--space-md);
}

.services-grid--hair {
  grid-template-columns: repeat(2, 1fr);
}

.services-grid--makeup {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
}

.services-grid--asesoria {
  grid-template-columns: 1fr;
  max-width: 600px;
}

/* ── Service Card ───────────────────────────────────────────── */
.service-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 191, 160, 0.3);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
  border-radius: 0 0 2px 2px;
}

.service-item:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gold-muted);
}

.service-item:hover::before {
  transform: scaleX(1);
}

/* Featured card (first HAIR card) */
.service-item--featured {
  background: linear-gradient(145deg, var(--color-beige-light) 0%, var(--color-white) 100%);
  border-color: var(--color-gold-muted);
}

/* Asesoría card — horizontal on wide screens */
.service-item--wide {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-lg);
}

.service-item--wide .service-item__body {
  flex: 1;
}

.service-item--wide .service-item__footer {
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: var(--space-xs);
  flex-shrink: 0;
  min-width: 130px;
}

/* ── Card internals ─────────────────────────────────────────── */
.service-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
}

.service-item__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.service-item__badge {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--color-gold-muted);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  line-height: 1.4;
  white-space: nowrap;
  margin-top: 2px;
}

.service-item__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.service-item__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  padding-top: var(--space-xs);
  border-top: 1px dashed var(--border-color);
}

.service-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  gap: var(--space-sm);
}

.service-item__price {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.service-item__price-prefix {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 2px;
}

.service-item__duration {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.service-item__duration svg {
  width: 14px;
  height: 14px;
  color: var(--color-sand-dark);
  flex-shrink: 0;
}

.service-item__footer-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.service-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.05rem;
  border-radius: 50px;
  background: var(--accent);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.service-item__cta:hover {
  background: #6B4520;
  transform: translateY(-1px);
}

/* ── Intro strip ────────────────────────────────────────────── */
.pelq-intro {
  background: var(--color-beige-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding-block: var(--space-lg);
}

.pelq-intro__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  text-align: center;
}

.pelq-intro__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pelq-intro__item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Page animations ────────────────────────────────────────── */
@keyframes fadeSlideUpPage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid--hair,
  .services-grid--makeup {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .services-grid--asesoria {
    max-width: 100%;
  }

  .service-item--wide {
    flex-direction: column;
  }

  .service-item--wide .service-item__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: auto;
    width: 100%;
  }

  .category__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .category__divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .pelq-intro__inner {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* ══════════════════════════════════════════════════════════════
   BOOKING SECTION — Peluquería
   ══════════════════════════════════════════════════════════════ */

.booking-section {
  padding-block: var(--space-3xl);
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-beige-light) 100%);
  border-top: 1px solid var(--border-color);
}

/* ── Two-column grid ───────────────────────────────────────── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

/* ── Left column — Info ────────────────────────────────────── */
.booking-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.booking-eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.booking-title em {
  font-style: italic;
  color: var(--accent);
}

.booking-subtitle {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: var(--space-lg);
  max-width: 44ch;
}

/* Steps list */
.booking-steps {
  list-style: none;
  margin: 0 0 var(--space-lg) 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.booking-steps__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

.booking-steps__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.booking-steps__icon svg {
  width: 11px;
  height: 11px;
  color: var(--color-white);
}

/* Trust badge */
.booking-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.1rem;
}

.booking-trust svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Right column — Card ───────────────────────────────────── */
.booking-card {
  background: var(--color-white);
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(44, 26, 14, 0.11),
    0 0 0 1px rgba(196, 149, 106, 0.15);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 80px rgba(196, 149, 106, 0.22),
    0 0 0 1px rgba(196, 149, 106, 0.32);
}

/* Card header — Peluquería: warm golden sand */
.booking-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, #7A5530 0%, #B08050 35%, #C8A070 65%, #DDB890 100%);
}

.booking-card__header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.booking-card__header-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.booking-card__service {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  margin: 0;
}

.booking-card__name {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.04em;
  margin: 3px 0 0;
}

/* Card body */
.booking-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Pills */
.booking-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking-pill {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--color-beige-light);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  cursor: default;
  user-select: none;
}

.booking-pill:hover {
  background: var(--color-gold-muted);
  border-color: var(--color-sand);
  color: var(--color-brown-dark);
}

/* Description */
.booking-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin: 0;
}

/* CTA button with shimmer */
.booking-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-light) 50%,
    var(--color-sand) 100%
  );
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 8px 24px rgba(139, 99, 64, 0.32);
}

.booking-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.booking-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(139, 99, 64, 0.42);
}

/* Shimmer sweep — runs every 3s */
.booking-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 100%
  );
  transform: translateX(-150%) skewX(-15deg);
  animation: booking-shimmer 3s ease-in-out infinite;
}

@keyframes booking-shimmer {
  0%   { transform: translateX(-150%) skewX(-15deg); }
  40%  { transform: translateX(380%) skewX(-15deg); }
  100% { transform: translateX(380%) skewX(-15deg); }
}

@media (prefers-reduced-motion: reduce) {
  .booking-btn::after { animation: none; }
}

/* Phone line */
.booking-card__phone {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.booking-card__phone a {
  color: var(--accent);
  font-weight: 600;
}

/* Card footer */
.booking-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem var(--space-lg);
  border-top: 1px solid var(--border-color);
  font-size: 0.70rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.booking-card__footer svg {
  width: 12px;
  height: 12px;
  color: var(--color-sand-dark);
}

.booking-card__footer strong {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ── Booking responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }

  .booking-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .booking-pills {
    gap: 0.35rem;
  }

  .booking-pill {
    font-size: 0.60rem;
    padding: 0.28rem 0.65rem;
  }
}

/* ── Perfil Orly Villamizar ──────────────────────────────────── */
.stylist-section {
  padding-block: var(--space-3xl);
  background: var(--color-beige-light);
}

.stylist-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
}

.stylist-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gold-muted);
}

/* ── Photo ── */
.stylist-card__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-beige);
}

.stylist-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease;
}

.stylist-card:hover .stylist-card__img {
  transform: scale(1.03);
}

/* ── Info ── */
.stylist-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stylist-card__role {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stylist-card__name {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--color-brown-dark);
  line-height: 1.05;
  margin: 0;
}

/* Credentials list */
.stylist-card__creds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.stylist-card__creds li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.stylist-card__creds li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold-light);
  flex-shrink: 0;
  margin-top: 0.52em;
}

/* Social icons */
.stylist-card__socials {
  display: flex;
  gap: 0.75rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-color);
}

.stylist-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-beige-light);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: background var(--transition-base), color var(--transition-base),
              border-color var(--transition-base), transform var(--transition-fast);
}

.stylist-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.stylist-social:hover {
  transform: translateY(-3px);
}

.stylist-social:nth-child(1):hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.30);
}

.stylist-social:nth-child(2):hover {
  background: #010101;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.stylist-social:nth-child(3):hover {
  background: #25D366;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.30);
}

/* ── Responsive ── */
@media (max-width: 800px) {
  .stylist-card {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
  }

  .stylist-card__photo {
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }

  .stylist-card__name {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 480px) {
  .stylist-card {
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
  }
}

/* ═══════════════════════════════════════════════════════════
   PELUQUERÍA — RESPONSIVE ADDITIONS
   ═══════════════════════════════════════════════════════════ */

/* ── Page hero ── */
@media (max-width: 1024px) {
  .page-hero {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
    min-height: auto;
  }

  .page-hero__title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .page-hero__subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .page-hero__content {
    max-width: 100%;
  }
}

/* ── Services grid ── */
@media (max-width: 1024px) {
  .services-grid--hair,
  .services-grid--makeup {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

@media (max-width: 768px) {
  .services-page {
    padding-bottom: var(--space-xl);
  }

  .category {
    padding-block: var(--space-xl);
  }

  .services-grid--hair,
  .services-grid--makeup {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .service-item {
    max-width: 100%;
  }

  /* Asesoría card — back to column on mobile */
  .service-item--wide {
    flex-direction: column;
  }

  .service-item--wide .service-item__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: auto;
    width: 100%;
  }
}

/* ── Intro strip — 2×2 grid on tablet ── */
@media (max-width: 768px) {
  .pelq-intro__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    justify-items: center;
  }
}

@media (max-width: 480px) {
  .pelq-intro__inner {
    grid-template-columns: 1fr;
  }
}

/* ── Booking section ── */
@media (max-width: 1024px) {
  .booking-section {
    padding-block: var(--space-2xl);
  }

  .booking-grid {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-inline: 0;
  }

  .booking-subtitle {
    max-width: 100%;
  }

  .booking-btn {
    min-height: 52px;
  }

  .booking-pills {
    flex-direction: row;
    flex-wrap: wrap;
  }

  /* Card goes after info text */
  .booking-card {
    order: 1;
  }
}

@media (max-width: 480px) {
  .booking-pills {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-pill {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   PROMO BANNER — Image Consult Gratis
   ═══════════════════════════════════════════════════════════ */

@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 99, 64, 0.0); }
  50%       { box-shadow: 0 0 0 6px rgba(139, 99, 64, 0.12); }
}

.promo-banner {
  background: linear-gradient(135deg, #6B5235 0%, #8B6340 35%, #C4956A 70%, #D4AF78 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Subtle shimmer overlay */
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.promo-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-block: 1.1rem;
  flex-wrap: wrap;
}

.promo-banner__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFE8B2;
  animation: promoPulse 2.8s ease-in-out infinite;
}

.promo-banner__icon svg {
  width: 18px;
  height: 18px;
}

.promo-banner__content {
  flex: 1;
  min-width: 200px;
}

.promo-banner__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255, 232, 178, 0.85);
  margin-bottom: 0.2rem;
}

.promo-banner__headline {
  font-size: 0.95rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0 0 0.15rem;
  max-width: none;
}

.promo-banner__headline strong {
  font-weight: 700;
}

.promo-banner__headline em {
  font-style: italic;
  color: #FFE8B2;
}

.promo-banner__sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  max-width: none;
}

.promo-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.2rem;
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.promo-banner__cta:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.65);
}

.promo-banner__cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.promo-banner__cta:hover svg {
  transform: translateX(3px);
}

/* ── Promo card overrides ── */

/* Special highlighted card */
.service-item--promo {
  border-color: var(--color-gold-muted);
  background: linear-gradient(145deg, #FFFDF8 0%, var(--color-white) 100%);
  box-shadow:
    var(--shadow-sm),
    0 0 0 1px rgba(196, 149, 106, 0.30),
    0 4px 24px rgba(139, 99, 64, 0.10);
  animation: promoPulse 3.5s ease-in-out infinite;
}

/* Top gold bar always visible */
.service-item--promo::before {
  transform: scaleX(1) !important;
  background: linear-gradient(to right, var(--color-gold), #D4AF78, var(--color-gold-light));
  height: 4px;
}

/* Diagonal ribbon — top-right corner */
.service-item__promo-ribbon {
  position: absolute;
  top: 26px;
  right: -38px;
  width: 150px;
  text-align: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-white);
  font-size: 0.60rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 0;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(139, 99, 64, 0.40);
  pointer-events: none;
}

/* Promo badge in header */
.service-item__badge--promo {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-white) !important;
  font-size: 0.60rem;
  padding: 0.28rem 0.65rem;
  box-shadow: 0 2px 8px rgba(139, 99, 64, 0.28);
}

/* Note with check icon */
.service-item__note--promo {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  color: var(--color-brown-mid);
  border-top-color: rgba(196, 149, 106, 0.22);
  font-style: normal;
  font-weight: 500;
}

.service-item__note--promo svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

/* Footer promo layout */
.service-item__footer--promo {
  border-top-color: rgba(196, 149, 106, 0.28);
}

/* Price wrap */
.service-item__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Old price — strikethrough */
.service-item__price-old {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(139, 99, 64, 0.5);
  letter-spacing: 0.02em;
}

/* GRATIS price */
.service-item__price--free {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* ── Promo banner responsive ── */
@media (max-width: 768px) {
  .promo-banner__inner {
    gap: var(--space-sm);
    padding-block: 1rem;
  }

  .promo-banner__icon {
    display: none;
  }

  .promo-banner__headline {
    font-size: 0.88rem;
  }

  .promo-banner__sub {
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  .promo-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .promo-banner__cta {
    align-self: flex-start;
  }

  .service-item__price--free {
    font-size: 1.6rem;
  }
}
