/**
 * Luxury theme for mfweb (option-05) — Soft dark, Inter, gold accents.
 * Background images set inline in Blade where needed.
 */

:root {
  --bg-deep: #1a1a1a;
  --bg-card: #222222;
  --bg-card-hover: #2a2a2a;
  --text-main: #f0f0f0;
  --text-muted: #a0a0a0;
  --accent-gold: #D4AF37;
  --accent-gold-light: #F3E5AB;
  --accent-gold-dark: #AA8C2C;
  --font-serif: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Scope luxury overrides when body has theme-luxury */
body.theme-luxury {
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-sans);
  margin: 0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.theme-luxury h1,
body.theme-luxury h2,
body.theme-luxury h3,
body.theme-luxury h4,
body.theme-luxury h5,
body.theme-luxury h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #fff;
}

.luxury-nav .container,
body.theme-luxury .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Override style.css #header (was white) — luxury nav always dark */
body.theme-luxury #header,
body.theme-luxury #header.luxury-nav,
body.theme-luxury #header.fixed-top {
  background: rgba(10, 10, 10, 0.95) !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: auto !important;
  padding: 20px 0 !important;
}

.luxury-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: #fff;
  text-decoration: none;
}

.brand:hover { color: #fff; }

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-footer .brand-logo { height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-sans);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent-gold); }

.btn-nav-cta {
  font-family: var(--font-sans);
  border: 1px solid var(--accent-gold);
  padding: 8px 20px;
  color: var(--accent-gold) !important;
  border-radius: 2px;
}

.btn-nav-cta:hover {
  background: var(--accent-gold);
  color: #000 !important;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
}

.hero-luxury {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(10,10,10,0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-top: 5vh;
}

.hero-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.hero-overline {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-gold-light);
}

