/* ============================================================
   Premium Elementor Addons Pro — Frontend CSS
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --pea-transition:        0.3s ease;
  --pea-radius:            6px;
  --pea-shadow-sm:         0 2px 8px rgba(0,0,0,.08);
  --pea-shadow-md:         0 4px 24px rgba(0,0,0,.12);
  --pea-shadow-lg:         0 12px 48px rgba(0,0,0,.18);
  --pea-z-header:          999;
  --pea-z-dropdown:        1000;
  --pea-z-mobile-menu:     1001;
  --pea-z-modal:           1002;
  --pea-z-overlay:         998;
}

/* ── Reset & Base ───────────────────────────────────────────── */
.pea-header *,
.pea-footer * {
  box-sizing: border-box;
}

/* ============================================================
   HEADER
   ============================================================ */
.pea-header {
  position: relative;
  width: 100%;
  z-index: var(--pea-z-header);
}

.pea-header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  transition: all var(--pea-transition);
}

.pea-header-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}

/* ── Layouts ────────────────────────────────────────────────── */
.pea-layout-flex .pea-header-container        { justify-content: space-between; }
.pea-layout-centered .pea-header-container    { flex-direction: column; justify-content: center; }
.pea-layout-split .pea-header-container       { justify-content: space-between; }
.pea-layout-fullwidth .pea-header-container   { max-width: 100%; }

/* ── Sticky ─────────────────────────────────────────────────── */
.pea-sticky-type-sticky .pea-header-inner,
.pea-sticky-type-scroll-up .pea-header-inner.pea-sticky,
.pea-sticky-type-shrink .pea-header-inner.pea-sticky,
.pea-sticky-type-hide .pea-header-inner.pea-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--pea-z-header);
  animation: pea-slide-down .35s ease;
}

.pea-header-inner.pea-sticky-hidden {
  transform: translateY(-100%);
}

@keyframes pea-slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ── Transparent on Top ─────────────────────────────────────── */
.pea-transparent-top .pea-header-inner:not(.pea-sticky) {
  background: transparent !important;
  box-shadow: none !important;
}

/* ── Logo ────────────────────────────────────────────────────── */
.pea-logo,
.pea-logo-widget { flex-shrink: 0; }

.pea-logo a,
.pea-logo-widget a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.pea-logo img,
.pea-logo-widget img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: opacity var(--pea-transition);
}

/* Sticky logo swap */
.pea-logo-sticky        { display: none; }
.pea-sticky .pea-logo-default { display: none; }
.pea-sticky .pea-logo-sticky  { display: block; }

.pea-logo-text,
.pea-site-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}

/* ── Navigation ─────────────────────────────────────────────── */
.pea-nav { flex: 1; }

.pea-nav ul,
.pea-nav-list,
.pea-standalone-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.pea-nav > ul > li,
.pea-nav-list > li {
  position: relative;
}

.pea-nav > ul > li > a,
.pea-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: .35em;
  padding: .6rem 1rem;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--pea-transition);
  position: relative;
}

/* ── Underline Hover Effects ───────────────────────────────── */
.pea-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: all .3s ease;
}

/* Slide from left */
.pea-hover-slide > ul > li > a::after {
  left: 0;
  width: 0;
  transform-origin: left;
}
.pea-hover-slide > ul > li:hover > a::after,
.pea-hover-slide > ul > li.current-menu-item > a::after { width: 100%; }

/* Expand from center */
.pea-hover-center > ul > li > a::after {
  left: 50%;
  transform: translateX(-50%);
  width: 0;
}
.pea-hover-center > ul > li:hover > a::after { width: 80%; }

/* Dot below */
.pea-hover-dot > ul > li > a::after {
  width: 5px; height: 5px;
  border-radius: 50%;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
}
.pea-hover-dot > ul > li:hover > a::after { transform: translateX(-50%) scale(1); }

