:root{
  --yellow:#FFCE00;
  --amber:#EDA415;
  --dark:#111111;
  --dark-2:#1B1B1B;
  --coffee:#3E2A1E;
  --coffee-2:#5C3D28;
  --cream:#FBF6EE;
  --gray:#F4F4F4;
  --ink:#201B16;
  --muted:#6E655D;
  --line:#EAE2D6;
  --radius:12px;
  --shadow:0 10px 28px rgba(32,27,22,.10);
  --display:'MuseoModerno',system-ui,-apple-system,'Segoe UI',sans-serif;
  --body:'Manrope',system-ui,-apple-system,'Segoe UI',sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--body);
  color:var(--ink);
  background:#fff;
  line-height:1.6;
  font-size:16px;
}
section{scroll-margin-top:130px}
img,svg{display:block;max-width:100%}
a{color:inherit}
:focus-visible{outline:3px solid var(--amber);outline-offset:3px;border-radius:4px}
.container{width:min(1200px,93%);margin:0 auto}
.section-head{text-align:center;max-width:640px;margin:0 auto 2.6rem}
.section-head .kicker{
  display:inline-block;font-weight:800;font-size:.78rem;letter-spacing:.28em;
  text-transform:uppercase;color:var(--amber);margin-bottom:.6rem;
}
.section-head h2{
  font-family:var(--display);font-weight:800;font-size:clamp(1.7rem,3.4vw,2.4rem);
  line-height:1.15;
}
.section-head p{color:var(--muted);margin-top:.75rem}

/* ---------- Yellow top strip ---------- */
.strip{
  background:var(--yellow);color:var(--dark);
  font-weight:800;font-size:.85rem;letter-spacing:.06em;
  text-align:center;padding:.5rem 0;
}
.strip a{text-decoration:none}
.strip a:hover{text-decoration:underline}