.hero-lead {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: #d0d0d0;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-luxury-primary {
  font-family: var(--font-sans);
  background: var(--accent-gold);
  color: #000;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-luxury-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  color: #000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-luxury-outline {
  font-family: var(--font-sans);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 15px 30px;
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-luxury-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

.hero-social-proof .hero-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.hero-social-proof .hero-stars i {
  font-size: inherit;
}

.section { padding: 80px 0; }

.section-dark { background-color: var(--bg-deep); }
.section-dark-alt { background-color: #0f0f0f; }
.section-black { background-color: #000; }

/* Contact: mismo fondo que About (section-dark) */
#contact.section-black,
#contact.footer-contact {
  background-color: var(--bg-deep);
}

.section-gold { background-color: #f4f4f4; color: #111; }

.section-header { text-align: center; margin-bottom: 30px; }
.section-heading {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 15px;
  color: #fff;
}

.section-heading em { color: var(--accent-gold); }
.text-dark { color: #111 !important; }
.text-dark-muted { color: #555 !important; }

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-text .section-heading { font-family: var(--font-serif); }
.split-text p,
.split-text .benefit-list li { font-family: var(--font-sans); }

.luxury-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  filter: grayscale(20%);
  transition: filter 0.5s;
}

.luxury-img:hover { filter: grayscale(0%); }

.benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.benefit-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #ccc;
}

.benefit-list li::before {
  content: "✦";
  color: var(--accent-gold);
  position: absolute;
  left: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.gallery-item {
  background: var(--bg-card);
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s;
}

.gallery-item:hover { transform: translateY(-5px); }

.media-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.media-wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover .media-wrapper img { transform: scale(1.05); }

.media-overlay,
.portfolio-info {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}

.gallery-item:hover .media-overlay,
.gallery-item:hover .portfolio-info { opacity: 1; }

.play-icon {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  pointer-events: none;
}

.item-info {
  padding: 15px 5px 5px;
}

.item-info h3 {
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: #fff;
}

.item-info span {
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-link-luxury {
  font-family: var(--font-sans);
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.btn-link-luxury:hover { border-color: var(--accent-gold); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: #fff;
  padding: 32px 24px;
  min-width: 0;
  border: 1px solid #e0e0e0;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.price-card.featured {
  background: #fff;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.2);
  z-index: 1;
}

.best-value-badge {
  font-family: var(--font-sans);
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--accent-gold);
  color: #000;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px;
  text-transform: uppercase;
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  padding-top: 28px;
}

.price-card:not(.featured) .card-header {
  padding-top: 0;
}

/* Dentro de price-card el fondo es claro: anular body.theme-luxury h3 { color: #fff } */
.price-card .plan-name,
body.theme-luxury .price-card h3.plan-name {
  color: #000 !important;
}

.plan-name {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.price {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

.currency { font-size: 1.5rem; vertical-align: top; }
.period { font-size: 1rem; color: #777; font-weight: 400; }

.plan-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

.card-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card-features li {
  font-family: var(--font-sans);
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  color: #444;
  font-size: 0.95rem;
}

.card-footer { margin-top: 30px; text-align: center; }

.btn-dark-full {
  font-family: var(--font-sans);
  display: block;
  background: #111;
  color: #fff;
  padding: 15px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
  text-align: center;
}

.btn-dark-full:hover { background: #333; color: #fff; }

.btn-gold-full {
  font-family: var(--font-sans);
  display: block;
  background: var(--accent-gold);
  color: #000;
  padding: 15px;
  text-decoration: none;
  font-weight: 700;
  transition: filter 0.3s;
  text-align: center;
}

.btn-gold-full:hover { filter: brightness(1.1); color: #000; }

.guarantee {
  font-family: var(--font-sans);
  margin-top: 10px;
  color: #888;
  font-size: 0.8rem;
}

/* ---------- #news Latest drops ---------- */
.section-news {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #141414 100%);
}

.section-header-news {
  margin-bottom: 40px;
}

.section-header-news .section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.drops-list-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.drops-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.drop-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-sans);
  transition: background 0.2s, border-color 0.2s;
}

.drop-item:last-child {
  border-bottom: none;
}

.drop-item:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.drop-date {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 72px;
  flex-shrink: 0;
}

.drop-title {
  flex: 1;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  min-width: 0;
}

.drop-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.drop-item:hover .drop-tag {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.15);
}

.drop-arrow {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}

.drop-item:hover .drop-arrow {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.drops-archive-link {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 0;
}

.link-gold {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.link-gold:hover {
  color: var(--accent-gold-light);
  border-bottom-color: var(--accent-gold);
}

.footer-contact { text-align: center; padding-bottom: 20px; }

.footer-cta { margin-bottom: 50px; }

.footer-cta h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: #fff;
}

.footer-cta p { font-family: var(--font-sans); }

/* El ::before del footer en style.css tapa todo y bloquea clics: permitir que pasen */
#footer::before {
  pointer-events: none;
}

.main-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.main-footer .social-links {
  display: flex;
  gap: 15px;
}

.main-footer .social-links a {
  color: var(--text-muted);
  font-size: 1.25rem;
  transition: color 0.3s;
}

.main-footer .social-links a:hover { color: var(--accent-gold); }

.legal-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

.legal-links a {
  font-family: var(--font-sans);
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
}

.copyright {
  font-family: var(--font-sans);
  color: #555;
  font-size: 0.75rem;
  margin-top: 10px;
  text-align: center;
}

/* Contact form in dark section — override style.css white box */
.section-black .php-email-form,
#contact .php-email-form,
body.theme-luxury .section-black .php-email-form {
  max-width: 600px;
  margin: 0 auto;
  background: transparent !important;
  padding: 0 !important;
}

.section-black .php-email-form .form-control,
#contact .php-email-form input,
#contact .php-email-form textarea {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
  padding: 12px 15px !important;
  border-radius: 4px;
}

.section-black .php-email-form .form-control::placeholder,
#contact .php-email-form input::placeholder,
#contact .php-email-form textarea::placeholder {
  color: rgba(255,255,255,0.6) !important;
}

.section-black .php-email-form textarea.form-control {
  min-height: 120px;
}

.section-black .php-email-form button[type="submit"],
#contact .php-email-form button[type="submit"] {
  background: var(--accent-gold) !important;
  color: #000 !important;
  border: none !important;
  padding: 12px 30px !important;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-sans);
}

.section-black .php-email-form button[type="submit"]:hover,
#contact .php-email-form button[type="submit"]:hover {
  background: var(--accent-gold-light) !important;
  color: #000 !important;
}

#contact .form-group label,
.section-black .php-email-form label {
  color: rgba(255,255,255,0.9);
}

/* Evitar caja blanca: contenedores del form en contacto */
#contact .row,
#contact [class^="col-"],
#contact .php-email-form .row,
#contact .php-email-form .form-group {
  background: transparent !important;
}

#contact .php-email-form input#captcha,
#contact input[name="captcha"] {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
}

#contact .captcha-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#contact .btn-captcha-reload {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--accent-gold);
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

