/* Gift cards page */

body.gift-cards-page {
  background: #fff;
}

.star-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.star-row span {
  display: inline-block;
  line-height: 1;
}

.btn-navy-cta {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 10px 22px rgba(10, 30, 70, 0.16);
}

.btn-navy-cta:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
}

/* Hero */
.gift-cards-hero {
  position: relative;
  padding: clamp(64px, 8vw, 92px) 0 clamp(56px, 7vw, 72px);
  overflow: hidden;
  background-color: var(--navy);
  background-image: url("../images/blue-bellino-texture.jpg");
  background-repeat: repeat;
  background-position: 0 0;
  background-size: min(420px, 92vw);
}

.gift-cards-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 70, 0.42) 0%,
    rgba(10, 30, 70, 0.62) 100%
  );
}

.gift-cards-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.gift-cards-hero-stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 16px;
}

.gift-cards-hero-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.gift-cards-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}

.gift-cards-hero-lead {
  margin: 0 auto;
  max-width: 58ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
}

.gift-cards-hero .hero-wave {
  overflow: hidden;
}

.gift-cards-hero .hero-wave-shape {
  fill: #f7f9fc;
  stroke: none;
}

.gift-cards-hero .hero-wave-curve {
  fill: none;
  stroke: rgba(217, 164, 32, 0.85);
  stroke-width: 4px;
  stroke-linecap: butt;
  vector-effect: non-scaling-stroke;
}

/* Alert */
.gift-cards-alert {
  padding: 56px 0 48px;
  background: #fff;
  border-bottom: none;
}

.gift-cards-alert-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 0;
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3vw, 28px) clamp(22px, 3vw, 32px);
  border: 1px solid rgba(225, 31, 45, 0.22);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fffaf9 100%);
  box-shadow: 0 16px 36px rgba(10, 30, 70, 0.08);
}

.gift-cards-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(225, 31, 45, 0.08);
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.gift-cards-alert-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--navy);
}

.gift-cards-alert-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
  color: var(--text-soft);
}

.gift-cards-alert-copy strong {
  color: var(--navy);
  font-weight: 800;
}

/* Main map section */
.gift-cards-main {
  padding: 56px 0 72px;
  background: #fff;
}

.gift-cards-intro {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px;
}

.gift-cards-intro-stars {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.gift-cards-intro h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.gift-cards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 28px;
  align-items: start;
}

.gift-cards-map-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--red);
}

.gift-cards-map-block h2 svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.gift-cards-map-frame {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f9fc;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
}

.gift-cards-map-host {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
}

.gift-cards-map-host svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  pointer-events: auto;
}

.gift-cards-map-hint {
  margin: 16px 0 0;
  padding: 14px 18px;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
  color: var(--navy);
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.gift-cards-sidebar-head h2 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: var(--navy);
}

.gift-cards-sidebar-head p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-soft);
}

.gift-cards-state-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.gift-cards-state-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.gift-cards-state-option:hover {
  border-color: rgba(10, 30, 70, 0.18);
  box-shadow: 0 8px 20px rgba(10, 30, 70, 0.06);
}

.gift-cards-state-option.is-active {
  border-color: rgba(36, 79, 176, 0.35);
  background: #f7f9fc;
  box-shadow: inset 0 0 0 1px rgba(36, 79, 176, 0.12);
}

.gift-cards-state-option img {
  width: 44px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.gift-cards-state-option span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.gift-cards-panel {
  padding: 22px 22px 24px;
  border: 1px solid rgba(10, 30, 70, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  box-shadow: 0 12px 28px rgba(10, 30, 70, 0.06);
}

.gift-cards-panel-placeholder[hidden] {
  display: none;
}

.gift-cards-panel[hidden] {
  display: none;
}

.gift-cards-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.gift-cards-panel-flag {
  width: 64px;
  height: 40px;
  object-fit: contain;
}

.gift-cards-panel-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.gift-cards-panel-note {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-soft);
}

.gift-cards-panel-warning {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(225, 31, 45, 0.16);
  background: rgba(225, 31, 45, 0.05);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--navy);
}

.gift-cards-panel-purchase {
  width: 100%;
  justify-content: center;
}

.gift-cards-panel-placeholder {
  padding: 28px 22px;
  border: 1px dashed rgba(10, 30, 70, 0.16);
  border-radius: 14px;
  background: #f7f9fc;
  text-align: center;
}

