@import "fonts.css";

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;font-size:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{
  margin:0;
  font-family:var(--font-sans);
  font-size:16px;
  font-weight:400;
  line-height:1.5;
  color:var(--ink);
  background:var(--white);
  overflow-x:hidden;
}
img,video{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;font-family:var(--font-sans)}
button{cursor:pointer}
h1,h2,h3,h4,p,ul{margin:0}
h1,h2{font-family:var(--font-display);font-weight:400;letter-spacing:.02em}
h3,h4{font-family:var(--font-sans);font-weight:700}
strong,b{font-weight:700}
ul{list-style:none;padding:0}

:root{
  --white:#fff;
  --ink:#262626;
  --muted:#9c9a92;
  --line:#e9e4db;
  --teal:#3d5b4a;
  --teal-dark:#2f4a3c;
  --teal-soft:#e9e4db;
  --peach:#c9b58a;
  --peach-hover:#b8a074;
  --cream:#f7f6f2;
  --cream-dark:#e9e4db;
  --green:#3d5b4a;
  --bamboo:#c9b58a;
  --max:1280px;
  --font:var(--font-sans);
  --radius:12px;
  --radius-pill:999px;
  --header-h:72px;
  --topbar-h:36px;
  --gutter:clamp(16px,4vw,28px);
  --section-y:clamp(56px,8vw,96px);
  --shadow:0 8px 32px rgba(45,49,66,.08);
}

.container{max-width:var(--max);margin:0 auto;padding:0 var(--gutter)}
.skip-link{
  position:absolute;left:-999px;top:0;z-index:9999;
  padding:12px 16px;background:var(--teal);color:#fff;border-radius:8px;
}
.skip-link:focus{left:12px;top:12px}

