/* ═══════════════════════════════════════
   Waypoint Direct Theme — Main Styles
   ═══════════════════════════════════════ */

:root {
  --navy: #1B2A4A;
  --navy-light: #2B4570;
  --navy-lighter: #3A5A8A;
  --red: #9B2335;
  --red-hover: #B22A3E;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --gray-100: #F1F3F5;
  --gray-200: #E2E5E9;
  --gray-300: #C8CDD4;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-800); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 0.3px;
  overflow: hidden;
}
.announcement-bar .ticker {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}
.announcement-bar .ticker span::before {
  content: '◆';
  margin-right: 10px;
  color: var(--red);
  font-size: 8px;
  vertical-align: middle;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 70px;
  width: auto;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--navy); }
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
}
.cart-badge {
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -10px;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  padding: 80px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 12px; }
.btn-primary {
  background: var(--red);
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--red-hover); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--navy); color: white; }

/* Hero image area */
.hero-image {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  background: none;
  border: none;
  height: auto;
}

/* ── Hero Category Cards ── */
.hero-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.hero-cat-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 28px 24px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: block;
}
.hero-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.3);
}
.hero-cat-card.card-accent {
  background: var(--red);
}
.hero-cat-card.card-accent:hover {
  box-shadow: 0 8px 24px rgba(155, 35, 53, 0.3);
}
.hero-cat-card h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
}
.hero-cat-card p {
  color: #a8b4c8;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.hero-cat-card.card-accent p {
  color: #e0bfc5;
}
.hero-cat-card .card-cta {
  color: #e8c8a0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-cat-card .card-cta .arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}
.hero-cat-card:hover .card-cta .arrow {
  transform: translateX(3px);
}
.hero-cat-card.card-accent .card-cta {
  color: #f0d8c0;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy);
  padding: 24px;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.trust-icon-styled {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-styled svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.9);
}

/* ── Section Styles ── */
.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Products Grid ── */
.products-section { background: var(--off-white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27,42,74,0.08);
}
.product-image {
  background: var(--gray-100);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--gray-200);
}
.product-image .placeholder-icon {
  font-size: 48px;
  opacity: 0.4;
}
.product-info { padding: 16px; }
.product-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.product-desc {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.5;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.btn-add-cart {
  background: var(--navy);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font);
}
.btn-add-cart:hover { background: var(--navy-light); }
.products-cta {
  text-align: center;
  margin-top: 36px;
}

/* Homepage only: hide prices, restyle all buttons as Learn More */
.products-section .woocommerce ul.products li.product .price {
  display: none !important;
}
.products-section .woocommerce ul.products li.product {
  text-align: center;
}
.products-section .woocommerce ul.products li.product a img {
  border-radius: 8px;
  transition: transform 0.15s ease;
}
.products-section .woocommerce ul.products li.product a:hover img {
  transform: scale(1.02);
}
.products-section .woocommerce ul.products li.product .button,
.products-section .woocommerce ul.products li.product a[class*="button"] {
  font-size: 0 !important;
  padding: 12px 24px !important;
  margin: auto 16px 16px !important;
  width: calc(100% - 32px) !important;
  display: block !important;
  text-align: center !important;
  box-sizing: border-box !important;
}
.products-section .woocommerce ul.products li.product .button::after,
.products-section .woocommerce ul.products li.product a[class*="button"]::after {
  content: 'Learn More';
  font-size: 13px !important;
}

/* ── About / Split Section ── */
.about-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: 12px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 14px;
  overflow: hidden;
}
.about-content .section-eyebrow { text-align: left; }
.about-content .section-title {
  text-align: left;
  font-size: 30px;
  margin-bottom: 16px;
}
.about-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* About section branded block */
.about-brand-block {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 300px;
  width: 100%;
  height: 100%;
}
.about-brand-block .brand-mark {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.about-brand-block .brand-tagline {
  color: #a8b4c8;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-brand-block .brand-line {
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 20px 0;
}

/* ── Values / Why Us ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
}
.value-icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.value-icon-styled {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
}
.value-icon-styled svg {
  width: 24px;
  height: 24px;
}
.value-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── How It Works ── */
.how-it-works { background: var(--off-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}
.step-connector {
  position: absolute;
  top: 24px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: var(--gray-200);
}
.step-card:last-child .step-connector { display: none; }

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-500);
  transition: transform 0.2s;
}
.faq-question.open::after {
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  padding: 0 0 20px;
  display: none;
}
.faq-answer.open { display: block; }

/* ── Contact Form ── */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px;
  color: white;
}
.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-card > p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.6;
}
.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.9);
}
.contact-detail-text {
  font-size: 14px;
  line-height: 1.5;
}
.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
  color: rgba(255,255,255,0.7);
}
.contact-form-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 36px;
}
.contact-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-form-card > p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.btn-submit {
  background: var(--red);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
  width: 100%;
}
.btn-submit:hover { background: var(--red-hover); }

/* ── Newsletter ── */
.newsletter {
  background: var(--navy);
  padding: 60px 24px;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h2 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.newsletter p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.4); }
.newsletter-form button {
  background: var(--red);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--red-hover); }

/* ── Footer ── */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,0.5);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── WooCommerce Overrides ── */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}
.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27,42,74,0.08);
}
.woocommerce ul.products li.product > a {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img {
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid var(--gray-200);
  height: 250px !important;
  object-fit: cover !important;
  width: 100% !important;
}
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 16px 4px;
  flex-grow: 1;
}
.woocommerce ul.products li.product .price {
  color: var(--navy) !important;
  font-weight: 700;
  font-size: 18px !important;
  padding: 0 16px 8px;
}
.woocommerce ul.products li.product > a.button,
.woocommerce ul.products li.product > a.add_to_cart_button,
.woocommerce ul.products li.product > a.ajax_add_to_cart,
.woocommerce ul.products li.product > a[data-product_id],
.woocommerce ul.products li.product > a[class*="button"]:last-child {
  background-color: var(--navy) !important;
  color: white !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
  margin: auto 16px 16px !important;
  width: calc(100% - 32px) !important;
  display: block !important;
  text-align: center !important;
  box-sizing: border-box !important;
  padding: 12px 16px !important;
  border: none !important;
}
.woocommerce ul.products li.product > a.button:hover,
.woocommerce ul.products li.product > a.add_to_cart_button:hover,
.woocommerce ul.products li.product > a[data-product_id]:hover,
.woocommerce ul.products li.product > a[class*="button"]:last-child:hover {
  background-color: var(--navy-light) !important;
}
.woocommerce a.button,
.woocommerce button.button {
  background-color: var(--navy) !important;
  color: white !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background-color: var(--navy-light) !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background-color: var(--red) !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background-color: var(--red-hover) !important;
}
.woocommerce-page .entry-content,
.woocommerce-page .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* ── WordPress Content ── */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}
.page-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.page-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero-image { display: none; }
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section .section-inner { grid-template-columns: 1fr; }
  .about-image { height: 240px; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .trust-bar-inner { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}