@charset "utf-8";
/* CSS Document */

/* --- Christmas Gift Card Section --- */
.christmas-gift-section {
  background: #f8f8f8;
  text-align: center;
  padding: 60px 20px;
  border-top: 0px solid #1C5E52;
  border-bottom: 4px solid #1C5E52;
}

.gift-banner {
  max-width: 1000px;
  margin: 0 auto 30px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.gift-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.gift-content {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.gift-title {
  font-size: 2rem;
  color: #1C5E52;
  margin-bottom: 10px;
}

.gift-subtitle {
  font-size: 1.3rem;
  color: #b22222;
  margin-bottom: 20px;
  font-weight: 600;
}

.gift-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.gift-btn {
  display: inline-block;
  background: #1C5E52;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.gift-btn:hover {
  background: #26816e;
  color: #fff;
}

.gift-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .gift-title { font-size: 1.6rem; }
  .gift-subtitle { font-size: 1.1rem; }
  .gift-desc { font-size: 0.95rem; }
}