/* Top bar */
.ep-topbar{
  background:var(--teal);
  color:#fff;
  font-size:13px;
  font-weight:500;
  overflow:hidden;
}
.ep-topbar-track{
  display:inline-flex;
  animation:marquee 24s linear infinite;
  white-space:nowrap;
}
.ep-topbar-track span{padding:9px 40px;display:inline-block}
@keyframes marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
.ep-phone-bar{
  background:var(--teal-dark);
  color:#fff;
  text-align:center;
  font-size:12px;
  padding:6px 16px;
}
.ep-phone-bar a{color:#fff;text-decoration:underline}

/* Header */
.ep-header{
  position:sticky;top:0;z-index:200;
  background:rgba(255,255,255,.98);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(8px);
}
.ep-header-inner{
  max-width:var(--max);margin:0 auto;padding:0 var(--gutter);
  height:var(--header-h);
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
}
.ep-logo{flex-shrink:0}
.ep-logo img,.ep-logo svg{height:59px;width:auto;background:#fff;border-radius:4px}
/* Keep nav on one row inside its grid track; never push actions/lang to wrap */
.ep-nav{
  display:flex;align-items:center;gap:2px;justify-content:center;
  min-width:0;flex-wrap:nowrap;
}
.ep-nav>a,.ep-nav-item>button{
  padding:8px 10px;
  font-size:14px;font-weight:500;
  color:var(--ink);
  background:none;border:none;border-radius:8px;
  transition:background .15s,color .15s;
  white-space:nowrap;flex-shrink:0;
}
.ep-nav>a:hover,.ep-nav-item>button:hover{background:var(--teal-soft);color:var(--teal-dark)}
.ep-nav-item{position:relative}
.ep-nav-item:hover .ep-dropdown{display:block}
.ep-dropdown{
  display:none;
  position:absolute;top:100%;left:0;min-width:220px;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);padding:8px 0;z-index:50;
}
.ep-dropdown a{display:block;padding:10px 16px;font-size:14px}
.ep-dropdown a:hover{background:var(--teal-soft);color:var(--teal-dark)}
.ep-header-actions{
  display:flex;align-items:center;gap:8px;justify-content:flex-end;
  flex-shrink:0;white-space:nowrap;justify-self:end;position:relative;z-index:1;
}
.ep-lang-switch{
  display:inline-flex;align-items:center;gap:2px;margin-right:4px;
  font-size:12px;font-weight:600;flex-shrink:0;white-space:nowrap;
}
.ep-lang-label{color:var(--muted);margin-right:2px;white-space:nowrap}
.ep-lang-switch a{padding:4px 7px;border-radius:6px;color:var(--muted);line-height:1;text-decoration:none}
.ep-lang-switch a:hover{color:var(--teal);background:var(--teal-soft)}
.ep-lang-switch a[aria-current="page"],.ep-lang-switch a[aria-current="true"]{color:var(--teal);background:var(--teal-soft)}
/* Longer ES/FR chrome labels: slightly tighter nav so EN/ES/FR share one row */
html[lang="es"] .ep-nav>a,
html[lang="es"] .ep-nav-item>button,
html[lang="fr"] .ep-nav>a,
html[lang="fr"] .ep-nav-item>button{
  padding:8px 7px;
  font-size:13px;
}
.ep-icon-btn{
  width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;
  border:none;background:transparent;border-radius:50%;color:var(--ink);
}
.ep-icon-btn:hover{background:var(--teal-soft)}
.ep-icon-btn svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:2}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 24px;border-radius:var(--radius-pill);
  font-family:var(--font-sans);
  font-size:14px;font-weight:700;border:2px solid transparent;
  transition:transform .15s,background .15s,border-color .15s,color .15s;
  white-space:nowrap;
}
.btn:active{transform:scale(.98)}
.btn-teal{background:var(--teal);color:#fff;border-color:var(--teal)}
.btn-teal:hover{background:var(--teal-dark);border-color:var(--teal-dark)}
.btn-peach{background:var(--peach);color:#fff;border-color:var(--peach)}
.btn-peach:hover{background:var(--peach-hover);border-color:var(--peach-hover)}
.btn-outline{background:#fff;color:var(--teal);border-color:var(--teal)}
.btn-outline:hover{background:var(--teal-soft)}
.btn-white{background:#fff;color:var(--teal);border-color:#fff}
.btn-white:hover{background:var(--cream)}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-ghost:hover{border-color:var(--teal);color:var(--teal)}
.btn-sm{padding:8px 18px;font-size:13px}
.ep-mobile-toggle{display:none}

/* Hero */
.ep-hero{
  background:var(--cream);
  padding:clamp(32px,6vw,64px) 0 0;
  overflow:hidden;
}
.ep-hero-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:clamp(24px,4vw,48px);
  align-items:center;
}
.ep-hero-copy h1{
  font-family:var(--font-display);
  font-size:clamp(2rem,4.5vw,3.25rem);
  line-height:1.15;
  font-weight:400;
  color:var(--teal);
  margin-bottom:16px;
}
.ep-hero-copy p{
  font-size:clamp(1rem,2vw,1.125rem);
  color:var(--muted);
  max-width:48ch;
  margin-bottom:28px;
}
.ep-hero-actions{display:flex;flex-wrap:wrap;gap:12px}
.ep-hero-media{
  position:relative;
  min-height:320px;
}
.ep-hero-collage{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  transform:rotate(-2deg);
}
.ep-hero-collage img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  aspect-ratio:1;
  object-fit:cover;
}
.ep-hero-collage img:nth-child(2){transform:translateY(24px)}
.ep-hero-collage img:nth-child(5){transform:translateY(-16px)}

/* Logo strip */
.ep-logos{padding:var(--section-y) 0;background:#fff}
.ep-logos h2{
  text-align:center;font-size:clamp(1.25rem,2.5vw,1.75rem);
  font-weight:400;margin-bottom:32px;color:var(--ink);
}
.ep-logo-row{
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:32px 48px;
  opacity:.7;
}
.ep-logo-row span{
  font-size:1.1rem;font-weight:700;letter-spacing:.04em;
  color:var(--muted);text-transform:uppercase;
}

/* Collections grid */
.ep-collections{background:#fff;padding-bottom:var(--section-y)}
.ep-collections-head{text-align:center;margin-bottom:32px}
.ep-collections-head h2{font-size:clamp(1.5rem,3vw,2rem);font-weight:400;margin-bottom:12px}
.ep-collections-head p{color:var(--muted);max-width:60ch;margin:0 auto 20px}
.ep-collection-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
  gap:12px;
}
.ep-collection-card{
  display:flex;align-items:center;justify-content:center;text-align:center;
  min-height:88px;padding:16px;
  background:var(--cream);
  border-radius:var(--radius);
  font-family:var(--font-sans);
  font-weight:600;font-size:16.8px;
  transition:background .15s,transform .15s,color .15s;
}
.ep-collection-card:hover{background:var(--teal);color:#fff;transform:translateY(-2px)}
.ep-lead-banner{
  margin-top:32px;padding:20px 24px;
  background:var(--teal-soft);border-radius:var(--radius);
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;
}
.ep-lead-banner p{font-weight:500;color:var(--teal-dark)}

/* Split section */
.ep-split{
  display:grid;grid-template-columns:1fr 1fr;gap:0;
  min-height:420px;
}
.ep-split-copy{
  padding:clamp(32px,6vw,64px);
  display:flex;flex-direction:column;justify-content:center;
  background:var(--teal-soft);
}
.ep-split-copy h2{
  font-size:clamp(1.5rem,3vw,2.25rem);
  font-weight:400;color:var(--teal-dark);
  margin-bottom:16px;
}
.ep-split-copy ul{margin:20px 0 28px}
.ep-split-copy li{
  position:relative;padding-left:24px;margin-bottom:12px;color:var(--ink);
}
.ep-split-copy li::before{
  content:"✓";position:absolute;left:0;color:var(--green);font-weight:700;
}
.ep-split-media img{width:100%;height:100%;object-fit:cover;min-height:320px}
.ep-split-actions{display:flex;flex-wrap:wrap;gap:12px}

/* Products */
.ep-section{padding:var(--section-y) 0}
.ep-section-head{
  display:flex;flex-wrap:wrap;align-items:end;justify-content:space-between;
  gap:16px;margin-bottom:32px;
}
.ep-section-head h2{font-size:clamp(1.5rem,3vw,2rem);font-weight:400}
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:24px;
}
.product-card{
  border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;background:#fff;
  transition:box-shadow .2s,transform .2s;
}
.product-card:hover{box-shadow:var(--shadow);transform:translateY(-4px)}
.product-card-media{
  aspect-ratio:1;overflow:hidden;background:var(--cream);
}
.product-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.product-card:hover .product-card-media img{transform:scale(1.04)}
.product-card-body{padding:16px 18px 20px}
.product-card-body h3{font-size:15px;font-weight:600;line-height:1.35;margin-bottom:8px}
.product-price{font-weight:700;color:var(--teal-dark);font-size:1.05rem}
.product-price-row{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}
.product-compare{font-size:.95rem;color:var(--muted);text-decoration:line-through;font-weight:500}

/* Reviews carousel */
.ep-reviews{background:var(--cream)}
.ep-reviews-head{text-align:center;margin-bottom:32px}
.ep-reviews-head h2{font-size:clamp(1.5rem,3vw,2rem);font-weight:400;margin-bottom:8px}
.ep-reviews-head p{color:var(--muted)}
.ep-review-track{
  display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding-bottom:8px;-webkit-overflow-scrolling:touch;
}
.ep-review-track::-webkit-scrollbar{height:6px}
.ep-review-track::-webkit-scrollbar-thumb{background:var(--line);border-radius:99px}
.ep-review-card{
  flex:0 0 min(340px,85vw);scroll-snap-align:start;
  background:#fff;border-radius:var(--radius);padding:24px;
  border:1px solid var(--line);
}
.ep-review-card h3{font-size:1rem;margin-bottom:8px}
.ep-stars{color:#f5a623;letter-spacing:2px;margin-bottom:12px}
.ep-review-meta{font-size:13px;color:var(--muted);margin-top:16px}

/* Steps */
.ep-steps-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.ep-step{
  text-align:center;padding:32px 24px;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
}
.ep-step-num{
  width:48px;height:48px;margin:0 auto 16px;
  display:flex;align-items:center;justify-content:center;
  background:var(--teal);color:#fff;border-radius:50%;
  font-size:1.25rem;font-weight:700;
}
.ep-step h3{font-size:1.05rem;margin-bottom:10px}
.ep-step p{color:var(--muted);font-size:14px}

/* Features */
.ep-features-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
}
.ep-feature{
  padding:24px;background:var(--cream);border-radius:var(--radius);
  text-align:center;
}
.ep-feature-icon{
  width:56px;height:56px;margin:0 auto 16px;
  background:var(--teal);color:#fff;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.25rem;font-weight:700;
}
.ep-feature h3{font-size:1rem;margin-bottom:8px}
.ep-feature p{font-size:14px;color:var(--muted)}

/* Case studies */
.ep-case-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px;
}
.ep-case-card{
  position:relative;border-radius:var(--radius);overflow:hidden;
  aspect-ratio:4/5;background:var(--ink);
}
.ep-case-card img{width:100%;height:100%;object-fit:cover;opacity:.75}
.ep-case-overlay{
  position:absolute;inset:0;display:flex;flex-direction:column;
  justify-content:flex-end;padding:20px;
  background:linear-gradient(transparent,rgba(0,0,0,.75));
  color:#fff;
}
.ep-case-overlay h3{font-size:1.05rem;margin-bottom:8px}

/* Why us */
.ep-why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.ep-why-card{
  padding:28px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);
}
.ep-why-card h3{font-size:1.05rem;margin-bottom:10px;color:var(--teal-dark)}
.ep-why-card p{font-size:14px;color:var(--muted)}

/* Frameworks */
.ep-frameworks{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.ep-framework{
  padding:28px;border-radius:var(--radius);
  background:#fff;border:1px solid var(--line);
}
.ep-framework h4{font-size:1rem;margin-bottom:12px;color:var(--teal-dark)}
.ep-framework p{font-size:14px;color:var(--muted);margin-bottom:16px}

/* Impact stats */
.ep-impact{background:var(--teal);color:#fff}
.ep-impact h2{text-align:center;font-size:clamp(1.5rem,3vw,2rem);font-weight:400;margin-bottom:8px}
.ep-impact-sub{text-align:center;opacity:.9;margin-bottom:40px}
.ep-stats-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:16px;
}
.ep-stat{
  text-align:center;padding:20px 12px;
  background:rgba(255,255,255,.12);border-radius:var(--radius);
}
.ep-stat-num{
  font-size:clamp(1.5rem,3vw,2rem);font-weight:700;line-height:1.2;
  margin-bottom:6px;
}
.ep-stat-label{font-size:13px;opacity:.9;line-height:1.3}
.ep-impact-actions{text-align:center;margin-top:32px;display:flex;flex-wrap:wrap;justify-content:center;gap:12px}

/* FAQ */
.ep-faq{max-width:800px;margin:0 auto}
.ep-faq-item{border-bottom:1px solid var(--line)}
.ep-faq-q{
  width:100%;text-align:left;padding:20px 0;
  background:none;border:none;display:flex;justify-content:space-between;align-items:center;
  font-size:1rem;font-weight:600;color:var(--ink);
}
.ep-faq-q span:last-child{font-size:1.25rem;color:var(--teal);transition:transform .2s;flex-shrink:0}
.ep-faq-item.open .ep-faq-q span:last-child{transform:rotate(45deg)}
.ep-faq-q-label{text-align:left;line-height:1.45;padding-right:16px}
.ep-faq-num{display:block;font-size:12px;color:var(--teal);margin-bottom:4px;font-weight:600;letter-spacing:.06em;text-transform:none}
.ep-faq-a{
  max-height:0;overflow:hidden;transition:max-height .35s ease;
  color:var(--muted);font-size:15px;
}
.ep-faq-item.open .ep-faq-a{max-height:400px;padding-bottom:20px}
.ep-faq-item--article.open .ep-faq-a{max-height:12000px;padding-bottom:32px}
.ep-faq-a-subtitle{font-style:italic;margin:0 0 16px;color:var(--muted);font-size:14px}
.ep-faq-a--article .ep-article-body{font-size:15px;line-height:1.75}
.ep-faq-insights .ep-faq{max-width:880px}
.ep-faq-industry-qa .ep-faq{max-width:880px}
.ep-faq-industry-qa>h2,.ep-faq-industry-qa>p{margin-bottom:8px}
.ep-faq-industry-qa>p{color:var(--muted);margin-bottom:28px;max-width:62ch}
.ep-faq-section-title{
  font-size:1.05rem;color:var(--teal-dark);margin:32px 0 12px;padding-top:8px;
  border-top:1px solid var(--line);font-weight:600;line-height:1.35;
}
.ep-faq-section-title:first-child{margin-top:0;padding-top:0;border-top:none}
.ep-faq-section-title-en{
  display:block;font-size:13px;font-weight:400;color:var(--muted);margin-top:4px;
}
.ep-pl-resource-link{
  font-size:15px;color:var(--muted);margin:0 0 28px;padding:16px 20px;
  background:var(--cream);border-radius:8px;border-left:3px solid var(--teal);
}
/* Keep citation hubs in the DOM for crawlers; clip for sighted users when JS runs */
.seo-crawl-fallback{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;
  font-size:14px;
}
.seo-crawl-fallback ul{margin:8px 0 0;padding-left:20px;color:var(--muted)}
.seo-crawl-fallback li{margin:6px 0}
html.no-js .seo-crawl-fallback{
  position:static;width:auto;height:auto;margin:16px auto;padding:24px 20px;overflow:visible;clip:auto;
  max-width:var(--container,1120px);background:var(--cream);border-radius:8px;border:1px solid var(--line);
}

/* Enterprise CTA */
.ep-enterprise{
  background:var(--cream);
  padding:clamp(48px,8vw,80px) 0;
  text-align:center;
}
.ep-enterprise h2{font-size:clamp(1.5rem,3vw,2rem);font-weight:400;margin-bottom:12px}
.ep-enterprise p{color:var(--muted);max-width:60ch;margin:0 auto 24px}

/* Contact strip */
.ep-contact-strip{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  padding:var(--section-y) 0;
}
.ep-contact-item h3{font-size:1rem;margin-bottom:8px;color:var(--teal-dark)}
.ep-contact-item p{font-size:14px;color:var(--muted)}

/* Footer */
.ep-footer{background:var(--ink);color:rgba(255,255,255,.85);padding:56px 0 32px}
.ep-footer-grid{
  display:grid;grid-template-columns:1.4fr repeat(3,1fr);gap:32px;
  margin-bottom:40px;
}
.ep-footer h4{color:#fff;font-size:14px;margin-bottom:16px;text-transform:uppercase;letter-spacing:.06em}
.ep-footer a{display:block;font-size:14px;margin-bottom:10px;opacity:.8}
.ep-footer a:hover{opacity:1;color:var(--teal)}
.ep-footer-brand img{height:65px;width:auto;border-radius:6px;background:#fff;padding:4px 8px}
.ep-footer-brand p{font-size:14px;opacity:.75;margin-top:12px;max-width:32ch}
.ep-newsletter{display:flex;gap:8px;margin-top:12px}
.ep-newsletter input{
  flex:1;padding:10px 14px;border-radius:var(--radius-pill);
  border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.08);color:#fff;
}
.ep-newsletter input::placeholder{color:rgba(255,255,255,.5)}
.ep-footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:24px;font-size:13px;opacity:.6;text-align:center;
}

/* Shop page */
.ep-page-hero{
  background:var(--cream);padding:48px 0;text-align:center;
}
.ep-page-hero h1{font-family:var(--font-display);font-size:clamp(1.75rem,4vw,2.5rem);font-weight:400;color:var(--teal);margin-bottom:8px}
.ep-filters{
  display:flex;flex-wrap:wrap;gap:8px;margin-bottom:32px;
}
.ep-filter-btn{
  padding:8px 16px;border-radius:var(--radius-pill);
  border:1px solid var(--line);background:#fff;font-size:13px;font-weight:500;
}
.ep-filter-btn.active,.ep-filter-btn:hover{background:var(--teal);color:#fff;border-color:var(--teal)}
.ep-filter-btn[data-filter-cat="trash"],
.ep-filter-btn[data-filter-cat="mailer"],
.ep-filter-btn[data-filter-cat="packaging"]{
  font-family:var(--font-sans);
  font-size:15.6px;
}

/* Category menu + Our Story: Satoshi, -20% from enlarged sizes */
.ep-nav>a[href*="cat=trash"],
.ep-nav>a[href*="cat=mailer"],
.ep-nav>a[href*="cat=packaging"],
.ep-nav>a[href="about.html"],
.ep-nav>a[href="support.html"],
.ep-nav>a[href="private-label.html"],
.ep-footer a[href*="cat=trash"],
.ep-footer a[href*="cat=mailer"],
.ep-footer a[href*="cat=packaging"],
.ep-footer a[href="about.html"],
.ep-footer a[href="support.html"],
.ep-footer a[href="private-label.html"]{
  font-family:var(--font-sans);
  font-size:16.8px;
}
.ep-mobile-panel a[href*="cat=trash"],
.ep-mobile-panel a[href*="cat=mailer"],
.ep-mobile-panel a[href*="cat=packaging"],
.ep-mobile-panel a[href="about.html"],
.ep-mobile-panel a[href="support.html"],
.ep-mobile-panel a[href="private-label.html"]{
  font-family:var(--font-sans);
  font-size:19.2px;
}

/* Product detail — Amazon-style gallery */
.ep-pdp{
  display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);gap:40px 48px;
  padding:var(--section-y) 0;
}
.ep-pdp-gallery--amazon{width:100%}
.ep-pdp-gallery-layout{
  display:grid;grid-template-columns:64px minmax(0,1fr);gap:12px;align-items:start;
}
.ep-pdp-thumb-col{
  display:flex;flex-direction:column;gap:8px;max-height:520px;overflow-y:auto;
}
.ep-pdp-main-wrap{display:flex;flex-direction:column;gap:10px;min-width:0}
.ep-pdp-main{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;
  aspect-ratio:1;display:flex;align-items:center;justify-content:center;
}
.ep-pdp-main img{width:100%;height:100%;object-fit:contain;padding:12px}
.ep-pdp-image-meta{
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
}
.ep-pdp-image-label{font-size:14px;font-weight:600;color:var(--ink);margin:0}
.ep-pdp-image-counter{font-size:13px;color:var(--muted);margin:0}
.ep-pdp-image-caption{font-size:14px;color:var(--muted);line-height:1.6;margin:0}
.ep-pdp-thumb{
  position:relative;padding:0;border:2px solid var(--line);border-radius:8px;overflow:hidden;
  width:56px;height:56px;background:#fff;cursor:pointer;flex-shrink:0;
}
.ep-pdp-thumb.active,.ep-pdp-thumb:hover{border-color:var(--teal);box-shadow:0 0 0 1px var(--teal)}
.ep-pdp-thumb img{width:100%;height:100%;object-fit:cover}
.ep-pdp-thumb-tag{
  position:absolute;left:0;right:0;bottom:0;padding:2px 4px;
  font-size:8px;line-height:1.2;text-transform:uppercase;letter-spacing:.04em;
  text-align:center;color:#fff;background:rgba(47,61,46,.82);
}
.ep-pdp-thumb--config .ep-pdp-thumb-tag{background:rgba(34,35,34,.82)}
.ep-pdp-thumb--scene .ep-pdp-thumb-tag{background:rgba(47,61,46,.72)}
.ep-pdp-back{font-size:14px;color:var(--muted)}
.ep-pdp-kicker{font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-top:16px}
.ep-pdp-line{font-size:1.05rem;color:var(--teal-dark);margin:-8px 0 12px;font-weight:500}
.ep-pdp-powered{font-size:13px;letter-spacing:.08em;text-transform:uppercase;color:var(--teal);margin-top:8px;font-weight:600}
.ep-pdp-tech{font-size:13px;color:var(--muted);margin-top:8px}
.ep-pdp-tech-code{font-size:13px;color:var(--muted);margin-top:-12px;margin-bottom:16px}
.ep-pdp-price-row{display:flex;align-items:baseline;flex-wrap:wrap;gap:10px 12px;margin:16px 0}
.ep-pdp-compare{font-size:1.05rem;color:var(--muted);text-decoration:line-through;font-weight:500}
.ep-pdp-discount-badge{
  display:inline-flex;align-items:center;padding:4px 10px;border-radius:999px;
  background:var(--teal);color:#fff;font-size:12px;font-weight:700;letter-spacing:.05em
}
.ep-pdp-case-savings{font-size:13px;color:var(--teal-dark);font-weight:500;margin:-6px 0 14px;line-height:1.5}
.product-discount-badge{
  display:inline-flex;align-items:center;padding:3px 8px;border-radius:999px;
  background:var(--teal);color:#fff;font-size:11px;font-weight:700;letter-spacing:.04em
}
.product-card-save{font-size:13px;color:var(--teal-dark);font-weight:500;margin:6px 0 0;line-height:1.45}
.ep-pdp-about{margin:20px 0;padding-top:16px;border-top:1px solid var(--line)}
.ep-pdp-about-title{font-size:1rem;margin:0 0 12px;color:var(--ink)}
.ep-pdp-highlights{margin:0;font-size:14px;color:var(--muted);line-height:1.9;list-style:disc;padding-left:18px}
.ep-pdp-config-card{
  margin:20px 0;padding:16px 18px;background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);
}
.ep-pdp-config-card h3{font-size:14px;margin:0 0 12px;color:var(--teal-dark);text-transform:uppercase;letter-spacing:.06em}
.ep-spec-table--compact th,.ep-spec-table--compact td{padding:8px 0;font-size:13px}

.ep-pdp-variants{
  margin:20px 0;padding:18px;border:1px solid var(--line);border-radius:var(--radius);
  background:var(--cream);display:flex;flex-direction:column;gap:16px
}
.ep-pdp-variant{display:flex;flex-direction:column;gap:8px}
.ep-pdp-variant-label{font-size:13px;font-weight:600;color:var(--ink);letter-spacing:.04em;text-transform:uppercase}
.ep-pdp-variant-options{display:flex;flex-wrap:wrap;gap:8px}
.ep-pdp-variant-pill{
  display:inline-flex;align-items:center;justify-content:center;padding:8px 14px;
  border:1px solid var(--line);border-radius:999px;background:#fff;color:var(--ink);
  font-size:14px;font-weight:500;text-decoration:none;cursor:pointer;transition:border-color .15s,box-shadow .15s
}
.ep-pdp-variant-pill:hover,.ep-pdp-variant-pill.active{
  border-color:var(--teal);box-shadow:0 0 0 1px var(--teal);color:var(--teal-dark)
}
.ep-pdp-variant-select{
  max-width:220px;padding:10px 12px;border:1px solid var(--line);border-radius:var(--radius);
  background:#fff;font-size:14px
}
.ep-pdp-unit-price,.ep-pdp-case-info{font-size:13px;color:var(--muted);margin:0;line-height:1.5}
.ep-pdp-shipping-note{font-size:13px;color:var(--teal-dark);margin:0;font-weight:500}

.product-card-line{font-size:14px;color:var(--teal-dark);margin:4px 0 8px}
.product-price-suffix{font-size:14px;color:var(--muted);align-self:baseline}
.product-card-meta{font-size:13px;color:var(--muted);margin:6px 0 0}

.ep-pdp-qty-row{display:flex;align-items:center;gap:12px;margin:20px 0}
.ep-pdp-qty-label{font-size:14px;font-weight:500}
.ep-pdp-qty{width:72px;padding:10px 12px;border:1px solid var(--line);border-radius:var(--radius)}
.ep-pdp-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px}
.ep-pdp-note{font-size:12px;color:var(--muted);margin-top:20px;max-width:48ch;line-height:1.5}