/* Fill background */
.pea-hover-fill > ul > li > a::after { display: none; }
.pea-hover-fill > ul > li > a {
  border-radius: 4px;
  transition: background var(--pea-transition), color var(--pea-transition);
}
.pea-hover-fill > ul > li:hover > a,
.pea-hover-fill > ul > li.current-menu-item > a {
  background: rgba(0,0,0,.08);
}

/* Double line */
.pea-hover-double > ul > li > a::before,
.pea-hover-double > ul > li > a::after {
  content: '';
  position: absolute;
  height: 2px;
  background: currentColor;
  transition: width .3s ease;
  width: 0;
}
.pea-hover-double > ul > li > a::before { top: 4px; left: 0; }
.pea-hover-double > ul > li > a::after  { bottom: 4px; left: 0; }
.pea-hover-double > ul > li:hover > a::before,
.pea-hover-double > ul > li:hover > a::after { width: 100%; }

/* ── Dropdown ────────────────────────────────────────────────── */
.pea-nav .sub-menu,
.pea-standalone-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--pea-radius);
  box-shadow: var(--pea-shadow-md);
  list-style: none;
  margin: 0;
  padding: .5rem 0;
  z-index: var(--pea-z-dropdown);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.pea-nav li:hover > .sub-menu,
.pea-standalone-nav li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Slide animation */
[data-dd-animation="slide"] .sub-menu { transform: translateY(0); top: calc(100% + 10px); }
[data-dd-animation="zoom"]  .sub-menu { transform: scale(.9) translateY(-6px); transform-origin: top left; }
[data-dd-animation="flip"]  .sub-menu { transform: rotateX(-15deg); transform-origin: top; }
[data-dd-animation="elastic"] .sub-menu { transition: all .4s cubic-bezier(.34,1.56,.64,1); }

.pea-nav .sub-menu li a,
.pea-standalone-nav .sub-menu li a {
  display: block;
  padding: .55rem 1.2rem;
  color: #333;
  text-decoration: none;
  font-size: .9rem;
  transition: background .2s, color .2s;
}

.pea-nav .sub-menu li a:hover,
.pea-standalone-nav .sub-menu li a:hover { background: rgba(0,0,0,.05); }

/* RTL dropdowns */
html[dir="rtl"] .pea-nav .sub-menu,
html[dir="rtl"] .pea-standalone-nav .sub-menu { left: auto; right: 0; }

/* Nested sub-menus */
.pea-nav .sub-menu .sub-menu,
.pea-standalone-nav .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}
html[dir="rtl"] .pea-nav .sub-menu .sub-menu { left: auto; right: 100%; }

/* ── Arrow indicators ────────────────────────────────────────── */
.pea-nav .menu-item-has-children > a::before,
.pea-standalone-nav .menu-item-has-children > a::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform .25s;
  order: 99;
}
.pea-nav li:hover > a::before { transform: rotate(-135deg); }

/* ── Header Extras ───────────────────────────────────────────── */
.pea-header-extras {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.pea-header-extras button,
.pea-header-extras a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--pea-transition), transform var(--pea-transition);
  border-radius: 4px;
}
.pea-header-extras button:hover { opacity: .7; }

.pea-header-extras svg { width: 20px; height: 20px; display: block; }

/* CTA Button */
.pea-cta-btn {
  padding: .55rem 1.25rem !important;
  background: #111 !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: background var(--pea-transition), transform var(--pea-transition), box-shadow var(--pea-transition) !important;
  white-space: nowrap;
}
.pea-cta-btn:hover {
  background: #333 !important;
  transform: translateY(-1px);
  box-shadow: var(--pea-shadow-sm);
}

/* Cart */
.pea-cart-btn { position: relative; }
.pea-cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  background: #e53e3e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

/* Dark mode toggle */
.pea-dark-mode-toggle .pea-dm-sun  { display: block; }
.pea-dark-mode-toggle .pea-dm-moon { display: none; }
.pea-dark-mode-active .pea-dark-mode-toggle .pea-dm-sun  { display: none; }
.pea-dark-mode-active .pea-dark-mode-toggle .pea-dm-moon { display: block; }

/* ── Hamburger ───────────────────────────────────────────────── */
.pea-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