.gift-cards-panel-placeholder p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  color: var(--text-soft);
}

/* Steps */
.gift-cards-steps {
  padding: clamp(32px, 5vh, 56px) 0 72px;
  background: #f7f9fc;
  border-top: none;
  border-bottom: 1px solid var(--line);
}

.gift-cards-steps-head {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.gift-cards-steps-head .section-kicker {
  display: block;
  margin: 0 0 12px;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--gold);
  letter-spacing: 0.14em;
}

.gift-cards-steps-head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 900;
  color: var(--navy);
}

.gift-cards-steps-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text-soft);
}

/* Process chain — 452 Digital layout, Bellino index-page palette */
.gift-cards-steps .process-hchain--cards,
.gift-cards-steps .process-hchain__list.process-hchain__list--cards {
  margin-top: clamp(1.35rem, 2.6vw, 2.25rem);
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  --process-hchain-chain-top: calc(clamp(1.35rem, 2vw, 1.65rem) + 10px + 13px + 14px + 32px);
}

.gift-cards-steps .process-hchain--cards .process-hchain__list,
.gift-cards-steps .process-hchain__list.process-hchain__list--cards {
  --process-hchain-gap: clamp(0.65rem, 1.2vw, 1rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--process-hchain-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

.gift-cards-steps .process-hchain__list.process-hchain__list--cards::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--process-hchain-chain-top);
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(217, 164, 32, 0.15) 0%,
    var(--gold) 50%,
    rgba(217, 164, 32, 0.15) 100%
  );
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.gift-cards-steps .process-hchain__list--cards > .process-hchain__item {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  padding: clamp(1.35rem, 2vw, 1.65rem) clamp(1rem, 1.4vw, 1.25rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(10, 30, 70, 0.06);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.gift-cards-steps .process-hchain__list--cards > .process-hchain__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(217, 164, 32, 0.15) 0%,
    var(--gold) 50%,
    rgba(217, 164, 32, 0.15) 100%
  );
  pointer-events: none;
}

.gift-cards-steps .process-hchain__list--cards > .process-hchain__item:hover {
  border-color: rgba(217, 164, 32, 0.28);
  box-shadow: 0 14px 28px rgba(10, 30, 70, 0.1);
  transform: translateY(-2px);
}

.gift-cards-steps .process-hchain__list--cards .process-hchain__body {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gift-cards-steps .process-hchain__list--cards .process-hchain__marker {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.gift-cards-steps .process-hchain__list--cards .process-hchain__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 0 16px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 10px 22px rgba(10, 30, 70, 0.14);
}

.gift-cards-steps .process-hchain__list--cards .process-hchain__icon--navy {
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy) 100%);
}

.gift-cards-steps .process-hchain__list--cards .process-hchain__icon--red {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 10px 22px rgba(225, 31, 45, 0.22);
}

.gift-cards-steps .process-hchain__list--cards .process-hchain__icon--pin {
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  color: var(--red);
  border: 1px solid rgba(225, 31, 45, 0.14);
  box-shadow: 0 10px 22px rgba(10, 30, 70, 0.08);
}

.gift-cards-steps .process-hchain__list--cards .process-hchain__icon svg {
  display: block;
  width: 30px;
  height: 30px;
}

.gift-cards-steps .process-hchain__list--cards .process-hchain__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.gift-cards-steps .process-hchain__list--cards .process-hchain__tag {
  margin: 0 auto;
  max-width: 30ch;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-soft);
}

/* Scroll-reveal animation */
.gift-cards-steps .process-hchain__list--cards[data-process-animate]:not(.is-revealed)::before {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}

