/* Dedicated package pages — 0001Decor */

.pkg-switch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 2.5rem;
  max-width: 52rem;
}
.pkg-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2F1F22;
  background: #fff;
  border: 1.5px solid rgba(200, 114, 138, 0.28);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.pkg-tab:hover {
  border-color: #C8728A;
  color: #C8728A;
  background: #F7E8EC;
}
.pkg-tab.is-active {
  background: linear-gradient(135deg, #C8728A, #B8925E);
  color: #FAF6F1;
  border-color: transparent;
  box-shadow: 0 8px 20px -8px rgba(200, 114, 138, 0.55);
}
.pkg-tab.is-active:hover {
  color: #FAF6F1;
}

.price-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(200, 114, 138, 0.15);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 30px -12px rgba(47, 31, 34, 0.08);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -16px rgba(47, 31, 34, 0.18);
}
.price-card.featured {
  background: linear-gradient(160deg, #C8728A 0%, #B8925E 100%);
  color: #FAF6F1;
  border: none;
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -18px rgba(200, 114, 138, 0.55);
}
.price-card.featured:hover { transform: translateY(-12px); }
.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #FAF6F1;
  color: #C8728A;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px -4px rgba(47, 31, 34, 0.2);
}

.hub-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(200, 114, 138, 0.14);
  border-radius: 22px;
  padding: 1.75rem 1.5rem 1.6rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -16px rgba(47, 31, 34, 0.18);
  border-color: rgba(200, 114, 138, 0.4);
}
.hub-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: #C8728A;
  line-height: 1.1;
  margin: 0.35rem 0 0.6rem;
}
