  /* === Token Calculator hero - teal to grey gradient === */
  body.page-id-16 .calc-hero {
    background: linear-gradient(135deg, #009485 0%, #e5e7eb 100%) !important;
  }
  body.page-id-16 .calc-hero h1,
  body.page-id-16 .calc-hero h2,
  body.page-id-16 .calc-hero p,
  body.page-id-16 .calc-hero .badge {
    color: #1a1a1a !important;
  }
  body.page-id-16 .calc-hero .calc-btn {
    background-color: #009485 !important;
    color: #ffffff !important;
    border: 2px solid #009485 !important;
  }
/*
Theme Name: CalculatorLand Child
Template: astra
Version: 1.0.0
Description: Calculator Land child theme
*/

/* ===== GLOBAL RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

/* ===== HEADER ===== */
.site-header, #masthead {
    background: #ffffff !important;
    border-bottom: 2px solid #009485 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.site-title a { color: #1a1a2e !important; font-weight: 700; font-size: 1.25rem; }
.main-header-menu .menu-item a { color: #6b7280 !important; font-size: 0.9rem; font-weight: 500; }
.main-header-menu .menu-item a:hover { color: #009485 !important; }

/* ===== HIDE PAGE TITLE ON HOMEPAGE ===== */
.home .entry-title { display: none !important; }
.home .ast-archive-description { display: none; }

/* ===== BUTTONS ===== */
.calc-btn { background: #009485; color: #ffffff !important; border: none; padding: 12px 28px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s ease; width: 100%; }
.calc-btn:hover { background: #007a6e; }

/* ===== CALCULATOR CARDS ===== */
.calc-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease;
}

.calc-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);
}

/* ===== FORM INPUTS ===== */
.calc-input { width: 100%; padding: 10px 14px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 1rem; font-family: 'Inter', sans-serif; color: #1a1a2e; background: #f9fafb; transition: border-color 0.2s; }
.calc-input:focus { outline: none; border-color: #009485; background: #ffffff; }
.calc-label { display: block; font-size: 0.875rem; font-weight: 600; color: #374151; margin-bottom: 6px; }

/* ===== RESULTS BOX ===== */
.calc-results { background: #eff6ff; border: 1px solid #bbf7d0; border-radius: 12px; padding: 28px; margin-top: 24px; }
.calc-results h3 { font-size: 1rem; color: #6b7280; margin: 0 0 8px 0; font-weight: 500; }
.calc-result-primary { font-size: 2.5rem; font-weight: 700; color: #009485; line-height: 1; }

/* ===== HERO SECTION ===== */
.calc-hero {
    background: #009485 !important;
    color: #ffffff !important;
    padding: 60px 24px;
    text-align: center;
}

.calc-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: #ffffff !important;
    line-height: 1.1;
}

.calc-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PAGE LAYOUT ===== */
.calc-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.calc-section { padding: 60px 0; }
.calc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .calc-grid-2 {
    grid-template-columns: 1fr;
  }
}

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

/* ===== FAQ ===== */
.calc-faq { max-width: 800px; margin: 0 auto; }
.calc-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 20px 24px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease;
}

.calc-faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.calc-faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1a1a2e;
}

.calc-faq-item p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}
.calc-faq-item h3 { font-size: 1rem; font-weight: 600; margin: 0 0 8px 0; color: #1a1a2e; }
.calc-faq-item p { font-size: 0.95rem; color: #6b7280; margin: 0; line-height: 1.6; }

/* ===== FOOTER ===== */
.site-footer { background: #f9fafb !important; border-top: 1px solid #e5e7eb; padding: 48px 0 24px !important; }
/* Hero button — white bg with green text to contrast against green hero */
.calc-hero .calc-btn {
    background: #ffffff !important;
    color: #009485 !important;
}
.calc-hero .calc-btn:hover {
    background: #f0fdf4 !important;
    color: #007a6e !important;
}

/* Hide Astra default copyright footer bar */
.ast-small-footer,
.site-below-footer-wrap,
#colophon .ast-small-footer {
    display: none !important;
}


/* Invoice Late Fee Calculator (page-id-167) - fix subheadline on white hero */
body.page-id-167 .calc-hero p {
    color: #374151 !important;
}
body.page-id-167 .calc-hero span {
    color: #6b7280 !important;
}