/* ============================================
   PARADISE PLAYDIUM - PRICING PAGE STYLES
   Extends main.css — import after main.css
   ============================================ */

/* ── PRICING GRID ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── PRICING CARD ── */
.pricing-card {
  background:
    linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.35),
    0 0 0 0 rgba(255,107,0,0);
}

/* Top accent line — hidden until hover */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-fire), var(--orange-sun), var(--gold-accent));
  opacity: 0;
  transition: var(--transition);
}

/* Subtle bottom glow depth */
.pricing-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: rgba(255,107,0,0);
  filter: blur(20px);
  border-radius: 50%;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,107,0,0.35);
  box-shadow:
    0 12px 40px rgba(255,107,0,0.18),
    0 0 0 1px rgba(255,107,0,0.12),
    0 2px 8px rgba(0,0,0,0.4);
}

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

.pricing-card:hover::after {
  background: rgba(255,107,0,0.25);
}

/* ── PRICING ICON ── */
.pricing-icon {
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 0.25rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255,107,0,0.3));
  transition: var(--transition);
}

.pricing-card:hover .pricing-icon {
  filter: drop-shadow(0 0 14px rgba(255,107,0,0.6));
  transform: scale(1.1);
}

/* ── PRICING TITLE ── */
.pricing-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--orange-fire);
  text-shadow:
    0 0 8px rgba(255,107,0,0.6),
    0 0 20px rgba(255,107,0,0.25);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

/* ── PRICING AMOUNT ── */
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--orange-sun);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.pricing-amount span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(238,244,255,0.45);
  letter-spacing: 0;
  display: block;
  margin-top: 0.15rem;
}

/* ── PRICING DETAIL ── */
.pricing-detail {
  font-size: 0.82rem;
  color: rgba(238,244,255,0.55);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 0.75rem;
  width: 100%;
  text-align: center;
}

/* ══════════════════════════════════════
   ARCADE TABLE SECTION
══════════════════════════════════════ */
.arcade-table-section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.arcade-table-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.arcade-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Apply border-radius on table via wrapper */
.arcade-table-inner {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 4px 30px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,107,0,0.06);
}

.arcade-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-sun);
  text-shadow: 0 0 6px rgba(255,107,0,0.4);
  background: rgba(255,107,0,0.08);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,107,0,0.20);
  text-align: left;
}

.arcade-table thead th:last-child {
  text-align: right;
}

.arcade-table thead th:nth-child(2) {
  text-align: center;
}

.arcade-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s ease;
}

.arcade-table tbody tr:last-child {
  border-bottom: none;
}

.arcade-table tbody tr:hover {
  background: rgba(255,255,255,0.04);
}

.arcade-table tbody td {
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  color: rgba(238,244,255,0.85);
  font-weight: 500;
}

.arcade-table tbody td:first-child {
  font-weight: 700;
  color: var(--star-white);
}

.arcade-table tbody td:nth-child(2) {
  text-align: center;
  color: rgba(238,244,255,0.65);
}

.arcade-table tbody td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--star-white);
}

/* Featured / Popular row */
.arcade-table tr.featured-row {
  background: rgba(255,107,0,0.07);
  border-left: 3px solid var(--orange-fire);
  position: relative;
}

.arcade-table tr.featured-row td {
  color: var(--orange-sun);
}

.arcade-table tr.featured-row td:first-child {
  color: var(--orange-sun);
  font-weight: 800;
}

.arcade-table tr.featured-row td:last-child {
  color: var(--orange-sun);
}

/* Popular badge inline */
.popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-sun));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  margin-left: 0.5rem;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(255,107,0,0.4);
}

/* ══════════════════════════════════════
   PARTY PACKAGE SECTION (on pricing page)
══════════════════════════════════════ */
.pricing-package-section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(13,27,110,0.18), transparent);
}

.pricing-package-wrap {
  max-width: 500px;
  margin: 0 auto;
}

/* Add-ons tag strip */
.addon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1.5rem;
}

.addon-tag {
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--orange-sun);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* Starting price inside package card */
.package-starting {
  font-size: 0.85rem;
  color: rgba(238,244,255,0.55);
  margin-bottom: 0.25rem;
}

.package-starting strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--orange-sun);
  font-weight: 900;
  display: block;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255,107,0,0.4);
}

.package-starting span {
  font-size: 0.8rem;
  color: rgba(238,244,255,0.45);
  font-weight: 400;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* Tablet — 2 columns */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large mobile / small tablet */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.5rem 1.25rem;
  }

  .pricing-title {
    font-size: 1rem;
  }

  .pricing-amount {
    font-size: 1.5rem;
  }

  .arcade-table-section,
  .pricing-package-section {
    padding: 3rem 1.25rem;
  }

  .arcade-table thead th,
  .arcade-table tbody td {
    padding: 0.75rem 0.9rem;
    font-size: 0.88rem;
  }
}

/* Mobile — 1 column */
@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }

  .pricing-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .pricing-card-body {
    flex: 1;
  }

  .pricing-detail {
    text-align: left;
  }

  .arcade-table thead th,
  .arcade-table tbody td {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
  }

  .popular-badge {
    display: none;
  }

  /* Show "Popular" as row label instead on very small screens */
  .arcade-table tr.featured-row td:first-child::after {
    content: ' ★';
    color: var(--orange-sun);
  }
}
