/*
Theme Name: Proactiva Textil
Theme URI: https://proactivatextil.com.mx
Description: Child theme de Kadence para Proactiva Textil, fabricante de bolsas ecologicas y textiles personalizados. Incluye tokens de marca, boton flotante de WhatsApp accesible y schema LocalBusiness. Optimizado para Core Web Vitals.
Author: Proactiva Textil
Template: kadence
Version: 1.2.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: proactiva-textil
*/

/* ============================================================
   1. Design tokens
   ============================================================ */
:root {
  --pt-brand: #a5c83f;
  --pt-brand-hover: #8ab030;
  --pt-craft: #0b617e;
  --pt-manta: #D6C5A0;
  --pt-ink: #042f3d;
  --pt-ink-2: #08394A;
  --pt-muted: #64748B;
  --pt-border: #E2E8E0;
  --pt-bg: #F5F8EE;
  --pt-surface: #FFFFFF;
  --pt-success: #16A34A;
  --pt-danger: #DC2626;
  --pt-whatsapp: #25D366;
  --pt-whatsapp-hover: #1EBE5A;

  --pt-font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --pt-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --pt-space-1: 4px;
  --pt-space-2: 8px;
  --pt-space-3: 12px;
  --pt-space-4: 16px;
  --pt-space-6: 24px;
  --pt-space-8: 32px;
  --pt-space-12: 48px;
  --pt-space-16: 64px;
  --pt-space-24: 96px;

  --pt-radius: 10px;
  --pt-container: 1280px;
  
  --pt-shadow-sm: 0 1px 2px 0 rgba(4, 47, 61, 0.05);
  --pt-shadow: 0 4px 6px -1px rgba(4, 47, 61, 0.08), 0 2px 4px -1px rgba(4, 47, 61, 0.04);
  --pt-shadow-md: 0 10px 15px -3px rgba(4, 47, 61, 0.08), 0 4px 6px -2px rgba(4, 47, 61, 0.04);
  --pt-shadow-lg: 0 20px 25px -5px rgba(4, 47, 61, 0.08), 0 10px 10px -5px rgba(4, 47, 61, 0.04);
  --pt-shadow-xl: 0 25px 50px -12px rgba(4, 47, 61, 0.15);
}

/* ============================================================
   2. Map brand tokens onto Kadence global palette.
   ============================================================ */
:root {
  --global-palette1: var(--pt-brand);
  --global-palette2: var(--pt-brand-hover);
  --global-palette3: var(--pt-ink);
  --global-palette4: var(--pt-ink);
  --global-palette5: var(--pt-ink-2);
  --global-palette6: var(--pt-muted);
  --global-palette7: var(--pt-border);
  --global-palette8: var(--pt-bg);
  --global-palette9: var(--pt-surface);

  --global-palette-btn: var(--pt-surface);
  --global-palette-btn-bg: var(--pt-brand);
  --global-palette-btn-hover: var(--pt-surface);
  --global-palette-btn-bg-hover: var(--pt-brand-hover);
}

/* ============================================================
   3. Typography & Base
   ============================================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--pt-font-body);
  color: var(--pt-ink-2);
  background-color: var(--pt-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 90px; /* Compensate fixed header */
}

h1, h2, h3, h4, h5, h6,
.entry-title, .site-title {
  font-family: var(--pt-font-head);
  color: var(--pt-ink);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 24px); }
h4 { font-size: clamp(18px, 2vw, 20px); }

p, li { line-height: 1.7; }

body a { 
  color: var(--pt-brand); 
  transition: color 0.15s ease-out;
}
body a:hover { 
  color: var(--pt-brand-hover); 
}

/* ============================================================
   4. Accessibility - visible focus rings
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--pt-brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip to content link */
.skip-to-content-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pt-brand);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 var(--pt-radius) var(--pt-radius);
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  z-index: 100000;
  transition: top 0.2s ease-out;
  box-shadow: var(--pt-shadow-lg);
}

.skip-to-content-link:focus {
  top: 0;
  outline: none;
}

/* ============================================================
   5. Floating WhatsApp button
   ============================================================ */


/* ============================================================
   6. Layout
   ============================================================ */
.content-container,
.site-container { max-width: var(--pt-container); }

/* ============================================================
   7. Respect reduced-motion preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   8. HEADER & NAVIGATION
   ============================================================ */

/* Sticky header — fixed with height reduction on scroll */
.site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--pt-surface);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.site-header-wrap.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Compensate admin bar */
.admin-bar .site-header-wrap {
  top: 32px;
}

.admin-bar body {
  padding-top: 102px;
}

@media (max-width: 782px) {
  .admin-bar .site-header-wrap {
    top: 46px;
  }
  
  .admin-bar body {
    padding-top: 116px;
  }
}

/* Header inner layout */
.site-header-inner-wrap {
  padding-top: 18px;
  padding-bottom: 18px;
  transition: all 0.3s ease;
}

.site-header-wrap.is-scrolled .site-header-inner-wrap {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header-wrap.is-scrolled .site-branding .custom-logo {
  height: 34px;
}

.site-branding .custom-logo {
  transition: height 0.3s ease;
}

/* Make header inner relative so mega menu can anchor */
.site-header-inner-wrap {
  position: relative;
}

/* Brand / Logo area */
.site-branding {
  display: flex;
  align-items: center;
}

.site-branding a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--pt-ink);
  font-family: var(--pt-font-head);
  font-weight: 700;
  font-size: 20px;
  transition: opacity 0.15s ease-out;
}

.site-branding a:hover {
  opacity: 0.8;
}

.site-branding .custom-logo {
  height: 40px;
  width: auto;
}

/* SVG logo fallback */
.pt-logo-svg {
  flex-shrink: 0;
  width: auto;
  height: 47px;
  display: block;
}

.site-branding a {
  display: inline-flex !important;
  align-items: center;
  gap: 0;
  text-decoration: none !important;
}

.site-branding .site-title {
  display: none !important;
}

/* Navigation menu */
.main-navigation .menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-navigation .menu > li {
  position: relative;
}

.main-navigation .menu > li > a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--pt-ink);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease-out;
}

/* Hide default sub-menu for mega menu item */
.main-navigation .menu > li.has-mega-menu > .sub-menu {
  display: none !important;
}

/* Animated underline on hover (left to right) */
.main-navigation .menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--pt-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease-out;
  border-radius: 2px;
}

.main-navigation .menu > li > a:hover::after,
.main-navigation .menu > li.current-menu-item > a::after,
.main-navigation .menu > li.current_page_item > a::after {
  transform: scaleX(1);
}

.main-navigation .menu > li > a:hover,
.main-navigation .menu > li.current-menu-item > a,
.main-navigation .menu > li.current_page_item > a {
  color: var(--pt-brand);
}

/* Dropdown menus (non-mega) */
.main-navigation .sub-menu {
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  box-shadow: var(--pt-shadow-lg);
  padding: 8px 0;
  min-width: 200px;
}

.main-navigation .sub-menu li a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--pt-ink-2);
  transition: background-color 0.15s ease-out, color 0.15s ease-out;
}

.main-navigation .sub-menu li a:hover {
  background: rgba(165, 200, 63, 0.08);
  color: var(--pt-ink);
}

/* CTA Button in header — injected via wp_nav_menu_items */
.pt-header-cta-item {
  margin-left: 8px;
  list-style: none;
}

.pt-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--pt-brand);
  color: #fff !important;
  border-radius: 8px;
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.18s ease-out, transform 0.18s ease-out, box-shadow 0.18s ease-out;
  box-shadow: 0 4px 14px rgba(165, 200, 63, 0.28);
  min-height: 44px;
}

.pt-header-cta:hover,
.pt-header-cta:focus-visible {
  background: var(--pt-brand-hover);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(165, 200, 63, 0.35);
}

/* Mobile menu toggle */
.mobile-toggle-open-container .menu-toggle-open {
  padding: 10px;
  border-radius: var(--pt-radius);
  transition: background-color 0.15s ease-out;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle-open-container .menu-toggle-open:hover {
  background: rgba(165, 200, 63, 0.1);
}

/* Mobile navigation panel */
.mobile-navigation {
  background: var(--pt-surface);
}

.mobile-navigation .drawer-nav-drop-wrap {
  background: transparent;
}

.mobile-navigation .drawer-nav-drop-wrap a {
  font-family: var(--pt-font-head);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 20px;
  color: var(--pt-ink-2);
  border-bottom: 1px solid var(--pt-border);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-navigation .drawer-nav-drop-wrap a:hover {
  color: var(--pt-brand);
  background: rgba(165, 200, 63, 0.04);
}

/* Mobile CTA area */
.pt-mobile-cta {
  display: none;
  padding: 20px;
  border-top: 1px solid var(--pt-border);
}

.pt-mobile-cta .pt-header-cta {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */
body .pt-hero,
body .pt-hero.kb-row-layout-wrap {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(165,200,63,.20), transparent 60%),
              linear-gradient(135deg, #F5F8EE 0%, #E8F0D8 70%) !important;
  color: var(--pt-ink);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

body .pt-hero--with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pt-space-8);
  align-items: center;
}

@media (min-width: 900px) {
  body .pt-hero--with-image {
    grid-template-columns: 1fr 1fr;
    gap: var(--pt-space-16);
  }
}

body .pt-hero__media {
  position: relative;
  border-radius: var(--pt-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(4,47,61,.15);
}

body .pt-hero__media img {
  width: 100%;
  height: auto;
  display: block;
}

body .pt-hero__media-badge {
  position: absolute;
  bottom: var(--pt-space-4);
  left: var(--pt-space-4);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: var(--pt-space-3) var(--pt-space-4);
  border-radius: var(--pt-radius);
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--pt-ink);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Hero content styling */
body .pt-hero .pt-wrap { padding-block: var(--pt-space-24); }
body .pt-hero h1 { 
  color: var(--pt-ink); 
  font-size: clamp(34px, 6vw, 60px); 
  line-height: 1.08; 
  margin: 0 0 var(--pt-space-4); 
  max-width: 18ch; 
  font-weight: 700;
}
body .pt-hero .pt-eyebrow { 
  color: var(--pt-craft); 
  font-weight: 600;
  letter-spacing: 0.1em;
}
body .pt-hero .pt-lead { 
  color: var(--pt-ink-2); 
  font-size: clamp(17px, 2.2vw, 20px); 
  margin-bottom: var(--pt-space-8); 
  max-width: 55ch;
}
body .pt-hero__note { 
  margin-top: var(--pt-space-6); 
  font-size: 14px; 
  color: var(--pt-muted); 
}

/* Hero buttons */
body .pt-hero .pt-btns {
  margin-top: var(--pt-space-6);
}

/* Parallax-like subtle animation for hero content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pt-hero .pt-wrap > * {
  animation: fadeInUp 0.8s ease-out forwards;
}

.pt-hero .pt-wrap > *:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
.pt-hero .pt-wrap > *:nth-child(2) { animation-delay: 0.2s; opacity: 0; }
.pt-hero .pt-wrap > *:nth-child(3) { animation-delay: 0.3s; opacity: 0; }
.pt-hero .pt-wrap > *:nth-child(4) { animation-delay: 0.4s; opacity: 0; }
.pt-hero .pt-wrap > *:nth-child(5) { animation-delay: 0.5s; opacity: 0; }

/* ============================================================
   10. BODY CONTENT & SECTIONS
   ============================================================ */

/* Section spacing */
.pt-section { padding-block: var(--pt-space-16); }
.pt-section--tight { padding-block: var(--pt-space-12); }

/* Container */
.pt-wrap {
  width: 100%;
  max-width: var(--pt-container);
  margin-inline: auto;
  padding-inline: var(--pt-space-4);
}

@media (min-width: 768px) { 
  .pt-wrap { padding-inline: var(--pt-space-6); } 
}

/* Eyebrow text */
.pt-eyebrow {
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pt-craft);
  margin: 0 0 var(--pt-space-3);
}

/* Lead text */
.pt-lead {
  font-size: 18px;
  color: var(--pt-ink-2);
  max-width: 60ch;
}

/* Heading rhythm */
.pt-h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 var(--pt-space-4); }
.pt-h3 { font-size: clamp(20px, 2.4vw, 24px); margin: 0 0 var(--pt-space-2); }

/* Section heading block */
.pt-shead { max-width: 720px; margin-bottom: var(--pt-space-12); }
.pt-shead--center { margin-inline: auto; text-align: center; }
.pt-shead--center .pt-lead { margin-inline: auto; }

/* ============================================================
   11. BUTTONS
   ============================================================ */
.pt-btns { 
  display: flex; 
  flex-wrap: wrap; 
  gap: var(--pt-space-4); 
  align-items: center; 
}

.pt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--pt-radius);
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  text-decoration: none;
  transition: transform .18s ease-out, background-color .18s ease-out, box-shadow .18s ease-out;
  border: none;
  cursor: pointer;
}