#contact .btn-captcha-reload:hover:not(:disabled) {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

#contact .btn-captcha-reload:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.section-black .section-title h2,
.section-black .section-title p { color: #fff; }
.section-black .section-title p { opacity: 0.8; }

/* News/updates table in dark section */
.section-dark-alt .table,
.section-dark .table {
  color: var(--text-main);
}

.section-dark-alt .table thead th,
.section-dark .table thead th {
  border-color: rgba(255,255,255,0.1);
  color: var(--accent-gold);
  font-family: var(--font-sans);
}

.section-dark-alt .table td,
.section-dark-alt .table tbody th,
.section-dark .table td,
.section-dark .table tbody th {
  border-color: rgba(255,255,255,0.08);
}

.section-dark-alt .table-striped tbody tr:nth-of-type(odd),
.section-dark .table-striped tbody tr:nth-of-type(odd) {
  background: rgba(255,255,255,0.02);
}

/* Pagination — anular Bootstrap (fondo blanco + texto blanco = invisible) */
body.theme-luxury .pagination {
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

body.theme-luxury .pagination .page-item .page-link,
body.theme-luxury .pagination .page-link,
body.theme-luxury .pagination a,
body.theme-luxury .pagination span {
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 4px;
}

body.theme-luxury .pagination .page-item.active .page-link {
  background: var(--accent-gold) !important;
  color: #000 !important;
  border-color: var(--accent-gold) !important;
}

body.theme-luxury .pagination .page-link:hover,
body.theme-luxury .pagination a:hover {
  background: var(--accent-gold) !important;
  color: #000 !important;
  border-color: var(--accent-gold) !important;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-luxury {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 48px;
    box-sizing: border-box;
  }
  .hero-content {
    width: 100%;
  }
  .hero-overline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .hero-title { font-size: 2.5rem; }
  .hero-title-wrap { flex-direction: column; }
  .hero-lead { font-size: 1rem; margin-bottom: 28px; }
  .hero-actions { gap: 12px; margin-bottom: 24px; }
  .split-layout { grid-template-columns: 1fr; }
  /* About section: imagen about me en móvil */
  .split-image {
    overflow: hidden;
    border-radius: 20px;
    margin: 0 12px 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .split-image .luxury-img {
    border-radius: 20px;
    display: block;
    box-shadow: none;
  }
  /* #news Latest drops: vista móvil tipo tarjetas */
  .section-news .section-header-news { margin-bottom: 28px; }
  .section-news .section-heading { font-size: 1.85rem; line-height: 1.2; }
  .section-news .section-sub { font-size: 1rem; }
  .drops-list-wrap { max-width: 100%; padding: 0 4px; }
  .drops-list { border-radius: 10px; }
  .drop-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 16px;
    position: relative;
  }
  .drop-item .drop-date {
    min-width: 0;
    font-size: 0.85rem;
    color: var(--accent-gold);
    order: 1;
  }
  .drop-item .drop-title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    order: 2;
    padding-right: 36px;
  }
  .drop-item .drop-tag {
    font-size: 0.75rem;
    order: 3;
  }
  .drop-item .drop-arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    margin-top: 0;
  }
  .drop-item:hover .drop-arrow {
    transform: translateY(-50%) translateX(4px);
  }
  .luxury-nav .nav-inner { position: relative; }
  .luxury-nav .nav-links {
    display: none;
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 260px !important;
    margin: 0 !important;
    background: rgba(10,10,10,0.98);
    padding: 24px 20px 28px;
    gap: 0;
    flex-direction: column;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1001;
    box-sizing: border-box;
    pointer-events: auto;
    max-height: calc(100vh - 72px);
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
  .luxury-nav .nav-links.luxury-nav-open {
    display: flex;
  }
  .luxury-nav .nav-links a {
    font-size: 1.1rem;
    padding: 14px 16px;
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    pointer-events: auto;
    cursor: pointer;
  }
  .luxury-nav .nav-links a:last-child {
    border-bottom: none;
  }
  .luxury-nav .mobile-nav-toggle {
    display: block;
    cursor: pointer;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mt-xl { margin-top: 40px; }
.text-center { text-align: center; }

/* No extra padding/margin that breaks layout */
body.theme-luxury main#main {
  padding-top: 0;
  flex: 1 0 auto;
}

body.theme-luxury .scrolled-offset {
  margin-top: 0 !important;
}
