/*
Theme Name: PureMask
Theme URI: https://puremask.com
Author: PureMask Team
Author URI: https://puremask.com
Description: A modern B2B WordPress theme for PureMask — a premium sheet mask OEM/ODM manufacturer. Clean, professional design optimized for global skincare buyers.
Version: 1.27.2
License: GPL-2.0-or-later
Text Domain: puremask
*/

/* ===================================================================
   TAILWIND-COMPATIBLE RESET (mirrors Tailwind preflight)
   Needed because WP/browser defaults add unwanted margin/padding
   to h1-h6, p, ul, li, img, etc.
   =================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove all default margins/padding that break Tailwind spacing */
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, figcaption, blockquote {
  margin: 0;
  padding: 0;
}

/* Headings: no bold/font-size from browser UA stylesheet */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Lists: no bullets/disc by default */
ul, ol {
  list-style: none;
}

/* Images: block-level, no descender gap */
img, svg, video {
  display: block;
  max-width: 100%;
}

/* Links: inherit color, no underline */
a {
  color: inherit;
  text-decoration: inherit;
}

/* Buttons / inputs: normalize */
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  background-color: transparent;
  background-image: none;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}


html {
  scroll-behavior: smooth;
}

/* Bounce animation for scroll indicator */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ===================================================================
   COMPONENT CLASSES (mirrors Tailwind @layer components)
   =================================================================== */

/* Primary CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: #16a34a;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-primary:hover {
  background-color: #15803d;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-primary:active {
  background-color: #166534;
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background-color: #25D366;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.btn-whatsapp:hover {
  background-color: #1ebe5b;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-whatsapp:active {
  background-color: #18a94e;
}

/* Outline Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border: 2px solid #16a34a;
  color: #15803d;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover {
  background-color: #f0fdf4;
}
.btn-outline:active {
  background-color: #dcfce7;
}

/* White Button (for dark backgrounds) */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: #fff;
  color: #15803d;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-white:hover {
  background-color: #f0fdf4;
}
.btn-white:active {
  background-color: #dcfce7;
}

