/* =============================================
   Krystal Klear — Brand Color Theme
   Overrides CSS variables from style.css
   Palette: Black · Burgundy #590F1E · Coral #CB5345 · White
   ============================================= */

:root {
  /* Backgrounds */
  --color-bg-dark:      #0A0A0A;
  --color-bg-mid:       #141414;
  --color-bg-light:     #F5F5F5;

  /* Brand & Accent */
  --color-brand:        #590F1E;
  --color-brand-light:  #7A1528;
  --color-accent:       #CB5345;
  --color-accent-dark:  #A83D32;

  /* Text */
  --color-text-primary: #FFFFFF;
  --color-text-muted:   #9CA3AF;
  --color-border:       rgba(255, 255, 255, 0.07);
}

/* ===== HEADER ===== */
#header.scrolled {
  background-color: rgba(10, 10, 10, 0.97);
}

/* Nav logo accent word */
.nav__logo-text span {
  color: #CB5345;
}

/* ===== HERO ===== */
.hero__bg {
  background-image: url('https://images.pexels.com/photos/5233264/pexels-photo-5233264.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&q=80') !important;
  background-size: cover !important;
  background-position: center center !important;
}

.hero__overlay {
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.60) 50%,
    rgba(10, 10, 10, 0.25) 100%
  );
}

/* Reduce bottom padding so hero doesn't bleed into next section */
.hero__content {
  padding-bottom: 2rem;
}

.hero__badges {
  margin-bottom: 0;
}

.hero__eyebrow {
  color: #CB5345;
  border-color: rgba(203, 83, 69, 0.3);
  background-color: rgba(203, 83, 69, 0.08);
}

/* ===== WHY SECTION ===== */
.why__icon {
  background-color: rgba(89, 15, 30, 0.1);
  color: #590F1E;
}

.why__card:hover {
  box-shadow: 0 8px 32px rgba(89, 15, 30, 0.12);
}

/* ===== TABS ===== */
.tab-btn:hover {
  border-color: #CB5345;
}

.tab-btn.active {
  background-color: #590F1E;
  border-color: #590F1E;
}

/* ===== SERVICE CARDS ===== */
.service-card:hover {
  border-color: rgba(203, 83, 69, 0.5);
}

.service-card__badge {
  background-color: #590F1E;
  color: white;
}

.service-card__badge--featured {
  background-color: #CB5345;
  color: white;
}

.service-card--featured {
  border-color: rgba(203, 83, 69, 0.35);
}

.service-card--featured:hover {
  border-color: #CB5345;
}

/* ===== ADD-ONS ===== */
.addon-pill:hover {
  border-color: rgba(203, 83, 69, 0.4);
}

.addons__specialty a {
  color: #CB5345;
}

/* ===== DISCOUNT BANNER ===== */
.discount-banner {
  background-color: rgba(203, 83, 69, 0.08);
  border-color: rgba(203, 83, 69, 0.25);
  border-left-color: #CB5345;
}

.discount-banner svg {
  color: #CB5345;
}

.discount-banner strong {
  color: #CB5345;
}

/* ===== HOW IT WORKS — overrides removed; canonical styles live in style.css ===== */

/* ===== GALLERY LABELS ===== */
.gallery__label--after {
  background-color: rgba(89, 15, 30, 0.92);
}

.gallery__note a {
  color: #CB5345;
}

/* ===== SERVICE AREA ===== */
.area__list li::before {
  background-color: #590F1E;
}

/* ===== CONTACT FORM ===== */
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: #CB5345;
  background-color: rgba(203, 83, 69, 0.06);
}