.gift-cards-steps .process-hchain__list--cards[data-process-animate]::before {
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.gift-cards-steps .process-hchain__list--cards[data-process-animate].is-revealed::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.gift-cards-steps .process-hchain__list--cards[data-process-animate]:not(.is-revealed) > .process-hchain__item {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
}

.gift-cards-steps .process-hchain__list--cards[data-process-animate] > .process-hchain__item {
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.gift-cards-steps .process-hchain__list--cards.is-revealed > .process-hchain__item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.gift-cards-steps .process-hchain__list--cards.is-revealed > .process-hchain__item:nth-child(1) {
  transition-delay: 0ms;
}

.gift-cards-steps .process-hchain__list--cards.is-revealed > .process-hchain__item:nth-child(2) {
  transition-delay: 90ms;
}

.gift-cards-steps .process-hchain__list--cards.is-revealed > .process-hchain__item:nth-child(3) {
  transition-delay: 180ms;
}

.gift-cards-steps .process-hchain__list--cards.is-revealed > .process-hchain__item:hover {
  transform: translate3d(0, -2px, 0) scale(1);
  border-color: rgba(217, 164, 32, 0.28);
  box-shadow: 0 14px 28px rgba(10, 30, 70, 0.1);
}

.gift-cards-steps .process-hchain__list--cards.is-revealed > .process-hchain__item:focus-within {
  outline: 2px solid rgba(217, 164, 32, 0.4);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .gift-cards-steps .process-hchain__list--cards[data-process-animate]:not(.is-revealed)::before {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }

  .gift-cards-steps .process-hchain__list--cards[data-process-animate]:not(.is-revealed) > .process-hchain__item {
    opacity: 1;
    transform: none;
  }

  .gift-cards-steps .process-hchain__list--cards[data-process-animate]::before,
  .gift-cards-steps .process-hchain__list--cards[data-process-animate] > .process-hchain__item,
  .gift-cards-steps .process-hchain__list--cards.is-revealed > .process-hchain__item:nth-child(n) {
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    transition-delay: 0ms !important;
  }

  .gift-cards-steps .process-hchain__list--cards.is-revealed > .process-hchain__item:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 1100px) {
  .gift-cards-steps .process-hchain__list.process-hchain__list--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gift-cards-steps .process-hchain__list.process-hchain__list--cards::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .gift-cards-steps .process-hchain--cards,
  .gift-cards-steps .process-hchain__list.process-hchain__list--cards {
    overflow-x: clip;
  }

  .gift-cards-steps .process-hchain__list.process-hchain__list--cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
  }

  .gift-cards-steps .process-hchain__list.process-hchain__list--cards::before {
    display: block;
    left: 40px;
    right: auto;
    top: 22px;
    bottom: 22px;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top center;
  }

  .gift-cards-steps .process-hchain__list--cards[data-process-animate]:not(.is-revealed)::before {
    transform: scaleY(0);
  }

  .gift-cards-steps .process-hchain__list--cards[data-process-animate].is-revealed::before {
    transform: scaleY(1);
  }

  .gift-cards-steps .process-hchain__list--cards > .process-hchain__item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto;
    column-gap: 14px;
    row-gap: 0;
    align-items: start;
    text-align: left;
    padding: 14px 14px 14px 12px;
    min-width: 0;
  }

  .gift-cards-steps .process-hchain__list--cards .process-hchain__marker {
    display: none;
  }

  .gift-cards-steps .process-hchain__list--cards .process-hchain__icon {
    grid-column: 1;
    grid-row: 1;
    width: 56px;
    height: 56px;
    margin: 0;
    border-radius: 16px;
    align-self: start;
    justify-self: center;
  }

  .gift-cards-steps .process-hchain__list--cards .process-hchain__icon svg {
    width: 26px;
    height: 26px;
  }

  .gift-cards-steps .process-hchain__list--cards .process-hchain__body {
    grid-column: 2;
    grid-row: 1;
    align-items: flex-start;
    text-align: left;
  }

  .gift-cards-steps .process-hchain__list--cards .process-hchain__tag {
    max-width: none;
  }

  .gift-cards-steps .process-hchain__list--cards .process-hchain__title {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .gift-cards-steps .process-hchain__list--cards .process-hchain__tag {
    font-size: 13px;
    line-height: 1.62;
  }

  .gift-cards-steps .process-hchain__list--cards.is-revealed > .process-hchain__item:hover {
    transform: translate3d(0, -2px, 0) scale(1);
  }
}

/* Rules */
.gift-cards-rules {
  padding: 72px 0 80px;
  background: #fff;
}

.gift-cards-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gift-cards-rule {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.gift-cards-rule h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.gift-cards-rule p {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
  font-weight: 500;
  color: var(--text-soft);
}

/* FAQ */
.gift-cards-faq {
  padding: 0;
  background: #fff;
  border-top: none;
}

.gift-cards-faq__bleed {
  width: 100%;
  background: #fff;
}

.gift-cards-faq__inner {
  padding: clamp(64px, 8vw, 96px) 0 clamp(72px, 8vw, 104px);
}

.gift-cards-faq__content {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  max-width: none;
  margin: 0;
}

.gift-cards-faq__header {
  margin: 0;
  text-align: left;
}

.gift-cards-faq__header h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.03em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
}

.gift-cards-faq__header-lead {
  margin: clamp(18px, 2.4vw, 24px) 0 0;
  max-width: 22ch;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-soft);
}

