.gifts-section {
  background: linear-gradient(160deg, #f5c518 0%, #e8901a 40%, #d97a2b 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

/* subtle radial glow */
.gifts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(255,255,255,0.15), transparent 65%);
  pointer-events: none;
}

.gifts-section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width-form);
}

/* Section title on saffron background */
.gifts-section .section-title {
  color: #3B1A00;
}

.gifts-section .section-title-telugu {
  color: rgba(59, 26, 0, 0.7);
}

.gifts__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 340px;
  opacity: 0.06;
  pointer-events: none;
}

.gifts__intro {
  text-align: center;
  font-size: var(--text-base);
  color: rgba(59, 26, 0, 0.8);
  max-width: 540px;
  margin: var(--space-xs) auto 2rem;
  line-height: 1.75;
}

.gifts__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Card-style gift options */
.gifts__pill {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.22);
  color: #3B1A00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: none;
  min-height: 62px;
  min-width: 160px;
  padding: 1rem 1.75rem;
  border-radius: 20px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  transition: transform var(--motion-fast) var(--ease-soft), box-shadow var(--motion-fast) var(--ease-soft), background var(--motion-fast) var(--ease-soft);
}

button.gifts__pill {
  cursor: pointer;
}

.gifts__pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(1px);
  font-weight: 600;
  font-family: var(--font-heading);
}

.gifts__pill:hover,
.gifts__pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.gifts__note {
  text-align: center;
  font-size: 0.92rem;
  color: rgba(59, 26, 0, 0.82);
  margin-top: 1.2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

@media (max-width: 540px) {
  .gifts-section {
    padding: 4.25rem 0;
  }

  .gifts__actions {
    gap: 0.75rem;
  }

  .gifts__pill {
    width: 100%;
    min-height: 56px;
    border-radius: 16px;
  }
}