.form__required { color: #CB5345; }

.contact__info-item svg {
  color: #CB5345;
}

.contact__info-item a:hover {
  color: #CB5345;
}

.form__result.success {
  background-color: rgba(89, 15, 30, 0.12);
  border-color: rgba(89, 15, 30, 0.5);
  color: #e88c83;
}

/* ===== ADDON CHECKBOXES ===== */
.addon-check:hover span {
  border-color: rgba(203, 83, 69, 0.5);
}

.addon-check input:checked + span {
  background-color: rgba(89, 15, 30, 0.18);
  border-color: #590F1E;
}

/* ===== FAQ ===== */
.faq__question:hover,
.faq__question[aria-expanded="true"] {
  color: #CB5345;
}

.faq__chevron {
  color: #590F1E;
}

.faq__question[aria-expanded="true"] {
  background-color: rgba(89, 15, 30, 0.03);
}

.faq__answer a {
  color: #CB5345;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #050505;
}

.footer__social a:hover {
  color: #CB5345;
  border-color: rgba(203, 83, 69, 0.4);
  background-color: rgba(203, 83, 69, 0.06);
}

.footer__links a:hover {
  color: #CB5345;
}

/* ===== BUTTONS ===== */
.btn--accent {
  background-color: #CB5345;
  border-color: #CB5345;
  color: white;
}

.btn--accent:hover {
  background-color: #A83D32;
  border-color: #A83D32;
  box-shadow: 0 4px 16px rgba(203, 83, 69, 0.4);
}

.btn--brand {
  background-color: #590F1E;
  border-color: #590F1E;
}

.btn--brand:hover {
  background-color: #7A1528;
  border-color: #7A1528;
  box-shadow: 0 4px 16px rgba(89, 15, 30, 0.4);
}

/* ===== FOCUS & ACCESSIBILITY ===== */
:focus-visible {
  outline-color: #CB5345;
}

/* ===== SECTION SUB LINKS ===== */
.section__sub a {
  color: #CB5345;
}

/* ===== LIGHTBOX ===== */
.lightbox__close:hover {
  background-color: rgba(203, 83, 69, 0.2);
}

/* ===== PAY ROW (Square + PayPal lado a lado) ===== */
.pay-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: start;
  margin: 0 auto;
  width: 100%;
  max-width: 720px;
}
@media (min-width: 720px) {
  .pay-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.pay-row .btn-pay--inline,
.pay-row .btn-pay {
  margin: 0;
  max-width: none;
  width: 100%;
  align-self: stretch;
}

/* ===== Botones de pago Square + PayPal (look blanco + logos en colores oficiales) ===== */
.btn-pay,
.btn-pay--square,
.btn-pay--paypal {
  background-color: #FFFFFF;
  border: 2px solid #CB5345;
  color: #1A1A2E;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  min-height: 64px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-pay:hover,
.btn-pay--square:hover,
.btn-pay--paypal:hover {
  background-color: #FFF6F4;
  border-color: #B7493B;
  color: #1A1A2E;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(203, 83, 69, 0.28);
}
.btn-pay--square:hover .btn-pay__brand-logo {
  transform: scale(1.20);
}
.btn-pay--paypal:hover .btn-pay__brand-logo {
  transform: scale(1.15);
}
.btn-pay[aria-disabled="true"],
.btn-pay--square[aria-disabled="true"],
.btn-pay--paypal[aria-disabled="true"] {
  background-color: #F2F2F2;
  border-color: #CFCFCF;
  color: #8A8A8A;
  box-shadow: none;
  cursor: pointer;
}
.btn-pay[aria-disabled="true"]:hover,
.btn-pay--square[aria-disabled="true"]:hover,
.btn-pay--paypal[aria-disabled="true"]:hover {
  background-color: #F2F2F2;
  border-color: #CFCFCF;
  transform: none;
  box-shadow: none;
}
.btn-pay__text {
  font-weight: 600;
  white-space: nowrap;
}
.btn-pay__brand-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  transform-origin: center;
  transition: transform 0.2s ease;
}
.btn-pay--square .btn-pay__brand-logo {
  height: 27px;
}
.btn-pay[aria-disabled="true"] .btn-pay__brand-logo {
  opacity: 0.45;
  filter: grayscale(1);
}

/* Form wrapper: que NO añada layout extra al botón PayPal */
.btn-pay-form {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Cards aceptadas (banda compartida bajo el row de botones) */
.pay-row__accepted {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.85rem auto 0;
  padding: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.pay-row__accepted img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 100%;
  opacity: 0.95;
}

/* ===== Gallery Pro: foto principal + thumbnails verticales (desktop) / horizontales (mobile) ===== */
.gallery-pro {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
  margin: 1.75rem auto 0;
  max-width: 1100px;
}
@media (min-width: 820px) {
  .gallery-pro {
    grid-template-columns: minmax(0, 1fr) 152px;
    grid-template-rows: auto;
    gap: 1rem;
  }
}

.gallery-pro__main {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg, 14px);
  background-color: #0e0e0e;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.gallery-pro__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}
.gallery-pro__main.is-changing .gallery-pro__main-img {
  opacity: 0.4;
}

.gallery-pro__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 2;
}
.gallery-pro__nav:hover {
  background-color: rgba(203, 83, 69, 0.85);
  border-color: #CB5345;
  transform: translateY(-50%) scale(1.05);
}
.gallery-pro__nav:focus-visible {
  outline: 2px solid #CB5345;
  outline-offset: 3px;
}
.gallery-pro__nav--prev { left: 0.85rem; }
.gallery-pro__nav--next { right: 0.85rem; }

.gallery-pro__counter {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

/* Side: container del paginador + thumbnails */
.gallery-pro__side {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}
@media (min-width: 820px) {
  .gallery-pro__side {
    flex-direction: column;
    height: 100%;
  }
}

.gallery-pro__page {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s, opacity 0.2s;
}
.gallery-pro__page:hover:not(:disabled) {
  background-color: rgba(203, 83, 69, 0.6);
  border-color: #CB5345;
}
.gallery-pro__page:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.gallery-pro__page-icon-up,
.gallery-pro__page-icon-down { display: none; }
.gallery-pro__page-icon-left,
.gallery-pro__page-icon-right { display: block; }
@media (min-width: 820px) {
  .gallery-pro__page-icon-up,
  .gallery-pro__page-icon-down { display: block; }
  .gallery-pro__page-icon-left,
  .gallery-pro__page-icon-right { display: none; }
}

/* Thumbs track */
.gallery-pro__thumbs {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  min-width: 0;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px;
}
.gallery-pro__thumbs::-webkit-scrollbar { display: none; }
@media (min-width: 820px) {
  .gallery-pro__thumbs {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    max-height: 460px;
    flex: 1 1 auto;
  }
}

.gallery-pro__thumb {
  flex: 0 0 auto;
  width: 110px;
  height: 78px;
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  background: none;
  transition: border-color 0.2s, opacity 0.2s, transform 0.2s;
  opacity: 0.65;
  position: relative;
}
@media (min-width: 820px) {
  .gallery-pro__thumb {
    width: 100%;
    height: 84px;
  }
}
.gallery-pro__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-pro__thumb:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.gallery-pro__thumb.is-active {
  border-color: #CB5345;
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(203, 83, 69, 0.15);
}
.gallery-pro__thumb:focus-visible {
  outline: 2px solid #CB5345;
  outline-offset: 2px;
}

/* Tag Before/After en foto principal */
.gallery-pro__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gallery-pro__tag--before {
  background-color: rgba(89, 15, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.gallery-pro__tag--after {
  background-color: rgba(203, 83, 69, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Tag Before/After en thumbnail */
.gallery-pro__thumb-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}
.gallery-pro__thumb-tag--before {
  background-color: rgba(89, 15, 30, 0.85);
}
.gallery-pro__thumb-tag--after {
  background-color: rgba(203, 83, 69, 0.9);
}

/* ===== Scroll to top button ===== */
.scroll-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(120, 120, 120, 0.9);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background-color 0.2s;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background-color: #CB5345;
  transform: translateY(-2px);
}
.scroll-top:focus-visible {
  outline: 2px solid #CB5345;
  outline-offset: 3px;
}
@media (max-width: 540px) {
  .scroll-top {
    bottom: 0.9rem;
    right: 0.9rem;
    width: 42px;
    height: 42px;
  }
}

/* ===== BUILDER (Services con summary sticky) ===== */
.builder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: start;
}
@media (min-width: 960px) {
  .builder {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
  }
}
.builder__config { display: grid; gap: 1.25rem; min-width: 0; }
.builder__block {
  background: #FFFFFF;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 14px;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.builder__block-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.builder__block-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #CB5345;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.builder__block-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1A1A2E;
  margin: 0;
}
.builder__block-count {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: #CB5345;
  background: rgba(203, 83, 69, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}
.builder__vehicles { margin: 0 auto; }
.builder__services { display: grid; grid-template-columns: 1fr; gap: 0.85rem; }
@media (min-width: 600px) {
  .builder__services { grid-template-columns: 1fr 1fr; }
}
.builder__addons { margin: 0; }
.builder__services .service-card { margin: 0; }

/* Service cards con foto de fondo (Krystal Clean / Wash & Wax / Interior / Full) */
.service-card--bg {
  color: #fff;
  min-height: 220px;
  background-color: #0F0F1E !important;
  background-image:
    linear-gradient(180deg, rgba(15, 15, 30, 0.5) 0%, rgba(15, 15, 30, 0.85) 65%, rgba(15, 15, 30, 0.94) 100%),
    var(--card-bg) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: background-image 0.3s ease, transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card--bg:hover {
  background-image:
    linear-gradient(180deg, rgba(89, 15, 30, 0.4) 0%, rgba(15, 15, 30, 0.82) 65%, rgba(15, 15, 30, 0.94) 100%),
    var(--card-bg) !important;
}
.service-card--bg.is-selected,
.service-card--bg[aria-pressed="true"] {
  background-image:
    linear-gradient(180deg, rgba(203, 83, 69, 0.32) 0%, rgba(89, 15, 30, 0.82) 60%, rgba(15, 15, 30, 0.94) 100%),
    var(--card-bg) !important;
}
.service-card--bg h3 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.service-card--bg .service-card__desc {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.service-card--bg .service-card__placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Override del look "card on light bg" cuando tenemos imagen — la imagen + overlay reemplaza al fondo dark */
.services.section--light .service-card--bg { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18); }

/* Summary card sticky */
.builder__summary-wrap { min-width: 0; }
@media (min-width: 960px) {
  .builder__summary-wrap { position: sticky; top: 88px; }
}
.summary-card {
  background: linear-gradient(180deg, #1A1A2E 0%, #0F0F1A 100%);
  border: 1px solid rgba(203, 83, 69, 0.25);
  border-radius: 14px;
  padding: 1.4rem 1.5rem 1.5rem;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.summary-card__header {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.85rem;
}
.summary-card__head-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.summary-card__total {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: #CB5345;
  margin: 0.35rem 0 0;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.summary-card[data-state="empty"] .summary-card__total { color: rgba(255, 255, 255, 0.35); }
.summary-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0;
}
.summary-line--service { font-weight: 600; }
.summary-line--service .summary-line__label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CB5345;
  margin-right: 0.45rem;
  vertical-align: middle;
}
.summary-line--addon {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.18rem 0;
}
.summary-line--addon .summary-line__label::before {
  content: "+ ";
  color: rgba(203, 83, 69, 0.7);
}
.summary-line--placeholder {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  text-align: center;
  padding: 0.85rem 0;
  justify-content: center;
}
.summary-line__value {
  color: rgba(255, 255, 255, 0.95);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.summary-line--service .summary-line__value { color: #fff; font-weight: 700; }
.summary-line--addon .summary-line__value { color: rgba(255, 255, 255, 0.7); }

.summary-card__pay {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.summary-card__pay-lead {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.7rem;
  text-align: center;
}
.summary-card .pay-row {
  grid-template-columns: 1fr;
  gap: 0.55rem;
  max-width: none;
}
@media (min-width: 460px) {
  .summary-card .pay-row { grid-template-columns: 1fr 1fr; }
}
.summary-card .btn-pay {
  min-height: 52px;
  font-size: 0.85rem;
  padding: 0.7rem 0.85rem;
}
.summary-card .btn-pay__brand-logo { height: 18px; }
.summary-card .btn-pay--square .btn-pay__brand-logo { height: 22px; }

.summary-card__divider {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.2rem 0 1rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.summary-card__divider::before,
.summary-card__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.summary-card__book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.summary-card__book .btn-book {
  flex: none;
  max-width: none;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
}

.summary-card__perks {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
}
.ida-mini--small {
  padding: 0.32rem 0.7rem 0.32rem 0.5rem !important;
  gap: 0.45rem !important;
}
.ida-mini--small img {
  height: 20px !important;
}
.ida-mini--small span {
  font-size: 0.66rem !important;
  letter-spacing: 0.08em !important;
}

@media (max-width: 959px) {
  .builder__summary-wrap { position: static; }
  .summary-card { max-width: 520px; margin: 0 auto; }
}

/* Service Area: ciudades agrupadas por estado */
.area__list-group {
  margin-bottom: 1rem;
}
.area__list-state {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #CB5345;
  margin: 0 0 0.55rem;
}
.area__list-group .area__list {
  margin-bottom: 0;
}

/* ===== Contact aside payment badges (logos clicables) ===== */
.contact__payment-icons {
  gap: 0.6rem !important;
  flex-wrap: wrap;
}
.payment-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem !important;
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.payment-badge img {
  display: block;
  height: 22px;
  width: auto;
  transition: transform var(--transition);
}
.payment-badge--square img {
  height: 26px;
}
.payment-badge:hover {
  border-color: #CB5345 !important;
  box-shadow: 0 4px 14px rgba(203, 83, 69, 0.25);
  transform: translateY(-1px);
}
.payment-badge:hover img {
  transform: scale(1.08);
}

/* ===== Instagram diferenciado (contact aside) — solo texto, super minimal ===== */
.contact__ig {
  display: inline-block;
}
.contact__ig--primary {
  font-weight: 600;
  color: #fff;
}
.contact__ig--secondary {
  opacity: 0.5;
  font-weight: 400;
  font-size: 0.85em;
}
.contact__ig--secondary:hover {
  opacity: 1;
}

/* ===== Instagram diferenciado (footer) — minimal, sombreado solo en hover ===== */
.footer__social {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.footer__social-link {
  width: auto !important;
  height: auto !important;
  padding: 0.4rem 0.65rem !important;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent !important;
  background-color: transparent !important;
  border-radius: 999px !important;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}
.footer__social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer__social-label {
  font-weight: 500;
  white-space: nowrap;
}
.footer__social-link:hover {
  border-color: rgba(203, 83, 69, 0.4) !important;
  background-color: rgba(203, 83, 69, 0.08) !important;
  color: #CB5345 !important;
}
.footer__social-link--secondary {
  opacity: 0.55;
}
.footer__social-link--secondary:hover {
  opacity: 1;
}