body .pt-btn--primary { 
  background: var(--pt-brand) !important; 
  color: #fff !important; 
  box-shadow: 0 4px 14px rgba(165,200,63,.28); 
}
body .pt-btn--primary:hover, body .pt-btn--primary:focus-visible { 
  background: var(--pt-brand-hover) !important; 
  color: #fff !important; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(165,200,63,.35);
}

body .pt-btn--wa { 
  background: var(--pt-whatsapp); 
  color: #fff; 
}
body .pt-btn--wa:hover, body .pt-btn--wa:focus-visible { 
  background: var(--pt-whatsapp-hover); 
  color: #fff; 
  transform: translateY(-2px); 
}

body .pt-btn--ghost { 
  background: transparent; 
  color: var(--pt-brand) !important; 
  box-shadow: inset 0 0 0 2px var(--pt-border); 
}
body .pt-btn--ghost:hover, body .pt-btn--ghost:focus-visible { 
  box-shadow: inset 0 0 0 2px var(--pt-brand); 
  color: var(--pt-brand-hover) !important; 
}

body .pt-btn--on-dark { 
  background: #fff; 
  color: var(--pt-ink); 
}
body .pt-btn--on-dark:hover, body .pt-btn--on-dark:focus-visible { 
  background: var(--pt-manta); 
  color: var(--pt-ink); 
  transform: translateY(-2px); 
}

/* ============================================================
   12. CARDS & GRIDS
   ============================================================ */
.pt-grid { 
  display: grid; 
  gap: var(--pt-space-6); 
  grid-template-columns: 1fr; 
}

@media (min-width: 640px) { 
  .pt-grid--3 { grid-template-columns: repeat(2, 1fr); } 
}

@media (min-width: 1024px) { 
  .pt-grid--3 { grid-template-columns: repeat(3, 1fr); } 
}

@media (min-width: 768px) { 
  .pt-grid--auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } 
}

.pt-card {
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  padding: var(--pt-space-8);
  transition: box-shadow .18s ease-out, transform .18s ease-out;
}

.pt-card--link:hover, 
.pt-card--link:focus-within { 
  box-shadow: var(--pt-shadow-lg); 
  transform: translateY(-3px); 
}

.pt-card h3 { 
  font-size: 20px; 
  margin: 0 0 var(--pt-space-2); 
  color: var(--pt-ink); 
}

.pt-card p { 
  margin: 0 0 var(--pt-space-3); 
  color: var(--pt-ink-2); 
}

.pt-card a.pt-card__cta { 
  font-family: var(--pt-font-head); 
  font-weight: 600; 
  text-decoration: none; 
}

.pt-card__icon { 
  width: 44px; 
  height: 44px; 
  color: var(--pt-brand); 
  margin-bottom: var(--pt-space-4); 
}

/* ============================================================
   13. PROCESS STEPS
   ============================================================ */
.pt-steps { 
  counter-reset: step; 
  display: grid; 
  gap: var(--pt-space-6); 
  grid-template-columns: 1fr; 
}

@media (min-width: 640px) { 
  .pt-steps { grid-template-columns: repeat(2, 1fr); } 
}

@media (min-width: 1024px) { 
  .pt-steps { grid-template-columns: repeat(4, 1fr); } 
}

.pt-step { 
  position: relative; 
  padding-top: var(--pt-space-12); 
}

.pt-step::before {
  counter-increment: step; 
  content: counter(step);
  position: absolute; 
  top: 0; 
  left: 0;
  width: 48px; 
  height: 48px; 
  border-radius: 999px;
  display: grid; 
  place-items: center;
  background: var(--pt-brand); 
  color: #fff;
  font-family: var(--pt-font-head); 
  font-weight: 700; 
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(165, 200, 63, 0.3);
}

.pt-step h3 { 
  font-size: 18px; 
  margin: 0 0 6px; 
  color: var(--pt-ink); 
}

.pt-step p { 
  margin: 0; 
  color: var(--pt-ink-2); 
  font-size: 15px; 
}

/* ============================================================
   14. FAQ ACCORDION
   ============================================================ */
.pt-faq details {
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  padding: var(--pt-space-4) var(--pt-space-6);
  margin-bottom: var(--pt-space-3);
  transition: box-shadow 0.2s ease-out;
}

.pt-faq details:hover {
  box-shadow: var(--pt-shadow-sm);
}

.pt-faq details[open] {
  box-shadow: var(--pt-shadow);
}

.pt-faq summary {
  font-family: var(--pt-font-head); 
  font-weight: 600; 
  font-size: 17px; 
  color: var(--pt-ink);
  cursor: pointer; 
  list-style: none; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: var(--pt-space-4);
  padding: 4px 0;
}

.pt-faq summary::-webkit-details-marker { 
  display: none; 
}

.pt-faq summary::after { 
  content: "+"; 
  font-size: 24px; 
  color: var(--pt-brand); 
  transition: transform 0.25s ease-out; 
  flex-shrink: 0;
}

.pt-faq details[open] summary::after { 
  content: "\2212"; 
}

.pt-faq details[open] summary { 
  margin-bottom: var(--pt-space-3); 
}

.pt-faq p { 
  margin: 0; 
  color: var(--pt-ink-2); 
  line-height: 1.7;
}

/* Smooth accordion animation */
.pt-faq details::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 0.3s ease-out, content-visibility 0.3s ease-out;
  transition-behavior: allow-discrete;
}

.pt-faq details[open]::details-content {
  block-size: auto;
}

/* ============================================================
   15. CTA BAND
   ============================================================ */
.pt-cta-band {
  background: linear-gradient(135deg, var(--pt-brand) 0%, var(--pt-brand-hover) 100%);
  color: #fff;
  border-radius: var(--pt-radius);
}

.pt-cta-band .pt-wrap { 
  padding-block: var(--pt-space-16); 
  text-align: center; 
}

.pt-cta-band h2 { 
  color: #fff; 
  font-size: clamp(26px, 4vw, 38px); 
  margin: 0 0 var(--pt-space-4); 
}

.pt-cta-band p { 
  color: rgba(255,255,255,.9); 
  max-width: 60ch; 
  margin-inline: auto; 
  margin-bottom: var(--pt-space-8); 
}

.pt-cta-band .pt-btns { 
  justify-content: center; 
}

/* ============================================================
   16. TRUST BAND / STATS
   ============================================================ */
.pt-trust { 
  background: var(--pt-surface); 
  border-block: 1px solid var(--pt-border); 
}

.pt-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--pt-space-8) var(--pt-space-4);
  text-align: center;
}

@media (min-width: 768px) { 
  .pt-stats { grid-template-columns: repeat(4, 1fr); } 
}

.pt-stat__num { 
  font-family: var(--pt-font-head); 
  font-weight: 800; 
  font-size: clamp(30px, 4.5vw, 44px); 
  color: var(--pt-brand); 
  line-height: 1; 
}

.pt-stat__label { 
  font-size: 15px; 
  color: var(--pt-ink-2); 
  margin-top: 6px; 
}

/* ============================================================
   17. PRODUCT SHOWCASE GRID
   ============================================================ */
.pt-product-grid {
  display: grid;
  gap: var(--pt-space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 480px) { 
  .pt-product-grid { grid-template-columns: repeat(2, 1fr); } 
}

@media (min-width: 768px) { 
  .pt-product-grid { grid-template-columns: repeat(3, 1fr); } 
}

@media (min-width: 1024px) { 
  .pt-product-grid { grid-template-columns: repeat(3, 1fr); } 
}

.pt-product-card {
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  overflow: hidden;
  transition: box-shadow .18s ease-out, transform .18s ease-out;
  display: flex;
  flex-direction: column;
}

.pt-product-card:hover, 
.pt-product-card:focus-within {
  box-shadow: var(--pt-shadow-lg);
  transform: translateY(-3px);
}

.pt-product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pt-bg);
}

.pt-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease-out;
}

.pt-product-card:hover .pt-product-card__image img {
  transform: scale(1.05);
}

.pt-product-card__badge {
  position: absolute;
  top: var(--pt-space-3);
  left: var(--pt-space-3);
  background: var(--pt-brand);
  color: #fff;
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 6px;
}

.pt-product-card__content {
  padding: var(--pt-space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pt-product-card__title {
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-2);
  line-height: 1.3;
}

.pt-product-card__price {
  font-family: var(--pt-font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--pt-brand);
  margin: 0 0 var(--pt-space-4);
}

.pt-product-card__price .woocommerce-Price-currencySymbol {
  font-size: 14px;
  vertical-align: super;
}

.pt-product-card__desc {
  font-size: 14px;
  color: var(--pt-muted);
  margin: 0 0 var(--pt-space-4);
  line-height: 1.5;
  flex: 1;
}

.pt-product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  background: var(--pt-brand);
  color: #fff;
  border-radius: var(--pt-radius);
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color .18s ease-out, transform .18s ease-out;
  width: 100%;
}

