/* ── gifts.css — Estilos para presentes, hotéis e salões ──────────────
   Complementa style.css (variáveis e reset já estão lá)
─────────────────────────────────────────────────────────────────────── */

/* ── Site nav ─────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 232, 220, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-darker);
}
.site-nav-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-logo {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  text-decoration: none;
  margin-right: 2rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  text-decoration: none;
  padding: 0 1rem;
  height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--brown); border-bottom-color: var(--gold); }

/* ── Page header ──────────────────────────────────────────────────── */
.gifts-page { min-height: 100vh; }

.gifts-header {
  position: relative;
  text-align: center;
  padding: 3.5rem 1.5rem 2rem;
  background: var(--cream);
}
.country-switch {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0 auto 1rem;
}
.country-flag-btn {
  width: 40px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--cream-darker);
  border-radius: 7px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.country-flag-btn .flag-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.country-flag-btn:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
}
.country-flag-btn.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,151,90,0.2);
}
.gifts-header-ornament {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.gifts-header-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.gifts-header-title em { font-style: normal; color: var(--gold); }
.gifts-header-date {
  font-size: 0.82rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ── Transfer banner ──────────────────────────────────────────────── */
.transfer-banner {
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-darker);
  border-bottom: 1px solid var(--cream-darker);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.transfer-banner > p {
  font-size: 0.8rem;
  color: var(--brown-mid);
  margin-bottom: 1rem;
}
.transfer-cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.transfer-card {
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  min-width: 220px;
  text-align: left;
}
.tc-country { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 0.3rem; }
.tc-name { font-size: 0.82rem; color: var(--brown); margin-bottom: 0.2rem; }
.tc-info { font-size: 0.8rem; color: var(--brown-mid); }

/* ── Controls ─────────────────────────────────────────────────────── */
.gifts-controls {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.search-wrap { flex: 1; min-width: 200px; }
.search-wrap input {
  width: 100%;
  padding: 0.55rem 1rem;
  border: 1px solid var(--cream-darker);
  border-radius: 20px;
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--brown);
  outline: none;
  transition: border-color 0.2s;
}
.search-wrap input:focus { border-color: var(--gold); }
.sort-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: var(--brown-light);
}
.sort-wrap label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sort-wrap select {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--cream-darker);
  border-radius: 8px;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  outline: none;
}
.sort-wrap select:focus { border-color: var(--gold); }
.filter-btns { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--cream-darker);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.category-nav {
  max-width: 1100px;
  margin: 0.4rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.category-btn {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--cream-darker);
  background: #fffaf2;
  color: var(--brown-mid);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
}
.category-btn:hover { border-color: var(--gold); color: var(--gold); }
.category-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

.gifts-stats {
  max-width: 1100px;
  margin: 0.75rem auto 1.5rem;
  padding: 0 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--brown-light);
}

