:root {
  --cream: #fbf6e8;
  --yellow-soft: #f3e4b3;
  --yellow: #e8c04d;
  --gold: #c99a2e;
  --leaf: #6d7d45;
  --ink: #4a3c1f;
  --ink-soft: #8a7a52;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Gveret Levin', 'Heebo', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Decorative lemon-branch corners, shared by hero + footer */

.corner {
  position: absolute;
  width: 148px;
  height: 119px;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}

.corner-tl {
  top: 0;
  right: 0;
}

.corner-tr {
  top: 0;
  left: 0;
  transform: scaleX(-1);
}

.corner-bl {
  bottom: 0;
  right: 0;
}

.corner-br {
  bottom: 0;
  left: 0;
  transform: scaleX(-1);
}

@media (min-width: 560px) {
  .corner {
    width: 190px;
    height: 153px;
  }
}

.corner-fruit {
  width: 108px;
  height: 108px;
}

@media (min-width: 560px) {
  .corner-fruit {
    width: 138px;
    height: 138px;
  }
}

/* Top decoration */

.top-decor {
  position: relative;
  padding: 92px 24px 12px;
  text-align: center;
}

@media (min-width: 560px) {
  .top-decor {
    padding: 118px 24px 16px;
  }
}

.headline {
  position: relative;
  z-index: 1;
  font-family: 'Gveret Levin', cursive;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--gold);
  margin: 0;
}

@media (min-width: 560px) {
  .headline {
    font-size: 4rem;
  }
}

.headline .amp {
  font-family: 'Dancing Script', cursive;
  color: var(--ink);
  padding: 0 8px;
  font-weight: 700;
}

/* Divider */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 32px;
}

.divider-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--yellow);
}

.divider-heart {
  color: var(--gold);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 1px rgba(201, 154, 46, 0.25));
}

/* Gifts */

.gifts {
  position: relative;
  padding: 32px 24px 16px;
  text-align: center;
}

.gifts-title {
  font-weight: 400;
  font-size: 2.1rem;
  margin: 0 0 10px;
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::before {
  content: '';
  position: absolute;
  inset: 0.12em -0.35em 0.08em -0.35em;
  background: var(--yellow-soft);
  transform: rotate(-1.2deg);
  border-radius: 3px;
  z-index: -1;
}

.gifts-sub {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 560px) {
  .cards {
    flex-direction: row;
  }
}

.card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--yellow-soft);
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: 0 12px 30px rgba(201, 154, 46, 0.14);
}

.shared-gift {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  text-align: center;
}

.shared-label {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.btn-shared {
  max-width: 260px;
  margin: 0 auto;
}

.card-name {
  font-weight: 400;
  font-size: 1.9rem;
  margin: 0 0 18px;
}

.card-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: block;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 14px rgba(169, 126, 34, 0.2);
}

.btn:active {
  transform: scale(0.97);
}

.btn-bit {
  background: linear-gradient(135deg, #f7e29c 0%, var(--yellow) 60%, #e0ac3a 100%);
  color: var(--ink);
  border: 1px solid rgba(201, 154, 46, 0.3);
}

.btn-bit:hover {
  box-shadow: 0 8px 20px rgba(232, 192, 77, 0.55);
  transform: translateY(-1px);
}

.btn-paybox {
  background: linear-gradient(135deg, #dcae44 0%, var(--gold) 55%, #a97e22 100%);
  color: var(--white);
  border: 1px solid rgba(169, 126, 34, 0.35);
}

.btn-paybox:hover {
  box-shadow: 0 8px 20px rgba(201, 154, 46, 0.55);
  transform: translateY(-1px);
}

/* Footer */

.footer {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  text-align: center;
  padding: 40px 24px 150px;
  color: var(--ink-soft);
  font-size: 1rem;
}

@media (min-width: 560px) {
  .footer {
    padding-bottom: 185px;
  }
}

.footer-text {
  position: relative;
  z-index: 1;
  margin: 0;
}