.gift-cards-faq__header-sub {
  margin: 6px 0 0;
  max-width: 22ch;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--text-soft);
}

.gift-cards-faq__cta {
  margin-top: clamp(22px, 2.8vw, 30px);
  min-height: 52px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(225, 31, 45, 0.22);
}

.gift-cards-faq__list {
  width: 100%;
  min-width: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.gift-cards-faq__item {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}

.gift-cards-faq__item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 0;
  padding: clamp(16px, 2vw, 20px) 0;
  cursor: pointer;
}

.gift-cards-faq__item summary::-webkit-details-marker {
  display: none;
}

.gift-cards-faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 0.15em;
}

.gift-cards-faq__toggle::before,
.gift-cards-faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gift-cards-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gift-cards-faq__item[open] .gift-cards-faq__toggle::after {
  opacity: 0;
}

.gift-cards-faq__question {
  flex: 1;
  min-width: 0;
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: left;
  color: var(--navy);
}

.gift-cards-faq__item summary:focus {
  outline: none;
}

.gift-cards-faq__item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

.gift-cards-faq__answer {
  padding: 0 0 clamp(18px, 2.5vw, 22px) 28px;
  border-top: none;
}

.gift-cards-faq__answer p {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.7;
  font-weight: 500;
  text-align: left;
  color: var(--text-soft);
}

.gift-cards-faq__answer a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.gift-cards-faq__answer a:hover {
  text-decoration: underline;
}

/* Bottom CTA */
.gift-cards-bottom-cta {
  padding: 0 0 clamp(48px, 6vw, 72px);
  background: #fff;
}

.gift-cards-bottom-cta__inner {
  position: relative;
  margin: 48px auto 0;
  max-width: 980px;
  width: 100%;
  padding: 40px clamp(24px, 4vw, 36px) 34px;
  border-radius: 12px;
  border: 1px solid rgba(217, 164, 32, 0.62);
  background:
    radial-gradient(ellipse 110% 70% at 50% -18%, rgba(217, 164, 32, 0.1) 0%, transparent 52%),
    linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  box-shadow:
    0 4px 0 rgba(10, 30, 70, 0.18),
    0 18px 44px rgba(10, 30, 70, 0.14);
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  overflow: hidden;
}

.gift-cards-bottom-cta__title {
  margin: 0 auto 10px;
  max-width: 22ch;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.96);
}

.gift-cards-bottom-cta__lead {
  margin: 0 auto 18px;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.gift-cards-bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.gift-cards-bottom-cta__actions .btn-primary {
  min-height: 52px;
  padding: 0 28px;
  font-weight: 900;
  box-shadow:
    0 14px 40px rgba(225, 31, 45, 0.32),
    0 8px 24px rgba(10, 30, 70, 0.22);
}

.gift-cards-bottom-cta__actions .btn-primary:hover {
  box-shadow:
    0 18px 50px rgba(225, 31, 45, 0.38),
    0 10px 28px rgba(10, 30, 70, 0.26);
}

.gift-cards-bottom-cta__actions .btn-outline-light {
  min-height: 52px;
  padding: 0 28px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .gift-cards-grid {
    grid-template-columns: 1fr;
  }

  .gift-cards-map-frame {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .gift-cards-faq__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gift-cards-faq__header-lead,
  .gift-cards-faq__header-sub {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .gift-cards-alert-card {
    grid-template-columns: 1fr;
  }

  .gift-cards-state-list,
  .gift-cards-rules-grid {
    grid-template-columns: 1fr;
  }

  .gift-cards-bottom-cta__inner {
    padding: 32px 22px 28px;
  }

  .gift-cards-bottom-cta__title {
    max-width: none;
  }

  .gift-cards-bottom-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .gift-cards-bottom-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