.ep-pdp-aplus{background:var(--cream)}
.ep-pdp-aplus h2{margin-bottom:8px;color:var(--teal-dark)}
.ep-pdp-aplus-lead{color:var(--muted);max-width:62ch;margin-bottom:28px;line-height:1.6}
.ep-pdp-aplus-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}

.ep-pdp-story{background:#fff}
.ep-pdp-story-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.ep-pdp-story-panel{
  padding:32px;background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);
}
.ep-pdp-story-panel--renoryx{border-top:4px solid var(--teal)}
.ep-pdp-story-panel--brand{border-top:4px solid #D6CDBA}
.ep-pdp-story-kicker{
  font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--teal);
  margin:0 0 8px;font-weight:600;
}
.ep-pdp-story-panel h2{font-size:1.35rem;margin:0 0 12px;color:var(--teal-dark)}
.ep-pdp-story-lead{font-size:1rem;color:var(--ink);font-weight:500;line-height:1.6;margin:0 0 12px}
.ep-pdp-story-panel p{color:var(--muted);line-height:1.7;margin:0 0 16px;font-size:15px}
.ep-pdp-story-list{margin:0 0 16px;padding-left:18px;color:var(--muted);line-height:1.8;font-size:14px}
.ep-pdp-story-note{font-size:13px;color:var(--muted);font-style:italic;margin:0}
.ep-pdp-brand-pillars{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.ep-pdp-brand-pillar h3{font-size:14px;margin:0 0 6px;color:var(--ink)}
.ep-pdp-brand-pillar p{font-size:13px;margin:0;color:var(--muted);line-height:1.55}
.ep-pdp-story-closing{font-size:14px;font-weight:600;color:var(--teal-dark);font-style:italic;margin:0}
.visually-hidden{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.ep-pdp-aplus-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;
  display:flex;flex-direction:column;
}
.ep-pdp-aplus-media{
  position:relative;padding:0;border:none;background:var(--cream);cursor:pointer;width:100%;
  aspect-ratio:16/10;display:flex;align-items:center;justify-content:center;
}
.ep-pdp-aplus-media img{width:100%;height:100%;object-fit:cover}
.ep-pdp-aplus-card--product .ep-pdp-aplus-media img,
.ep-pdp-aplus-card--config .ep-pdp-aplus-media img{object-fit:contain;padding:12px}
.ep-pdp-aplus-badge{
  position:absolute;top:12px;left:12px;padding:6px 10px;border-radius:999px;
  font-size:11px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  color:#fff;background:rgba(47,61,46,.88);
}
.ep-pdp-aplus-card--config .ep-pdp-aplus-badge{background:rgba(34,35,34,.88)}
.ep-pdp-aplus-copy{padding:18px 20px 22px}
.ep-pdp-aplus-copy h3{font-size:1rem;margin:0 0 8px;color:var(--ink)}
.ep-pdp-aplus-copy p{margin:0;font-size:14px;color:var(--muted);line-height:1.6}
.ep-pdp-details-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
}
.ep-pdp-panel{
  padding:28px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);
}
.ep-pdp-panel--full{grid-column:1/-1}
.ep-pdp-panel h2{font-size:1.15rem;margin-bottom:16px;color:var(--teal-dark)}
.ep-pdp-long{color:var(--muted);line-height:1.7;font-size:15px}
.ep-spec-table{width:100%;border-collapse:collapse;font-size:14px}
.ep-spec-table th,.ep-spec-table td{padding:10px 0;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}
.ep-spec-table th{color:var(--ink);font-weight:600;width:42%}
.ep-spec-table td{color:var(--muted)}
.ep-pdp-features{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:8px 24px;list-style:none;padding:0}
.ep-pdp-features li{position:relative;padding-left:20px;font-size:14px;color:var(--muted)}
.ep-pdp-features li::before{content:"✓";position:absolute;left:0;color:var(--green);font-weight:700}
.ep-pdp-bestfor{list-style:none;margin:0;padding:0}
.ep-pdp-bestfor li{padding:14px 0;border-bottom:1px solid var(--line);display:grid;gap:4px}
.ep-pdp-bestfor strong{font-size:15px;color:var(--ink)}
.ep-pdp-bestfor span{font-size:14px;color:var(--muted)}
.ep-pdp-info h1{font-family:var(--font-display);font-size:clamp(1.5rem,3vw,2rem);font-weight:400;margin-bottom:12px}
.ep-pdp-price{font-size:1.5rem;font-weight:700;color:var(--teal-dark);margin:16px 0}
.ep-pdp-desc{color:var(--muted);margin-bottom:24px}
.ep-pdp-meta{font-size:14px;color:var(--muted);margin-bottom:24px}

