/* ══════════════════════════════════════
   PEC — Digitale Menomale
   Custom styles for PEC template
══════════════════════════════════════ */

/* ── RESET ── */
#primary.pec-page *,
#primary.pec-page *::before,
#primary.pec-page *::after {
  box-sizing: border-box;
}

:root {
  --y:    #FFB800;
  --yd:   #e6a000;
  --p:    #5B21B6;
  --pm:   #7C3AED;
  --pd:   #3B0764;
  --teal: #0D9488;
  --td:   #0f766e;
  --dark: #0f0720;
  --d2:   #160b2e;
  --d3:   #1e1040;
  --ink:  #1a1030;
  --w:    #ffffff;
}

body.pec-template {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: var(--w);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#cursor {
  width: 14px; height: 14px; background: var(--y);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s;
  mix-blend-mode: exclusion;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,184,0,.5);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); opacity: .6;
}

/* ══════════════════════════════════════
   HERO — split obliquo
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  background-color: var(--dark);
  position: relative; overflow: hidden;
}

/* sinistra viola */
.hl {
  background: var(--pd);
  padding: 90px 6% 90px 5%;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  clip-path: polygon(0 0,100% 0,91% 100%,0 100%);
}
.hl::before {
  content:''; position:absolute; top:-150px; right:-80px;
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle,rgba(255,184,0,.13) 0%,transparent 65%);
}
.hl::after {
  content:''; position:absolute; bottom:-150px; left:-80px;
  width:360px; height:360px; border-radius:50%;
  background:radial-gradient(circle,rgba(124,58,237,.3) 0%,transparent 65%);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase;
  color: var(--y); margin-bottom: 2rem; position: relative; z-index: 1;
}
.hero-eyebrow::before { content:''; width:18px; height:2px; background:var(--y); border-radius:2px; }

.hero-h1 {
  font-family: 'Black Han Sans',sans-serif;
  font-size: clamp(3rem,5.5vw,5.2rem);
  line-height: .95; letter-spacing: -2.5px;
  color: var(--w); margin-bottom: 1.75rem; position: relative; z-index: 1;
}
.hero-h1 em { color: var(--y); font-style: normal; display: block; }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.68); line-height: 1.8;
  max-width: 480px; margin-bottom: 2.5rem; position: relative; z-index: 1;
}
.hero-sub strong { color: var(--w); }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: .65rem;
  margin-bottom: 2.5rem; position: relative; z-index: 1;
}
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px; padding: .4rem 1rem;
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.88);
}
.chipdot {
  width: 7px; height: 7px; background: var(--y);
  border-radius: 50%; flex-shrink: 0;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; position: relative; z-index: 1; }

.btn-yellow {
  background: var(--y); color: var(--pd);
  font-family:'Nunito',sans-serif; font-weight: 900; font-size: 1rem;
  padding: 1rem 2.2rem; border-radius: 14px; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  box-shadow: 0 8px 28px rgba(255,184,0,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-yellow:hover { color: var(--pd); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(255,184,0,.55); }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,.82);
  border: 2px solid rgba(255,255,255,.28);
  font-family:'Nunito',sans-serif; font-weight: 800; font-size: 1rem;
  padding: 1rem 2.2rem; border-radius: 14px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-ghost:hover { border-color: var(--y); color: var(--y); transform: translateY(-3px); }

/* destra scura */
.hr {
  background: var(--d2);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 5% 90px 8%;
  position: relative; overflow: hidden;
}
.hr::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:350px; height:350px; border-radius:50%;
  background:radial-gradient(circle,rgba(255,184,0,.08) 0%,transparent 65%);
}
.hr::after {
  content:''; position:absolute; bottom:-80px; left:-30px;
  width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle,rgba(124,58,237,.2) 0%,transparent 65%);
}

