/*
Theme Name: BioMedycle 2026
Theme URI: https://biomedycle.com
Author: Iteleti Medical
Author URI: https://biomedycle.com
Description: Custom dark theme for BioMedycle.com with animated ECG heartbeat background. Green, black and white medical equipment store 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: biomedycle
Tags: dark, medical, custom, responsive
*/

/* ============================================================
   BIOMEDYCLE.COM — ITELETI MEDICAL — 2026
   Custom WordPress Theme
   Colors: #060A06 (black), #22C55E (green), #FFFFFF (white)
   Fonts: Playfair Display (display), DM Sans (body)
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:    #060A06;
  --black2:   #0D140D;
  --black3:   #111911;
  --green:    #22C55E;
  --green2:   #16A34A;
  --white:    #FFFFFF;
  --gray:     #8FA08F;
  --gray2:    #3D4F3D;
  --font-d:   'Playfair Display', Georgia, serif;
  --font-b:   'DM Sans', system-ui, -apple-system, sans-serif;
  --radius:   8px;
  --radius-lg: 14px;
  --radius-xl: 18px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color 0.2s ease; }
button { font-family: var(--font-b); cursor: pointer; }
ul { list-style: none; }

/* ── GOOGLE FONTS — load via functions.php ── */
/* Playfair Display 400,600,700 | DM Sans 300,400,500,600 */

/* ============================================================
   ECG GRID BACKGROUND
   ============================================================ */
.ecg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.07) 1px, transparent 1px),
    linear-gradient(rgba(34,197,94,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.03) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 8px 8px, 8px 8px;
}

/* ── Heartbeat Canvas Wrapper ── */
.hb-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hbc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(6, 10, 6, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34, 197, 94, 0.18);
}

.nav-logo {
  font-family: var(--font-d);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--green); }

.nav-logo:hover { color: var(--white); }

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a { color: var(--green); }

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

.nav-phone {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.nav-phone:hover { color: var(--white); }

.nav-cta {
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius);
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--green2);
  color: var(--black);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--green);
  color: var(--black);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.25);
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--green2);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.35);
}

.btn-ghost {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: none;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-sm {
  background: var(--green);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-sm:hover {
  background: var(--green2);
  color: var(--black);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  padding: 60px 8vw;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
  50%       { opacity: 0.15; box-shadow: none; }
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-title em {
  color: var(--green);
  font-style: normal;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 450px;
  margin-bottom: 12px;
}

.hero-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 34px;
}

.hero-legal strong { color: rgba(255, 255, 255, 0.42); }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero card */
.hero-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.stat-box {
  padding: 16px;
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 10px;
}

.stat-number {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 4px;
}

.ship-row {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 10px;
  padding: 13px 15px;
}

.ship-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.ship-text strong { color: var(--green); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--black2);
  border-top: 1px solid rgba(34, 197, 94, 0.09);
  border-bottom: 1px solid rgba(34, 197, 94, 0.09);
  padding: 18px 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 84px 8vw; background: var(--black); }
.section-dark { padding: 84px 8vw; background: var(--black2); position: relative; overflow: hidden; }
.section-mid { padding: 76px 8vw; background: var(--black3); }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 9px;
}

.section-title {
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-title em { color: var(--green); font-style: normal; }

.section-sub {
  font-size: 15px;
  color: var(--gray);
  margin-top: 9px;
  max-width: 500px;
  line-height: 1.6;
}

.section-header { margin-bottom: 46px; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--black2);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(34, 197, 94, 0.38);
}

.product-image {
  height: 200px;
  background: linear-gradient(135deg, var(--black3), var(--black2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.product-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-badge.low {
  background: rgba(250, 176, 5, 0.08);
  color: #c9890a;
  border-color: rgba(250, 176, 5, 0.2);
}

.product-body { padding: 20px; }

.product-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 7px;
}

.product-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

.product-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.product-price small {
  font-size: 10px;
  font-weight: 400;
  color: var(--gray);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.8;
  margin-top: 16px;
}

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-feature { display: flex; gap: 12px; align-items: flex-start; }

.feature-dot {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  margin-top: 3px;
}

.feature-text strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 1px;
}

.feature-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 22px 18px;
}

.info-card.accent {
  grid-column: span 2;
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.16);
}

.info-card-number {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
}

.info-card.accent .info-card-number { font-size: 20px; }

.info-card-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 4px;
  line-height: 1.4;
}

/* ============================================================
   SHIPPING CARRIERS
   ============================================================ */
.carriers-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.carrier-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 28px;
  background: var(--black2);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  transition: all 0.25s ease;
  min-width: 115px;
  text-align: center;
}

