/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* =============================================
   ANIMAX PHARMA — styles.css
   Brand green: #1a7d3b  (adjust to match logo)
   ============================================= */

   :root {
    --green:        #1a7d3b;
    --green-dark:   #145e2c;
    --green-light:  #e8f5ee;
    --green-mid:    #2a9d52;
    --text:         #0f172a;
    --muted:        #64748b;
    --light:        #f8fafb;
    --soft:         #f2faf5;
    --white:        #ffffff;
    --border:       rgba(15, 23, 42, 0.10);
    --shadow-sm:    0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md:    0 4px 16px rgba(15, 23, 42, 0.10);
    --shadow-lg:    0 12px 40px rgba(15, 23, 42, 0.12);
    --radius-sm:    8px;
    --radius:       14px;
    --radius-lg:    20px;
    --container:    1140px;
    --header-h:     72px;
  }
  
  /* ─── RESET ─────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  ul { list-style: none; }
  
  /* ─── ACCESSIBILITY ─────────────────────────── */
  .skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    padding: 10px 16px;
    background: var(--text);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 16px; }
  
  /* ─── LAYOUT UTILITIES ───────────────────────── */
  .container {
    width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 0 20px;
  }
  .section         { padding: 72px 0; }
  .section-soft    { background: var(--soft); }
  .centered        { display: flex; justify-content: center; }
  .centered-heading { text-align: center; margin-bottom: 48px; }
  .centered-heading .title { max-width: 640px; margin: 8px auto 0; }
  .row-between     { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
  .mt-24           { margin-top: 24px; }
  
  /* ─── TYPOGRAPHY TOKENS ──────────────────────── */
  .kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
  }
  .title {
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text);
  }
  .lead {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.65;
    margin: 16px 0;
  }
  .body-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
  }
  .accent { color: var(--green); }
  .inline-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
  }
  .inline-link:hover { text-decoration: underline; }
  
  /* ─── BUTTONS ────────────────────────────────── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.15s, background 0.15s, border-color 0.15s, color 0.15s;
  }
  .btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
  }
  .btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
  .btn-ghost {
    background: var(--white);
    color: var(--text);
    border-color: var(--border);
  }
  .btn-ghost:hover { border-color: var(--green); color: var(--green); }
  .btn-white {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
  }
  .btn-white:hover { background: var(--green-light); }
  .btn-sm { padding: 8px 14px; font-size: 13px; }
  
  /* ─── GRIDS ──────────────────────────────────── */
  .grid-2,
  .grid-3,
  .grid-products {
    display: grid;
    gap: 20px;
  }
  .grid-2        { grid-template-columns: repeat(2, 1fr); }
  .grid-3        { grid-template-columns: repeat(3, 1fr); }
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  
  /* ─── HEADER ─────────────────────────────────── */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
  }
  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }
  .brand-name {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--text);
  }
  .brand-tagline {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
  }
  
  /* Desktop nav (WordPress menu) */
  .site-header .header-inner {
    position: relative;
  }
  .site-header #primary-nav.nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
  }
  .site-header #primary-nav.nav .nav-menu,
  .site-header #primary-nav.nav ul#menu-main-header-menu {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
    float: none;
  }
  .site-header #primary-nav.nav .menu-item {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    width: auto !important;
    max-width: none;
    flex: 0 0 auto;
    float: none !important;
    clear: none !important;
  }
  .site-header #primary-nav.nav .menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    color: var(--muted);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
  }
  .site-header #primary-nav.nav .menu-link:hover,
  .site-header #primary-nav.nav .menu-link:focus {
    color: var(--green);
    background: var(--green-light);
  }
  .site-header #primary-nav.nav .current-menu-item > .menu-link,
  .site-header #primary-nav.nav .current_page_item > .menu-link {
    color: var(--green);
    background: var(--green-light);
  }
  .site-header #primary-nav.nav .menu-item.nav-cta > .menu-link,
  .site-header #primary-nav.nav .menu-link.nav-cta {
    background: var(--green);
    color: var(--white);
    border-radius: 9px;
    padding: 9px 16px;
    margin-left: 4px;
  }
  .site-header #primary-nav.nav .menu-item.nav-cta > .menu-link:hover,
  .site-header #primary-nav.nav .menu-item.nav-cta > .menu-link:focus,
  .site-header #primary-nav.nav .menu-link.nav-cta:hover,
  .site-header #primary-nav.nav .menu-link.nav-cta:focus {
    background: var(--green-dark);
    color: var(--white);
  }
  
  /* Hamburger */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  
  /* ─── HERO ───────────────────────────────────── */

  /* ===== HERO BANNER - Cow Grazing Image ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
  pointer-events: none;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 10, 0.72); /* ← darker overlay */
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* ===== Text force visible ===== */
.hero .hero-eyebrow {
  color: #a3e8c0 !important;
}