.hero-kpi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.kpi {
  border-radius: 18px; padding: 1.5rem 1.4rem;
  border: 1.5px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.05);
  transition: transform .25s, border-color .25s;
}
.kpi:hover { transform: translateY(-4px); border-color: rgba(255,184,0,.25); }
.kpi.acc { background: rgba(91,33,182,.25); border-color: rgba(124,58,237,.45); }
.kpi-num {
  font-family: 'Black Han Sans',sans-serif;
  font-size: 2.6rem; color: var(--y); line-height: 1; margin-bottom: .3rem;
}
.kpi-lbl { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.55); line-height: 1.4; }

.rem-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,184,0,.12); border: 1px solid rgba(255,184,0,.3);
  border-radius: 100px; padding: .5rem 1.2rem;
  font-size: .75rem; font-weight: 800; color: var(--y);
  letter-spacing: .07em; text-transform: uppercase;
  width: fit-content; position: relative; z-index: 1;
}
.remdot { width: 8px; height: 8px; background: var(--y); border-radius: 50%; animation: blink 2s ease infinite; }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-wrap {
  background: var(--pd); overflow: hidden; padding: .9rem 0;
  border-top: 1px solid rgba(255,184,0,.12);
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 800; color: rgba(255,255,255,.65);
  padding: 0 2.5rem; text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0;
}
.tdot { width: 6px; height: 6px; background: var(--y); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   SEZIONE FEATURE — bento asimmetrico
══════════════════════════════════════ */
.features-sec {
  background: var(--dark);
  padding: 7rem 5%;
  position: relative; overflow: hidden;
}
.features-sec::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--y),var(--pm),var(--teal));
}
.features-sec::after {
  content:''; position:absolute; bottom:-180px; right:-180px;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(91,33,182,.15) 0%,transparent 65%);
  pointer-events:none;
}

.sec-eyebrow {
  font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase;
  color: var(--y); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .5rem;
}
.sec-eyebrow::before { content:''; width:18px; height:2px; background:var(--y); border-radius:2px; }
.sec-h2 {
  font-family: 'Black Han Sans',sans-serif;
  font-size: clamp(2rem,3.5vw,3rem);
  color: var(--w); line-height: 1.02; letter-spacing: -1.5px; margin-bottom: .6rem;
}
.sec-h2 span { color: var(--y); }
.sec-sub {
  font-size: 1rem; color: rgba(255,255,255,.52); line-height: 1.75;
  margin-bottom: 3.5rem; max-width: 560px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 1.2rem;
  position: relative; z-index: 1;
}
.bcard {
  border-radius: 22px; padding: 2rem 1.8rem;
  border: 1.5px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.bcard::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--pm), var(--y));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.bcard:hover { transform: translateY(-6px); border-color: rgba(255,184,0,.2); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.bcard:hover::before { transform: scaleX(1); }

.bcard.wide { grid-column: span 2; }
.bcard.dark-acc { background: rgba(91,33,182,.22); border-color: rgba(124,58,237,.4); }
.bcard.yellow { background: var(--y); border-color: var(--yd); }
.bcard.yellow:hover { box-shadow: 0 20px 50px rgba(255,184,0,.25); }

.bcard-icon { font-size: 2.2rem; margin-bottom: 1.1rem; display: block; }
.bcard h3 { font-weight: 900; font-size: 1rem; color: var(--w); margin-bottom: .5rem; }
.bcard p { font-size: .84rem; color: rgba(255,255,255,.52); line-height: 1.65; }
.bcard.dark-acc h3 { color: var(--y); }
.bcard.dark-acc p { color: rgba(255,255,255,.65); }
.bcard.yellow h3 { color: var(--pd); }
.bcard.yellow p { color: rgba(59,7,100,.72); }
.bcard-big {
  font-family: 'Black Han Sans',sans-serif;
  font-size: 3.5rem; color: var(--y); line-height: 1; margin: .4rem 0 .4rem;
}
.bcard.dark-acc .bcard-big { color: var(--y); }

/* ══════════════════════════════════════
   CALLOUT — Domicilio Digitale
══════════════════════════════════════ */
.callout-sec {
  background: var(--y);
  padding: 5rem 5%;
  position: relative; overflow: hidden;
}
.callout-sec::after {
  content:''; position:absolute; right:-130px; top:50%; transform:translateY(-50%);
  width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle,rgba(59,7,100,.1) 0%,transparent 65%);
  pointer-events:none;
}
.callout-in {
  display: grid; grid-template-columns: auto 1fr auto; gap: 2.5rem;
  align-items: center; max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 1;
}
.callout-ico { font-size: 3.8rem; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(-5deg)} 50%{transform:translateY(-10px) rotate(5deg)} }
.callout-txt h3 {
  font-family: 'Black Han Sans',sans-serif;
  font-size: clamp(1.5rem,2.5vw,2.1rem);
  color: var(--pd); letter-spacing: -.5px; margin-bottom: .5rem;
}
.callout-txt p { font-size: .95rem; color: rgba(59,7,100,.76); line-height: 1.72; }
.callout-txt p strong { color: var(--pd); }
.btn-dark {
  background: var(--pd); color: var(--w);
  font-family:'Nunito',sans-serif; font-weight: 900; font-size: .92rem;
  padding: 1rem 2rem; border-radius: 13px; border: none; cursor: pointer;
  text-decoration: none; display: inline-block; white-space: nowrap;
  box-shadow: 0 8px 28px rgba(59,7,100,.32);
  transition: transform .2s, box-shadow .2s;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(59,7,100,.45); }

