/* ═══════════════════════════════════════════
   FILOMENA — Pastelería Las Delicias
   Mobile-first · Instrument Serif + Inter
   Paleta: crema, beige cálido, dorado suave
═══════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #faf6ef;
  --cream-dark:   #f2ead8;
  --beige:        #e8dcc8;
  --beige-mid:    #d4c4a8;
  --gold:         #c9a96e;
  --gold-dark:    #a8854a;
  --warm-brown:   #6b4f2e;
  --dark:         #1a1410;
  --dark-mid:     #2d2419;
  --text:         #3d3028;
  --text-light:   #6b5d4f;
  --white:        #ffffff;

  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm: 0 1px 3px rgba(26,20,16,.08);
  --shadow-md: 0 4px 16px rgba(26,20,16,.12);
  --shadow-lg: 0 12px 40px rgba(26,20,16,.16);

  --transition: 200ms cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--dark); }

/* ─── Typography ────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

/* ─── Layout ─────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  border-radius: 100px;
  line-height: 1;
}

.btn--sm  { font-size: .8125rem; padding: .5rem 1.125rem; }
.btn--md  { font-size: .9375rem; padding: .75rem 1.5rem; }
.btn--lg  { font-size: 1rem;     padding: 1rem 2rem; }
.btn--full { width: 100%; }

.btn--cream {
  background: var(--cream);
  color: var(--dark);
}
.btn--cream:hover { background: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--dark {
  background: var(--dark);
  color: var(--cream);
}
.btn--dark:hover { background: var(--dark-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250,246,239,.4);
}
.btn--ghost:hover { border-color: var(--cream); background: rgba(250,246,239,.1); }

.btn--primary {
  background: var(--dark);
  color: var(--cream);
  font-size: 1.0625rem;
  padding: 1.125rem 2rem;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover:not(:disabled) { background: var(--warm-brown); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btn__loading { display: none; }
.btn.loading .btn__text { display: none; }
.btn.loading .btn__loading { display: inline; }

/* ─── Links ──────────────────────────────── */
.link {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link:hover { color: var(--warm-brown); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.25rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26,20,16,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: -.01em;
}

/* ═══════════════════════════════════════════
   HERO
   Mobile  → full-bleed con overlay (imagen de fondo, texto encima)
   Desktop → split 52/48 (texto izq, foto der)
═══════════════════════════════════════════ */
.hero {
  overflow: hidden;
}

/* ────────────────────────────────────────
   MOBILE — full-bleed
──────────────────────────────────────────*/
.hero__split {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}

/* Imagen como fondo absoluto en mobile */
.hero__right {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Overlay oscuro sobre la imagen en mobile */
.hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,20,16,.1)  0%,
    rgba(26,20,16,.35) 45%,
    rgba(26,20,16,.82) 80%,
    rgba(26,20,16,.95) 100%
  );
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

/* Texto sobre la imagen en mobile */
.hero__left {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 3.5rem;
  width: 100%;
}

/* Colores mobile (texto sobre imagen oscura) */
.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(250,246,239,.82);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.badge {
  font-size: .75rem;
  font-weight: 500;
  padding: .375rem .875rem;
  border-radius: 100px;
  letter-spacing: .03em;
}

/* Mobile: badges sobre imagen → estilo ghost claro */
.badge--dark {
  background: rgba(250,246,239,.12);
  border: 1px solid rgba(250,246,239,.22);
  color: rgba(250,246,239,.85);
}

/* ────────────────────────────────────────
   DESKTOP — split layout
──────────────────────────────────────────*/
@media (min-width: 900px) {
  .hero__split {
    position: static;
    display: flex;
    flex-direction: row;
    min-height: 100svh;
    align-items: stretch;
    background: var(--cream);
  }

  /* Texto — columna izquierda, fondo crema */
  .hero__left {
    position: static;
    flex: 0 0 52%;
    padding: 9rem 4rem 4rem 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
  }

  /* Imagen — columna derecha, sin overlay */
  .hero__right {
    position: static;
    flex: 0 0 48%;
    height: auto;
  }

  .hero__img-wrap::after { display: none; }  /* quitar overlay */

  .hero__img { object-position: center 42%; }

  /* Colores desktop (texto sobre fondo crema) */
  .hero__eyebrow { color: var(--gold-dark); }
  .hero__title   { color: var(--dark); }
  .hero__sub     { color: var(--text-light); max-width: 480px; font-size: 1.0625rem; }

  /* Badges desktop → estilo sólido discreto */
  .badge--dark {
    background: var(--cream-dark);
    border: 1px solid var(--beige);
    color: var(--text-light);
  }
}

