/* ==========================================================================
   Gift Cards landing page  (/gift-cards)
   All rules scoped under #gift-card-landing and gc- prefixed so they don't
   collide with the Bootstrap theme (.btn / .badge / .card-title / .container).
   ========================================================================== */

#gift-card-landing,
#gift-card-landing * {
  box-sizing: border-box;
}

#gift-card-landing {
  width: 95%;
  max-width: 1400px;
  margin: 30px auto;
  color: #333;
}

#gift-card-landing .breadcrumb {
  margin-bottom: 18px;
}

/* ===================================
   HERO
=================================== */
.gc-hero {
  background: linear-gradient(90deg, #f8eef1 0%, #edf1f8 100%);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.gc-hero-left {
  width: 48%;
}

.gc-hero-right {
  width: 48%;
  position: relative;
}

.gc-gift-icon {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.gc-gift-icon i {
  font-size: 42px;
  color: #c3174c;
  line-height: 1;
}

.gc-hero h1 {
  font-size: 45px;
  line-height: 1.05;
  color: #083d82;
  margin-bottom: 25px;
  font-weight: 800;
}

.gc-red {
  color: #c3174c;
}

.gc-hero p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
}

/* ===================================
   LARGE HERO CARD (image)
=================================== */
.gc-hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  margin-left: auto;
}

/* ===================================
   SECTION HEADING
=================================== */
.gc-section-title {
  text-align: center;
  margin: 45px 0;
  font-size: 35px;
  color: #083d82;
  font-weight: 700;
}

.gc-section-title span {
  color: #c3174c;
}

/* ===================================
   CARDS
=================================== */
.gc-card-row {
  display: flex;
  gap: 30px;
}

.gc-gift-card {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e8e8e8;
  text-align: center;
  padding: 25px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
  text-decoration: none;
  color: inherit;
  display: block;
}

.gc-gift-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  color: inherit;
  text-decoration: none;
}

.gc-featured {
  border: 2px solid #c3174c;
}

.gc-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #c3174c;
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
}

.gc-card-title {
  color: #083d82;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Small card preview graphic. The card artwork (logo, "GIFT CARD", star and
   the blue/red swoosh) is the gift-card-blank.png background image; only the
   dollar value is overlaid on top in HTML. */
.gc-card-preview {
  width: 260px;
  height: 145px;
  margin: 0 auto 25px;
  background: #fff url("../../../image/catalog/gift-card-blank.png") center / cover no-repeat;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .10);
  position: relative;
  overflow: hidden;
}

.gc-preview-value {
  position: absolute;
  left: 22px;
  bottom: 30px;
  font-size: 25px;
  font-weight: 800;
  color: #c3174c;
}

.gc-price {
  font-size: 28px;
  color: #c3174c;
  font-weight: 800;
  margin-bottom: 20px;
}

.gc-btn {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  text-decoration: none;
  padding: 16px 45px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: bold;
  transition: background .2s ease;
}

.gc-gift-card:hover .gc-btn {
  background: #3d8b40;
}

/* ===================================
   CUSTOM AMOUNT
=================================== */
.gc-custom-box {
  margin-top: 35px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e8e8e8;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gc-custom-left h3 {
  font-size: 36px;
  color: #083d82;
  margin-bottom: 8px;
}

.gc-custom-left p {
  color: #666;
  margin: 0;
}

.gc-custom-right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gc-custom-error {
  flex-basis: 100%;
  margin-top: 2px;
  color: #c3174c;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.gc-custom-error:empty {
  display: none;
}

.gc-custom-right input.gc-input-error {
  border-color: #c3174c;
}

.gc-custom-right input {
  width: 300px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 18px;
}

.gc-custom-right button {
  border: none;
  background: #4caf50;
  color: #fff;
  border-radius: 40px;
  padding: 0 35px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background .2s ease;
}

.gc-custom-right button:hover {
  background: #3d8b40;
}

/* ===================================
   EMPTY STATE
=================================== */
.gc-empty {
  margin-top: 24px;
  text-align: center;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 991px) {
  .gc-hero {
    flex-direction: column;
  }

  .gc-hero-left,
  .gc-hero-right {
    width: 100%;
  }

  .gc-hero h1 {
    font-size: 42px;
  }

  .gc-hero-right {
    margin-top: 40px;
  }

  .gc-hero-img {
    margin: 0 auto;
  }

  .gc-section-title {
    font-size: 34px;
  }

  .gc-card-row {
    flex-direction: column;
  }

  .gc-custom-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .gc-custom-right {
    width: 100%;
    flex-direction: column;
  }

  .gc-custom-right input {
    width: 100%;
  }
}