.pt-product-card__cta:hover, 
.pt-product-card__cta:focus-visible {
  background: var(--pt-brand-hover);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   18. WOOCOMMERCE STYLES
   ============================================================ */

/* Archive page header */
.woocommerce-products-header {
  background: var(--pt-bg);
  padding: var(--pt-space-16) 0 var(--pt-space-8);
  margin-bottom: var(--pt-space-8);
  text-align: center;
}

.woocommerce-products-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 var(--pt-space-4);
}

/* Product grid on archive */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--pt-space-6);
  margin: 0;
  padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

@media (min-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .woocommerce ul.products.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.woocommerce ul.products li.product {
  float: none;
  width: 100%;
  margin: 0;
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  overflow: hidden;
  transition: box-shadow .18s ease-out, transform .18s ease-out;
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product:hover {
  box-shadow: var(--pt-shadow-lg);
  transform: translateY(-3px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
}

.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 0;
  transition: transform .3s ease-out;
}

.woocommerce ul.products li.product:hover img {
  transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--pt-ink);
  padding: var(--pt-space-4) var(--pt-space-4) 0;
  margin: 0;
  line-height: 1.3;
}

.woocommerce ul.products li.product .price {
  font-family: var(--pt-font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--pt-brand);
  padding: var(--pt-space-2) var(--pt-space-4);
  margin: 0;
}

.woocommerce ul.products li.product .price del {
  color: var(--pt-muted);
  font-weight: 400;
  font-size: 14px;
  margin-right: 8px;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale {
  position: absolute;
  top: var(--pt-space-3);
  left: var(--pt-space-3);
  background: var(--pt-danger);
  color: #fff;
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 6px;
  min-height: auto;
  line-height: 1;
  border: none;
}

.woocommerce ul.products li.product {
  position: relative;
}

/* Add to cart button on archive */
.woocommerce ul.products li.product .button {
  margin: 0 var(--pt-space-4) var(--pt-space-4);
  padding: 10px 16px;
  background: var(--pt-brand);
  color: #fff;
  border-radius: var(--pt-radius);
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: background-color .18s ease-out, transform .18s ease-out;
  border: none;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--pt-brand-hover);
  transform: translateY(-2px);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
  margin-top: var(--pt-space-12);
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  float: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: var(--pt-radius);
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--pt-ink-2);
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  transition: all 0.15s ease-out;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--pt-brand);
  color: #fff;
  border-color: var(--pt-brand);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--pt-brand);
  color: #fff;
  border-color: var(--pt-brand);
}

/* Result count & ordering */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: var(--pt-space-6);
}

.woocommerce .woocommerce-ordering select {
  padding: 10px 14px;
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  background: var(--pt-surface);
  color: var(--pt-ink);
  font-family: var(--pt-font-body);
  font-size: 14px;
  cursor: pointer;
}

.woocommerce .woocommerce-ordering select:focus {
  outline: none;
  border-color: var(--pt-brand);
  box-shadow: 0 0 0 3px rgba(165,200,63,.18);
}

/* Grid/List toggle */
.woocommerce .kadence-shop-top-wrap {
  margin-bottom: var(--pt-space-6);
  padding: var(--pt-space-4);
  background: var(--pt-surface);
  border-radius: var(--pt-radius);
  border: 1px solid var(--pt-border);
}

/* Single Product Page */
.single-product .product {
  display: grid;
  gap: var(--pt-space-12);
}

@media (min-width: 768px) {
  .single-product .product {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Product gallery */
.woocommerce-product-gallery {
  border-radius: var(--pt-radius);
  overflow: hidden;
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
}

.woocommerce-product-gallery__wrapper {
  border-radius: var(--pt-radius);
}

.woocommerce-product-gallery__image img {
  border-radius: var(--pt-radius);
}

/* Product title */
.single-product .product .product_title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin: 0 0 var(--pt-space-4);
  line-height: 1.2;
}

/* Price */
.single-product .product .price {
  font-family: var(--pt-font-head);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--pt-brand);
  margin: 0 0 var(--pt-space-4);
}

.single-product .product .price del {
  color: var(--pt-muted);
  font-weight: 400;
  font-size: 18px;
  margin-right: 12px;
}

.single-product .product .price ins {
  text-decoration: none;
}

/* Short description */
.single-product .product .woocommerce-product-details__short-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pt-ink-2);
  margin-bottom: var(--pt-space-6);
}

/* Quantity and Add to Cart */
.single-product .product .cart {
  margin-bottom: var(--pt-space-6);
}

.woocommerce .quantity .qty {
  width: 80px;
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  font-family: var(--pt-font-body);
  font-size: 16px;
  text-align: center;
}

.woocommerce .quantity .qty:focus {
  outline: none;
  border-color: var(--pt-brand);
  box-shadow: 0 0 0 3px rgba(165,200,63,.18);
}

.single-product .product .single_add_to_cart_button {
  width: 100%;
  min-height: 52px;
  padding: 14px 28px;
  background: var(--pt-brand);
  color: #fff;
  border-radius: var(--pt-radius);
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: background-color .18s ease-out, transform .18s ease-out, box-shadow .18s ease-out;
  box-shadow: 0 4px 14px rgba(165,200,63,.28);
}

.single-product .product .single_add_to_cart_button:hover {
  background: var(--pt-brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(165,200,63,.35);
}

/* Product meta */
.single-product .product .product_meta {
  font-size: 14px;
  color: var(--pt-muted);
  padding-top: var(--pt-space-4);
  border-top: 1px solid var(--pt-border);
}

.single-product .product .product_meta a {
  color: var(--pt-brand);
  text-decoration: none;
}

.single-product .product .product_meta a:hover {
  text-decoration: underline;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0 0 var(--pt-space-6);
  padding: 0;
  border-bottom: 2px solid var(--pt-border);
  display: flex;
  gap: 4px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background: transparent;
  border-radius: var(--pt-radius) var(--pt-radius) 0 0;
  margin: 0;
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 14px 24px;
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--pt-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.15s ease-out;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--pt-brand);
  border-bottom-color: var(--pt-brand);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs .panel {
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  padding: var(--pt-space-8);
  margin: 0;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 22px;
  margin: 0 0 var(--pt-space-4);
}

.woocommerce div.product .woocommerce-tabs .panel p {
  line-height: 1.7;
}

/* Related products */
.related.products {
  margin-top: var(--pt-space-16);
}

.related.products > h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: var(--pt-space-8);
  text-align: center;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
  font-size: 14px;
  color: var(--pt-muted);
  margin-bottom: var(--pt-space-6);
  padding: var(--pt-space-3) 0;
}

.woocommerce-breadcrumb a {
  color: var(--pt-brand);
  text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}

/* Cart page */
.woocommerce-cart .woocommerce-cart-form {
  background: var(--pt-surface);
  border-radius: var(--pt-radius);
  padding: var(--pt-space-6);
  border: 1px solid var(--pt-border);
}

.woocommerce-cart table.cart {
  border-radius: var(--pt-radius);
  overflow: hidden;
}

.woocommerce-cart table.cart th {
  background: var(--pt-bg);
  font-family: var(--pt-font-head);
  font-weight: 600;
  color: var(--pt-ink);
  padding: 14px 16px;
}

.woocommerce-cart table.cart td {
  padding: 16px;
  vertical-align: middle;
}

.woocommerce-cart table.cart .product-name a {
  color: var(--pt-ink);
  font-weight: 600;
  text-decoration: none;
}

.woocommerce-cart table.cart .product-name a:hover {
  color: var(--pt-brand);
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal {
  font-weight: 600;
  color: var(--pt-brand);
}

.woocommerce-cart table.cart .product-thumbnail img {
  border-radius: 8px;
  width: 80px;
  height: auto;
}

.woocommerce-cart .cart_totals {
  background: var(--pt-surface);
  border-radius: var(--pt-radius);
  padding: var(--pt-space-6);
  border: 1px solid var(--pt-border);
}

.woocommerce-cart .cart_totals h2 {
  font-size: 22px;
  margin-bottom: var(--pt-space-4);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  min-height: 52px;
  padding: 14px;
  background: var(--pt-brand);
  color: #fff;
  border-radius: var(--pt-radius);
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: all 0.18s ease-out;
  box-shadow: 0 4px 14px rgba(165,200,63,.28);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  background: var(--pt-brand-hover);
  transform: translateY(-2px);
}

/* Checkout page */
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  padding: var(--pt-space-4) var(--pt-space-6);
  margin-bottom: var(--pt-space-6);
}

.woocommerce-checkout form.checkout {
  background: var(--pt-surface);
  border-radius: var(--pt-radius);
  padding: var(--pt-space-8);
  border: 1px solid var(--pt-border);
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
  font-size: 20px;
  margin-bottom: var(--pt-space-4);
}

.woocommerce-checkout .woocommerce-input-wrapper .input-text {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  background: var(--pt-bg);
  color: var(--pt-ink);
  font-family: var(--pt-font-body);
  font-size: 16px;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.woocommerce-checkout .woocommerce-input-wrapper .input-text:focus {
  outline: none;
  border-color: var(--pt-brand);
  box-shadow: 0 0 0 3px rgba(165,200,63,.18);
}

.woocommerce-checkout .select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  background: var(--pt-bg);
}

.woocommerce-checkout #place_order {
  width: 100%;
  min-height: 52px;
  padding: 14px;
  background: var(--pt-brand);
  color: #fff;
  border-radius: var(--pt-radius);
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: all 0.18s ease-out;
  box-shadow: 0 4px 14px rgba(165,200,63,.28);
}

.woocommerce-checkout #place_order:hover {
  background: var(--pt-brand-hover);
  transform: translateY(-2px);
}

/* Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message {
  border-radius: var(--pt-radius);
  padding: 16px 20px;
  font-family: var(--pt-font-body);
  font-size: 15px;
  margin-bottom: var(--pt-space-4);
}

.woocommerce-message {
  background: rgba(165, 200, 63, 0.1);
  border: 1px solid rgba(165, 200, 63, 0.3);
  color: var(--pt-ink);
}

.woocommerce-message .button {
  background: var(--pt-brand);
  color: #fff;
  border-radius: var(--pt-radius);
  padding: 8px 16px;
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 13px;
  border: none;
  transition: background-color 0.15s ease-out;
}

.woocommerce-message .button:hover {
  background: var(--pt-brand-hover);
}

.woocommerce-error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: var(--pt-danger);
}

.woocommerce-info {
  background: rgba(11, 97, 126, 0.08);
  border: 1px solid rgba(11, 97, 126, 0.2);
  color: var(--pt-craft);
}

/* ============================================================
   19. FOOTER
   ============================================================ */
