 .gift-hero {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.gift-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.gift-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1s ease;
}

.gift-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.gift-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary {
  background: #ff4081;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: #e73370;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    /* 🌐 Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f4f6f9;
  color: #222;
}

section {
  padding: 80px 20px;
  text-align: center;
}

/* 🎁 Hero Section */
.gift-hero {
  background: linear-gradient(135deg, #ff4e50, #f9d423);
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.gift-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.gift-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease;
}

.btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  background: #ffffff;
  color: #ff4e50;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #ffd0d3;
  color: #d6001c;
}

/* 🛍️ Categories */
.gift-categories h2 {
  font-size: 2.2rem;
  color: #102542;
  margin-bottom: 50px;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.gift-card {
  background: white;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.gift-card i {
  font-size: 2.5rem;
  color: #ff4e50;
  margin-bottom: 20px;
}

.gift-card h3 {
  font-size: 1.4rem;
  color: #102542;
  margin-bottom: 10px;
}

.gift-card p {
  font-size: 1rem;
  color: #555;
}

/* 🌟 Why Choose Us */
.why-choose-gift {
  background: #ffffff;
}

.why-choose-gift h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #102542;
}

.why-choose-gift ul {
  list-style: none;
  max-width: 800px;
  margin: auto;
  text-align: left;
  padding: 0 20px;
}

.why-choose-gift li {
  font-size: 1.05rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.why-choose-gift li i {
  color: #ff4e50;
  margin-right: 12px;
  font-size: 1.2rem;
}

/* 📩 CTA */
.gift-cta {
  background: linear-gradient(135deg, #f9d423, #ff4e50);
  color: white;
  border-radius: 12px;
}

.gift-cta h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.gift-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-secondary {
  padding: 12px 28px;
  background: #fff;
  color: #ff4e50;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #ffe5e7;
  color: #c1001c;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .gift-hero h1 {
    font-size: 2rem;
  }

  .gift-cta h2 {
    font-size: 1.6rem;
  }

  .gift-card {
    padding: 30px 15px;
  }
}

/* ✨ Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
