/* 
  Plato — Premium Prep Meal Waitlist Site Styling
  Organic-luxe color system and modern responsive design.
*/

:root {
  --palm: #1F3A2E;
  --palm-light: #2D5142;
  --sand: #F6F1E7;
  --sand-dark: #ECE3D2;
  --coral: #E8714A;
  --coral-dark: #CC5A36;
  --charcoal: #232323;
  --sage: #7BA88B;
  --sage-light: #A4C6B1;
  --line: rgba(31, 58, 46, 0.14);
  --radius: 18px;
  --shadow-sm: 0 2px 8px rgba(31, 58, 46, 0.05);
  --shadow-md: 0 8px 24px rgba(31, 58, 46, 0.08);
  --shadow-lg: 0 16px 40px rgba(31, 58, 46, 0.12);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--sand);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--palm);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 22px;
}

@media(min-width: 680px) {
  .wrap {
    max-width: 820px;
  }
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  max-width: 820px;
  margin: 0 auto;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--palm);
  letter-spacing: -0.03em;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  color: var(--palm);
  transition: var(--transition);
  user-select: none;
}

.lang-toggle:hover {
  background: var(--sand-dark);
  border-color: var(--palm);
}

.lang-toggle span {
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.lang-toggle span.active {
  opacity: 1;
  font-weight: 700;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 14px rgba(232, 113, 74, 0.2);
  transition: var(--transition);
}

.btn:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 113, 74, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn-header {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-outline {
  background: transparent;
  color: var(--palm);
  border: 1.5px solid var(--palm);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--palm);
  color: #fff;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  padding: 14px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--palm);
  background: var(--sand-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 113, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(232, 113, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(232, 113, 74, 0); }
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 20px;
}

@media(min-width: 680px) {
  .hero h1 {
    font-size: 54px;
  }
}

.hero p.sub {
  font-size: 17px;
  color: #4f4f4f;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
}

.micro {
  font-size: 12.5px;
  color: #6c6c6c;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-img {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid rgba(31, 58, 46, 0.1);
  transition: var(--transition);
}

.hero-img:hover {
  transform: scale(1.01);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- SECTION GENERIC ---------- */
section {
  padding: 64px 0;
}

.section-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.18;
}

.section-sub {
  color: #555;
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 520px;
}

/* ---------- PROBLEM ---------- */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.problem-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--palm-light);
}

.problem-item .num {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--coral);
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.problem-item p {
  font-size: 15px;
  color: #3d3d3d;
}

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--sage);
  font-weight: 600;
  width: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.step p {
  font-size: 14.5px;
  color: #5a5a5a;
}

/* ---------- MENU TYPES ---------- */
.menu-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ticket {
  position: relative;
  background: var(--palm);
  color: var(--sand);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.ticket:hover {
  transform: scale(1.01) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--sand);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.ticket::before {
  left: -12px;
}

.ticket::after {
  right: -12px;
}

.ticket .perf {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 76%;
  border-left: 1.5px dashed rgba(246, 241, 231, 0.3);
}

@media(max-width: 480px) {
  .ticket .perf {
    display: none;
  }
}

.ticket-stamp {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--coral);
  color: var(--coral);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 16px;
  transform: rotate(-1.5deg);
  display: inline-flex;
}

.ticket h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.ticket p.desc {
  font-size: 14px;
  color: rgba(246, 241, 231, 0.8);
  margin-bottom: 18px;
  max-width: 72%;
}

@media(max-width: 480px) {
  .ticket p.desc {
    max-width: 100%;
  }
}