/* ============================================================
   19. FOOTER — UI/UX Pro Max compliant
   ============================================================ */
.pt-footer {
  background: var(--pt-ink);
  color: #fff;
  padding-block: var(--pt-space-16) var(--pt-space-6);
  position: relative;
  font-family: var(--pt-font-body);
}

.pt-footer__grid {
  display: grid;
  gap: var(--pt-space-8);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pt-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pt-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* Brand column */
.pt-footer__brand {
  max-width: 340px;
}

.pt-footer__brand .pt-logo {
  color: #fff;
  margin-bottom: var(--pt-space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--pt-space-3);
  text-decoration: none;
}

.pt-footer__brand .pt-logo img {
  height: auto;
  max-width: 160px;
}

.pt-footer__brand p {
  color: rgba(255,255,255,.7);
  font-family: var(--pt-font-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Column headings */
.pt-footer__heading {
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 0 0 var(--pt-space-4);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.2;
}

/* Links */
.pt-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--pt-space-2);
}

.pt-footer__links li {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.pt-footer__links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-family: var(--pt-font-body);
  font-size: 15px;
  line-height: 1.4;
  transition: color 200ms ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  min-height: 44px;
}

.pt-footer__links a:hover,
.pt-footer__links a:focus-visible {
  color: var(--pt-brand);
  text-decoration: none;
}

/* Contact column icons */
.pt-footer__contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: .8;
}

/* Newsletter */
.pt-footer__newsletter {
  margin-top: var(--pt-space-8);
  padding-top: var(--pt-space-6);
  border-top: 1px solid rgba(255,255,255,.1);
}

.pt-footer__newsletter-title {
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 0 0 var(--pt-space-2);
}

.pt-footer__newsletter-desc {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin: 0 0 var(--pt-space-4);
  line-height: 1.5;
}

.pt-footer__newsletter-form {
  display: flex;
  gap: var(--pt-space-2);
  flex-wrap: wrap;
}

.pt-footer__newsletter-input {
  flex: 1;
  min-width: 200px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--pt-font-body);
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.pt-footer__newsletter-input::placeholder {
  color: rgba(255,255,255,.4);
}

.pt-footer__newsletter-input:focus {
  outline: none;
  border-color: var(--pt-brand);
  box-shadow: 0 0 0 3px rgba(165, 200, 63, .25);
}

.pt-footer__newsletter-button {
  min-height: 44px;
  padding: 10px 24px;
  background: var(--pt-brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease;
}

.pt-footer__newsletter-button:hover,
.pt-footer__newsletter-button:focus-visible {
  background: var(--pt-brand-hover);
  transform: translateY(-1px);
}

/* Footer bottom */
.pt-footer__bottom {
  margin-top: var(--pt-space-12);
  padding-top: var(--pt-space-6);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: var(--pt-space-4);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .pt-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.pt-footer__copy {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin: 0;
  font-family: var(--pt-font-body);
}

/* Social icons */
.pt-footer__social {
  display: flex;
  gap: var(--pt-space-3);
  align-items: center;
}

.pt-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  transition: background-color 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.pt-footer__social a:hover,
.pt-footer__social a:focus-visible {
  background: var(--pt-brand);
  border-color: var(--pt-brand);
  transform: scale(1.1);
}

.pt-footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Back to top — moved into footer, fixed position */
.pt-footer__back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9980;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--pt-brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(4, 47, 61, .25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease, box-shadow 200ms ease;
}

.pt-footer__back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pt-footer__back-to-top:hover,
.pt-footer__back-to-top:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(4, 47, 61, .35);
}

.pt-footer__back-to-top svg {
  width: 24px;
  height: 24px;
}

/* ============================================================
   20. GLOBAL UTILITIES
   ============================================================ */

/* Remove Kadence footer branding */
.site-footer-wrap .kadence-credit-link,
.site-footer-wrap .kadence-credit,
.footer-credits .kadence-credit-link,
.footer-credits .kadence-credit {
  display: none !important;
}

/* Logo helpers */
.pt-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--pt-space-3);
  font-family: var(--pt-font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--pt-ink);
  text-decoration: none;
}

.pt-logo img, 
.pt-logo svg {
  height: 40px;
  width: auto;
  display: block;
}

/* Trust badges / seals */
.pt-trust-seals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pt-space-6);
  align-items: center;
  justify-content: center;
  margin-top: var(--pt-space-8);
}

.pt-trust-seals img {
  height: 40px;
  width: auto;
  opacity: .7;
  filter: grayscale(100%);
  transition: opacity .15s ease-out, filter .15s ease-out;
}

.pt-trust-seals img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Category pills */
.pt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pt-space-3);
  justify-content: center;
  margin-bottom: var(--pt-space-8);
}

.pt-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: 999px;
  font-family: var(--pt-font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--pt-ink-2);
  text-decoration: none;
  transition: background-color .15s ease-out, border-color .15s ease-out, color .15s ease-out, transform .15s ease-out;
}

.pt-pill:hover, 
.pt-pill:focus-visible, 
.pt-pill--active {
  background: var(--pt-brand);
  border-color: var(--pt-brand);
  color: #fff;
  transform: translateY(-1px);
}

/* Testimonial card */
.pt-testimonial {
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  padding: var(--pt-space-8);
  text-align: center;
}

.pt-testimonial__quote {
  font-size: 18px;
  font-style: italic;
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-6);
  line-height: 1.5;
}

.pt-testimonial__author {
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--pt-ink);
  margin: 0;
}

.pt-testimonial__company {
  font-size: 14px;
  color: var(--pt-muted);
  margin: 4px 0 0;
}

/* ============================================================
   21. CONTACT / ABOUT / FAQ PRIMITIVES
   ============================================================ */

/* 2-column responsive grid */
.pt-grid--2 { 
  grid-template-columns: 1fr; 
  gap: var(--pt-space-12); 
}

@media (min-width: 900px) { 
  .pt-grid--2 { 
    grid-template-columns: 1fr 1fr; 
    align-items: start; 
  } 
}

/* NAP / contact list */
.pt-contact-list { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: grid; 
  gap: var(--pt-space-6); 
}

.pt-contact-item { 
  display: flex; 
  gap: var(--pt-space-4); 
  align-items: flex-start; 
}

.pt-contact-item__icon {
  flex: 0 0 auto; 
  width: 44px; 
  height: 44px; 
  border-radius: var(--pt-radius);
  display: grid; 
  place-items: center; 
  background: rgba(165,200,63,.08); 
  color: var(--pt-brand);
}

.pt-contact-item__icon svg { 
  width: 22px; 
  height: 22px; 
}

.pt-contact-item__label { 
  font-family: var(--pt-font-head); 
  font-weight: 600; 
  font-size: 14px; 
  color: var(--pt-muted); 
  margin: 0 0 2px; 
  text-transform: uppercase; 
  letter-spacing: .04em; 
}

.pt-contact-item__value { 
  margin: 0; 
  color: var(--pt-ink); 
  font-size: 17px; 
  line-height: 1.4; 
}

.pt-contact-item__value a { 
  color: var(--pt-ink); 
  text-decoration: none; 
}

.pt-contact-item__value a:hover, 
.pt-contact-item__value a:focus-visible { 
  color: var(--pt-brand); 
  text-decoration: underline; 
}

/* Map embed */
.pt-map { 
  position: relative; 
  width: 100%; 
  aspect-ratio: 16 / 10; 
  border-radius: var(--pt-radius); 
  overflow: hidden; 
  border: 1px solid var(--pt-border); 
}

.pt-map iframe { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  border: 0; 
}

/* Contact Form 7 styling */
.pt-form .pt-field { 
  display: block; 
  margin: 0 0 var(--pt-space-4); 
}

.pt-form .pt-field > label { 
  display: block; 
  font-family: var(--pt-font-head); 
  font-weight: 600; 
  font-size: 14px; 
  color: var(--pt-ink); 
  margin-bottom: 6px; 
}

.pt-form .pt-req { 
  color: var(--pt-danger); 
  margin-left: 2px; 
}

.pt-form input[type="text"],
.pt-form input[type="email"],
.pt-form input[type="tel"],
.pt-form input[type="number"],
.pt-form select,
.pt-form textarea {
  width: 100%; 
  min-height: 48px; 
  padding: 12px 14px;
  border: 1px solid var(--pt-border); 
  border-radius: var(--pt-radius);
  background: var(--pt-surface); 
  color: var(--pt-ink);
  font-family: var(--pt-font-body); 
  font-size: 16px; 
  line-height: 1.4;
  transition: border-color .15s ease-out, box-shadow .15s ease-out;
}

.pt-form textarea { 
  min-height: 130px; 
  resize: vertical; 
}

.pt-form input:focus, 
.pt-form select:focus, 
.pt-form textarea:focus {
  outline: none; 
  border-color: var(--pt-brand); 
  box-shadow: 0 0 0 3px rgba(165,200,63,.18);
}

.pt-form .pt-field--row { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: var(--pt-space-4); 
}

@media (min-width: 560px) { 
  .pt-form .pt-field--row { grid-template-columns: 1fr 1fr; } 
}

.pt-form .pt-field--row > .pt-field { 
  margin-bottom: 0; 
}

.pt-form .wpcf7-not-valid-tip { 
  color: var(--pt-danger); 
  font-size: 13px; 
  margin-top: 4px; 
  display: block; 
}

.pt-form input.wpcf7-not-valid, 
.pt-form select.wpcf7-not-valid, 
.pt-form textarea.wpcf7-not-valid { 
  border-color: var(--pt-danger); 
}

.pt-form .wpcf7-response-output {
  margin: var(--pt-space-4) 0 0 !important; 
  padding: 12px 16px !important;
  border-radius: var(--pt-radius); 
  font-size: 15px;
}

.pt-form .wpcf7-spinner { 
  margin-left: var(--pt-space-3); 
}

.pt-form .pt-btn { 
  border: 0; 
  cursor: pointer; 
  width: 100%; 
  justify-content: center; 
}

@media (min-width: 560px) { 
  .pt-form .pt-btn { width: auto; } 
}

.pt-form .pt-form__note { 
  font-size: 13px; 
  color: var(--pt-muted); 
  margin: var(--pt-space-3) 0 0; 
}

/* About / storytelling split rows */
.pt-split { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: var(--pt-space-8); 
  align-items: center; 
}

@media (min-width: 900px) { 
  .pt-split { grid-template-columns: 1fr 1fr; gap: var(--pt-space-16); } 
}

.pt-split--flip .pt-split__media { 
  order: -1; 
}

@media (min-width: 900px) { 
  .pt-split--flip .pt-split__media { order: 1; } 
}