/* ══════════════════════════════════════
   LISTA COMPLETA FUNZIONALITÀ
══════════════════════════════════════ */
.full-list-sec {
  background: var(--d2);
  padding: 7rem 5%;
  position: relative; overflow: hidden;
}
.full-list-sec::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--teal),var(--pm),var(--y));
}
.full-list-sec::after {
  content:''; position:absolute; top:-150px; left:-150px;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(91,33,182,.18) 0%,transparent 65%);
  pointer-events:none;
}

.fl-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; position: relative; z-index: 1;
}
.fl-items {
  display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem;
}
.fl-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px; padding: 1.1rem 1.3rem;
  transition: background .25s, border-color .25s, transform .2s;
}
.fl-item:hover { background: rgba(255,184,0,.06); border-color: rgba(255,184,0,.2); transform: translateX(5px); }
.fl-chk {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,184,0,.15); border: 1.5px solid rgba(255,184,0,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--y); margin-top: 1px; font-weight: 900;
}
.fl-item span { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.75); line-height: 1.5; }
.fl-item span strong { color: var(--w); }

/* visual destra */
.fl-visual {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.fl-visual-card {
  border-radius: 22px; padding: 2rem;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.09);
  transition: transform .3s, border-color .3s;
}
.fl-visual-card:hover { transform: translateY(-5px); border-color: rgba(255,184,0,.22); }
.fl-visual-card.accent {
  background: rgba(91,33,182,.22); border-color: rgba(124,58,237,.4);
}
.fl-v-icon { font-size: 2rem; margin-bottom: .9rem; display: block; }
.fl-visual-card h4 { font-weight: 900; font-size: 1rem; color: var(--w); margin-bottom: .4rem; }
.fl-visual-card p { font-size: .84rem; color: rgba(255,255,255,.52); line-height: 1.6; }
.fl-visual-card.accent h4 { color: var(--y); }
.fl-visual-card.accent p { color: rgba(255,255,255,.65); }

.fl-big-card {
  border-radius: 22px; padding: 2.2rem;
  background: var(--pd);
  border: 1.5px solid rgba(124,58,237,.35);
  position: relative; overflow: hidden;
}
.fl-big-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg,var(--y),var(--pm));
}
.fl-big-num {
  font-family: 'Black Han Sans',sans-serif;
  font-size: 4rem; color: var(--y); line-height: 1; margin-bottom: .3rem;
}
.fl-big-card h4 { font-weight: 900; font-size: 1rem; color: var(--w); margin-bottom: .5rem; }
.fl-big-card p { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ══════════════════════════════════════
   PRODOTTI SLIDER
══════════════════════════════════════ */
.products-sec {
  background: var(--dark);
  padding: 7rem 5%;
  position: relative; overflow: hidden;
}
.products-sec::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--y),var(--pm),var(--teal));
}
.products-sec::after {
  content:''; position:absolute; bottom:-200px; right:-200px;
  width:550px; height:550px; border-radius:50%;
  background:radial-gradient(circle,rgba(91,33,182,.15) 0%,transparent 65%);
  pointer-events:none;
}

