/* ═══════════════════════════════════════════════════════════════
   Casa di Scoop — Gelato Pro Theme
   Brand colors: Teal · Magenta · Golden Yellow · White
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  /* ── Brand colors ── */
  --teal:       #4cb8c4;
  --teal-dk:    #3a9aa6;
  --teal-lt:    #e8f7f9;
  --teal-mid:   #c2e8ec;
  --magenta:    #d4307a;
  --magenta-dk: #b02366;
  --magenta-lt: #fce8f2;
  --gold:       #f5a623;
  --gold-dk:    #d4880a;
  --gold-lt:    #fef6e4;
  --white:      #ffffff;
  --cream:      #fdfcfa;
  --cream-2:    #f5f2ed;
  --ink:        #1c2b2d;
  --ink-mid:    #2f4447;
  --muted:      #6b8c90;
  --border:     #d4e8eb;

  /* ── Spacing & shape ── */
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow-sm:  0 2px 8px rgba(76,184,196,.12);
  --shadow:     0 4px 24px rgba(76,184,196,.15);
  --shadow-lg:  0 12px 48px rgba(76,184,196,.2);

  /* ── Typography ── */
  --font-disp: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "DM Mono", monospace;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════════
   SITE HEADER
════════════════════════════════════════ */
.site-header {
  background: var(--teal);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(76,184,196,.35);
}

.site-logo {
  font-family: var(--font-disp);
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 68px;
  flex-shrink: 0;
}
.site-logo img,
.site-logo .custom-logo {
  max-height: 56px !important;
  width: auto !important;
  display: block;
  object-fit: contain;
}

.site-logo em {
  color: var(--gold);
  font-style: italic;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.site-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.site-nav .nav-cta {
  background: var(--magenta) !important;
  color: var(--white) !important;
  padding: 8px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 4px 14px rgba(212,48,122,.35);
  transition: background .2s, transform .15s, box-shadow .2s !important;
}
.site-nav .nav-cta:hover {
  background: var(--magenta-dk) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,48,122,.45) !important;
}

/* ════════════════════════════════════════
   MAIN & FOOTER
════════════════════════════════════════ */
.site-main { min-height: calc(100vh - 128px); }

.site-footer {
  background: var(--footer-bg, var(--ink));
  color: var(--footer-color, rgba(255,255,255,.4));
  text-align: center;
  padding: 28px;
  font-size: 12px;
  letter-spacing: .03em;
}

/* ════════════════════════════════════════
   PRICING PAGE HERO
════════════════════════════════════════ */
.gp-pricing-hero {
  background: var(--teal);
  padding: 64px 40px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gp-pricing-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: var(--magenta);
  border-radius: 50%;
  opacity: .18;
}
.gp-pricing-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 10%;
  width: 140px; height: 140px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .2;
}
.gp-pricing-hero__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  position: relative;
}
.gp-pricing-hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(30px, 5vw, 50px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
}
.gp-pricing-hero h1 em { color: var(--gold); font-style: italic; }
.gp-pricing-hero p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* ════════════════════════════════════════
   PRICING CARDS  ← FIX 1: smaller grid + less padding
════════════════════════════════════════ */
.gp-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding: 40px 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
/* 1 plan — centered narrow */
.gp-pricing:has(.gp-plan:only-child) {
  grid-template-columns: minmax(220px, 420px);
  justify-content: center;
}
/* 4 plans — 2x2 grid */
@media (min-width: 900px) {
  .gp-pricing:has(.gp-plan:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
  }
}

.gp-plan {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px 18px;
  max-width: 100%;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: var(--shadow-sm);
}
.gp-plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-mid);
}

.gp-plan--featured {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.gp-plan--featured:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: var(--teal-dk);
}
.gp-plan--featured .gp-plan__name  { color: var(--white); }
.gp-plan--featured .gp-plan__desc  { color: rgba(255,255,255,.65); }
.gp-plan--featured .gp-plan__prices { border-color: rgba(255,255,255,.15); }
.gp-plan--featured .gp-price-row   { border-color: rgba(255,255,255,.08); }
.gp-plan--featured .gp-price__amount { color: var(--white); }
.gp-plan--featured .gp-price__period { color: rgba(255,255,255,.55); }
.gp-plan--featured .gp-plan__features { color: rgba(255,255,255,.8); }
.gp-plan--featured .gp-plan__features li { border-color: rgba(255,255,255,.1); }
.gp-plan--featured .gp-plan__features li::before { color: var(--gold); }
.gp-plan--featured .gp-price-row--highlight {
  background: rgba(255,255,255,.1);
  margin: 4px -8px; padding: 12px 8px;
}

.gp-plan__badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(212,48,122,.4);
}