.pt-split__media img { 
  width: 100%; 
  height: auto; 
  border-radius: var(--pt-radius); 
  display: block; 
}

.pt-split + .pt-split { 
  margin-top: var(--pt-space-16); 
}

/* Prose (long-form copy) */
.pt-prose { 
  max-width: 70ch; 
  color: var(--pt-ink-2); 
  font-size: 17px; 
}

.pt-prose > * + * { 
  margin-top: var(--pt-space-4); 
}

.pt-prose h2 { 
  font-size: clamp(24px, 3vw, 32px); 
  color: var(--pt-ink); 
  margin-top: var(--pt-space-12); 
}

.pt-prose h3 { 
  font-size: clamp(19px, 2.2vw, 22px); 
  color: var(--pt-ink); 
  margin-top: var(--pt-space-8); 
}

.pt-prose strong { 
  color: var(--pt-ink); 
}

.pt-prose ul { 
  padding-left: 1.25em; 
}

.pt-prose li + li { 
  margin-top: var(--pt-space-2); 
}

/* ============================================================
   22. TABLES
   ============================================================ */
.pt-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
}

.pt-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--pt-surface);
  font-size: 15px;
}

.pt-table th,
.pt-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--pt-border);
}

.pt-table thead th {
  font-family: var(--pt-font-head);
  font-weight: 700;
  color: var(--pt-ink);
  background: var(--pt-bg);
  white-space: nowrap;
}

.pt-table tbody th {
  font-family: var(--pt-font-head);
  font-weight: 600;
  color: var(--pt-ink);
  white-space: nowrap;
}

.pt-table tbody tr:last-child th,
.pt-table tbody tr:last-child td { 
  border-bottom: 0; 
}

.pt-table tbody tr:hover { 
  background: rgba(165, 200, 63, .04); 
}

.pt-table__note { 
  font-size: 14px; 
  color: var(--pt-muted); 
  margin: var(--pt-space-4) 0 0; 
}

.pt-table--spec { 
  min-width: 0; 
}

.pt-table--spec tbody th { 
  width: 38%; 
  white-space: normal; 
}

/* ============================================================
   23. KADENCE THEME OVERRIDES
   ============================================================ */

/* Override Kadence global button / link colors */
body .wp-block-kadence-advancedbtn .kb-btn,
body .wp-block-kadence-advancedbtn .kb-button,
body .wp-block-button .wp-block-button__link,
body .kadence-button,
body .kb-button {
  background-color: var(--pt-brand) !important;
  color: #fff !important;
}

body .wp-block-kadence-advancedbtn .kb-btn:hover,
body .wp-block-kadence-advancedbtn .kb-button:hover,
body .wp-block-button .wp-block-button__link:hover,
body .kadence-button:hover,
body .kb-button:hover {
  background-color: var(--pt-brand-hover) !important;
  color: #fff !important;
}

/* Override Kadence link colors */
body .entry-content a,
body .wp-block-kadence-advancedheading a,
body .kadence-advanced-heading-link a {
  color: var(--pt-brand) !important;
}

body .entry-content a:hover,
body .wp-block-kadence-advancedheading a:hover,
body .kadence-advanced-heading-link a:hover {
  color: var(--pt-brand-hover) !important;
}

/* Force hero row layout background */
body .pt-hero.kb-row-layout-wrap,
body .pt-hero.wp-block-kadence-rowlayout,
body .pt-hero .kb-row-layout-wrap,
body .pt-hero .kt-row-layout-inner,
body .pt-hero .wp-block-kadence-rowlayout {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(165,200,63,.20), transparent 60%),
              linear-gradient(135deg, #F5F8EE 0%, #E8F0D8 70%) !important;
}

/* Remove Kadence default overlay */
body .pt-hero .kt-row-layout-overlay,
body .pt-hero .kb-row-layout-overlay {
  background: none !important;
}

/* Hero text color override */
body .pt-hero h1,
body .pt-hero h2,
body .pt-hero p,
body .pt-hero .pt-lead,
body .pt-hero .pt-eyebrow {
  color: #042f3d !important;
}

body .pt-hero a.pt-btn--primary {
  color: #fff !important;
}

/* ============================================================
   24. RESPONSIVE
   ============================================================ */

/* Mobile (320px+) */
@media (max-width: 479px) {
  html {
    font-size: 15px;
  }
  
  .pt-section {
    padding-block: var(--pt-space-12);
  }
  
  .pt-wrap {
    padding-inline: var(--pt-space-4);
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .pt-btn {
    width: 100%;
    justify-content: center;
  }
  
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
  
  .single-product .product {
    grid-template-columns: 1fr;
  }
  
  .pt-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .pt-footer__brand {
    max-width: 100%;
  }
  
  .pt-footer__social {
    justify-content: center;
  }
}

/* Tablet (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Ensure touch-friendly buttons */
button,
.pt-btn,
.woocommerce .button,
.woocommerce .single_add_to_cart_button,
.pt-header-cta,
.pt-product-card__cta {
  min-height: 44px;
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* ============================================================
   25. ANIMATIONS
   ============================================================ */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pt-animate {
  animation: slideInUp 0.6s ease-out forwards;
}

.pt-animate-delay-1 { animation-delay: 0.1s; }
.pt-animate-delay-2 { animation-delay: 0.2s; }
.pt-animate-delay-3 { animation-delay: 0.3s; }
.pt-animate-delay-4 { animation-delay: 0.4s; }

/* Intersection Observer animation classes */
.pt-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.pt-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.pt-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.pt-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.pt-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.pt-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.pt-stagger > *:nth-child(6) { transition-delay: 0.3s; }

/* ============================================================
   26. HOMEPAGE REDESIGN 2026 — Specific Components
   ============================================================ */

/* Section alternating background */
.pt-section--bg {
  background: linear-gradient(135deg, #F5F8EE 0%, #EDF2E3 100%);
}

/* ============================================================
   HERO REDESIGN — Collage layout
   ============================================================ */
.pt-hero--redesign {
  position: relative;
  overflow: hidden;
}

.pt-hero--redesign::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(165,200,63,.12) 0%, transparent 70%);
  pointer-events: none;
}

.pt-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pt-space-8);
  align-items: center;
  padding-block: var(--pt-space-16);
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .pt-hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--pt-space-16);
    padding-block: var(--pt-space-24);
  }
}

.pt-hero__content h1 {
  font-size: clamp(32px, 5.5vw, 58px);
  line-height: 1.05;
  margin: 0 0 var(--pt-space-4);
  font-weight: 800;
}

.pt-hero__content .pt-lead {
  font-size: clamp(17px, 2vw, 19px);
  margin-bottom: var(--pt-space-8);
  max-width: 50ch;
}

/* Hero trust badges */
.pt-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pt-space-4) var(--pt-space-6);
  margin-top: var(--pt-space-8);
  padding-top: var(--pt-space-6);
  border-top: 1px solid var(--pt-border);
}

.pt-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--pt-muted);
  font-weight: 500;
}

.pt-hero__trust-item svg {
  color: var(--pt-brand);
  flex-shrink: 0;
}

/* Hero image collage */
.pt-hero__visual {
  position: relative;
}

.pt-hero__collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--pt-space-3);
  position: relative;
  height: auto;
}

.pt-hero__collage-item {
  border-radius: var(--pt-radius);
  overflow: hidden;
  box-shadow: var(--pt-shadow-md);
  transition: transform 0.3s ease-out;
}

.pt-hero__collage-item:hover {
  transform: translateY(-4px);
}