/* slider layout */
.pslider-outer {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 3rem; position: relative; z-index: 1;
}
.pslider-viewport {
  flex: 1; overflow: hidden;
  border-radius: 24px;
}
.pslider-track {
  display: flex; gap: 1.5rem;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

/* arrows */
.pslider-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.14);
  color: var(--w); font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .15s, opacity .2s;
  z-index: 2;
}
.pslider-arrow:hover { background: var(--y); border-color: var(--y); color: var(--pd); transform: scale(1.1); }
.pslider-arrow:disabled { opacity: .25; pointer-events: none; }

/* dots */
.pslider-dots {
  display: flex; justify-content: center; gap: .6rem;
  margin-top: 1.8rem; position: relative; z-index: 1;
  transition: opacity .2s;
}
.pdot {
  width: 8px; height: 8px; border-radius: 100px;
  background: rgba(255,255,255,.2); cursor: pointer;
  transition: background .25s, width .25s;
}
.pdot.active { background: var(--y); width: 24px; }

/* product card */
.pcard {
  flex: 0 0 calc(33.333% - 1rem);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
  min-width: 280px; /* Ensure minimum width for readability */
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.pcard.featured {
  border-color: var(--pm);
  box-shadow: 0 0 0 4px rgba(124,58,237,.18), 0 20px 50px rgba(91,33,182,.25);
}
.pcard.featured:hover { transform: translateY(-8px); box-shadow: 0 0 0 4px rgba(124,58,237,.28), 0 30px 70px rgba(91,33,182,.4); }

/* card image */
.pcard-img-wrap {
  position: relative; overflow: hidden; height: 200px;
}
.pcard-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.pcard:hover .pcard-img { transform: scale(1.06); }
.pcard-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.35) 100%);
}
.pcard-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--pm); color: var(--w);
  font-size: .65rem; font-weight: 900; letter-spacing: .08em;
  padding: .25rem .7rem; border-radius: 100px;
}
.pcard-featured-tag {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  background: var(--y); color: var(--pd);
  font-size: .68rem; font-weight: 900;
  padding: .25rem .8rem; border-radius: 100px;
}