.gp-plan__name {
  font-family: var(--font-disp);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.gp-plan__desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.55;
  min-height: 40px;
}

.gp-plan__prices {
  border-top: 2px solid var(--border);
  padding-top: 20px;
  margin-bottom: 24px;
}
.gp-price-row {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px; padding: 10px 0;
  border-bottom: 1px solid var(--cream-2);
}
.gp-price-row:last-child { border-bottom: none; }
.gp-price-row--highlight {
  background: var(--teal-lt);
  margin: 4px -8px; padding: 12px 8px;
  border-radius: var(--radius); border-bottom: none;
}
.gp-price__amount {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 500;
  color: var(--ink); letter-spacing: -.02em;
}
.gp-price__period { font-size: 12px; color: var(--muted); flex: 1; }
.gp-price__save {
  font-size: 10px; font-weight: 700;
  background: #e8f7ef; color: #2d7a3a;
  border: 1px solid #b6dfc0;
  padding: 3px 9px; border-radius: 20px;
}

.gp-btn-subscribe {
  width: 100%; padding: 13px 16px;
  background: var(--magenta); color: #fff;
  border: none; border-radius: var(--radius);
  font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: var(--font-body);
  transition: background .2s, transform .1s, box-shadow .2s;
  margin-top: 6px; letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(212,48,122,.3);
}
.gp-btn-subscribe:hover {
  background: var(--magenta-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,48,122,.4);
}
.gp-plan--featured .gp-btn-subscribe {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(245,166,35,.4);
}
.gp-plan--featured .gp-btn-subscribe:hover {
  background: var(--gold-dk);
  box-shadow: 0 6px 20px rgba(245,166,35,.5);
}

.gp-plan__features {
  list-style: none !important;
  font-size: 13px; color: var(--ink-mid);
}
.gp-plan__features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--cream-2);
  display: flex !important; align-items: center; gap: 8px;
  background: none !important;
}
.gp-plan__features li::before {
  content: '✓' !important;
  color: var(--teal) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  display: inline !important;
}
.gp-plan__features li:last-child { border-bottom: none; }

/* ── CHECKOUT MODAL  ← FIX 2: max-height + scroll so button is always visible */
.gp-modal {
  position: fixed; inset: 0;
  background: rgba(28,43,45,.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 20px;
}
.gp-modal__box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 32px 28px;
  max-width: 460px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative; box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--teal);
}
.gp-modal__box h3 { font-family: var(--font-disp); font-size: 24px; margin-bottom: 6px; }
.gp-modal__box p  { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.gp-modal__close {
  position: absolute; top: 18px; right: 18px;
  background: var(--cream-2); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 16px; cursor: pointer; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.gp-modal__close:hover { background: var(--teal-lt); color: var(--teal-dk); }

/* ════════════════════════════════════════
   LOGIN FORM
════════════════════════════════════════ */
.gp-login-wrap {
  min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(160deg, var(--teal-lt) 0%, var(--cream) 60%);
}
.gp-login-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px 44px; max-width: 440px; width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.gp-login-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--magenta), var(--gold));
}
.gp-login-box__icon { text-align: center; font-size: 48px; margin-bottom: 16px; }
.gp-login-box h2 {
  font-family: var(--font-disp);
  font-size: 30px; margin-bottom: 6px; text-align: center; color: var(--ink);
}
.gp-login-box__sub {
  text-align: center; font-size: 14px; color: var(--muted); margin-bottom: 32px;
}
.gp-login-foot {
  font-size: 12px; color: var(--muted); text-align: center; margin-top: 20px;
}
.gp-login-foot a { color: var(--magenta); font-weight: 700; text-decoration: none; }
.gp-login-foot a:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   SHARED FORM ELEMENTS
════════════════════════════════════════ */
.gp-field { margin-bottom: 18px; }
.gp-field label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--muted); margin-bottom: 6px;
  letter-spacing: .06em; text-transform: uppercase;
}
.gp-field input, .gp-field select, .gp-field textarea {
  width: 100%; padding: 12px 16px; font-size: 14px;
  font-family: var(--font-body);
  border: 2px solid var(--border); border-radius: var(--radius);
  background: var(--cream); color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
}
.gp-field input:focus, .gp-field select:focus {
  outline: none; border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(76,184,196,.12);
}