/* ---------- Mid bar: logo / help / search ---------- */
.midbar{background:#fff;border-bottom:1px solid var(--line)}
.midbar .container{
  display:flex;align-items:center;gap:2rem;
  padding:1rem 0;
}
.brand{display:flex;align-items:center;gap:.8rem;text-decoration:none;flex:none}
.brand-mark{width:46px;height:46px;flex:none}
.brand-name{font-family:var(--display);font-weight:800;font-size:1.5rem;letter-spacing:.02em;line-height:1}
.brand-name small{
  display:block;font-family:var(--body);font-weight:700;
  font-size:.6rem;letter-spacing:.24em;text-transform:uppercase;
  color:var(--amber);margin-top:.3rem;
}
.helpline{display:flex;align-items:center;gap:.65rem;color:var(--muted);font-size:.9rem;flex:none}
.helpline svg{width:34px;height:34px;flex:none}
.helpline strong{display:block;color:var(--ink);font-size:1rem}
.helpline a{text-decoration:none}
.helpline a:hover{color:var(--amber)}
.searchbox{flex:1;display:flex;min-width:0}
.searchbox input{
  flex:1;min-width:0;border:2px solid var(--dark);border-right:none;
  border-radius:999px 0 0 999px;padding:.68rem 1.2rem;
  font:inherit;font-size:.95rem;outline:none;
}
.searchbox button{
  border:2px solid var(--dark);background:var(--yellow);
  border-radius:0 999px 999px 0;padding:.68rem 1.4rem;cursor:pointer;
}
.searchbox button svg{width:18px;height:18px}
.searchbox button:hover{background:var(--amber)}

/* ---------- Dark nav ---------- */
.site-header{position:sticky;top:0;z-index:60;background:var(--dark)}
.nav{display:flex;align-items:center;gap:1.2rem;min-height:56px}
.allcats{
  position:relative;
  background:var(--yellow);color:var(--dark);
  font-family:var(--display);font-weight:700;font-size:.95rem;
  padding:1rem 1.4rem;cursor:pointer;border:none;
  display:flex;align-items:center;gap:.6rem;
  align-self:stretch;
}
.allcats svg{width:18px;height:18px}
.nav-links{display:flex;gap:.4rem;list-style:none;align-items:center;flex-wrap:wrap}
.nav-links > li > a{
  display:block;color:#EDEAE5;text-decoration:none;
  font-weight:700;font-size:.9rem;padding:1rem .9rem;
  transition:color .2s,background .2s;
}
.nav-links > li > a:hover{color:var(--yellow)}
.nav-whats{margin-left:auto}
.nav-whats a{
  display:flex;align-items:center;gap:.5rem;
  color:var(--dark);background:var(--yellow);text-decoration:none;
  font-weight:800;font-size:.85rem;padding:.5rem 1rem;border-radius:999px;
}
.nav-whats a:hover{background:var(--amber)}
.nav-whats svg{width:16px;height:16px}
.nav-toggle{
  display:none;background:none;border:1px solid rgba(255,255,255,.3);
  border-radius:8px;color:#fff;padding:.4rem .55rem;cursor:pointer;
  margin:.5rem 0;
}
.nav-toggle svg{width:22px;height:22px}

/* Mega menu */
.mega{
  position:absolute;top:100%;left:0;
  width:min(880px,92vw);
  background:#fff;color:var(--ink);
  border:1px solid var(--line);border-top:3px solid var(--yellow);
  box-shadow:var(--shadow);
  display:none;
  grid-template-columns:repeat(4,1fr);
  gap:1.6rem;padding:1.6rem;
  text-align:left;cursor:default;
  z-index:70;
}
.allcats:hover .mega,.allcats:focus-within .mega{display:grid}
.mega h4{
  font-family:var(--display);font-size:.92rem;font-weight:700;
  padding-bottom:.5rem;margin-bottom:.6rem;border-bottom:2px solid var(--yellow);
}
.mega ul{list-style:none}
.mega li a{
  display:block;text-decoration:none;color:var(--muted);
  font-weight:500;font-size:.86rem;padding:.24rem 0;
}
.mega li a:hover{color:var(--amber)}

/* ---------- Hero slider ---------- */
.hero{position:relative;overflow:hidden}
.slides{position:relative;min-height:520px}
.slide{
  position:absolute;inset:0;
  opacity:0;visibility:hidden;transition:opacity .7s ease;
  display:flex;align-items:center;
}
.slide.active{opacity:1;visibility:visible}
.slide .container{
  display:grid;grid-template-columns:1.05fr .95fr;
  gap:2.5rem;align-items:center;padding:3rem 0;
}
.slide-copy .tag{
  display:inline-block;background:var(--yellow);color:var(--dark);
  font-weight:800;font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  padding:.4rem .9rem;border-radius:999px;margin-bottom:1.1rem;
}
.slide-copy h1,.slide-copy .h1{
  font-family:var(--display);font-weight:800;
  font-size:clamp(2rem,4.6vw,3.3rem);line-height:1.08;margin-bottom:1rem;
}
.slide-copy p{font-size:1.05rem;max-width:44ch;margin-bottom:1.7rem}
.slide-art svg{width:100%;height:auto}
.slide-1{background:linear-gradient(115deg,#171310 0%,#31221A 55%,#4A3223 100%);color:#fff}
.slide-1 p{color:#CFC4B8}
.slide-2{background:linear-gradient(115deg,var(--cream) 0%,#F3E7D3 100%);color:var(--ink)}
.slide-2 p{color:var(--muted)}
.slide-3{background:linear-gradient(115deg,#FFD526 0%,var(--yellow) 60%,#F2B705 100%);color:var(--dark)}
.slide-3 p{color:#4A3B10}
.btn{
  display:inline-block;background:var(--yellow);color:var(--dark);
  font-family:var(--display);font-weight:700;font-size:.98rem;
  text-decoration:none;padding:.85rem 1.9rem;border:none;border-radius:999px;
  cursor:pointer;transition:transform .15s,filter .15s;
}
.btn:hover{filter:brightness(1.05);transform:translateY(-2px)}
.btn-dark{background:var(--dark);color:#fff}
.btn-outline{background:transparent;border:2px solid currentColor}
.slide-ctas{display:flex;gap:.9rem;flex-wrap:wrap}
.hero-arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:5;
  width:46px;height:46px;border-radius:50%;border:none;cursor:pointer;
  background:rgba(255,255,255,.9);color:var(--dark);
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow);
}
.hero-arrow:hover{background:var(--yellow)}
.hero-arrow svg{width:20px;height:20px}
.hero-prev{left:1rem}.hero-next{right:1rem}
.hero-dots{
  position:absolute;bottom:1.2rem;left:0;right:0;z-index:5;
  display:flex;justify-content:center;gap:.55rem;
}
.hero-dots button{
  width:11px;height:11px;border-radius:50%;border:2px solid var(--dark);
  background:transparent;cursor:pointer;padding:0;
}
.slide-1 ~ .hero-dots button{border-color:#fff}
.hero-dots button.active{background:var(--yellow);border-color:var(--dark)}

/* ---------- Feature strip ---------- */
.features{background:var(--dark);color:#fff;padding:1.4rem 0}
.features .container{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem;
}
.feature{display:flex;align-items:center;gap:.9rem}
.feature svg{width:34px;height:34px;flex:none;color:var(--yellow)}
.feature strong{display:block;font-size:.95rem}
.feature span{font-size:.8rem;color:#B9B2A9}

/* ---------- Categories ---------- */
.cats{background:var(--gray);padding:4.5rem 0}
.cat-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1.1rem}
.cat-card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:1.5rem 1rem;text-align:center;text-decoration:none;
  transition:transform .2s,box-shadow .2s,border-color .2s;
}
.cat-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:var(--yellow)}
.cat-card .ico{
  width:64px;height:64px;margin:0 auto .9rem;border-radius:50%;
  background:var(--cream);display:flex;align-items:center;justify-content:center;
}
.cat-card .ico svg{width:34px;height:34px;color:var(--coffee)}
.cat-card h3{font-family:var(--display);font-size:.95rem;font-weight:700}
.cat-card span{font-size:.78rem;color:var(--muted)}

/* ---------- Promo banners ---------- */
.promos{padding:4.5rem 0 0}
.promo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.promo{
  border-radius:var(--radius);overflow:hidden;position:relative;
  padding:1.9rem;min-height:230px;
  display:flex;flex-direction:column;justify-content:flex-end;gap:.35rem;
  text-decoration:none;transition:transform .2s;
}
.promo:hover{transform:translateY(-4px)}
.promo .p-kick{font-weight:800;font-size:.72rem;letter-spacing:.2em;text-transform:uppercase}
.promo h3{font-family:var(--display);font-weight:800;font-size:1.45rem;line-height:1.15}
.promo p{font-size:.88rem;opacity:.85}
.promo .p-link{font-weight:800;font-size:.85rem;margin-top:.5rem}
.promo svg.deco{position:absolute;top:1.2rem;right:1.2rem;width:88px;height:88px;opacity:.9}
.promo-a{background:linear-gradient(140deg,#241A13,#4A3223);color:#fff}
.promo-a .p-kick,.promo-a .p-link{color:var(--yellow)}
.promo-b{background:linear-gradient(140deg,var(--yellow),#F2B705);color:var(--dark)}
.promo-b .p-kick,.promo-b .p-link{color:#5C3D28}
.promo-c{background:linear-gradient(140deg,#F3E7D3,var(--cream));color:var(--ink);border:1px solid var(--line)}
.promo-c .p-kick,.promo-c .p-link{color:var(--amber)}

/* ---------- Products ---------- */
.products{padding:4.5rem 0}
.prod-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.prod{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column;
  transition:transform .2s,box-shadow .2s;
}
.prod:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.prod-art{background:var(--cream);padding:1.6rem;position:relative}
.prod-art svg{width:100%;height:150px}
.prod-badge{
  position:absolute;top:.9rem;left:.9rem;
  background:var(--yellow);color:var(--dark);
  font-weight:800;font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;
  padding:.28rem .7rem;border-radius:999px;
}
.prod-body{padding:1.1rem 1.2rem 1.3rem;display:flex;flex-direction:column;gap:.35rem;flex:1}
.prod-cat{font-size:.72rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--amber)}
.prod h3{font-family:var(--display);font-size:1.02rem;font-weight:700;line-height:1.3}
.prod .price{font-weight:800;font-size:1.05rem;margin-top:.15rem}
.prod .price s{color:var(--muted);font-weight:600;font-size:.85rem;margin-left:.45rem}
.prod .inquire{
  margin-top:auto;padding-top:.85rem;
}
.prod .inquire a{
  display:block;text-align:center;text-decoration:none;
  border:2px solid var(--dark);border-radius:999px;
  font-weight:800;font-size:.85rem;padding:.55rem 1rem;
  transition:background .2s;
}
.prod .inquire a:hover{background:var(--yellow)}
.prod-empty{
  display:none;text-align:center;color:var(--muted);
  padding:2.5rem 1rem;border:2px dashed var(--line);border-radius:var(--radius);
}

/* ---------- Inquiry process ---------- */
.process{background:var(--dark);color:#fff;padding:4.5rem 0}
.process .section-head h2{color:#fff}
.process .section-head p{color:#B9B2A9}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;position:relative}
.step{
  background:var(--dark-2);border:1px solid #2A2A2A;border-radius:var(--radius);
  padding:1.8rem 1.4rem;text-align:center;position:relative;
}
.step .num{
  width:44px;height:44px;margin:0 auto 1rem;border-radius:50%;
  background:var(--yellow);color:var(--dark);
  font-family:var(--display);font-weight:800;font-size:1.15rem;
  display:flex;align-items:center;justify-content:center;
}
.step svg{width:38px;height:38px;margin:0 auto .9rem;color:var(--yellow)}
.step h3{font-family:var(--display);font-size:1.05rem;font-weight:700;margin-bottom:.4rem}
.step p{font-size:.87rem;color:#B9B2A9}

/* ---------- About band ---------- */
.about{padding:4.5rem 0;background:var(--cream)}
.about .container{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.about h2{font-family:var(--display);font-weight:800;font-size:clamp(1.7rem,3.2vw,2.3rem);line-height:1.15;margin-bottom:1rem}
.about h2 em{font-style:normal;color:var(--amber)}
.about p{color:var(--muted);margin-bottom:1rem}
.about ul{list-style:none;margin:1.2rem 0 1.8rem;display:grid;gap:.6rem}
.about li{display:flex;gap:.6rem;align-items:flex-start;font-weight:600;font-size:.95rem}
.about li svg{width:20px;height:20px;flex:none;color:var(--amber);margin-top:.15rem}
.about-art svg{width:100%;height:auto}

/* ---------- Footer ---------- */
.footer{background:var(--dark);color:#CFC9C1}
.footer-main{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:2.5rem;padding:3.5rem 0 2.5rem;
}
.footer h4{
  font-family:var(--display);color:#fff;font-size:1rem;font-weight:700;
  margin-bottom:1rem;padding-bottom:.5rem;border-bottom:2px solid var(--yellow);
  display:inline-block;
}
.footer p{font-size:.9rem}
.footer ul{list-style:none;display:grid;gap:.45rem}
.footer ul a{color:#CFC9C1;text-decoration:none;font-size:.9rem}
.footer ul a:hover{color:var(--yellow)}
.footer .f-brand{display:flex;align-items:center;gap:.7rem;margin-bottom:1rem;color:#fff}
.footer .f-brand .brand-mark{width:40px;height:40px}
.footer .f-brand b{font-family:var(--display);font-size:1.25rem}
.socials{display:flex;gap:.7rem;margin-top:1.2rem}
.socials a{
  width:38px;height:38px;border-radius:50%;
  background:#242424;display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.socials a:hover{background:var(--yellow);color:var(--dark)}
.socials svg{width:17px;height:17px}
.f-contact li{display:flex;gap:.6rem;align-items:flex-start}
.f-contact svg{width:17px;height:17px;flex:none;margin-top:.2rem;color:var(--yellow)}
.footer-bottom{
  border-top:1px solid #2A2A2A;padding:1.1rem 0;
  font-size:.82rem;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;
}
.footer-bottom a{color:#CFC9C1;text-decoration:none}
.footer-bottom a:hover{color:var(--yellow)}

/* ---------- WhatsApp float ---------- */
.wa-float{
  position:fixed;right:1.3rem;bottom:1.3rem;z-index:80;
  width:56px;height:56px;border-radius:50%;
  background:#25D366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,.28);
  transition:transform .2s;
}
.wa-float:hover{transform:scale(1.08)}
.wa-float svg{width:30px;height:30px}

/* ---------- Responsive ---------- */
@media (max-width:1020px){
  .cat-grid{grid-template-columns:repeat(3,1fr)}
  .prod-grid{grid-template-columns:repeat(3,1fr)}
  .features .container{grid-template-columns:repeat(2,1fr)}
  .footer-main{grid-template-columns:1fr 1fr}
}
@media (max-width:820px){
  .midbar .container{flex-wrap:wrap;gap:1rem}
  .searchbox{order:3;flex-basis:100%}
  .helpline{margin-left:auto}
  .slide .container{grid-template-columns:1fr;text-align:center;padding:2.6rem 0 3.4rem}
  .slide-copy p{margin-inline:auto}
  .slide-ctas{justify-content:center}
  .slide-art{max-width:330px;margin:0 auto}
  .slides{min-height:640px}
  .nav{flex-wrap:wrap}
  .nav-toggle{display:block}
  .allcats{display:none}
  .nav-links{
    display:none;flex-direction:column;align-items:stretch;
    flex-basis:100%;padding-bottom:.8rem;gap:0;
  }
  .nav-links.open{display:flex}
  .nav-links > li > a{padding:.7rem .4rem;border-bottom:1px solid #262626}
  .nav-whats{margin:0.8rem 0 0}
  .prod-grid{grid-template-columns:repeat(2,1fr)}
  .promo-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:repeat(2,1fr)}
  .about .container{grid-template-columns:1fr}
  .about-art{max-width:420px;margin:0 auto}
}
@media (max-width:520px){
  .cat-grid{grid-template-columns:repeat(2,1fr)}
  .prod-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .features .container{grid-template-columns:1fr}
  .footer-main{grid-template-columns:1fr}
  .hero-arrow{display:none}
}

/* =====================================================
   Product catalogue — cards, filters, detail modal
   ===================================================== */
.pgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem}
.pcard{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column;cursor:pointer;
  transition:transform .2s,box-shadow .2s,border-color .2s;
}
.pcard:hover,.pcard:focus-visible{transform:translateY(-5px);box-shadow:var(--shadow);border-color:var(--yellow)}
.pcard-art{
  background:#fff;border-bottom:1px solid var(--line);
  height:240px;flex:none;display:flex;align-items:center;justify-content:center;padding:1.2rem;
}
.pcard-art img{width:100%;height:100%;object-fit:contain}
.pcard-body{padding:1rem 1.1rem 1.2rem;display:flex;flex-direction:column;gap:.3rem;flex:1}
.pcard-code{
  align-self:flex-start;background:var(--coffee);color:var(--yellow);
  font-weight:800;font-size:.66rem;letter-spacing:.1em;
  border-radius:999px;padding:.2rem .6rem;
}
.pcard h3{font-family:var(--display);font-size:1.02rem;font-weight:700;line-height:1.25;margin-top:.15rem}
.pcard-fam{font-size:.7rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--amber)}
.pcard-tag{font-size:.84rem;color:var(--muted);line-height:1.45}
.pcard-more{
  margin-top:auto;padding-top:.85rem;font-weight:800;font-size:.83rem;
  color:var(--ink);display:flex;align-items:center;gap:.35rem;
}
.pcard-more::after{content:"→";transition:transform .2s}
.pcard:hover .pcard-more::after{transform:translateX(4px)}

/* ---------- shop toolbar ---------- */
.shop-head{background:var(--cream);border-bottom:1px solid var(--line);padding:2.6rem 0 2rem}
.shop-head h1{font-family:var(--display);font-weight:800;font-size:clamp(1.8rem,3.4vw,2.5rem);line-height:1.12}
.shop-head p{color:var(--muted);margin-top:.6rem;max-width:60ch}
.shop-tools{padding:1.6rem 0 0}
.tabs{display:flex;gap:.6rem;flex-wrap:wrap;margin-bottom:1rem}
.tab{
  border:2px solid var(--dark);background:#fff;border-radius:999px;
  font:inherit;font-weight:800;font-size:.86rem;padding:.5rem 1.15rem;cursor:pointer;
  transition:background .18s,color .18s;
}
.tab:hover{background:var(--gray)}
.tab.active{background:var(--dark);color:#fff}
.chips{display:flex;gap:.5rem;flex-wrap:wrap}
.chip{
  border:1px solid var(--line);background:#fff;border-radius:999px;
  font:inherit;font-size:.82rem;font-weight:700;color:var(--muted);
  padding:.42rem .95rem;cursor:pointer;transition:all .18s;
}
.chip:hover{border-color:var(--amber);color:var(--ink)}
.chip.active{background:var(--yellow);border-color:var(--yellow);color:var(--dark)}
.chip .n{opacity:.6;font-weight:800;margin-left:.3rem}
.shop-bar{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  flex-wrap:wrap;margin:1.6rem 0 1.4rem;
}
.shop-count{font-size:.9rem;color:var(--muted)}
.shop-count strong{color:var(--ink)}
.shop-search{display:flex;max-width:340px;flex:1;min-width:220px}
.shop-search input{
  flex:1;min-width:0;border:2px solid var(--dark);border-right:none;
  border-radius:999px 0 0 999px;padding:.55rem 1.1rem;font:inherit;font-size:.9rem;outline:none;
}
.shop-search button{
  border:2px solid var(--dark);background:var(--yellow);
  border-radius:0 999px 999px 0;padding:0 1.1rem;cursor:pointer;
}
.shop-search button svg{width:18px;height:18px}
.pempty{
  display:none;text-align:center;color:var(--muted);
  padding:3rem 1rem;border:2px dashed var(--line);border-radius:var(--radius);
}
.pempty.show{display:block}

/* ---------- detail modal ---------- */
.pmodal{position:fixed;inset:0;z-index:120;display:none}
.pmodal.open{display:block}
.pmodal-back{position:absolute;inset:0;background:rgba(20,14,8,.55);backdrop-filter:blur(2px)}
.pmodal-panel{
  position:relative;max-width:900px;width:calc(100% - 2rem);
  max-height:88vh;overflow:auto;margin:6vh auto 0;
  background:#fff;border-radius:16px;box-shadow:0 24px 60px rgba(0,0,0,.3);
}
.pmodal-x{
  position:absolute;top:.7rem;right:.9rem;z-index:2;
  border:none;background:var(--gray);color:var(--ink);
  width:36px;height:36px;border-radius:50%;font-size:1.4rem;line-height:1;cursor:pointer;
}
.pmodal-x:hover{background:var(--yellow)}
.pmodal-body{display:grid;grid-template-columns:1fr 1fr}
.pmodal-art{
  background:#fff;border-right:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;padding:2rem;
}
.pmodal-art img{max-height:56vh;width:auto;object-fit:contain}
.pmodal-info{padding:2rem 2rem 2.2rem;display:flex;flex-direction:column;gap:.45rem}
.pmodal-info h2{font-family:var(--display);font-weight:800;font-size:1.6rem;line-height:1.15;margin-top:.2rem}
.pmodal-tag{color:var(--muted);margin:.3rem 0 .5rem}
.pfeat{list-style:none;display:grid;gap:.42rem;margin:.2rem 0 1rem}
.pfeat li{position:relative;padding-left:1.35rem;font-size:.92rem}
.pfeat li::before{
  content:"";position:absolute;left:0;top:.55rem;
  width:8px;height:8px;border-radius:50%;background:var(--yellow);
}
.pspec{width:100%;border-collapse:collapse;font-size:.86rem;margin-bottom:1.2rem}
.pspec td{padding:.5rem .2rem;border-bottom:1px solid var(--line)}
.pspec td:first-child{color:var(--muted);width:42%}
.pspec td:last-child{font-weight:700}
.pmodal-wa{
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  margin-top:auto;text-decoration:none;background:#25D366;color:#fff;
  border-radius:999px;font-weight:800;padding:.75rem 1.2rem;
}
.pmodal-wa svg{width:20px;height:20px}
.pmodal-wa:hover{filter:brightness(.94)}
.pmodal-note{font-size:.78rem;color:var(--muted);margin-top:.7rem;text-align:center}

@media (max-width:1020px){
  .pgrid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:820px){
  .pgrid{grid-template-columns:repeat(2,1fr)}
  .pcard-art{height:200px}
  .pmodal-body{grid-template-columns:1fr}
  .pmodal-art{border-right:none;border-bottom:1px solid var(--line);padding:1.4rem}
  .pmodal-art img{max-height:38vh}
  .pmodal-info{padding:1.5rem}
  .pmodal-panel{margin-top:4vh;max-height:92vh}
}
@media (max-width:520px){
  .pgrid{grid-template-columns:1fr}
  .pcard-art{height:260px}
}

/* ---------- home: browse-all CTA ---------- */
.shop-all{
  margin-top:2.4rem;display:flex;flex-direction:column;align-items:center;gap:.7rem;text-align:center;
}
.shop-all .btn{padding:.85rem 2.2rem}
.shop-all span{font-size:.85rem;color:var(--muted)}
