.subscription-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1000px;
  align-items: stretch; /* 🔑 Make all children same height */
}

.subscription-list.three-options {
  max-width: 1200px; /* Wider when 3 plans */
}

.subscription-plan {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column; /* 🔑 Enable header/body stacking */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: visible;
  transition: transform 0.3s ease;
  position: relative;
}

.subscription-plan:hover {
  transform: translateY(-5px);
}

/* Optional: match heights inside the plan */
.plan-header {
  background-color: #F5E6E4;
  padding: 1.5rem 1rem;
  text-align: center;
  overflow: visible; /* in case it's clipping inside */
}

.plan-header h4 {
  color: white;
  margin: 0;
  font-size: 1.8rem;
}

/* Allow .plan-body to grow and fill remaining space */
.plan-body {
  background-color: #fffdfc;
  text-align: center;
  padding: 2rem 1.5rem;
  flex-grow: 1; /* 🔑 Make this stretch to fill vertical space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Custom bullet list */
.plan-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.plan-body ul li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.8rem;
  color: #584e45;
  font-size: 0.95rem;
  line-height: 1.4;
}

.plan-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #584e45;
  font-weight: bold;
}

/* Optional styling for last item if frequency increase note is added */
.plan-body ul li.note {
  font-style: italic;
  color: #7a6a58;
}

/* Subscribe button */
.select-plan {
  background-color: #E7C0BC;
  color: #fff !important; /* Ensure link color is white */
  padding: 0.5rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  border: 1px solid #E7C0BC;
  font-size: 1.2rem !important;
}

.select-plan:hover {
  background-color: #F5E6E4;
  color: #E7C0BC !important; /* Ensure link color is white */;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

.plan-footer {
  margin-top: auto; /* ⬅️ pushes price + button to bottom */
  text-align: center;
}

.fancy-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #584e45;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 1;
}

.fancy-price .per-box-label {
  display: block;
  font-size: 0.85rem;
  color: #7a6a58;
  font-weight: normal;
  margin-top: 0.2rem;
}

/* Popular ribbon */
.popular-ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #E7C0BC;
  color: white;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
  transform: rotate(10deg);
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Responsive stacking on smaller screens */
@media (max-width: 768px) {
  .subscription-plan {
    flex: 1 1 100%;
  }
}  

.lbn-wedding-date-form {
  background-color: #F5E6E4;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  margin: 2rem auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

.lbn-wedding-date-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #584e45;
}

.optional-label {
  font-weight: normal;
  font-size: 0.9rem;
  color: #7a6a58;
}

.lbn-wedding-date-form input[type="date"] {
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
  background-color: #fff;
  color: #584e45;
}

.lbn-wedding-date-form input[type="date"]::placeholder {
  color: #aaa;
}

.lbn-choose-plan-btn {
  background-color: #E7C0BC !important;
  color: white !important;
  border: 1px solid #E7C0BC !important;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-size: 1.2rem !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.lbn-choose-plan-btn:hover {
  background-color: #F5E6E4 !important;
  color: #E7C0BC !important;
}
.lbn-input-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lbn-wedding-date-form input[type="text"] {
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  max-width: 250px;
  background-color: #fff;
  color: #584e45;
  box-sizing: border-box;
}

.lbn-choose-plan-btn {
  background-color: #dcc5ab;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}




.loveandbeyond-timeline {
    padding: 1em;
    margin: 2em 0;
}
.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 2px solid #ccc;
}
.timeline-item {
    margin-bottom: 1.5em;
    padding-left: 1em;
    position: relative;
}
.timeline-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #FF69B4;
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: 5px;
}
.timeline-item.final-box::before {
    background-color: #FF69B4;
}
.timeline-date {
    font-weight: bold;
    color: #333;
}
.timeline-note {
    color: #666;
    font-size: 0.9em;
}

.lbn-checkout-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
}

.lbn-checkout-main {
  flex: 1 1 60%;
  min-width: 300px;
}
.lbn-checkout-right-wrapper {
  flex: 1 1 35%;
  min-width: 280px;
}
.lbn-checkout-coupon {
  min-width: 280px;
  background: #FEFAF9;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.lbn-checkout-summary {
  min-width: 280px;
  background: #FEFAF9;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.lbn-accordion-section {
  margin-bottom: 2rem;
}