.gp-btn-primary, .gp-btn-primary:visited {
  display: block; width: 100%; padding: 14px 20px;
  background: var(--teal); color: #fff; border: none;
  border-radius: var(--radius); font-size: 14px; font-weight: 700;
  font-family: var(--font-body); cursor: pointer;
  text-align: center; text-decoration: none;
  letter-spacing: .02em;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(76,184,196,.35);
}
.gp-btn-primary:hover {
  background: var(--teal-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(76,184,196,.45);
}
.gp-btn-primary:active { transform: scale(.98); }

.gp-btn-secondary {
  display: inline-block; padding: 11px 20px;
  background: var(--cream-2); color: var(--ink);
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 13px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s, border-color .2s;
}
.gp-btn-secondary:hover { background: var(--teal-lt); border-color: var(--teal); color: var(--teal-dk); }

.gp-msg {
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 13px; margin-bottom: 16px;
}
.gp-msg--error   { background: #fce8f2; color: var(--magenta); border: 1px solid #f0b8d8; }
.gp-msg--success { background: #e8f7ef; color: #2d7a3a; border: 1px solid #b6dfc0; }

/* ════════════════════════════════════════
   LOCKED STATE
════════════════════════════════════════ */
.gp-locked {
  text-align: center; padding: 100px 20px;
  max-width: 500px; margin: 0 auto;
}
.gp-locked__icon { font-size: 56px; margin-bottom: 20px; display: block; }
.gp-locked h3 {
  font-family: var(--font-disp); font-size: 32px;
  margin-bottom: 12px; color: var(--ink);
}
.gp-locked p { font-size: 15px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.gp-locked a { color: var(--magenta); text-decoration: none; font-weight: 700; }

/* ════════════════════════════════════════
   ACCOUNT PAGE
════════════════════════════════════════ */
.gp-account-wrap {
  max-width: 640px; margin: 48px auto; padding: 0 20px 80px;
}
.gp-account-header { margin-bottom: 28px; }
.gp-account-header h2 {
  font-family: var(--font-disp); font-size: 32px;
  margin-bottom: 4px; color: var(--ink);
}
.gp-account-header p { font-size: 14px; color: var(--muted); }

.gp-account-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 32px; margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.gp-account-card:hover { box-shadow: var(--shadow); }
.gp-account-card__title {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--teal-lt);
}
.gp-account-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--cream-2); font-size: 14px;
}
.gp-account-row:last-child { border-bottom: none; }
.gp-account-row__label { color: var(--muted); font-size: 13px; }
.gp-account-row__value { font-weight: 600; color: var(--ink); }

.gp-status-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 20px; letter-spacing: .04em;
}
.gp-status-badge--active {
  background: var(--teal-lt); color: var(--teal-dk);
  border: 1px solid var(--teal-mid);
}
.gp-status-badge--active::before { content: '●'; font-size: 8px; }

.gp-calc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px; margin-top: 4px;
}
.gp-calc-item {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 10px; border-radius: var(--radius);
  font-size: 12px; font-weight: 500;
}
.gp-calc-item--yes {
  background: var(--teal-lt); color: var(--teal-dk);
  border: 1px solid var(--teal-mid);
}
.gp-calc-item--no {
  background: var(--cream-2); color: var(--muted);
  border: 1px solid var(--border); opacity: .5;
  text-decoration: line-through;
}
.gp-account-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
/* ── Mobile hamburger toggle button ── */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all .25s;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 20px;
    height: 60px;
  }
  .gp-pricing { padding: 40px 16px 60px; gap: 16px; }
  .gp-plan--featured { transform: none; }
  .gp-plan--featured:hover { transform: translateY(-4px); }
  .gp-login-box { padding: 36px 24px; }
  .gp-account-card { padding: 22px 20px; }
  .gp-pricing-hero { padding: 48px 24px 40px; }

  /* Show hamburger button */
  .mobile-menu-toggle { display: flex; }

  /* Hide nav by default on mobile */
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    background: var(--teal);
    padding: 80px 24px 32px;
    flex-direction: column;
    gap: 4px;
    z-index: 100;
    box-shadow: -4px 0 24px rgba(0,0,0,.2);
    overflow-y: auto;
  }

  /* Show nav when active */
  .site-nav.active { display: flex; }

  /* Nav links in mobile drawer */
  .site-nav a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    border-radius: 0;
  }
  .site-nav ul { flex-direction: column; width: 100%; }
  .site-nav ul li a {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    border-radius: 0;
  }
  .site-nav .nav-cta {
    margin: 16px 0 0 0;
    text-align: center;
    display: block;
  }

  /* Overlay behind open menu */
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 99;
  }
}

@media (max-width: 480px) {
  .site-header { padding: 0 16px; }
}

/* ── WordPress admin bar offset ── */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .gp-calc-tabs { top: 100px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar .gp-calc-tabs { top: 106px; }
}

/* ════════════════════════════════════════
   ELEMENTOR INTEGRATION
════════════════════════════════════════ */

/* Pass brand CSS variables into Elementor widgets */
.elementor-section,
.elementor-container,
.elementor-widget-wrap,
.e-con,
.e-con-inner {
  --teal:    var(--teal);
  --magenta: var(--magenta);
  --gold:    var(--gold);
}