/* Section Titles */
.section-title {
  font-size: 1.875rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #1c1917;
  text-align: center;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  color: #78716c;
  font-size: 1.125rem;
  margin-top: 0.75rem;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Page Container (mirrors container-page) */
.container-page {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container-page {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container-page {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ===================================================================
   NAVIGATION
   =================================================================== */

/* Top bar */
.top-bar {
  background-color: #16a34a;
  color: #fff;
  font-size: 0.75rem;
}
.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Header wrapper */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f5f5f4;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.site-logo .logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: #16a34a;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.site-logo:hover .logo-icon {
  transform: scale(1.05);
}
.site-logo .logo-text {
  font-size: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.25;
}
.site-logo .logo-sub {
  display: block;
  font-size: 0.625rem;
  color: #a8a29e;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Inter', system-ui, sans-serif;
}

/* Blog post card: text truncation */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Custom Logo (image) — uploaded via Customizer > Site Identity */
.custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.custom-logo-link .custom-logo {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Desktop Navigation */
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation ul li a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #57534e;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
  color: #16a34a;
}
.main-navigation ul li a:hover {
  background-color: #f0fdf4;
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #57534e;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: #16a34a;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid #f5f5f4;
  background-color: #fff;
  position: relative;
  z-index: 45;
}
.mobile-menu.active {
  display: block !important;
}
.mobile-navigation ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: block !important;           /* override fallback inline display:flex */
  flex-direction: column;
}
.mobile-navigation ul li a {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #57534e;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}
.mobile-navigation ul li a:hover,
.mobile-navigation ul li.current-menu-item a {
  background-color: #f0fdf4;
  color: #16a34a;
}
.mobile-cta {
  text-align: center;
  padding-bottom: 1rem;
}
.mobile-contact-info {
  border-top: 1px solid #f5f5f4;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  color: #a8a29e;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background-color: #1c1917;
  color: #d6d3d1;
}
.footer-main {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.footer-brand {
  grid-column: span 2;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo .footer-logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: #16a34a;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo .footer-logo-text {
  font-size: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.footer-logo .footer-logo-sub {
  display: block;
  font-size: 0.625rem;
  color: #a8a29e;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Inter', system-ui, sans-serif;
}
.footer-desc {
  font-size: 0.875rem;
  color: #a8a29e;
  margin-bottom: 1.5rem;
  max-width: 20rem;
  line-height: 1.625;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: #292524;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6d3d1;
  text-decoration: none;
  transition: background-color 0.2s;
}
.footer-social a:hover {
  background-color: #16a34a;
}
.footer-col h4 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-family: 'Inter', system-ui, sans-serif;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.625rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: #a8a29e;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #292524;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: #a8a29e;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq-item {
  background-color: #fff;
  border-radius: 0.75rem;
  border: 1px solid #f5f5f4;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #292524;
  font-family: 'Inter', system-ui, sans-serif;
  transition: background-color 0.2s;
}
.faq-question:hover {
  background-color: #fafaf9;
}
.faq-question .faq-arrow {
  color: #a8a29e;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.active .faq-question .faq-arrow {
  color: #16a34a;
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: #57534e;
  line-height: 1.625;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ===================================================================
   FILTER PILLS (Products Page)
   =================================================================== */
.filter-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  transition: all 0.15s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
/* Inactive pill */
.filter-pill--inactive {
  background-color: #f5f5f4;
  color: #57534e;
}
.filter-pill--inactive:hover {
  background-color: #e7e5e4;
}
/* Active pill */
.filter-pill--active {
  background-color: #16a34a;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
/* Material pill — outline style */
.filter-pill--material {
  border: 1px solid #e7e5e4;
  background-color: transparent;
  color: #78716c;
}
.filter-pill--material:hover {
  border-color: #d6d3d1;
}
.filter-pill--material.filter-pill--active {
  border-color: #16a34a;
  background-color: #f0fdf4;
  color: #16a34a;
}

/* ===================================================================
   PRODUCT CARD TAGS
   =================================================================== */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}
.product-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  padding: 0.125rem 0.5rem;
  border-radius: 3px;
  background-color: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  white-space: nowrap;
  line-height: 1.5;
}

/* ===================================================================
   INQUIRY FORM
   =================================================================== */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .inquiry-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.inquiry-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #44403c;
  margin-bottom: 0.375rem;
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid #e7e5e4;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: 'Inter', system-ui, sans-serif;
  color: #1c1917;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #fff;
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}
.inquiry-form textarea {
  resize: vertical;
  min-height: 7.5rem;
}

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background-color: #f0fdf4;
  border-radius: 0.75rem;
  border: 1px solid #bbf7d0;
}
.form-success.active {
  display: block;
}
.form-success .success-icon {
  width: 3rem;
  height: 3rem;
  background-color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* ===================================================================
   PAGE HERO
   =================================================================== */
.page-hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 50%, #f0fdf4 100%);
  padding-top: 4rem;
  padding-bottom: 5rem;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}
.page-hero p {
  color: #78716c;
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================================
   SCREEN READER / ACCESSIBILITY
   =================================================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
/* ===================================================================
   SINGLE PRODUCT PAGE
   =================================================================== */

/* Prose content (for the_content output) */
.prose-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
.prose-content ul,
.prose-content ol {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.prose-content ul li,
.prose-content ol li {
  margin-bottom: 0.5rem;
}
.prose-content h3,
.prose-content h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  color: #1c1917;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.prose-content h3 { font-size: 1.125rem; }
.prose-content h4 { font-size: 1rem; }

/* Specs table (single product) */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr {
  border-bottom: 1px solid #f5f5f4;
}
.specs-table tr:last-child {
  border-bottom: none;
}
.specs-table td:first-child {
  font-weight: 500;
  color: #44403c;
  background-color: #fafaf9;
}
.specs-table td:last-child {
  color: #57534e;
}

/* ===================================================================
   FACTORY & R&D CAPABILITIES (Homepage)
   =================================================================== */
.factory-capabilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .factory-capabilities {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.factory-capabilities__image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}
.factory-capabilities__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.factory-capabilities__image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #16a34a;
  font-size: 0.875rem;
  font-weight: 500;
}

.factory-capabilities__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #16a34a;
  background-color: #f0fdf4;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.factory-capabilities__title {
  font-size: 2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.25;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .factory-capabilities__title {
    font-size: 2.25rem;
  }
}

.factory-capabilities__desc {
  font-size: 1rem;
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 36rem;
}

/* Metrics Grid */
.factory-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .factory-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.factory-metric {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.factory-metric__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background-color: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.factory-metric__number {
  font-size: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.2;
}
.factory-metric__label {
  font-size: 0.8rem;
  color: #78716c;
  line-height: 1.4;
}

/* ===================================================================
   OEM/ODM PROCESS STEPS (Homepage)
   =================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
}
@media (min-width: 640px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: #16a34a;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Connector line between steps (desktop only) */
@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.375rem;
    left: calc(50% + 1.375rem);
    width: calc(100% - 2.75rem);
    height: 2px;
    background: linear-gradient(to right, #16a34a, #d1d5db);
    z-index: 1;
  }
}

.process-step__card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid #f5f5f4;
  transition: box-shadow 0.2s;
  width: 100%;
}
.process-step__card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.process-step__icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-step__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-family: 'Inter', system-ui, sans-serif;
}

.process-step__desc {
  font-size: 0.8rem;
  color: #78716c;
  line-height: 1.6;
}