/* Quote form */
.ep-quote-form{max-width:640px;margin:0 auto}
.ep-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.ep-form-field{margin-bottom:16px}
.ep-form-field label{display:block;font-size:14px;font-weight:500;margin-bottom:6px}
.ep-form-field input,.ep-form-field select,.ep-form-field textarea{
  width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:var(--radius);
  background:#fff;
}
.ep-form-field textarea{min-height:120px;resize:vertical}

.ep-pl-intro{
  display:grid;grid-template-columns:1.2fr .8fr;gap:32px;margin-bottom:40px;
  padding:28px;background:var(--cream);border:1px solid var(--line);border-radius:var(--radius);
}
.ep-pl-intro h2{margin:0 0 12px;color:var(--teal-dark);font-size:1.25rem}
.ep-pl-intro p{color:var(--muted);line-height:1.7;margin:0 0 16px}
.ep-pl-benefits{margin:0;padding-left:18px;color:var(--muted);line-height:1.9;font-size:14px}
.ep-pl-intro-aside{
  padding:20px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);align-self:start;
}
.ep-pl-intro-aside h3{font-size:14px;text-transform:uppercase;letter-spacing:.06em;color:var(--teal);margin:0 0 8px}
.ep-pl-intro-aside p{margin:0;color:var(--muted);font-size:14px;line-height:1.6}
.ep-pl-form{max-width:720px}
.ep-pl-form-section{
  font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:var(--teal-dark);
  margin:28px 0 16px;padding-top:8px;border-top:1px solid var(--line);
}
.ep-pl-form-section:first-of-type{margin-top:0;padding-top:0;border-top:none}
.ep-pl-form-note{font-size:12px;color:var(--muted);margin-top:16px;text-align:center;line-height:1.5}