.ticket .macros {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ticket .macro {
  font-size: 12px;
  color: rgba(246, 241, 231, 0.65);
}

.ticket .macro b {
  color: #fff;
  font-size: 14px;
  display: block;
  font-family: 'Fraunces', serif;
  margin-bottom: 2px;
}

.ticket.coral-bg {
  background: var(--coral);
}

.ticket.coral-bg .ticket-stamp {
  border-color: #fff;
  color: #fff;
}

.ticket.coral-bg p.desc {
  color: rgba(255, 255, 255, 0.85);
}

.ticket.coral-bg .macro {
  color: rgba(255, 255, 255, 0.7);
}

.ticket.coral-bg .macro b {
  color: #fff;
}

.ticket.sage-bg {
  background: var(--sage);
}

.ticket.sage-bg .ticket-stamp {
  border-color: var(--palm);
  color: var(--palm);
}

.ticket.sage-bg p.desc {
  color: rgba(31, 58, 46, 0.8);
}

.ticket.sage-bg h3 {
  color: var(--palm);
}

.ticket.sage-bg .macro {
  color: rgba(31, 58, 46, 0.65);
}

.ticket.sage-bg .macro b {
  color: var(--palm);
}

.menu-note {
  font-size: 12.5px;
  color: #777;
  margin-top: 16px;
  font-style: italic;
}

/* ---------- PRICING & PLAN CUSTOMIZER ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}

.pricing-card.popular {
  border-color: var(--coral);
  box-shadow: var(--shadow-md);
}

.pricing-card-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--palm);
  margin: 0;
}

.pricing-card-meals {
  font-size: 13px;
  color: #777;
  margin: 4px 0 0;
}

.pricing-card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}

.price-unit {
  font-size: 12px;
  color: #777;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pricing-card-features li {
  font-size: 13px;
  color: #555;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.pricing-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 12px;
}

.pricing-card-cta {
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.pricing-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.pricing-card-soon {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  padding: 6px 10px;
  background: var(--sand);
  border-radius: 6px;
}

.calc-intro {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px;
}

.calc-row-total {
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 14px;
}

.calc-row-total .calc-label {
  font-weight: 700;
  color: var(--palm);
}

.calc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.exchange-rate-note {
  font-size: 12px;
  color: #777;
}

.calc-waitlist-cta {
  margin-top: 4px;
}

.calculator-box {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}

.calc-tabs {
  display: flex;
  background: var(--sand);
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 24px;
  gap: 4px;
}

.calc-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--palm);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  text-align: center;
}

.calc-tab.active {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.calc-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.calc-label {
  font-size: 14.5px;
  color: #555;
  font-weight: 500;
}

.calc-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--palm);
}

.calc-value.large {
  font-size: 32px;
  font-family: 'Fraunces', serif;
  color: var(--coral);
  font-weight: 700;
}

.calc-value b {
  font-size: 13px;
  font-weight: 400;
  color: #777;
}

.dop-equivalent {
  font-size: 12.5px;
  color: #777;
  text-align: right;
  margin-top: -12px;
  margin-bottom: 12px;
  font-style: italic;
}

.currency-toggle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: 14px;
}

.currency-toggle-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--palm);
  transition: var(--transition);
}

.currency-toggle-btn:hover {
  background: var(--sand);
}

.pricing-disclaimer {
  font-size: 12.5px;
  color: #777;
  margin-top: 10px;
  line-height: 1.5;
}

.badge-benefit {
  background: rgba(123, 168, 139, 0.15);
  color: var(--palm-light);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- COMPARISON ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: var(--sand-dark);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--palm);
  font-weight: 700;
}

.compare-table tr:hover td {
  background: rgba(246, 241, 231, 0.3);
}

.compare-table td.win {
  color: var(--coral);
  font-weight: 700;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

/* ---------- WAITLIST FORM ---------- */
.form-card {
  background: var(--palm);
  border-radius: 22px;
  padding: 32px 24px;
  color: var(--sand);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.form-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(232,113,74,0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.form-card h2 {
  color: #fff;
}

.form-card .section-sub {
  color: rgba(246, 241, 231, 0.8);
  margin-bottom: 28px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  font-size: 12.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: rgba(246, 241, 231, 0.9);
}

.field input, .field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(246, 241, 231, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  transition: var(--transition);
}

.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(232, 113, 74, 0.25);
}

.field input::placeholder {
  color: rgba(246, 241, 231, 0.45);
}

.field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F6F1E7' viewBox='0 0 24 24'%3E%3Cpath d='M0 7.33l2.829-2.83 9.171 9.17 9.172-9.17 2.828 2.83-12 12-12-12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field select option {
  color: var(--charcoal);
  background: #fff;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(246, 241, 231, 0.25);
  background: transparent;
  color: rgba(246, 241, 231, 0.85);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.pill:hover {
  border-color: rgba(246, 241, 231, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.pill.selected {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(232, 113, 74, 0.3);
}

.form-submit {
  margin-top: 12px;
}

/* ---------- CONFIRMATION MESSAGE ---------- */
.confirm-msg {
  display: none;
  text-align: center;
  padding: 40px 10px;
}

.confirm-msg h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 12px;
}

.confirm-msg p {
  color: rgba(246, 241, 231, 0.85);
  font-size: 15px;
  max-width: 320px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.vip-ticket {
  border: 1.5px dashed rgba(246, 241, 231, 0.3);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-block;
  margin-top: 12px;
}

.vip-code {
  font-family: monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--palm);
  user-select: none;
}

.faq-q span {
  padding-right: 12px;
}

.faq-q .chevron {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--coral);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .chevron {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-a p {
  font-size: 14px;
  color: #5c5c5c;
  padding: 12px 0 6px;
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--palm);
  color: rgba(246, 241, 231, 0.75);
  padding: 48px 0 32px;
}

footer .logo {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  margin: 20px 0;
  color: rgba(246, 241, 231, 0.7);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  font-size: 12px;
  color: rgba(246, 241, 231, 0.45);
  margin-top: 24px;
  border-top: 1px solid rgba(246, 241, 231, 0.1);
  padding-top: 20px;
}



/* ---------- LOCAL STORAGE DB VIEWER (ADMIN TOOL) ---------- */
.admin-db-trigger {
  margin-top: 40px;
  text-align: center;
}

.btn-admin-link {
  font-size: 11px;
  color: var(--palm-light);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
}

.btn-admin-link:hover {
  opacity: 1;
}

.admin-panel {
  display: none;
  background: #fff;
  border: 1.5px solid var(--palm);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
}

.admin-panel.active {
  display: block;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 12px;
}

.admin-header h3 {
  font-size: 18px;
  color: var(--palm);
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.btn-sm {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--palm);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-sm.clear {
  background: #d9534f;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-top: 10px;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
}

.admin-table th {
  background: var(--sand);
  font-weight: 600;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    order: -1;
  }
}

/* ---------- BILINGUAL TOGGLE VISIBILITY ---------- */
[data-lang="en"] {
  display: none;
}

html[lang="en"] [data-lang="es"] {
  display: none;
}

html[lang="en"] [data-lang="en"] {
  display: inline;
}

html[lang="en"] [data-lang="en"].block {
  display: block;
}

html[lang="en"] [data-lang="en"].flex {
  display: flex;
}

::selection {
  background: var(--coral);
  color: #fff;
}