/* ===================================================================
   COOKIE CONSENT BAR
   =================================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #e7e5e4;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-consent.active {
  transform: translateY(0);
}
.cookie-consent__text {
  flex: 1 1 280px;
  font-size: 0.875rem;
  color: #44403c;
  line-height: 1.6;
}
.cookie-consent__text a {
  color: #16a34a;
  text-decoration: underline;
  font-weight: 500;
}
.cookie-consent__text a:hover {
  color: #15803d;
}
.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-consent__btn {
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: 'Inter', system-ui, sans-serif;
}
.cookie-consent__btn--accept {
  background: #16a34a;
  color: #fff;
}
.cookie-consent__btn--accept:hover {
  background: #15803d;
}
.cookie-consent__btn--deny {
  background: #f5f5f4;
  color: #57534e;
}
.cookie-consent__btn--deny:hover {
  background: #e7e5e4;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

/*
 * BREAKPOINT: < 1200px — Tablet / Mobile
 * Switch to hamburger menu, stack layouts
 */
@media (max-width: 1199px) {

  /* ---------- HEADER / NAVIGATION ---------- */

  /* Hide desktop navigation and CTA */
  .main-navigation,
  .nav-cta {
    display: none !important;
  }

  /* Show hamburger toggle */
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
  }

  /* Slightly shorter header on mobile */
  .header-inner {
    height: 3.5rem;
  }

  /* ---------- HERO SECTION ---------- */
  .hero-section,
  section[style*="min-height:600px"] {
    min-height: 500px !important;
  }
}

/*
 * BREAKPOINT: < 768px — Mobile Phones
 */
@media (max-width: 767px) {

  /* ---------- HERO ---------- */
  section[style*="min-height"] {
    min-height: 460px !important;
  }

  /* Reduce hero vertical padding */
  section[style*="min-height"] .container-page {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  /* Hide scroll indicator on small mobile */
  section[style*="min-height"] > div[style*="bottom:32px"] {
    display: none;
  }

  /* Hero title smaller */
  .font-display {
    font-size: clamp(1.6rem, 6vw, 2.5rem) !important;
  }

  /* Hero buttons stack */
  section[style*="min-height"] .flex.flex-wrap.gap-4 {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  section[style*="min-height"] .flex.flex-wrap.gap-4 a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
  }

  /* Hero trust indicators */
  section[style*="min-height"] .flex.flex-wrap.gap-6 {
    gap: 0.75rem !important;
    margin-top: 1.5rem !important;
    padding-top: 1rem !important;
  }

  section[style*="min-height"] .flex.flex-wrap.gap-6 > div {
    font-size: 0.75rem !important;
  }

  section[style*="min-height"] .flex.flex-wrap.gap-6 svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* Hero badge */
  section[style*="min-height"] [style*="border-radius:999px"] {
    font-size: 0.7rem !important;
    padding: 4px 12px !important;
    margin-bottom: 16px !important;
  }

  /* ---------- SECTION TITLES ---------- */
  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* ---------- SECTION SPACING ---------- */
  .py-16 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pt-8 {
    padding-top: 1.5rem;
  }

  .pb-8 {
    padding-bottom: 1.5rem;
  }

  .mb-12 {
    margin-bottom: 2rem;
  }

  .mt-10 {
    margin-top: 1.5rem;
  }

  .mt-12 {
    margin-top: 2rem;
  }

  .gap-8 {
    gap: 1.25rem;
  }

  /* ---------- VALUE PROPS GRID — force 1 column ---------- */
  .grid-cols-1 {
    grid-template-columns: 1fr !important;
  }

  [class*="sm:grid-cols-2"] {
    grid-template-columns: 1fr !important;
  }

  /* ---------- CTA SECTION ---------- */
  section[style*="background:#16a34a"] .container-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  section[style*="background:#16a34a"] h2 {
    font-size: 1.5rem !important;
  }

  section[style*="background:#16a34a"] .flex.flex-wrap,
  section[style*="background:#16a34a"] [class*="flex-wrap"] {
    flex-direction: column;
    width: 100%;
  }

  section[style*="background:#16a34a"] a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ---------- BLOG SECTION ---------- */
  .grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  .grid-cols-3 {
    grid-template-columns: 1fr !important;
  }

  .grid-cols-4 {
    grid-template-columns: 1fr !important;
  }

  /* ---------- FOOTER ---------- */
  .footer-main {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* ---------- COOKIE CONSENT ---------- */
  .cookie-consent {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .cookie-consent__text {
    font-size: 0.8rem;
  }

  .cookie-consent__actions {
    width: 100%;
    justify-content: center;
  }
}

/*
 * BREAKPOINT: < 640px — Small Phones
 */
@media (max-width: 639px) {

  /* ---------- LOGO ---------- */
  .site-logo .logo-text {
    font-size: 1.1rem;
  }

  .site-logo .logo-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  /* ---------- MOBILE MENU ---------- */
  .mobile-navigation ul li a {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  /* ---------- PRODUCT CARDS ---------- */
  .grid.grid-cols-1.sm\\:grid-cols-2 {
    gap: 1rem;
  }
}