.carrier-card:hover {
  border-color: rgba(34, 197, 94, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.carrier-icon { font-size: 26px; }
.carrier-name { font-size: 13px; font-weight: 700; color: var(--white); }
.carrier-tag  { font-size: 11px; color: var(--gray); }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip {
  background: var(--black3);
  padding: 56px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.contact-strip-title {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-strip-sub { font-size: 13px; color: rgba(255, 255, 255, 0.38); }

.contact-strip-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.contact-phone-large {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}

.contact-phone-large:hover { color: var(--white); }

.contact-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.26);
  text-align: right;
  line-height: 1.6;
}

.contact-meta strong { color: rgba(255, 255, 255, 0.42); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--black);
  padding: 84px 8vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(34,197,94,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .section-title,
.cta-section .cta-text,
.cta-section .cta-buttons { position: relative; z-index: 1; }

.cta-text {
  color: rgba(255, 255, 255, 0.42);
  font-size: 15px;
  margin: 14px auto 34px;
  max-width: 460px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT FORM PAGE
   ============================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.contact-form-card {
  background: var(--black2);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.contact-form-card h3 {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select,
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-color: var(--green);
  background: rgba(34, 197, 94, 0.04);
}

.form-group textarea,
.wpcf7-form textarea { resize: vertical; min-height: 110px; }

.form-group select option { background: var(--black2); color: var(--white); }

.form-submit,
.wpcf7-submit {
  width: 100%;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 6px;
}

.form-submit:hover,
.wpcf7-submit:hover { background: var(--green2); }

/* Contact info sidebar */
.contact-info-stack { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  background: var(--black2);
  border: 1px solid rgba(34, 197, 94, 0.11);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.contact-info-card h4 {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 13px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.ci-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.ci-text strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.ci-text span { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.5; }
.ci-text a    { color: var(--green); text-decoration: none; font-size: 13px; font-weight: 600; }
.ci-text a:hover { color: var(--white); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.hour-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 7px;
  padding: 11px 13px;
}

.hour-day {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}

.hour-time { font-size: 13px; color: var(--white); font-weight: 500; }
.hour-time.closed { color: rgba(255, 255, 255, 0.22); }

.call-box {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.call-box-icon { font-size: 26px; margin-bottom: 10px; }

.call-box-number {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.call-box-sub { font-size: 12px; color: var(--gray); margin-bottom: 16px; }

/* ============================================================
   SHOP / FILTER BAR
   ============================================================ */
.filter-bar {
  background: var(--black2);
  border-bottom: 1px solid rgba(34, 197, 94, 0.09);
  padding: 14px 8vw;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 6px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: var(--gray);
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  color: var(--black);
  border-color: var(--green);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 130px 8vw 72px;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero h1 span { color: var(--green); }
.page-hero h1 em   { color: var(--green); font-style: normal; }

.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.42);
  max-width: 460px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #030603;
  padding: 48px 8vw 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 38px;
}

.footer-brand {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  display: block;
  text-decoration: none;
}

.footer-brand span { color: var(--green); }
.footer-brand:hover { color: var(--white); }

.footer-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 10px;
  display: block;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.7;
  max-width: 260px;
}

.footer-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.24);
  margin-bottom: 13px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-links a:hover { color: var(--green); }

.footer-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  display: block;
  margin-bottom: 9px;
}

.footer-phone:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copyright span { color: rgba(255, 255, 255, 0.35); }

.paypal-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.12);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in         { animation: fadeIn 0.7s ease both; }
.fade-in-delay   { animation: fadeIn 0.7s ease 0.22s both; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   WORDPRESS CORE OVERRIDES
   ============================================================ */
.wp-block-button__link {
  background: var(--green);
  color: var(--black);
  border-radius: var(--radius);
  font-weight: 700;
}

.wp-block-button__link:hover {
  background: var(--green2);
  color: var(--black);
}

/* WooCommerce base overrides (if used) */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  border-radius: var(--radius);
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--green2);
  color: var(--black);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; gap: 48px; padding: 48px 6vw; }
  .hero-card          { max-width: 500px; }
  .about-grid         { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-page-grid  { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .site-nav      { padding: 0 5vw; }
  .nav-menu      { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(6,10,6,0.98); padding: 20px 5vw; border-bottom: 1px solid rgba(34,197,94,0.18); gap: 16px; }
  .nav-menu.open { display: flex; }
  .nav-menu a    { font-size: 14px; }
  .nav-toggle    { display: flex; }
  .nav-right .nav-phone { display: none; }

  .hero-inner       { grid-template-columns: 1fr; padding: 40px 5vw; }
  .hero-title       { font-size: clamp(28px, 8vw, 42px); }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .products-grid    { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; gap: 36px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar        { gap: 20px; padding: 16px 5vw; }
  .section          { padding: 60px 5vw; }
  .section-dark     { padding: 60px 5vw; }
  .section-mid      { padding: 52px 5vw; }
  .page-hero        { padding: 110px 5vw 52px; }
  .footer-grid      { grid-template-columns: 1fr; gap: 28px; }
  .footer-desc      { max-width: 100%; }
  .contact-strip    { flex-direction: column; align-items: flex-start; }
  .contact-strip-right { align-items: flex-start; }
  .contact-meta     { text-align: left; }
  .carriers-grid    { gap: 12px; }
  .carrier-card     { padding: 18px 20px; min-width: 100px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .cta-section      { padding: 60px 5vw; }
  .filter-bar       { padding: 12px 5vw; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-actions     { flex-direction: column; align-items: flex-start; }
  .cta-buttons      { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-ghost        { width: 100%; text-align: center; }
}