/* Cart drawer */
.ep-cart-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:500;
  opacity:0;visibility:hidden;transition:opacity .2s,visibility .2s;
}
.ep-cart-overlay.open{opacity:1;visibility:visible}
.ep-cart-drawer{
  position:fixed;top:0;right:0;width:min(420px,100vw);height:100vh;
  background:#fff;z-index:501;transform:translateX(100%);
  transition:transform .25s ease;display:flex;flex-direction:column;
  box-shadow:-8px 0 32px rgba(0,0,0,.12);
}
.ep-cart-overlay.open .ep-cart-drawer{transform:translateX(0)}
.ep-cart-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 24px;border-bottom:1px solid var(--line);
}
.ep-cart-body{flex:1;overflow-y:auto;padding:16px 24px}
.ep-cart-line{
  display:grid;grid-template-columns:72px 1fr auto;gap:12px;
  padding:12px 0;border-bottom:1px solid var(--line);
}
.ep-cart-line img{width:72px;height:72px;object-fit:cover;border-radius:8px}
.ep-cart-foot{padding:20px 24px;border-top:1px solid var(--line)}
.ep-cart-empty{text-align:center;padding:48px 24px;color:var(--muted)}
.cart-badge{
  position:absolute;top:2px;right:2px;min-width:18px;height:18px;
  background:var(--peach);color:#fff;border-radius:99px;
  font-size:11px;font-weight:700;display:flex;align-items:center;justify-content:center;
}