.pt-hero__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pt-hero__collage-item--1 {
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

.pt-hero__collage-item--2,
.pt-hero__collage-item--3 {
  aspect-ratio: 4 / 3;
}

.pt-hero__collage-item--4 {
  display: none;
}

@media (min-width: 480px) {
  .pt-hero__collage-item--4 {
    display: block;
    aspect-ratio: 4 / 3;
  }
}

/* Floating badge on collage */
.pt-hero__collage-badge {
  position: absolute;
  bottom: var(--pt-space-4);
  right: var(--pt-space-4);
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  padding: var(--pt-space-3) var(--pt-space-4);
  box-shadow: var(--pt-shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  animation: pulse 3s ease-in-out infinite;
}

.pt-hero__collage-badge-num {
  font-family: var(--pt-font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--pt-brand);
  line-height: 1;
}

.pt-hero__collage-badge-text {
  font-size: 11px;
  color: var(--pt-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   TESTIMONIAL — Inline variant
   ============================================================ */
.pt-testimonial--inline {
  margin-top: var(--pt-space-12);
  padding: var(--pt-space-8);
  text-align: left;
  position: relative;
}

.pt-testimonial--inline .pt-testimonial__icon {
  color: var(--pt-brand);
  opacity: 0.3;
  margin-bottom: var(--pt-space-4);
}

.pt-testimonial--inline .pt-testimonial__quote {
  font-size: clamp(16px, 2vw, 18px);
  margin: 0 0 var(--pt-space-4);
  padding: 0;
  border: none;
  font-style: normal;
}

.pt-testimonial--inline .pt-testimonial__author {
  font-size: 15px;
  font-style: normal;
}

.pt-testimonial--inline .pt-testimonial__company {
  font-size: 13px;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.pt-cat-grid {
  display: grid;
  gap: var(--pt-space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .pt-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pt-cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pt-cat-card {
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s ease-out, transform 0.18s ease-out;
}

.pt-cat-card:hover,
.pt-cat-card:focus-visible {
  box-shadow: var(--pt-shadow-lg);
  transform: translateY(-4px);
}

.pt-cat-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pt-bg);
}

.pt-cat-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}

.pt-cat-card:hover .pt-cat-card__image img {
  transform: scale(1.05);
}

.pt-cat-card__content {
  padding: var(--pt-space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pt-cat-card__content h3 {
  font-size: 18px;
  margin: 0 0 var(--pt-space-2);
  color: var(--pt-ink);
}

.pt-cat-card__content p {
  font-size: 14px;
  color: var(--pt-muted);
  margin: 0 0 var(--pt-space-4);
  line-height: 1.5;
  flex: 1;
}

.pt-cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--pt-brand);
  transition: color 0.15s ease-out, gap 0.15s ease-out;
}

.pt-cat-card:hover .pt-cat-card__cta {
  color: var(--pt-brand-hover);
  gap: 10px;
}

/* ============================================================
   TRUST SIGNALS GRID
   ============================================================ */
.pt-trust-grid {
  display: grid;
  gap: var(--pt-space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {
  .pt-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .pt-trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pt-trust-card {
  display: flex;
  align-items: center;
  gap: var(--pt-space-3);
  padding: var(--pt-space-4) var(--pt-space-6);
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--pt-ink);
  transition: box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.pt-trust-card:hover {
  box-shadow: var(--pt-shadow);
  border-color: var(--pt-brand);
}

.pt-trust-card svg {
  color: var(--pt-brand);
  flex-shrink: 0;
}

/* ============================================================
   CTA BAND — Large variant
   ============================================================ */
.pt-cta-band--large {
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.pt-cta-band--large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pt-cta-band--large .pt-wrap {
  position: relative;
  z-index: 1;
}

.pt-cta-band--large h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
}

.pt-cta-band--large p {
  font-size: clamp(16px, 2vw, 18px);
}

/* Ghost button on dark background */
.pt-btn--ghost-on-dark {
  background: transparent;
  color: #fff !important;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.3);
}

.pt-btn--ghost-on-dark:hover,
.pt-btn--ghost-on-dark:focus-visible {
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 2px #fff;
  color: #fff !important;
}

/* CTA trust badges */
.pt-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--pt-space-4) var(--pt-space-6);
  margin-top: var(--pt-space-8);
  padding-top: var(--pt-space-6);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.pt-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.pt-cta-trust svg {
  color: rgba(255,255,255,0.9);
}

/* ============================================================
   HOMEPAGE RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 640px) {
  .pt-hero__collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  
  .pt-hero__collage-item--1 {
    grid-row: span 2;
    aspect-ratio: 1 / 1;
  }
  
  .pt-hero__collage-badge {
    bottom: var(--pt-space-2);
    right: var(--pt-space-2);
    padding: var(--pt-space-2) var(--pt-space-3);
  }
  
  .pt-hero__collage-badge-num {
    font-size: 18px;
  }
  
  .pt-testimonial--inline {
    padding: var(--pt-space-6);
  }
  
  .pt-trust-card {
    padding: var(--pt-space-3) var(--pt-space-4);
    font-size: 13px;
  }
  
  .pt-cta-band--large .pt-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .pt-cta-band--large .pt-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Tablet: reduce hero gap */
@media (min-width: 640px) and (max-width: 899px) {
  .pt-hero__grid {
    gap: var(--pt-space-8);
  }
  
  .pt-hero__content {
    text-align: center;
  }
  
  .pt-hero__content .pt-lead {
    margin-inline: auto;
  }
  
  .pt-hero__trust {
    justify-content: center;
  }
  
  .pt-hero__visual {
    max-width: 500px;
    margin-inline: auto;
  }
}

/* Smooth scroll offset for sticky header */
html {
  scroll-padding-top: 80px;
}

/* Ensure reveal animation works with reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pt-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .pt-hero__collage-badge {
    animation: none;
  }
}

/* ============================================================
   27. MEGA MENU — Compact & Premium
   ============================================================ */

.pt-mega-menu {
  position: absolute;
  top: 100%;
  left: 5%;
  right: 5%;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--pt-surface);
  border-top: 2px solid var(--pt-brand);
  box-shadow: 0 20px 50px rgba(4, 47, 61, 0.2);
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out, transform 0.2s ease-out;
  z-index: 1000;
  pointer-events: none;
}

.pt-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.pt-mega-menu__inner {
  padding: 32px 24px 28px;
  max-width: var(--pt-container);
  margin: 0 auto;
}

.pt-mega-menu__categories {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}

.pt-mega-menu__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 16px 24px;
  background: var(--pt-bg);
  border: 1px solid var(--pt-border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease-out;
}

.pt-mega-menu__card:hover,
.pt-mega-menu__card:focus-visible {
  box-shadow: 0 8px 24px rgba(165, 200, 63, 0.25);
  transform: translateY(-4px);
  border-color: var(--pt-brand);
  background: #fff;
}

.pt-mega-menu__card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.pt-mega-menu__card:hover img {
  transform: scale(1.05);
}

.pt-mega-menu__card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.pt-mega-menu__card-body h4 {
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--pt-ink);
  margin: 0;
  line-height: 1.3;
}

.pt-mega-menu__card-body p {
  font-size: 13px;
  color: var(--pt-muted);
  margin: 0;
  line-height: 1.4;
}

/* Bottom help section — compact bar */
.pt-mega-menu__help {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--pt-ink) 0%, var(--pt-ink-2) 100%);
  border-radius: 10px;
  text-align: left;
}

.pt-mega-menu__help-content h4 {
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 0 0 4px 0;
}

.pt-mega-menu__help-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.5;
}

.pt-mega-menu__help-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.pt-mega-menu__help-actions .pt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--pt-font-head);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.pt-mega-menu__help-actions .pt-btn--wa {
  background: var(--pt-whatsapp);
  color: #fff;
}

.pt-mega-menu__help-actions .pt-btn--wa:hover {
  background: var(--pt-whatsapp-hover);
  transform: translateY(-1px);
}

.pt-mega-menu__help-actions .pt-btn--secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.pt-mega-menu__help-actions .pt-btn--secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.pt-mega-menu__help-actions .pt-btn--ghost {
  background: transparent;
  color: var(--pt-brand);
  border: 1px solid transparent;
  font-size: 14px;
}

.pt-mega-menu__help-actions .pt-btn--ghost:hover {
  color: #fff;
}

/* Tablet: 2 columns */
@media (max-width: 1023px) {
  .pt-mega-menu__categories {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pt-mega-menu__help {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .pt-mega-menu__help-actions {
    justify-content: center;
  }
}

/* Mobile mega menu */
@media (max-width: 767px) {
  .pt-mega-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-bottom: 1px solid var(--pt-border);
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }
  
  .pt-mega-menu.is-open {
    display: block;
  }
  
  .pt-mega-menu__inner {
    padding: 16px;
  }
  
  .pt-mega-menu__categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .pt-mega-menu__card {
    padding: 12px 10px;
  }
  
  .pt-mega-menu__card img {
    width: 56px;
    height: 56px;
  }
  
  .pt-mega-menu__help {
    padding: 16px;
    gap: 14px;
  }
  
  .pt-mega-menu__help-actions .pt-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ============================================================
   28. MOBILE MENU ENHANCEMENTS
   ============================================================ */

/* Full-screen overlay feel */
.mobile-navigation .drawer-inner {
  padding-top: 20px;
}

/* Mobile menu header */
.mobile-navigation .drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--pt-border);
}

/* Mobile menu items spacing */
.mobile-navigation .drawer-nav-drop-wrap > li {
  margin-bottom: 0;
}

/* Expandable sub-menu in mobile */
.mobile-navigation .drawer-nav-drop-wrap .sub-menu {
  background: rgba(165, 200, 63, 0.04);
  border-left: 3px solid var(--pt-brand);
  margin-left: 20px;
}

/* Mobile hamburger animation */
.menu-toggle-open .menu-toggle-icon {
  transition: transform 0.2s ease-out;
}

.mobile-toggle-active .menu-toggle-open .menu-toggle-icon {
  transform: rotate(90deg);
}

/* Show mobile CTA when inside mobile nav */
.drawer-content .pt-mobile-cta {
  display: block;
}

/* Ensure mega menu is hidden on desktop when not hovering */
@media (min-width: 1024px) {
  .main-navigation .menu > li.has-mega-menu:hover ~ .pt-mega-menu,
  .pt-mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ============================================================
   Footer additions — WhatsApp quote CTA, legal links,
   and inline-SVG logo recolor for the dark footer background
   ============================================================ */
.pt-footer__cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--pt-space-4);
  padding: 12px 20px;
  min-height: 44px;
  background: var(--pt-whatsapp);
  color: #fff;
  font-family: var(--pt-font-head);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border-radius: var(--pt-radius);
  text-decoration: none;
  transition: background-color .15s ease-out, transform .15s ease-out;
}
.pt-footer__cta-wa:hover,
.pt-footer__cta-wa:focus-visible {
  background: var(--pt-whatsapp-hover);
  color: #fff;
  transform: translateY(-1px);
}
.pt-footer__cta-wa svg { flex: 0 0 auto; }

/* Footer logo (inline SVG): keep the green rule (.cls-1), flip the blue
   wordmark (.cls-2) to white so it stays legible on the dark footer. */
.pt-footer__brand .pt-logo svg.pt-logo-svg {
  width: 180px;
  height: auto;
  max-width: 100%;
}
.pt-footer__brand .pt-logo .cls-2 { fill: #fff; }

/* Legal / Politicas link row */
.pt-footer__legal {
  margin-top: var(--pt-space-8);
  padding-top: var(--pt-space-6);
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.pt-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pt-footer__legal-links li { margin: 0; }
.pt-footer__legal-links a {
  display: inline-block;
  padding: 6px 0;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  text-decoration: none;
  transition: color .15s ease-out;
}
.pt-footer__legal-links a:hover,
.pt-footer__legal-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

/* ============================================================
   Header: brand logo is the native custom_logo (desktop + mobile),
   so hide the redundant site-title text and size the logo.
   ============================================================ */
.site-branding .site-title-wrap,
.site-branding .site-title { display: none; }

.site-branding .custom-logo {
  height: 42px;
  width: auto;
  max-width: 200px;
}
.site-header-wrap.is-scrolled .site-branding .custom-logo {
  height: 36px;
}

/* ============================================================
   Single product — B2B quote block (MOQ notice + Cotizar CTAs)
   ============================================================ */
.pt-product-quote {
  margin-top: var(--pt-space-6);
  padding: var(--pt-space-4) var(--pt-space-6);
  background: var(--pt-bg);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
}
.pt-product-quote__moq {
  margin: 0 0 var(--pt-space-4);
  font-size: 14px;
  line-height: 1.5;
  color: var(--pt-ink-2);
}
.pt-product-quote__moq strong { color: var(--pt-ink); }
.pt-product-quote__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pt-space-3);
}

/* ============================================================
   CATEGORY PAGE — Bolsa Ecológica
   ============================================================ */

/* Hero */
.pt-cat-hero {
  padding: var(--pt-space-16) 0 var(--pt-space-12);
  background: var(--pt-bg);
  position: relative;
  overflow: hidden;
}
.pt-cat-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(165, 200, 63, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pt-cat-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pt-space-12);
  align-items: center;
}
.pt-cat-hero__eyebrow {
  display: inline-block;
  font-family: var(--pt-font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pt-craft);
  margin-bottom: var(--pt-space-4);
}
.pt-cat-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-6);
}
.pt-cat-hero__lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--pt-ink-2);
  margin: 0 0 var(--pt-space-4);
}
.pt-cat-hero__lead strong { color: var(--pt-ink); }
.pt-cat-hero__sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--pt-muted);
  margin: 0 0 var(--pt-space-6);
}
.pt-cat-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pt-space-3);
}
.pt-cat-hero__image {
  position: relative;
}
.pt-cat-hero__img-placeholder {
  border-radius: var(--pt-radius);
  overflow: hidden;
  box-shadow: var(--pt-shadow-lg);
  background: var(--pt-surface);
  aspect-ratio: 1 / 1;
}
.pt-cat-hero__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Benefits */
.pt-cat-benefits {
  padding: var(--pt-space-12) 0;
  background: var(--pt-surface);
  border-top: 1px solid var(--pt-border);
  border-bottom: 1px solid var(--pt-border);
}
.pt-cat-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pt-space-6);
}
.pt-cat-benefit {
  text-align: center;
  padding: var(--pt-space-6);
}
.pt-cat-benefit__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--pt-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pt-bg);
  border-radius: 50%;
  color: var(--pt-brand);
}
.pt-cat-benefit h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-2);
}
.pt-cat-benefit p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--pt-muted);
  margin: 0;
}