.hero .hero-title {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero .hero-sub {
  color: #e2f5eb !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero .btn-primary {
  background: #16a34a !important;
  color: #fff !important;
}

.hero .btn-ghost {

  border-color: rgba(255,255,255,0.7) !important;
}
/* ===== END ===== */


#ast-scroll-top {
  background-color: var(--green);
}


.ast-builder-menu-1 .menu-item.current-menu-item > .menu-link, .ast-builder-menu-1 .inline-on-mobile .menu-item.current-menu-item > .ast-menu-toggle, .ast-builder-menu-1 .current-menu-ancestor > .menu-link, .ast-builder-menu-1 .menu-link:hover, .ast-builder-menu-1 .main-header-menu > .menu-item:hover > .menu-link, .ast-builder-menu-1 .inline-on-mobile .ast-menu-toggle:hover, .ast-builder-menu-1 .inline-on-mobile .main-header-menu > .menu-item:hover > .ast-menu-toggle, .btn-white:hover {
  color: var(--green) !important;
}

.hero {
    padding: 80px 0 72px;
    background:
      radial-gradient(ellipse 900px 480px at 0% 0%, rgba(26,125,59,0.10) 0%, transparent 60%),
      radial-gradient(ellipse 700px 400px at 100% 80%, rgba(26,125,59,0.07) 0%, transparent 55%);
  }
  .hero-inner { max-width: 700px; }
  .hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    margin-bottom: 16px;
  }
  .hero-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 32px;
  }
  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  /* ─── CARDS ──────────────────────────────────── */
  .card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  
  .card-border-top { border-top: 3px solid var(--green); }
  
  .card-icon { font-size: 28px; margin-bottom: 14px; }
  .card-title { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
  .card-text  { font-size: 14px; color: var(--muted); line-height: 1.65; }
  .card-list  { padding-left: 0; }
  .card-list li {
    font-size: 14px;
    color: var(--muted);
    padding: 5px 0 5px 18px;
    position: relative;
    border-bottom: 1px solid var(--border);
  }
  .card-list li:last-child { border-bottom: none; }
  .card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 12px;
  }
  
  /* ─── STORY SECTION ──────────────────────────── */
  .story-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: center;
  }
  .story-content { display: flex; flex-direction: column; gap: 0; }
  .story-content .kicker,
  .story-content .title { display: block; }
  .story-content .title { margin-bottom: 16px; }
  
  .story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
  }
  .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  
  /* ─── PRODUCTS ───────────────────────────────── */
  .product-tile {
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  }
  .product-tile:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(26, 125, 59, 0.35);
  }
  .product-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    background: var(--green-light);
    padding: 3px 8px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 6px;
  }
  .product-name { font-size: 16px; font-weight: 800; color: var(--text); margin: 0; }
  .product-size { font-size: 13px; color: var(--muted); margin: 2px 0 0; }
  .product-link {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
  }
  
  /* ─── REASONS ────────────────────────────────── */
  .reason-card { position: relative; padding-top: 28px; }
  .reason-num {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 32px;
    font-weight: 900;
    color: var(--green-light);
    line-height: 1;
    user-select: none;
  }
  
  /* ─── FEATURE CARDS ──────────────────────────── */
  .feature-card {
    display: flex;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
  }
  .feature-card:hover { box-shadow: var(--shadow-md); }
  .feature-icon { font-size: 32px; flex-shrink: 0; line-height: 1; padding-top: 2px; }
  
  /* ─── OUTREACH CARDS ─────────────────────────── */
  .outreach-card { border-top: 3px solid var(--green); }
  .outreach-card .card-icon { font-size: 32px; margin-bottom: 12px; }
  
  /* ─── TESTIMONIALS ───────────────────────────── */
  .testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; }
  .quote {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
  }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .author-name { font-weight: 800; font-size: 14px; margin-bottom: 1px; }
  .author-role { font-size: 12px; color: var(--muted); }
  
  /* ─── BOOKS ──────────────────────────────────── */
  .books-grid { max-width: 780px; margin: 0 auto; }
  .book-card {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  .book-card:hover { box-shadow: var(--shadow-md); border-color: rgba(26, 125, 59, 0.35); }
  .book-cover { font-size: 48px; flex-shrink: 0; }
  .book-info  { display: flex; flex-direction: column; gap: 6px; }
  .book-lang  { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); }
  .book-title { font-size: 15px; font-weight: 800; color: var(--text); line-height: 1.35; }
  
  /* ─── CTA BANNER ─────────────────────────────── */
  .cta-banner {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 50%, var(--green-dark) 100%);
    padding: 72px 0;
  }
  .cta-inner { text-align: center; }
  .cta-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
  }
  .cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
  }
  
  /* ─── FOOTER ─────────────────────────────────── */
  .site-footer {
    background: var(--text);
    padding: 40px 0 28px;
    color: rgba(255, 255, 255, 0.85);
  }
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-brand .brand-name  { color: var(--white); }
  .footer-brand .brand-tagline { color: rgba(255,255,255,0.55); }
  .footer-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-nav a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
  }
  .footer-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
  .copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.40);
  }
  
  /* ─── RESPONSIVE: TABLET ─────────────────────── */
  @media (max-width: 980px) {
    .grid-3,
    .grid-products { grid-template-columns: repeat(2, 1fr); }
    .story-grid    { grid-template-columns: 1fr; }
    .story-stats   { grid-template-columns: repeat(4, 1fr); }
    .contact-form-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-info-card { flex-direction: column; align-items: flex-start; }
    .founder-content-wrapper { grid-template-columns: 1fr; }
    .founder-sidebar { position: static; }
  }
  
  /* ─── RESPONSIVE: MOBILE ─────────────────────── */
  @media (max-width: 640px) {
    .section       { padding: 48px 0; }
    .hero          { padding: 48px 0 40px; }
  
    .grid-2,
    .grid-3,
    .grid-products { grid-template-columns: 1fr; }
  
    .story-stats   { grid-template-columns: repeat(2, 1fr); }
  
    .books-grid    { grid-template-columns: 1fr; }
  
    .row-between   { flex-direction: column; align-items: flex-start; gap: 12px; }
  
    .nav-toggle    { display: flex; }
  
    .site-header #primary-nav.nav {
      display: none;
      position: absolute;
      top: var(--header-h);
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      margin-left: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 12px 16px 20px;
      gap: 2px;
      box-shadow: var(--shadow-md);
      z-index: 101;
    }
    .site-header #primary-nav.nav.nav-open { display: flex; }
    .site-header #primary-nav.nav .nav-menu {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      gap: 2px;
    }
    .site-header #primary-nav.nav .menu-link {
      width: 100%;
      justify-content: flex-start;
    }
    .site-header #primary-nav.nav .menu-item.nav-cta > .menu-link,
    .site-header #primary-nav.nav .menu-link.nav-cta {
      margin-left: 0;
      justify-content: center;
    }
  
    .feature-card  { flex-direction: column; }
  
    .book-card     { flex-direction: column; align-items: flex-start; }

  }