/* Mobile nav */
.ep-mobile-nav{
  position:fixed;inset:0;z-index:400;background:rgba(0,0,0,.4);
  opacity:0;visibility:hidden;transition:opacity .2s,visibility .2s;
}
.ep-mobile-nav.open{opacity:1;visibility:visible}
.ep-mobile-panel{
  position:absolute;top:0;right:0;width:min(360px,100vw);height:100%;
  background:#fff;transform:translateX(100%);transition:transform .25s;
  overflow-y:auto;padding:24px;
}
.ep-mobile-nav.open .ep-mobile-panel{transform:translateX(0)}
.ep-mobile-panel a{display:block;padding:12px 0;border-bottom:1px solid var(--line);font-weight:500}
.ep-mobile-panel .btn{margin-top:16px;width:100%}

/* Chat widget */
.ep-chat-fab{
  position:fixed;bottom:24px;right:24px;z-index:300;
  width:56px;height:56px;border-radius:50%;
  background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);
  display:flex;align-items:center;justify-content:center;
}
.ep-chat-fab svg{width:24px;height:24px;stroke:var(--ink);fill:none;stroke-width:2}

/* Responsive */
/* Hide desktop nav before long EN/ES/FR labels collide with lang switch / CTA */
@media (max-width:1260px){
  .ep-nav{display:none}
  .ep-mobile-toggle{display:inline-flex}
}
@media (max-width:1024px){
  .ep-hero-grid,.ep-split,.ep-pdp{grid-template-columns:1fr}
  .ep-pdp-gallery-layout{grid-template-columns:1fr;gap:12px}
  .ep-pdp-thumb-col{
    flex-direction:row;max-height:none;overflow-x:auto;overflow-y:hidden;
    padding-bottom:4px;
  }
  .ep-pdp-aplus-grid{grid-template-columns:1fr}
  .ep-pdp-story-grid{grid-template-columns:1fr}
  .ep-pdp-brand-pillars{grid-template-columns:1fr}
  .ep-pdp-details-grid{grid-template-columns:1fr}
  .ep-features-grid,.ep-frameworks,.ep-why-grid{grid-template-columns:repeat(2,1fr)}
  .ep-stats-grid{grid-template-columns:repeat(3,1fr)}
  .ep-contact-strip{grid-template-columns:repeat(2,1fr)}
  .ep-footer-grid{grid-template-columns:repeat(2,1fr)}
  .ep-steps-grid{grid-template-columns:1fr}
}
.product-card-save{font-size:13px;color:var(--teal-dark);font-weight:500;margin:6px 0 0;line-height:1.45}