/* Elementor full width — remove container constraints */
.elementor-page-full-width .site-main,
.elementor-page-wrap {
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Elementor sections should stretch full width */
.elementor-section.elementor-section-full_width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Fix Elementor editor z-index conflict with sticky header */
.elementor-editor-active .site-header {
  z-index: 99 !important;
}

/* Elementor button styles — inherit brand colors */
.elementor-button.elementor-button-brand {
  background: var(--teal);
  border-color: var(--teal);
}
.elementor-button.elementor-button-accent {
  background: var(--magenta);
  border-color: var(--magenta);
}

/* Elementor heading colors */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-disp);
}

/* Fix Elementor popup z-index with our nav */
.elementor-popup-modal {
  z-index: 9999 !important;
}

/* Elementor forms — inherit our form styles */
.elementor-form .elementor-field-group input,
.elementor-form .elementor-field-group select,
.elementor-form .elementor-field-group textarea {
  border: 2px solid var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--cream) !important;
  color: var(--ink) !important;
  font-family: var(--font-body) !important;
}
.elementor-form .elementor-field-group input:focus,
.elementor-form .elementor-field-group select:focus,
.elementor-form .elementor-field-group textarea:focus {
  border-color: var(--teal) !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(76,184,196,.12) !important;
}

/* Admin bar + sticky header offset for Elementor editor */
.elementor-editor-active.admin-bar .site-header {
  top: 64px;
}

/* ── WordPress nav menu — horizontal inline style ── */
.site-nav ul,
.site-nav ul ul { list-style: none !important; }
.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.site-nav ul li { margin: 0 !important; padding: 0 !important; }
.site-nav ul li::before { display: none !important; content: none !important; }
.site-nav ul li a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius);
  display: block;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.site-nav ul li a:hover {
  color: #fff;
  background: rgba(255,255,255,.15);
}
/* Hide sub-menus (dropdowns) — keep it flat */
.site-nav ul li ul { display: none; }
/* Current page highlight */
.site-nav ul li.current-menu-item > a,
.site-nav ul li.current_page_item > a {
  color: #fff;
  background: rgba(255,255,255,.12);
}


/* ═══ CRITICAL FIXES ═══ */

/* Fix double checkmark on pricing features */
.gp-plan__features { list-style: none !important; }
.gp-plan__features > li {
  list-style: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.gp-plan__features > li::before {
  content: '✓' !important;
  color: var(--teal) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.gp-plan--featured .gp-plan__features > li::before {
  color: var(--gold) !important;
}

/* Fix invisible hero text */
.gp-pricing-hero h1 { color: #fff !important; }
.gp-pricing-hero p  { color: rgba(255,255,255,.75) !important; }
.gp-pricing-hero__tag { color: var(--gold) !important; }

/* Nav li must never show checkmarks */
.site-nav li::before,
.site-nav li::after { display: none !important; content: none !important; }
.site-nav ul { list-style: none !important; }


/* ═══ HARDCODED FALLBACKS — in case CSS vars don't load ═══ */
.gp-pricing-hero {
  background: #4cb8c4 !important;
}
.gp-pricing-hero h1,
.gp-pricing-hero__tag,
.gp-pricing-hero p {
  position: relative;
  z-index: 1;
}
.gp-pricing-hero h1 { color: #ffffff !important; }
.gp-pricing-hero p  { color: rgba(255,255,255,.75) !important; }
.gp-pricing-hero__tag {
  color: #f5a623 !important;
  background: rgba(245,166,35,.15) !important;
  border-color: rgba(245,166,35,.3) !important;
}
.gp-btn-subscribe {
  background: #d4307a !important;
  color: #ffffff !important;
  border: none !important;
}
.gp-plan--featured .gp-btn-subscribe {
  background: #f5a623 !important;
  color: #1c2b2d !important;
}
.gp-plan--featured {
  background: #4cb8c4 !important;
}
.gp-plan--featured .gp-plan__name { color: #fff !important; }
.gp-plan--featured .gp-plan__desc { color: rgba(255,255,255,.65) !important; }
.gp-plan__badge { background: #d4307a !important; color: #fff !important; }
.gp-price__save { background: #e8f7ef !important; color: #2d7a3a !important; }

/* ── Footer social links — colour controlled by Customizer via --footer-color ── */
.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-social-link {
  color: var(--footer-color, rgba(255,255,255,.5));
  font-size: 20px;
  padding: 6px 8px;
  border-radius: 8px;
  text-decoration: none;
  opacity: .65;
  transition: opacity .2s;
}
.footer-social-link:hover { opacity: 1; }