.pea-hamburger .pea-line {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all .3s ease;
}

.pea-hamburger[aria-expanded="true"] .pea-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pea-hamburger[aria-expanded="true"] .pea-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pea-hamburger[aria-expanded="true"] .pea-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dots hamburger */
.pea-hamburger-dots .pea-dots-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3px;
}
.pea-hamburger-dots .pea-dots-grid i {
  display: block; width: 4px; height: 4px;
  background: currentColor; border-radius: 50%;
}

/* ── Mobile Menu Drawer ─────────────────────────────────────── */
.pea-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(85vw, 360px);
  height: 100vh;
  background: #fff;
  z-index: var(--pea-z-mobile-menu);
  overflow-y: auto;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--pea-shadow-lg);
}
html[dir="rtl"] .pea-mobile-menu { right: auto; left: -100%; }

.pea-mobile-menu.pea-open { right: 0; }
html[dir="rtl"] .pea-mobile-menu.pea-open { right: auto; left: 0; }

.pea-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: var(--pea-z-overlay);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.pea-mobile-overlay.pea-open { opacity: 1; pointer-events: auto; }

.pea-mobile-menu-inner { padding: 2rem 1.5rem; }

.pea-mobile-nav-list { flex-direction: column; gap: 0; }
.pea-mobile-nav-list li a {
  display: block;
  padding: .75rem 0;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: color var(--pea-transition);
}
.pea-mobile-nav-list li a:hover { color: #555; }
.pea-mobile-nav-list .sub-menu { position: static; visibility: visible; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; padding-left: 1rem; display: none; }
.pea-mobile-nav-list .sub-menu.pea-open { display: block; }

/* ── Search Modal ────────────────────────────────────────────── */
.pea-search-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.96);
  z-index: var(--pea-z-modal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.pea-search-modal.pea-open { opacity: 1; pointer-events: auto; }

.pea-search-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: pointer;
  color: #fff; font-size: 1.8rem; line-height: 1;
  transition: transform .2s;
}
.pea-search-close:hover { transform: rotate(90deg); }

.pea-search-form { width: min(680px, 90vw); display: flex; align-items: center; border-bottom: 2px solid #fff; }
.pea-search-input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-size: clamp(1.5rem, 4vw, 2.5rem);
  padding: .75rem 0;
  caret-color: #fff;
}
.pea-search-input::placeholder { color: rgba(255,255,255,.4); }
.pea-search-submit { background: none; border: none; cursor: pointer; color: #fff; padding: .5rem; }
.pea-search-submit svg { width: 28px; height: 28px; }

.pea-search-overlay {
  position: fixed; inset: 0; z-index: calc(var(--pea-z-modal) - 1);
  display: none;
}

/* ── Language Switcher ───────────────────────────────────────── */
.pea-lang-switcher { position: relative; }
.pea-lang-list { list-style: none; display: flex; gap: .5rem; margin: 0; padding: 0; }
.pea-lang-list a { color: inherit; text-decoration: none; font-size: .85rem; font-weight: 600; text-transform: uppercase; opacity: .6; transition: opacity .2s; }
.pea-lang-list a:hover,
.pea-lang-active a { opacity: 1; }
.pea-lang-placeholder { font-size: .75rem; opacity: .5; }

/* ── Reading Progress Bar ───────────────────────────────────── */
.pea-progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: calc(var(--pea-z-header) + 10);
  background: rgba(0,0,0,.1);
}
.pea-progress-fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width .1s linear;
}

/* ============================================================
   FOOTER
   ============================================================ */
.pea-footer { width: 100%; }

.pea-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.pea-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.pea-footer-col {}

.pea-footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  position: relative;
  padding-bottom: .75rem;
}

.pea-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 2.5rem; height: 2px;
  background: currentColor;
  opacity: .25;
  transition: width .3s ease;
}
.pea-footer-col:hover .pea-footer-col-title::after { width: 100%; }

.pea-footer-col-text { font-size: .95rem; line-height: 1.7; opacity: .8; }