.ep-insights-kicker{font-size:13px;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);margin-bottom:8px;font-weight:600}
.ep-insights-lead{color:var(--muted);max-width:62ch;margin-top:12px;line-height:1.6}
.ep-insights-layout{display:grid;grid-template-columns:280px minmax(0,1fr);gap:40px;align-items:start}
.ep-insights-toc{position:sticky;top:24px;padding:20px;background:var(--cream);border:1px solid var(--line);border-radius:var(--radius)}
.ep-insights-toc h2{font-size:14px;text-transform:uppercase;letter-spacing:.08em;color:var(--teal-dark);margin:0 0 16px}
.ep-insights-toc ol{margin:0;padding-left:0;list-style:none;display:flex;flex-direction:column;gap:10px}
.ep-insights-toc a{display:block;font-size:14px;line-height:1.45;color:var(--ink);text-decoration:none}
.ep-insights-toc a:hover{color:var(--teal-dark)}
.ep-insights-num{display:inline-block;min-width:1.6em;color:var(--teal);font-weight:600;margin-right:4px}
.ep-insights-list{display:grid;gap:24px}
.ep-insight-card{padding:24px;border:1px solid var(--line);border-radius:var(--radius);background:#fff}
.ep-insight-card-meta{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--teal);margin:0 0 8px;font-weight:600}
.ep-insight-card h2{font-size:1.25rem;margin:0 0 8px;line-height:1.35}
.ep-insight-card h2 a{color:var(--ink);text-decoration:none}
.ep-insight-card h2 a:hover{color:var(--teal-dark)}
.ep-insight-card-en{font-size:14px;color:var(--muted);margin:0 0 12px;font-style:italic}
.ep-insight-card-excerpt{color:var(--muted);line-height:1.65;margin:0 0 16px}