/* Botones del hero */
.btn--primary-warm {
  background: var(--cream);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.btn--primary-warm:hover { background: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

@media (min-width: 900px) {
  .btn--primary-warm {
    background: var(--dark);
    color: var(--cream);
    box-shadow: var(--shadow-md);
  }
  .btn--primary-warm:hover { background: var(--warm-brown); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
}

.btn--outline-dark {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250,246,239,.4);
}
.btn--outline-dark:hover { border-color: var(--cream); background: rgba(250,246,239,.1); }

@media (min-width: 900px) {
  .btn--outline-dark {
    color: var(--dark);
    border-color: var(--beige-mid);
  }
  .btn--outline-dark:hover { border-color: var(--dark); background: var(--cream-dark); }
}

/* ═══════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════ */
.benefits {
  background: var(--cream);
  padding: 5rem 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); gap: 3rem 2rem; }
}

.benefit__icon {
  width: 3rem;
  height: 3rem;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.benefit__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: .625rem;
  line-height: 1.3;
}

.benefit__text {
  font-size: .9375rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   TASTE / EXPERIENCIA
═══════════════════════════════════════════ */
.taste {
  background: var(--dark);
  padding: 5rem 0;
}

.taste__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .taste__inner {
    padding: 0 2rem;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
}

.taste .section-label { color: var(--gold); }
.taste .section-title { color: var(--cream); }

.taste__body {
  font-size: 1.0625rem;
  color: rgba(250,246,239,.7);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.taste__pairings {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pairing {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(250,246,239,.05);
  border: 1px solid rgba(250,246,239,.08);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.pairing:hover { background: rgba(250,246,239,.08); }

.pairing__dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.pairing__dot--coffee { background: #6f4e37; }
.pairing__dot--tea    { background: #c0392b; }
.pairing__dot--manjar { background: #d4a843; }
.pairing__dot--solo   { background: var(--gold); }

.pairing__name {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .2rem;
}
.pairing__desc {
  font-size: .8125rem;
  color: rgba(250,246,239,.5);
}

/* ═══════════════════════════════════════════
   STORY / HISTORIA
═══════════════════════════════════════════ */
.story {
  background: var(--cream-dark);
  padding: 5rem 0;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .story__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
  }
}

.story__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story__oven-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.story__oven-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.story__oven-glow {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(201,169,110,.35) 0%, transparent 70%);
  pointer-events: none;
}

.story__decade-stack {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.story__decade-stack span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(250,246,239,.25);
  transition: color var(--transition);
}

.story__decade--current {
  color: var(--gold) !important;
  font-size: 1.5rem !important;
}

.story__stat {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: 1.5rem;
  background: var(--gold);
  border-radius: var(--radius-md);
}

.story__stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--dark);
  line-height: 1;
}

.story__stat-text {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark-mid);
  line-height: 1.3;
}

.story__body {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.story__body strong { color: var(--dark); }

.story__address {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  font-size: .9375rem;
  color: var(--text-light);
}

.story__address svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   TRUST / CONFIANZA
═══════════════════════════════════════════ */
.trust {
  background: var(--cream);
  padding: 5rem 0;
}

.trust__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.trust__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .trust__items { grid-template-columns: repeat(4, 1fr); }
}

.trust__item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
}

.trust__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: .5rem;
}

.trust__label {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.4;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  padding: 1.75rem;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 1rem;
}

.testimonial__author {
  font-size: .8125rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   CHECKOUT SECTION
═══════════════════════════════════════════ */
.checkout-section {
  background: var(--cream-dark);
  padding: 5rem 0 6rem;
}

.checkout-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.checkout-section__sub {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.65;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
}

/* Product Panel */
.product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-card__info {
  padding: 1.25rem 1.5rem;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: .375rem;
}

.product-card__desc {
  font-size: .875rem;
  color: var(--text-light);
}

/* Size Selector */
.size-selector {
  margin-bottom: 1.5rem;
}

.size-selector__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .75rem;
}

.size-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.size-option { cursor: pointer; }
.size-option input { position: absolute; opacity: 0; width: 0; height: 0; }

.size-option__card {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1.25rem;
  border: 2px solid var(--beige);
  border-radius: var(--radius-md);
  background: var(--cream);
  transition: all var(--transition);
}

.size-option input:checked ~ .size-option__card {
  border-color: var(--dark);
  background: var(--dark);
}

.size-option input:checked ~ .size-option__card .size-option__weight,
.size-option input:checked ~ .size-option__card .size-option__price { color: var(--cream); }
.size-option input:checked ~ .size-option__card .size-option__desc { color: rgba(250,246,239,.6); }