/* Footer menus */
.pea-footer-menu { list-style: none; margin: 0; padding: 0; }
.pea-footer-menu li { margin-bottom: .5rem; }
.pea-footer-menu a {
  color: inherit; text-decoration: none; font-size: .9rem;
  opacity: .75; transition: opacity .2s, padding-left .2s;
  display: inline-block;
}
.pea-footer-menu a:hover { opacity: 1; padding-left: .35rem; }

/* Footer logo */
.pea-footer-logo img { max-width: 160px; margin-bottom: .75rem; }
.pea-footer-tagline { font-size: .9rem; opacity: .65; margin: 0 0 1.25rem; }

/* Social icons */
.pea-social-icons { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem; }

.pea-social-icons a {
  display: flex; align-items: center; justify-content: center;
  color: inherit; text-decoration: none;
  width: 38px; height: 38px;
  transition: transform var(--pea-transition), opacity var(--pea-transition);
}
.pea-social-icons a:hover { transform: translateY(-3px); opacity: .8; }
.pea-social-icons a svg { width: 18px; height: 18px; display: block; }

.pea-social-circle a { border-radius: 50%; border: 1.5px solid currentColor; opacity: .65; }
.pea-social-circle a:hover { opacity: 1; background: rgba(0,0,0,.05); }

.pea-social-square a { border-radius: 4px; background: rgba(0,0,0,.06); }
.pea-social-square a:hover { background: rgba(0,0,0,.12); }

/* Newsletter */
.pea-newsletter-form {}
.pea-newsletter-inner { display: flex; gap: 0; }
.pea-newsletter-input {
  flex: 1; border: 1.5px solid rgba(0,0,0,.15); border-right: none;
  padding: .65rem 1rem; border-radius: 4px 0 0 4px; font-size: .9rem;
  outline: none; transition: border-color .2s;
}
.pea-newsletter-input:focus { border-color: rgba(0,0,0,.4); }
.pea-newsletter-btn {
  padding: .65rem 1.25rem; background: #111; color: #fff;
  border: none; border-radius: 0 4px 4px 0; cursor: pointer;
  font-size: .9rem; font-weight: 600; white-space: nowrap;
  transition: background .2s;
}
.pea-newsletter-btn:hover { background: #333; }
.pea-newsletter-note { font-size: .78rem; opacity: .5; margin: .5rem 0 0; }

/* ── Footer Bottom Bar ───────────────────────────────────────── */
.pea-footer-bottom {
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 1.25rem 2rem;
}
.pea-footer-bottom-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.pea-copyright { margin: 0; font-size: .85rem; opacity: .65; }

.pea-bottom-nav-list { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; }
.pea-bottom-nav-list a { color: inherit; text-decoration: none; font-size: .85rem; opacity: .65; transition: opacity .2s; }
.pea-bottom-nav-list a:hover { opacity: 1; }

.pea-back-to-top {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,.08); border: none; cursor: pointer; color: inherit;
  transition: background .2s, transform .2s;
  margin-left: auto;
}
.pea-back-to-top:hover { background: rgba(0,0,0,.15); transform: translateY(-2px); }
.pea-back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   TYPOGRAPHY WIDGETS
   ============================================================ */

/* Base */
.pea-adv-text { margin: 0; line-height: 1.15; }