/* Products Grid */
.pt-cat-products {
  padding: var(--pt-space-16) 0;
  background: var(--pt-bg);
}
.pt-cat-products__header {
  text-align: center;
  margin-bottom: var(--pt-space-12);
}
.pt-cat-products__header h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-3);
}
.pt-cat-products__count {
  font-size: 15px;
  color: var(--pt-muted);
  margin: 0;
}

/* ===== PRODUCT GRID — HOVER FIX ===== */
.pt-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pt-space-6);
}

/* Card base — altura fija, flexbox para alineación */
.pt-product-card {
  display: flex;
  flex-direction: column;
  background: var(--pt-surface);
  border-radius: var(--pt-radius);
  overflow: hidden;
  border: 1px solid var(--pt-border);
  /* TRANSICION SUAVE: solo transform y shadow, NUNCA margin/padding */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

/* HOVER FIX: transform en lugar de margin para evitar layout shift */
.pt-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(4, 47, 61, 0.12);
}

/* Link wrapper — ocupa todo el espacio disponible */
.pt-product-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

/* Imagen — aspect ratio fijo */
.pt-product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
}
.pt-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.pt-product-card:hover .pt-product-card__image img {
  transform: scale(1.03);
}
.pt-product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pt-muted);
  font-size: 14px;
}

/* Body — flex:1 para empujar actions abajo */
.pt-product-card__body {
  flex: 1;
  padding: var(--pt-space-4);
  display: flex;
  flex-direction: column;
}
.pt-product-card__title {
  font-family: var(--pt-font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-2);
  line-height: 1.3;
  /* Altura fija para 2 líneas */
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pt-product-card__price {
  font-family: var(--pt-font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--pt-brand);
  margin: 0 0 var(--pt-space-2);
}
.pt-product-card__price del {
  font-size: 14px;
  font-weight: 400;
  color: var(--pt-muted);
  margin-right: var(--pt-space-2);
}
.pt-product-card__price ins {
  text-decoration: none;
}
.pt-product-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--pt-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 39px;
}

/* Actions — siempre al final, altura fija */
.pt-product-card__actions {
  padding: var(--pt-space-3) var(--pt-space-4) var(--pt-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--pt-space-2);
  margin-top: auto;
}

/* Trust Section */
.pt-cat-trust {
  padding: var(--pt-space-12) 0;
  background: var(--pt-ink);
  color: #fff;
}
.pt-cat-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pt-space-6);
  text-align: center;
}
.pt-cat-trust__number {
  display: block;
  font-family: var(--pt-font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--pt-brand);
  line-height: 1;
  margin-bottom: var(--pt-space-2);
}
.pt-cat-trust__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.pt-cat-cta {
  padding: var(--pt-space-16) 0;
  background: var(--pt-bg);
}
.pt-cat-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pt-space-12);
  align-items: center;
}
.pt-cat-cta__content h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-4);
}
.pt-cat-cta__content p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--pt-ink-2);
  margin: 0 0 var(--pt-space-6);
}
.pt-cat-cta__img-placeholder {
  border-radius: var(--pt-radius);
  overflow: hidden;
  box-shadow: var(--pt-shadow-lg);
}
.pt-cat-cta__img-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* Related Categories */
.pt-cat-related {
  padding: var(--pt-space-16) 0;
  background: var(--pt-surface);
  border-top: 1px solid var(--pt-border);
}
.pt-cat-related__title {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-8);
}
.pt-cat-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pt-space-6);
}
.pt-cat-related__card {
  display: block;
  background: var(--pt-surface);
  border-radius: var(--pt-radius);
  overflow: hidden;
  border: 1px solid var(--pt-border);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pt-cat-related__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pt-shadow-lg);
}
.pt-cat-related__img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.pt-cat-related__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.pt-cat-related__card:hover .pt-cat-related__img img {
  transform: scale(1.05);
}
.pt-cat-related__card h3 {
  font-family: var(--pt-font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--pt-ink);
  margin: var(--pt-space-4) var(--pt-space-4) var(--pt-space-2);
}
.pt-cat-related__card p {
  font-size: 14px;
  color: var(--pt-muted);
  margin: 0 var(--pt-space-4) var(--pt-space-4);
}

/* Pagination */
.pt-pagination {
  margin-top: var(--pt-space-12);
  display: flex;
  justify-content: center;
}
.pt-pagination ul {
  display: flex;
  gap: var(--pt-space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}
.pt-pagination li a,
.pt-pagination li span {
  display: block;
  padding: 8px 16px;
  border-radius: var(--pt-radius);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}
.pt-pagination li a {
  background: var(--pt-surface);
  color: var(--pt-ink);
  border: 1px solid var(--pt-border);
}
.pt-pagination li a:hover {
  background: var(--pt-brand);
  color: #fff;
  border-color: var(--pt-brand);
}
.pt-pagination li span.current {
  background: var(--pt-brand);
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .pt-cat-hero__inner,
  .pt-cat-cta__inner {
    grid-template-columns: 1fr;
    gap: var(--pt-space-8);
  }
  .pt-cat-hero__image {
    order: -1;
  }
  .pt-cat-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pt-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pt-cat-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pt-space-8);
  }
  .pt-cat-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pt-cat-hero {
    padding: var(--pt-space-8) 0 var(--pt-space-6);
  }
  .pt-cat-hero__title {
    font-size: 32px;
  }
  .pt-cat-benefits__grid {
    grid-template-columns: 1fr;
    gap: var(--pt-space-4);
  }
  .pt-product-grid {
    grid-template-columns: 1fr;
  }
  .pt-cat-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pt-space-6);
  }
  .pt-cat-trust__number {
    font-size: 28px;
  }
  .pt-cat-related__grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure WooCommerce default styles don't interfere */
.pt-category-page .woocommerce-products-header,
.pt-category-page .woocommerce-result-count,
.pt-category-page .woocommerce-ordering {
  display: none;
}
.pt-category-page .site-main {
  padding: 0;
}
.pt-category-page .content-wrap {
  padding: 0;
}
.pt-category-page .entry-content {
  margin: 0;
}

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

/* Breadcrumb */
.pt-breadcrumb {
  padding: var(--pt-space-4) 0;
  background: var(--pt-bg);
  border-bottom: 1px solid var(--pt-border);
  font-size: 13px;
  color: var(--pt-muted);
}
.pt-breadcrumb a {
  color: var(--pt-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.pt-breadcrumb a:hover {
  color: var(--pt-brand);
}
.pt-breadcrumb__sep {
  margin: 0 var(--pt-space-2);
  opacity: 0.5;
}
.pt-breadcrumb__current {
  color: var(--pt-ink);
  font-weight: 500;
}

/* Product Hero */
.pt-product-hero {
  padding: var(--pt-space-12) 0;
  background: var(--pt-bg);
}
.pt-product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pt-space-12);
  align-items: start;
}

/* Sidebar */
.pt-tabs-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--pt-space-4);
  position: sticky;
  top: 100px;
}
.pt-sidebar-card {
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  padding: var(--pt-space-6);
  box-shadow: var(--pt-shadow);
}
.pt-sidebar-card__header {
  display: flex;
  align-items: center;
  gap: var(--pt-space-3);
  margin-bottom: var(--pt-space-4);
  color: var(--pt-brand);
}
.pt-sidebar-card__header h3 {
  font-family: var(--pt-font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--pt-ink);
  margin: 0;
}
.pt-sidebar-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--pt-ink-2);
  margin-bottom: var(--pt-space-4);
}
.pt-sidebar-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--pt-space-2);
  margin-bottom: var(--pt-space-4);
}
.pt-sidebar-card__feature {
  display: flex;
  align-items: center;
  gap: var(--pt-space-2);
  font-size: 13px;
  color: var(--pt-ink-2);
}
.pt-sidebar-card__feature svg {
  color: var(--pt-success);
  flex-shrink: 0;
}
.pt-sidebar-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pt-space-2);
  margin-top: var(--pt-space-4);
  padding-top: var(--pt-space-4);
  border-top: 1px solid var(--pt-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--pt-ink);
}
.pt-sidebar-card--secondary {
  background: linear-gradient(135deg, var(--pt-ink) 0%, var(--pt-ink-2) 100%);
  border: none;
  color: #fff;
  text-align: center;
}
.pt-sidebar-card--secondary h4 {
  font-family: var(--pt-font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pt-brand);
  margin: 0 0 var(--pt-space-2) 0;
}
.pt-sidebar-card__highlight {
  font-family: var(--pt-font-head);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 var(--pt-space-2) 0;
}
.pt-sidebar-card__small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}
.pt-btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* Gallery */
.pt-product-hero__gallery {
  position: sticky;
  top: 100px;
}
.pt-product-hero__main-image {
  background: var(--pt-surface);
  border-radius: var(--pt-radius);
  overflow: hidden;
  border: 1px solid var(--pt-border);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-product-hero__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pt-product-hero__no-image {
  background: var(--pt-surface);
  border-radius: var(--pt-radius);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pt-muted);
  font-size: 14px;
  border: 1px solid var(--pt-border);
}
.pt-product-hero__thumbs {
  display: flex;
  gap: var(--pt-space-3);
  margin-top: var(--pt-space-4);
}
.pt-product-hero__thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--pt-radius);
  overflow: hidden;
  border: 2px solid var(--pt-border);
  background: var(--pt-surface);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease;
}
.pt-product-hero__thumb.active,
.pt-product-hero__thumb:hover {
  border-color: var(--pt-brand);
}
.pt-product-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.pt-product-hero__category {
  display: inline-block;
  font-family: var(--pt-font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pt-craft);
  margin-bottom: var(--pt-space-3);
}
.pt-product-hero__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-4);
  line-height: 1.2;
}
.pt-product-hero__short-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--pt-ink-2);
  margin: 0 0 var(--pt-space-6);
}
.pt-product-hero__price-row {
  display: flex;
  align-items: center;
  gap: var(--pt-space-4);
  margin-bottom: var(--pt-space-4);
  flex-wrap: wrap;
}
.pt-product-hero__price {
  font-family: var(--pt-font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--pt-brand);
}
.pt-product-hero__price del {
  font-size: 20px;
  font-weight: 400;
  color: var(--pt-muted);
  margin-right: var(--pt-space-2);
}
.pt-product-hero__price ins {
  text-decoration: none;
}
.pt-product-hero__sku {
  font-size: 13px;
  color: var(--pt-muted);
}

