.gift-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* Hero */
.gift-hero {
  text-align: center;
  padding: 80px 20px 60px;
}
.gift-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: #9ca3af;
  margin-bottom: 16px;
}
.gift-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #111827;
  margin-bottom: 20px;
}
.gift-hero-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Occasions */
.gift-occasions {
  margin-bottom: 80px;
}
.gift-occasions-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #111827;
  margin-bottom: 40px;
}
.gift-occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.gift-occasion-card {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s ease;
  color: inherit;
}
.gift-occasion-card:hover {
  border-color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: inherit;
  text-decoration: none;
}
.gift-occasion-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.gift-occasion-name {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.gift-occasion-desc {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Size Guide */
.gift-size-guide {
  background: #f9fafb;
  border-radius: 16px;
  padding: 60px 40px;
  margin-bottom: 80px;
  text-align: center;
}
.gift-size-guide-title {
  font-size: 1.6rem;
  font-weight: 300;
  color: #111827;
  margin-bottom: 12px;
}
.gift-size-guide-subtitle {
  color: #6b7280;
  margin-bottom: 40px;
}
.size-guide-questions {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}
.size-q {
  margin-bottom: 20px;
}
.size-q label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}
.size-q select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  background: white;
  color: #111827;
}
.size-guide-btn {
  width: 100%;
  padding: 14px;
  background: #111827;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.size-guide-btn:hover {
  background: #374151;
}
.size-guide-result {
  margin-top: 20px;
  padding: 16px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  text-align: center;
  color: #111827;
  line-height: 1.6;
}

/* Promise */
.gift-promise {
  margin-bottom: 40px;
}
.gift-promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.gift-promise-item {
  padding: 24px;
}
.gift-promise-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.gift-promise-label {
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}
.gift-promise-desc {
  font-size: 0.875rem;
  color: #6b7280;
}