/* card body */
.pcard-body { padding: 1.4rem 1.5rem 1.5rem; }
.pcard-title { font-weight: 900; font-size: 1.05rem; color: #1a1030; margin-bottom: .5rem; }
.pcard-stars { display: flex; align-items: center; gap: .15rem; margin-bottom: .65rem; }
.star { color: #e0d6f7; font-size: .9rem; }
.star.filled { color: var(--y); }
.star-count { font-size: .72rem; font-weight: 800; color: #9e9e9e; margin-left: .35rem; }
.pcard-price {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.8rem; color: #1a1030; margin-bottom: .65rem; letter-spacing: -1px;
}
.pcard.featured .pcard-price { color: var(--pm); }
.pcard-desc { font-size: .8rem; color: rgba(26,16,48,.58); line-height: 1.6; margin-bottom: 1.2rem; }

/* card actions */
.pcard-actions { display: flex; gap: .6rem; }
.pcard-btn-main {
  flex: 1; background: var(--pm); color: var(--w);
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: .82rem;
  padding: .75rem 1rem; border-radius: 10px; text-decoration: none;
  text-align: center; transition: background .2s, transform .15s;
}
.pcard-btn-main:hover { background: var(--p); transform: translateY(-1px); }

/* WooCommerce loading states for PEC buttons */
.pcard-btn-main.loading,
.pcard-btn-main.ajax_add_to_cart.loading {
  opacity: 0.6;
  cursor: wait;
  pointer-events: none;
  position: relative;
}

.pcard-btn-main.loading::after,
.pcard-btn-main.ajax_add_to_cart.loading::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid var(--w);
  border-right-color: transparent;
  border-radius: 50%;
  animation: pec-spin 0.6s linear infinite;
}

@keyframes pec-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* WooCommerce added states for PEC buttons */
.pcard-btn-main.added,
.pcard-btn-main.ajax_add_to_cart.added {
  background: #10b981 !important;
  transform: scale(1.05);
}

/* Ensure WooCommerce ajax buttons maintain PEC design */
.pcard-btn-main.ajax_add_to_cart {
  flex: 1;
  background: var(--pm);
  color: var(--w);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: .82rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}

.pcard-btn-main.ajax_add_to_cart:hover {
  background: var(--p);
  transform: translateY(-1px);
}
.pcard-btn-icon {
  flex: 1;
  background: var(--y); color: var(--pd);
  font-size: 0.82rem; font-weight: 900;
  width: 42px; border-radius: 10px; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s; flex-shrink: 0;
}
.pcard-btn-icon:hover { color: #fff; background: var(--yd); transform: translateY(-1px); }

/* ══════════════════════════════════════
   ANIMAZIONI
══════════════════════════════════════ */
@keyframes wordUp {
  from { opacity:0; transform:translateY(50px) rotate(2deg); }
  to   { opacity:1; transform:none; }
}
.aw { display:inline-block; animation:wordUp .7s cubic-bezier(.22,1,.36,1) both; }
.d1{animation-delay:.08s} .d2{animation-delay:.18s} .d3{animation-delay:.28s} .d4{animation-delay:.38s}

.rv {
  opacity:0; transform:translateY(28px);
  transition:opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.rv.on { opacity:1; transform:none; }
.rv1{transition-delay:.08s} .rv2{transition-delay:.16s} .rv3{transition-delay:.24s} .rv4{transition-delay:.32s}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (min-width:1101px) {
  /* Desktop-only: Center cards when all products are visible */
  .pslider-track {
    justify-content: center;
  }
}

@media (max-width:1100px) {
  .hero { grid-template-columns:1fr; }
  .hl { clip-path:none; padding:70px 5%; }
  .hr { padding:60px 5%; }
  .hero-kpi-grid { grid-template-columns: repeat(4,1fr); }
  .fl-grid { grid-template-columns:1fr; gap:3rem; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bcard.wide { grid-column: span 2; }
  .callout-in { grid-template-columns: auto 1fr; }
  .btn-dark { grid-column: span 2; text-align:center; }

  /* Tablet slider optimizations */
  .pcard {
    flex: 0 0 calc(50% - .75rem);
    min-width: 250px;
  }
}
@media (max-width:768px) {
  .hero-kpi-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns:1fr; }
  .bcard.wide { grid-column:1; }
  .callout-in { grid-template-columns:1fr; text-align:center; }
  .callout-ico { margin:0 auto; }
  .btn-dark { grid-column:1; width:100%; text-align:center; }
  body.pec-template { cursor: auto; }
  #cursor, #cursor-ring { display: none; }

  /* Slider mobile optimizations */
  .pslider-outer { gap: .8rem; }
  .pslider-arrow {
    width: 56px; height: 56px;
    font-size: 1.4rem;
    border: 2px solid rgba(255,255,255,.2);
  }
  .pcard {
    flex: 0 0 85vw;
    min-width: unset;
    max-width: 320px;
  }
  .pcard-body { padding: 1.2rem 1.3rem 1.3rem; }
  .pslider-dots { margin-top: 1.5rem; }
  .pdot { width: 10px; height: 10px; }
  .pdot.active { width: 28px; }
}
@media (max-width:560px) {
  .hero-h1 { font-size:2.8rem; }
  .hero-kpi-grid { grid-template-columns: 1fr 1fr; }
}

a.added_to_cart.wc-forward {
  display: none;
}