/* Tabla de precios por cantidad (YITH Dynamic Pricing) */
.pt-product-hero__pricing-table {
  margin-bottom: var(--pt-space-4);
}
.pt-product-hero__pricing-table .ywdpd_quantity_table,
.pt-product-hero__pricing-table .yith-ywdpd-quantity-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  overflow: hidden;
}
.pt-product-hero__pricing-table .ywdpd_quantity_table thead,
.pt-product-hero__pricing-table .yith-ywdpd-quantity-table thead {
  background: var(--pt-ink);
  color: #fff;
}
.pt-product-hero__pricing-table .ywdpd_quantity_table th,
.pt-product-hero__pricing-table .yith-ywdpd-quantity-table th {
  padding: var(--pt-space-3) var(--pt-space-4);
  font-weight: 600;
  text-align: left;
  font-family: var(--pt-font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pt-product-hero__pricing-table .ywdpd_quantity_table td,
.pt-product-hero__pricing-table .yith-ywdpd-quantity-table td {
  padding: var(--pt-space-3) var(--pt-space-4);
  border-bottom: 1px solid var(--pt-border);
  color: var(--pt-ink-2);
}
.pt-product-hero__pricing-table .ywdpd_quantity_table tbody tr:last-child td,
.pt-product-hero__pricing-table .yith-ywdpd-quantity-table tbody tr:last-child td {
  border-bottom: none;
}
.pt-product-hero__pricing-table .ywdpd_quantity_table tbody tr:nth-child(even),
.pt-product-hero__pricing-table .yith-ywdpd-quantity-table tbody tr:nth-child(even) {
  background: rgba(165, 200, 63, 0.04);
}
.pt-product-hero__pricing-table .ywdpd_quantity_table td .woocommerce-Price-amount,
.pt-product-hero__pricing-table .yith-ywdpd-quantity-table td .woocommerce-Price-amount {
  font-weight: 600;
  color: var(--pt-brand);
}
.pt-product-hero__pricing-table .ywdpd_quantity_table_label,
.pt-product-hero__pricing-table .yith-ywdpd-table-title {
  font-family: var(--pt-font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--pt-ink);
  margin-bottom: var(--pt-space-3);
  display: block;
}

.pt-product-hero__stock {
  display: inline-flex;
  align-items: center;
  gap: var(--pt-space-2);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--pt-space-4);
}
.pt-product-hero__stock--in {
  color: var(--pt-success);
}
.pt-product-hero__stock--out {
  color: var(--pt-danger);
}
.pt-product-hero__moq {
  display: flex;
  gap: var(--pt-space-3);
  padding: var(--pt-space-4);
  background: var(--pt-surface);
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  font-size: 14px;
  line-height: 1.5;
  color: var(--pt-ink-2);
  margin-bottom: var(--pt-space-6);
}
.pt-product-hero__moq svg {
  flex-shrink: 0;
  color: var(--pt-brand);
}
.pt-product-hero__moq strong {
  color: var(--pt-ink);
}

/* Actions */
.pt-product-hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--pt-space-3);
}
.pt-product-hero__qty-row {
  display: flex;
  align-items: center;
  gap: var(--pt-space-4);
  margin-bottom: var(--pt-space-2);
}
.pt-product-hero__qty-row label {
  font-size: 14px;
  font-weight: 500;
  color: var(--pt-ink);
}
.pt-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--pt-border);
  border-radius: var(--pt-radius);
  overflow: hidden;
}
.pt-qty-btn {
  width: 40px;
  height: 40px;
  background: var(--pt-surface);
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--pt-ink);
  transition: background 0.15s ease;
}
.pt-qty-btn:hover {
  background: var(--pt-bg);
}
.pt-qty-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--pt-border);
  border-right: 1px solid var(--pt-border);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--pt-ink);
  background: var(--pt-surface);
}
.pt-qty-input::-webkit-inner-spin-button,
.pt-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pt-btn--add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pt-space-2);
}
.pt-product-hero__tags {
  margin-top: var(--pt-space-6);
  font-size: 13px;
  color: var(--pt-muted);
}
.pt-product-hero__tags span {
  margin-right: var(--pt-space-2);
}
.pt-product-hero__tags a {
  color: var(--pt-craft);
  text-decoration: none;
  margin-right: var(--pt-space-2);
}
.pt-product-hero__tags a:hover {
  text-decoration: underline;
}

/* Color Swatches Section */
.pt-product-colors {
  padding: var(--pt-space-12) 0;
  background: linear-gradient(180deg, var(--pt-bg) 0%, var(--pt-surface) 100%);
}
.pt-product-colors__title {
  font-family: var(--pt-font-head);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--pt-ink);
  margin-bottom: var(--pt-space-2);
}
.pt-product-colors__subtitle {
  text-align: center;
  color: var(--pt-muted);
  font-size: 16px;
  margin-bottom: var(--pt-space-8);
}
.pt-product-colors__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--pt-space-4);
  margin-bottom: var(--pt-space-6);
}
.pt-color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--pt-space-2);
}
.pt-color-swatch__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}
.pt-color-swatch__circle::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.pt-color-swatch:hover .pt-color-swatch__circle {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}
.pt-color-swatch:hover .pt-color-swatch__circle::after {
  border-color: var(--pt-brand);
}
.pt-color-swatch__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--pt-ink-2);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
}
.pt-product-colors__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pt-space-2);
  font-size: 13px;
  color: var(--pt-muted);
  text-align: center;
}
.pt-product-colors__note svg {
  flex-shrink: 0;
  color: var(--pt-brand);
}
@media (max-width: 1024px) {
  .pt-product-colors__grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 768px) {
  .pt-product-colors__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--pt-space-3);
  }
  .pt-color-swatch__circle {
    width: 44px;
    height: 44px;
  }
  .pt-color-swatch__name {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .pt-product-colors__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Trust Section */
.pt-product-trust {
  padding: var(--pt-space-8) 0;
  background: var(--pt-surface);
  border-top: 1px solid var(--pt-border);
  border-bottom: 1px solid var(--pt-border);
}
.pt-product-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pt-space-6);
}
.pt-product-trust__item {
  display: flex;
  align-items: center;
  gap: var(--pt-space-3);
  font-size: 14px;
  font-weight: 500;
  color: var(--pt-ink);
}
.pt-product-trust__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pt-bg);
  border-radius: 50%;
  color: var(--pt-brand);
  flex-shrink: 0;
}

/* Tabs */
.pt-product-tabs {
  padding: var(--pt-space-16) 0;
  background: var(--pt-bg);
}
.pt-tabs-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--pt-space-8);
  align-items: start;
}
.pt-tabs-main {
  min-width: 0;
}
.pt-tabs-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--pt-space-4);
  position: sticky;
  top: 100px;
}
.pt-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--pt-border);
  margin-bottom: var(--pt-space-8);
}
.pt-tab__btn {
  padding: var(--pt-space-3) var(--pt-space-6);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--pt-font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--pt-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.pt-tab__btn:hover {
  color: var(--pt-ink);
}
.pt-tab__btn.active {
  color: var(--pt-brand);
  border-bottom-color: var(--pt-brand);
}
.pt-tab__panel {
  display: none;
}
.pt-tab__panel.active {
  display: block;
}
.pt-tab__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pt-ink-2);
}
.pt-tab__text h3 {
  font-family: var(--pt-font-head);
  font-size: 20px;
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-4);
}
.pt-tab__text ul {
  margin: 0 0 var(--pt-space-4);
  padding-left: var(--pt-space-6);
}
.pt-tab__text li {
  margin-bottom: var(--pt-space-3);
}
.pt-tab__text strong {
  color: var(--pt-ink);
}

/* Specs Table */
.pt-specs {
  max-width: 600px;
}
.pt-specs__row {
  display: flex;
  justify-content: space-between;
  padding: var(--pt-space-3) 0;
  border-bottom: 1px solid var(--pt-border);
}
.pt-specs__label {
  font-weight: 500;
  color: var(--pt-ink);
}
.pt-specs__value {
  color: var(--pt-ink-2);
}

/* CTA Section */
.pt-product-cta {
  padding: var(--pt-space-16) 0;
  background: var(--pt-ink);
  color: #fff;
}
.pt-product-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.pt-product-cta__content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 var(--pt-space-4);
}
.pt-product-cta__content p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 var(--pt-space-6);
}
.pt-product-cta__features {
  display: flex;
  justify-content: center;
  gap: var(--pt-space-6);
  margin-bottom: var(--pt-space-8);
  flex-wrap: wrap;
}
.pt-product-cta__features span {
  display: flex;
  align-items: center;
  gap: var(--pt-space-2);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.pt-product-cta__features svg {
  color: var(--pt-brand);
}

/* Related Products */
.pt-product-related {
  padding: var(--pt-space-16) 0;
  background: var(--pt-bg);
  border-top: 1px solid var(--pt-border);
}
.pt-product-related__title {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--pt-ink);
  margin: 0 0 var(--pt-space-8);
}
.pt-product-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Hide default WooCommerce elements */
.pt-single-product .woocommerce-breadcrumb,
.pt-single-product .product_meta,
.pt-single-product .woocommerce-tabs,
.pt-single-product .related.products,
.pt-single-product .upsells.products {
  display: none;
}

/* Responsive Single Product */
@media (max-width: 1024px) {
  .pt-product-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--pt-space-6);
  }
  .pt-product-hero__gallery {
    position: static;
  }
  .pt-product-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pt-product-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pt-tabs-grid {
    grid-template-columns: 1fr;
    gap: var(--pt-space-6);
  }
  .pt-tabs-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pt-sidebar-card {
    flex: 1;
    min-width: 280px;
  }
  .pt-tabs__nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .pt-product-hero {
    padding: var(--pt-space-6) 0;
  }
  .pt-product-hero__grid {
    grid-template-columns: 1fr;
  }
  .pt-product-hero__gallery {
    order: -1;
  }
  .pt-product-hero__title {
    font-size: 24px;
  }
  .pt-product-hero__price {
    font-size: 24px;
  }
  .pt-tabs-sidebar {
    flex-direction: column;
  }
  .pt-sidebar-card {
    min-width: auto;
  }
  .pt-product-trust__grid {
    grid-template-columns: 1fr;
    gap: var(--pt-space-4);
  }
  .pt-product-cta__features {
    flex-direction: column;
    gap: var(--pt-space-3);
  }
  .pt-product-grid--4 {
    grid-template-columns: 1fr;
  }
  .pt-tab__btn {
    padding: var(--pt-space-2) var(--pt-space-3);
    font-size: 13px;
  }
}