/* ─── CONTACT PAGE ───────────────────────────── */
  .contact-page-hero { padding-top: 32px; }
  .contact-page-title {
    font-size: clamp(28px, 4vw, 48px);
    max-width: 720px;
    margin: 0 auto;
  }

  .contact-hero-media {
    position: relative;
    margin-top: 8px;
  }
  .contact-hero-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    height: min(500px, 55vw);
    object-fit: cover;
    box-shadow: var(--shadow-md);
  }

  .contact-info-card {
    width: min(92%, 100%);
    margin: -40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px 28px;
    position: relative;
    z-index: 2;
  }
  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-info-item small {
    display: block;
    font-size: 12px;
    color: var(--muted);
    text-transform: lowercase;
  }
  .contact-info-item p {
    margin: 4px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
  }
  .contact-info-item a {
    text-decoration: none;
    color: var(--green);
  }
  .contact-info-item a:hover { color: var(--green-dark); }

  .contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .contact-form-intro .title {
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.2;
  }
  .contact-form-panel {
    background: var(--soft);
    border-top: 3px solid var(--green);
  }
  .contact-form-panel .wpcf7-form p { margin: 0 0 18px; }
  .contact-form-panel label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
  }
  .contact-form-panel .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
  }
  .contact-form-panel .wpcf7-submit {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--green);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
  }
  .contact-form-panel .wpcf7-submit:hover { background: var(--green-dark); }
  .contact-form-panel .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #b91c1c;
    margin-top: 6px;
    display: block;
  }
  .contact-form-panel .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
  }

  .contact-whatsapp-strip {
    background: var(--green-light);
    text-align: center;
    padding: 48px 0;
  }
  .contact-wa-link {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 700;
  }
  .contact-wa-link a {
    color: var(--green);
    text-decoration: none;
  }
  .contact-wa-link a:hover { color: var(--green-dark); }