/* ── Gift grid ────────────────────────────────────────────────────── */
#gifts-app {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* ── Gift card ────────────────────────────────────────────────────── */
.gift-card {
  background: #fdfaf6;
  border: 1px solid var(--cream-darker);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.gift-card:hover { box-shadow: 0 4px 20px rgba(184,151,90,0.1); border-color: var(--gold-light); }
.gift-card:focus { outline: none; }
.gift-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gift-card.shared { border-top: 2px solid var(--gold); }

.gift-img-wrap {
  height: 235px;
  overflow: visible;
  background: var(--cream-dark);
  position: relative;
}
.gift-img-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.gift-img-wrap img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.gift-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-light);
}
.gift-info-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 30px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  z-index: 3;
  padding: 0;
}
.gift-info-btn::before {
  content: '🤍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(30,22,15,0.22));
}
.gift-info-icon {
  position: relative;
  z-index: 1;
  font-size: 0.66rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: #6e5327;
  transform: translateY(0.5px);
}
.gift-info-btn:hover,
.gift-info-btn:focus-visible {
  transform: scale(1.04);
}
.gift-info-tooltip {
  position: absolute;
  top: 28px;
  right: 0;
  width: 220px;
  max-width: min(70vw, 240px);
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--gold-light);
  background: #fffdf8;
  color: var(--brown-mid);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  box-shadow: 0 8px 24px rgba(45,34,24,0.2);
  z-index: 7;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
  pointer-events: none;
}
.gift-info-btn:hover .gift-info-tooltip,
.gift-info-btn:focus-visible .gift-info-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gift-img-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 0.85rem 0.2rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: #3f2a17;
  line-height: 1.25;
  background: linear-gradient(to top, #dbc5a8 0%, rgba(219,197,168,0.72) 48%, rgba(219,197,168,0) 100%);
  text-shadow: 0 1px 0 rgba(255,248,236,0.35);
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gift-card-body {
  padding: 0rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  background: #dbc5a8;
  justify-content: flex-end;
}
.gift-badge {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.badge-available { background: #e8f5e9; color: #2e7d32; }
.badge-reserved  { background: #ffebee; color: #c62828; }
.badge-shared    { background: #fff8e6; color: var(--gold); border: 1px solid var(--gold-light); }

.gift-progress {
  margin-top: 0.15rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(123, 94, 59, 0.22);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.gift-progress-track {
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: #d2b795;
  overflow: hidden;
  border: 1px solid #c5a67f;
  position: relative;
}
.gift-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #b8e8c8 0%, #97d8ad 100%);
  transition: width 0.3s ease;
}
.gift-progress-percent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #2f4f3a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  pointer-events: none;
}
.gift-progress-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #5f4327;
  letter-spacing: 0.01em;
}
.gift-progress-text .progress-raised {
  font-size: 0.72rem;
  font-weight: 400;
  color: #7b5b38;
}
.gift-progress-text .progress-target {
  font-size: 0.88rem;
  font-weight: 700;
  color: #5a3f24;
}

.gift-actions { display: flex; gap: 0.5rem; margin-top: auto; padding-top: 0.25rem; }
.gift-btn {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.gift-btn-primary { background: var(--gold); border-color: var(--gold); color: #fff; }
.gift-btn-primary:hover { background: #a07840; border-color: #a07840; }
.gift-btn-secondary { background: transparent; border-color: var(--cream-darker); color: var(--brown-mid); }
.gift-btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.gift-btn.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* ── Hotels / Venues ──────────────────────────────────────────────── */
.hotels-grid-wrap { max-width: 960px; margin: 2rem auto 4rem; padding: 0 1.5rem; }
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hotel-card {
  background: #fdfaf6;
  border: 1px solid var(--cream-darker);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.hotel-card:hover { box-shadow: 0 4px 20px rgba(184,151,90,0.1); border-color: var(--gold-light); }
.hotel-card.featured { border-top: 3px solid var(--gold); }
.hotel-badge {
  display: inline-block;
  background: #fff8e6;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.1rem;
}
.hotel-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; color: var(--brown); line-height: 1.2; }
.hotel-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.05em; }
.hotel-rating { display: flex; align-items: center; gap: 0.4rem; }
.rating-num { background: var(--gold); color: #fff; font-size: 0.7rem; font-weight: 500; padding: 0.15rem 0.45rem; border-radius: 4px; }
.rating-cnt { font-size: 0.72rem; color: var(--brown-light); }
.hotel-addr { font-size: 0.75rem; color: var(--brown-light); line-height: 1.4; }
.hotel-highlight { font-size: 0.78rem; color: var(--brown-mid); font-style: italic; line-height: 1.45; border-left: 2px solid var(--gold-light); padding-left: 0.6rem; }
.hotel-phone { font-size: 0.75rem; color: var(--brown-mid); }
.hotel-actions { display: flex; gap: 0.5rem; margin-top: auto; padding-top: 0.5rem; }

.venue-section { margin-bottom: 2.5rem; }
.venue-section-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown-mid);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cream-darker);
  margin-bottom: 1rem;
}

.tip-box {
  background: #fff8e6;
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: var(--brown-mid);
  line-height: 1.7;
  margin-top: 1rem;
}
.tip-box a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-light); }
.tip-box a:hover { border-color: var(--gold); }

/* ── Trajes (Pinterest) ──────────────────────────────────────────── */
.trajes-wrap {
  max-width: 1180px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
}

.trajes-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.trajes-card {
  background: #fdfaf6;
  border: 1px solid var(--cream-darker);
  border-radius: 12px;
  padding: 1.2rem 1.25rem;
}

.trajes-card h3 {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.55rem;
}

.trajes-card p {
  color: var(--brown-mid);
  font-size: 0.92rem;
  line-height: 1.65;
}

.trajes-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.55rem;
}

