/* LexiOS Card Design System */
/* Unified styling for Lexi Lucks tier, product, and package cards */

.llp-card {
  position: relative;
  padding: 2.6rem 2.2rem 2.2rem;
  background: rgba(26, 0, 26, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 105, 180, 0.18);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              background 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.llp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 100% at top left, rgba(255, 0, 128, 0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.llp-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 105, 180, 0.45);
  background: rgba(36, 0, 36, 0.85);
  box-shadow: 0 20px 60px rgba(255, 0, 128, 0.15), 0 0 20px rgba(255, 105, 180, 0.2);
}

.llp-card:hover::before {
  opacity: 1;
}

/* Featured Card */
.llp-card.featured {
  border: 2px solid #FF0080;
  background: rgba(255, 0, 128, 0.08);
}

.llp-card.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF0080, #FF69B4, #E8A0B8);
  box-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
}

/* Gold Card */
.llp-card.gold-card {
  border: 2px solid #FFD700;
  background: rgba(255, 215, 0, 0.05);
}

.llp-card.gold-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Popout Label (Top Right) */
.llp-pop {
  position: absolute;
  top: -1px;
  right: 1.4rem;
  font-family: 'Orbitron', monospace;
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, #FF0080, #FF69B4);
  color: #fff;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
}

.llp-pop.gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #110010;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Icon */
.llp-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: block;
  filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.4));
  animation: llp-float 4s ease-in-out infinite;
}

@keyframes llp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Card Titles and Text */
.llp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
  line-height: 1.2;
}

.llp-freq, .llp-tag {
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.llp-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Price Section */
.llp-price {
  font-family: 'Orbitron', monospace;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.llp-price-row {
  display: flex;
  align-items: baseline;
}

.llp-price-old {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  text-decoration: line-through;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.llp-amt {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 30%, #FF69B4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.llp-amt.gold {
  background: linear-gradient(135deg, #FFD700 30%, #FFA500 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.llp-per {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  margin-left: 0.4rem;
  text-transform: uppercase;
}

/* Perks List */
.llp-perks {
  list-style: none;
  flex: 1;
  margin-bottom: 2.2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.llp-perks li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 105, 180, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.llp-perks li:hover {
  color: #fff;
}

.llp-perks li::before {
  content: '◆';
  color: #FF69B4;
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.llp-perks li.hi {
  color: #FFB6C1;
  font-weight: 600;
}

.llp-perks li.hi::before {
  content: '👑';
  font-size: 0.8rem;
  margin-top: 0.15rem;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
}

/* Buttons */
.llp-btn {
  width: 100%;
  padding: 1rem 1.2rem;
  text-align: center;
  cursor: pointer;
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  text-decoration: none;
}

.llp-btn.pink {
  background: linear-gradient(135deg, #FF0080, #FF69B4);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 0, 128, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.llp-btn.pink:hover {
  box-shadow: 0 12px 35px rgba(255, 0, 128, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FF1493, #FF69B4);
}

.llp-btn.gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #110010;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.llp-btn.gold:hover {
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFDF00, #FFB700);
}

.llp-btn.outline {
  background: rgba(255, 255, 255, 0.03);
  color: #FFB6C1;
  border: 1px solid rgba(255, 105, 180, 0.35);
}

.llp-btn.outline:hover {
  border-color: #FF0080;
  color: #fff;
  background: rgba(255, 0, 128, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 128, 0.2);
}

/* Fine Print / Note */
.llp-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-top: 1.2rem;
  text-align: center;
  font-weight: 300;
}