.contact-featured-testimonial {
  max-width: 680px;
  margin: 0 auto;
  border-top: 3px solid var(--green);
}

/* Header menu: force single horizontal row (override Astra) */
@media (min-width: 641px) {
  body.animax-custom-home .site-header .header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  body.animax-custom-home .site-header #primary-nav.nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    width: auto;
    margin-left: auto;
  }

  body.animax-custom-home .site-header #primary-nav.nav .nav-menu,
  body.animax-custom-home .site-header #primary-nav.nav ul[id^="menu-"] {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
  }

  body.animax-custom-home .site-header #primary-nav.nav .menu-item {
    display: block !important;
    width: auto !important;
    float: none !important;
  }

  body.animax-custom-home .site-header .nav-toggle {
    display: none !important;
  }
}
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card h2{
    padding:15px 15px 0;
    font-size:22px;
}

.product-card p{
    padding:0 15px 15px;
}

.product-card a{
    text-decoration:none;
    color:inherit;
}

.single-product-page{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
}

.product-detail{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.product-image img{
    width:100%;
    border-radius:12px;
}

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



.site-footer {
  padding-top: 20px;
  padding-bottom: 15px;
}

.site-below-footer-wrap[data-section="section-below-footer-builder"] .ast-builder-grid-row {
  min-height: auto !important;
}

.ast-footer-copyright {
  font-size: 12px;
}

.site-below-footer-wrap[data-section="section-below-footer-builder"] {
  border-top: 1px solid #363636;
}

.site-below-footer-wrap[data-section="section-below-footer-builder"] {
  min-height: auto;
  padding-top: 15px;
}

.story-content .btn-primary {
  max-width: 200px;
}

.btn-primary:hover {
  color: #fff;
}

.inline-link:hover {
  text-decoration: underline;
  color: var(--green);
}

.product-thumb {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
  background: #f5f5f5;
}

.product-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-tile:hover .product-thumb img {
  transform: scale(1.05);
}
@media (max-width: 640px) {
  .founder-profile-img {
    width: 90px;
    height: 90px;
    left: 25px;
    bottom: -45px;
  }

  .founder-hero {
    padding: 56px 16px 72px;
  }

  .founder-content-section {
    padding-top: 72px;
  }
}