.trajes-chip {
  border: 1px solid var(--gold-light);
  color: var(--brown-mid);
  background: #fff8e6;
  border-radius: 999px;
  padding: 0.28rem 0.72rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pinterest-wrap {
  background: #fdfaf6;
  border: 1px solid var(--cream-darker);
  border-radius: 12px;
  padding: 0.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
}

.pinterest-wrap a[data-pin-do] {
  display: block;
  margin: 0;
}

.pinterest-wrap iframe {
  border: 0;
  border-radius: 10px;
}

.trajes-actions {
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-end;
}

/* ── Modal ────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45,34,24,0.55);
  backdrop-filter: blur(3px);
  z-index: 12000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: auto;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fdfaf6;
  border: 1px solid var(--cream-darker);
  border-radius: 12px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  pointer-events: auto;
  touch-action: manipulation;
}

body.modal-open {
  overflow: hidden;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.2rem;
  color: var(--brown-light); cursor: pointer;
}
.modal-close:hover { color: var(--brown); }
.modal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--brown-light);
  cursor: pointer;
  padding: 0 0 0.85rem;
  text-transform: uppercase;
}
.modal-back:hover { color: var(--gold); }
.modal-detail-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}
.modal-detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-detail-img-wrap .gift-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-light);
}
.modal-detail-progress {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.modal-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: var(--brown); margin-bottom: 0.2rem; }
.modal-subtitle { font-size: 0.78rem; color: var(--brown-light); margin-bottom: 1rem; }
.modal-desc { font-size: 0.8rem; color: var(--brown-mid); font-style: italic; line-height: 1.6; background: var(--cream); border-radius: 6px; padding: 0.75rem 1rem; margin-bottom: 1rem; }
.modal-transfer {
  background: #fff8e6;
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
}
.modal-transfer h3 { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.tr-row { display: flex; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.3rem; font-size: 0.76rem; color: var(--brown-mid); }
.tr-copy { cursor: pointer; color: var(--brown); font-weight: 500; font-family: monospace; }
.tr-copy:hover { color: var(--gold); }
.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}
.payment-method-btn {
  border: 1px solid var(--gold-light);
  background: #fff9ef;
  border-radius: 10px;
  padding: 0.8rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}
.payment-method-btn:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}
.payment-method-btn.active {
  background: #f3e7d4;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,151,90,0.15);
}
.payment-method-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--brown);
}
.payment-method-note {
  font-size: 0.7rem;
  color: var(--brown-light);
}
.payment-panel-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.payment-panel-empty,
.payment-note {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--brown-mid);
}
.payment-qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.payment-qr-image {
  width: 190px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--gold-light);
  background: #fff;
  padding: 0.45rem;
}
.payment-pix-code {
  font-size: 0.73rem;
  line-height: 1.5;
  color: var(--brown);
  background: #fffdf8;
  border: 1px dashed var(--gold-light);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  word-break: break-all;
}
.form-row { margin-bottom: 0.85rem; }
.form-lbl { display: block; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 0.3rem; }
.form-inp {
  width: 100%; padding: 0.55rem 0.85rem;
  border: 1px solid var(--cream-darker);
  border-radius: 4px; background: var(--cream);
  font-family: var(--font-sans); font-size: 0.85rem; color: var(--brown);
  outline: none; transition: border-color 0.2s;
}
.form-inp:focus { border-color: var(--gold); }
.form-hint { font-size: 0.68rem; color: var(--brown-light); margin-top: 0.25rem; display: block; }

/* ── Mobile ───────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .country-switch {
    position: static;
    justify-content: center;
    margin-bottom: 0.9rem;
  }
  .gift-img-wrap { height: 215px; }
  .sort-wrap {
    width: 100%;
    justify-content: space-between;
  }
  .sort-wrap select { flex: 1; }
  .gifts-grid { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .trajes-wrap { padding: 0 1rem; }
  .trajes-intro-grid { grid-template-columns: 1fr; }
  .trajes-card { padding: 1rem; }
  .trajes-card h3 { font-size: 1.15rem; }
  .trajes-card p { font-size: 0.85rem; }
  .trajes-chip { font-size: 0.65rem; }
  .pinterest-wrap { padding: 0.6rem; }
  .trajes-actions { justify-content: stretch; }
  .trajes-actions .gift-btn { width: 100%; }
  .transfer-cards { flex-direction: column; }
  .nav-links a { font-size: 0.65rem; padding: 0 0.65rem; letter-spacing: 0.08em; }
}