/* Gradient */
.pea-effect-gradient {
  background: linear-gradient(135deg, #f953c6, #b91d73);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Highlight */
.pea-effect-highlight {
  background: linear-gradient(to bottom, transparent calc(100% - var(--pea-highlight-height, 40%)), var(--pea-highlight-color, #FFE066) var(--pea-highlight-height, 40%));
  -webkit-text-fill-color: unset;
  background-clip: unset;
  display: inline;
  padding: 0 .1em;
}

/* Outline */
.pea-effect-outline {
  -webkit-text-stroke: 2px currentColor;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Glitch */
.pea-effect-glitch {
  position: relative;
}
.pea-effect-glitch::before,
.pea-effect-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  overflow: hidden;
}
.pea-effect-glitch::before {
  left: 2px; text-shadow: -2px 0 #ff0000;
  clip-path: inset(0 0 70% 0);
  animation: pea-glitch-1 2.5s infinite linear alternate-reverse;
}
.pea-effect-glitch::after {
  left: -2px; text-shadow: 2px 0 #00ffff;
  clip-path: inset(50% 0 0 0);
  animation: pea-glitch-2 2.5s infinite linear alternate-reverse;
}
@keyframes pea-glitch-1 {
  0%   { clip-path: inset(0 0 70% 0); transform: translate(-2px, 0); }
  50%  { clip-path: inset(30% 0 40% 0); transform: translate(2px, 0); }
  100% { clip-path: inset(80% 0 0 0); transform: translate(0, 0); }
}
@keyframes pea-glitch-2 {
  0%   { clip-path: inset(70% 0 0 0); transform: translate(2px, 0); }
  50%  { clip-path: inset(10% 0 60% 0); transform: translate(-2px, 0); }
  100% { clip-path: inset(0 0 80% 0); transform: translate(0, 0); }
}

/* Split Chars */
.pea-effect-split-chars .pea-char {
  display: inline-block;
  animation: pea-char-in .5s ease both;
}
@keyframes pea-char-in {
  from { opacity: 0; transform: translateY(.4em) rotate(5deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}

/* Blur-in */
.pea-effect-blur-in {
  animation: pea-blur-in .8s ease both;
}
@keyframes pea-blur-in {
  from { filter: blur(12px); opacity: 0; }
  to   { filter: blur(0); opacity: 1; }
}

/* Reveal */
.pea-effect-reveal {
  overflow: hidden;
}
.pea-effect-reveal .pea-reveal-inner {
  display: block;
  transform: translateY(100%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.pea-effect-reveal.pea-in-view .pea-reveal-inner { transform: translateY(0); }

/* Typewriter cursor */
.pea-typewriter-cursor {
  display: inline-block;
  width: 2px; height: 1em;
  background: currentColor;
  margin-left: 2px;
  vertical-align: middle;
  animation: pea-blink 1s step-end infinite;
}
@keyframes pea-blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* Entrance animations */
[data-entrance] { opacity: 0; }
[data-entrance].pea-animated { opacity: 1; animation: var(--pea-entrance-anim, pea-fade-up) .7s cubic-bezier(.16,1,.3,1) both; }
@keyframes pea-fade-up    { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes pea-fade-left  { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: none; } }
@keyframes pea-fade-right { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }
@keyframes pea-zoom-in    { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: none; } }
@keyframes pea-flip-x     { from { opacity: 0; transform: rotateX(-90deg); } to { opacity: 1; transform: none; } }

/* ── Social Icons standalone ─────────────────────────────────── */
.pea-social-widget {}

/* ── Divider ─────────────────────────────────────────────────── */
.pea-divider-widget { width: 100%; overflow: hidden; }

/* ── Dark Mode ───────────────────────────────────────────────── */
.pea-dark-mode-active {
  filter: invert(1) hue-rotate(180deg);
}
.pea-dark-mode-active img,
.pea-dark-mode-active video,
.pea-dark-mode-active iframe {
  filter: invert(1) hue-rotate(180deg);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pea-nav { display: none; }
  .pea-hamburger { display: flex; }
  .pea-footer-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pea-header-container { padding: 0 1rem; }
  .pea-footer-columns { grid-template-columns: 1fr; }
  .pea-footer-inner { padding: 2.5rem 1.25rem 1.5rem; }
  .pea-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .pea-back-to-top { margin-left: 0; }
  .pea-newsletter-inner { flex-direction: column; }
  .pea-newsletter-input,
  .pea-newsletter-btn { border-radius: 4px; border: 1.5px solid rgba(0,0,0,.15); }
  .pea-newsletter-btn { width: 100%; }
  .pea-search-input { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .pea-cta-btn { font-size: .8rem !important; padding: .45rem .9rem !important; }
  .pea-mobile-menu { width: 100%; }
}

/* ── Accessibility ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px dashed currentColor;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