.ep-article-wrap{max-width:760px;padding:32px 0 64px}
.ep-article-head{margin:24px 0 32px;padding-bottom:24px;border-bottom:1px solid var(--line)}
.ep-article-meta{font-size:13px;letter-spacing:.06em;text-transform:uppercase;color:var(--teal);margin:0 0 12px;font-weight:600}
.ep-article-head h1{font-family:var(--font-display);font-size:clamp(1.6rem,4vw,2.2rem);font-weight:400;color:var(--teal-dark);margin:0 0 12px;line-height:1.25}
.ep-article-subtitle{font-size:1.05rem;color:var(--muted);font-style:italic;margin:0;line-height:1.5}
.ep-article-body{color:var(--ink);line-height:1.75;font-size:16px}
.ep-article-body h3{font-size:1.05rem;color:var(--teal-dark);margin:28px 0 12px}
.ep-article-body p{margin:0 0 16px;color:var(--muted)}
.ep-article-body ul,.ep-article-body ol{margin:0 0 16px;padding-left:1.25em;color:var(--muted)}
.ep-article-body li{margin-bottom:8px}
.ep-article-body blockquote{margin:20px 0;padding:16px 20px;border-left:3px solid var(--teal);background:var(--cream);border-radius:0 var(--radius) var(--radius) 0}
.ep-article-body blockquote p{margin:0;color:var(--ink);font-weight:500}
.ep-article-note{font-size:13px!important;color:var(--muted)!important;font-style:italic;border-top:1px solid var(--line);padding-top:16px;margin-top:24px!important}
.ep-article-hashtags{font-size:13px!important;color:var(--teal)!important;margin-top:24px!important}
.ep-article-nav{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:48px;padding-top:32px;border-top:1px solid var(--line)}
.ep-article-nav-link{display:flex;flex-direction:column;gap:6px;padding:16px;border:1px solid var(--line);border-radius:var(--radius);text-decoration:none;color:var(--ink);transition:border-color .15s}
.ep-article-nav-link:hover{border-color:var(--teal)}
.ep-article-nav-link span{font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:var(--teal)}
.ep-article-nav-link strong{font-size:14px;line-height:1.4;font-weight:600}
.ep-article-nav-link--next{text-align:right}

@media (max-width:900px){
  .ep-insights-layout{grid-template-columns:1fr}
  .ep-insights-toc{position:static}
  .ep-article-nav{grid-template-columns:1fr}
  .ep-article-nav-link--next{text-align:left}
}

@media (max-width:640px){
  .ep-header-inner{
    grid-template-columns:1fr auto;
    grid-template-areas:"logo actions";
  }
  .ep-logo{grid-area:logo;justify-self:start}
  .ep-nav{display:none!important}
  .ep-header-actions{grid-area:actions}
  .ep-header-actions .btn-peach{display:none}
  .ep-features-grid,.ep-frameworks,.ep-why-grid,.ep-stats-grid{grid-template-columns:1fr}
  .ep-pl-intro{grid-template-columns:1fr}
  .ep-contact-strip,.ep-footer-grid,.ep-form-row{grid-template-columns:1fr}
  .ep-hero-collage{grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:12px}
}