.size-option:hover .size-option__card { border-color: var(--beige-mid); }
.size-option input:focus-visible ~ .size-option__card { outline: 2px solid var(--gold); outline-offset: 2px; }

.size-option__weight {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--dark);
  line-height: 1;
}

.size-option__desc {
  font-size: .8rem;
  color: var(--text-light);
}

.size-option__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: .375rem;
}

/* Order Summary */
.order-summary {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--beige);
}

.order-summary__title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9375rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--beige);
  color: var(--text);
}

.order-summary__row:last-child { border-bottom: none; }

.order-summary__row--total {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--dark);
  padding-top: .75rem;
  margin-top: .25rem;
}

.order-summary__note {
  font-size: .8125rem;
  color: var(--text-light);
  margin-top: .75rem;
  font-style: italic;
}

/* Form Panel */
.form-panel {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 480px) {
  .form-panel { padding: 2.5rem 2rem; }
}

.checkout-form {}

.form-section {
  margin-bottom: 2rem;
}

.form-section__title {
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--beige);
}

/* Fields */
.field {
  margin-bottom: 1rem;
}

.field__label {
  display: block;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: .4rem;
}

.field__optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: .875rem;
}

.field__input {
  width: 100%;
  padding: .875rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.field__input::placeholder { color: var(--beige-mid); }
.field__input:focus { outline: none; border-color: var(--gold-dark); box-shadow: 0 0 0 3px rgba(201,169,110,.15); }
.field__input.error { border-color: #d94f4f; }

.field__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b5d4f'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field__error {
  display: block;
  font-size: .8125rem;
  color: #d94f4f;
  margin-top: .3rem;
  min-height: 1rem;
}

.field__hint {
  font-size: .8125rem;
  color: var(--text-light);
  margin-top: .375rem;
  line-height: 1.4;
}

/* Delivery window */
.delivery-window {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text-light);
  background: var(--cream-dark);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: .5rem;
}

.delivery-window svg { width: 1.125rem; height: 1.125rem; color: var(--gold-dark); flex-shrink: 0; }

/* Culqi Card Fields */
.culqi-fields {
  margin-bottom: 1rem;
}

.culqi-fields__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

/* Checkout Total */
.checkout-total {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.checkout-total__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-total__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.checkout-total__amount {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--dark);
}

/* Payment */
.payment-section {
  margin-bottom: 1.5rem;
}

.payment-section__label {
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: .75rem;
}

.payment-logos {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.payment-logo {
  font-size: .625rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: .375rem .625rem;
  border-radius: 4px;
  border: 1.5px solid var(--beige);
  color: var(--text-light);
}

.payment-logo--visa  { color: #1a1f71; border-color: #1a1f71; }
.payment-logo--mc    { color: #eb001b; border-color: #eb001b; }
.payment-logo--amex  { color: #007bc1; border-color: #007bc1; }

.payment-security {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.payment-security svg { width: 1rem; height: 1rem; color: #27ae60; flex-shrink: 0; }

/* Form Footer */
.form-footer-note {
  font-size: .8125rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1.25rem;
  line-height: 1.55;
}

/* Checkout Success */
.checkout-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.checkout-success__icon {
  width: 4rem;
  height: 4rem;
  background: #27ae60;
  color: white;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.checkout-success__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.checkout-success__text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.checkout-success__detail {
  font-size: .9375rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  background: var(--cream-dark);
  padding: 1rem;
  border-radius: var(--radius-md);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  background: var(--dark);
  padding: 5rem 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 640px) {
  .contact__inner { grid-template-columns: 1fr 1fr; align-items: start; gap: 4rem; }
}

.contact .section-label { color: var(--gold); }

.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: .75rem;
}

.contact__text {
  font-size: 1.0625rem;
  color: rgba(250,246,239,.7);
  line-height: 1.7;
}

.contact__text .link { color: var(--gold); }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
  color: rgba(250,246,239,.7);
  line-height: 1.5;
}

.contact__detail svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .125rem;
}

.contact__link { color: rgba(250,246,239,.7); }
.contact__link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--dark-mid);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: .125rem;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
}

.footer__brand-by {
  font-size: .75rem;
  color: rgba(250,246,239,.4);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__link {
  font-size: .875rem;
  color: rgba(250,246,239,.55);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--cream); }

.footer__copy {
  font-size: .8125rem;
  color: rgba(250,246,239,.3);
}

/* ═══════════════════════════════════════════
   UTILIDADES
═══════════════════════════════════════════ */
[hidden] { display: none !important; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
