/* =============================================================
   Private Pharmacy Care — Redesign Mockup
   Cleaner, clinical pharmaceutical design system
   ============================================================= */

:root{
  /* Brand — clinical green + gold accent (kept from original) */
  --green-950:#08251a;
  --green-900:#0f3324;
  --green-800:#15452f;
  --green-700:#1f6347;
  --green-600:#2b7a5c;   /* primary */
  --green-500:#3a8c6c;
  --green-300:#9ec9b6;
  --green-100:#e3f3ec;
  --green-50:#f3faf6;

  --gold:#c79a47;
  --gold-100:#fbf3e2;

  --ink:#0d1b14;
  --text:#1f2a26;
  --muted:#647067;
  --line:#e7ece9;
  --line-soft:#eef2f0;

  --bg:#ffffff;
  --surface:#ffffff;
  --mist:#f5f8f6;     /* section tint */
  --mint:#eef6f1;

  --radius-sm:.6rem;
  --radius:1rem;
  --radius-lg:1.5rem;
  --radius-xl:2rem;
  --radius-pill:999px;

  --shadow-xs:0 1px 2px rgba(13,27,20,.05);
  --shadow-sm:0 4px 14px rgba(13,27,20,.06);
  --shadow-md:0 14px 40px rgba(13,27,20,.08);
  --shadow-lg:0 30px 70px rgba(13,27,20,.12);

  --container:1180px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box}
html{font-size:100%;-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}
ul{margin:0;padding:0;list-style:none}

h1,h2,h3,h4{color:var(--ink);line-height:1.1;letter-spacing:-.03em;font-weight:800;margin:0}
h1{font-size:clamp(2.3rem,5vw,3.9rem);letter-spacing:-.04em}
h2{font-size:clamp(1.8rem,3.2vw,2.7rem)}
h3{font-size:clamp(1.15rem,1.6vw,1.35rem)}
p{margin:0}

.container{width:min(var(--container),calc(100% - 2.5rem));margin-inline:auto}
.section{padding:clamp(3.5rem,7vw,6rem) 0}
.section-tint{background:var(--mist)}
.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}
.skip-link{position:absolute;left:-999px;top:0;background:var(--green-600);color:#fff;padding:.7rem 1rem;border-radius:0 0 .6rem 0;z-index:200}
.skip-link:focus{left:0}

/* ---------- Eyebrow / headings ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.78rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  color:var(--green-600);margin-bottom:.9rem;
}
.eyebrow::before{content:"";width:1.4rem;height:2px;border-radius:2px;background:var(--gold)}
.eyebrow-light{color:#bfe6d4}
.eyebrow-light::before{background:#bfe6d4}
.section-head{max-width:46rem}
.section-head.center{margin-inline:auto;text-align:center}
.section-head p{color:var(--muted);font-size:1.08rem;margin-top:.9rem}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-weight:600;font-size:.97rem;line-height:1;
  padding:.92rem 1.5rem;border-radius:var(--radius-pill);
  border:1.5px solid transparent;cursor:pointer;
  transition:transform .18s var(--ease),background .18s,box-shadow .18s,border-color .18s,color .18s;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--green-600);color:#fff;box-shadow:0 10px 24px rgba(43,122,92,.28)}
.btn-primary:hover{background:var(--green-700);box-shadow:0 14px 30px rgba(43,122,92,.34);transform:translateY(-1px)}
.btn-outline{background:#fff;color:var(--green-700);border-color:var(--line)}
.btn-outline:hover{border-color:var(--green-300);background:var(--green-50)}
.btn-ghost{background:transparent;color:var(--green-700)}
.btn-ghost:hover{background:var(--green-50)}
.btn-light{background:#fff;color:var(--green-700)}
.btn-light:hover{background:var(--green-50);transform:translateY(-1px)}
.btn-outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.45)}
.btn-outline-light:hover{background:rgba(255,255,255,.12)}
.btn-block{width:100%}
.btn-sm{padding:.66rem 1.05rem;font-size:.9rem}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.86);
  backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid var(--line-soft);
}
.header-inner{display:flex;align-items:center;gap:1.25rem;min-height:74px}
.brand{display:flex;align-items:center;flex-shrink:0}
.brand-logo{height:34px;width:auto}
.primary-nav{margin-left:auto}
.nav-list{display:flex;align-items:center;gap:.35rem}
.nav-link{
  position:relative;display:inline-flex;align-items:center;
  padding:.55rem .85rem;border-radius:var(--radius-pill);
  font-size:.95rem;font-weight:500;color:var(--text);
  transition:background .16s,color .16s;
}
.nav-link:hover{background:var(--green-50);color:var(--green-700)}
.nav-link.is-active,.nav-link[aria-current="page"]{color:var(--green-700);font-weight:600}
.header-actions{display:flex;align-items:center;gap:.55rem;margin-left:.4rem}
.header-phone{
  display:inline-flex;align-items:center;gap:.5rem;
  font-weight:700;color:var(--green-700);font-size:.95rem;
  padding:.5rem .7rem;border-radius:var(--radius-pill);
}
.header-phone:hover{background:var(--green-50)}
.header-phone svg{width:18px;height:18px}

/* Basket button */
.basket-btn{
  position:relative;display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:var(--radius-pill);
  background:var(--green-50);border:1px solid var(--line);color:var(--green-700);cursor:pointer;
  transition:background .16s,border-color .16s;
}
.basket-btn:hover{background:var(--green-100);border-color:var(--green-300)}
.basket-btn svg{width:21px;height:21px}
.basket-count{
  position:absolute;top:-5px;right:-5px;min-width:20px;height:20px;padding:0 5px;
  background:var(--gold);color:#3a2c08;font-size:.72rem;font-weight:800;
  border-radius:var(--radius-pill);display:flex;align-items:center;justify-content:center;
  border:2px solid #fff;
}

/* Mobile nav toggle */
.nav-toggle{
  display:none;width:44px;height:44px;border:1px solid var(--line);border-radius:var(--radius-pill);
  background:#fff;cursor:pointer;position:relative;margin-left:.25rem;
}
.nav-toggle-bar,.nav-toggle-bar::before,.nav-toggle-bar::after{
  content:"";position:absolute;left:50%;top:50%;width:18px;height:2px;border-radius:2px;
  background:var(--ink);transform:translate(-50%,-50%);transition:.22s var(--ease);
}
.nav-toggle-bar::before{transform:translate(-50%,-7px)}
.nav-toggle-bar::after{transform:translate(-50%,5px)}
body.nav-open .nav-toggle-bar{background:transparent}
body.nav-open .nav-toggle-bar::before{transform:translate(-50%,-50%) rotate(45deg)}
body.nav-open .nav-toggle-bar::after{transform:translate(-50%,-50%) rotate(-45deg)}

/* ---------- Hero ---------- */
.hero{position:relative;overflow:hidden;background:
  radial-gradient(120% 90% at 85% -10%,var(--green-50) 0%,transparent 55%),
  linear-gradient(180deg,#fff 0%,var(--mist) 100%);
  padding:clamp(2.8rem,5vw,4.5rem) 0 clamp(3.5rem,6vw,5.5rem)}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,4vw,4rem);align-items:center}
.hero-lead{font-size:1.2rem;color:var(--muted);margin:1.4rem 0 1.9rem;max-width:34rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-bottom:1.9rem}
.hero-trust{display:flex;flex-wrap:wrap;gap:.55rem}
.trust-pill{
  display:inline-flex;align-items:center;gap:.45rem;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-pill);
  padding:.5rem .9rem;font-size:.85rem;font-weight:600;color:var(--green-800);
  box-shadow:var(--shadow-xs);
}
.trust-pill svg{width:15px;height:15px;color:var(--green-600)}

/* Hero visual */
.hero-visual{position:relative}
.hero-photo{
  position:relative;border-radius:var(--radius-xl);overflow:hidden;
  box-shadow:var(--shadow-lg);aspect-ratio:4/4.6;
  border:1px solid var(--line);
}
.hero-photo img{width:100%;height:100%;object-fit:cover}
.hero-badge{
  position:absolute;left:-14px;bottom:26px;background:#fff;
  border-radius:var(--radius);box-shadow:var(--shadow-md);
  border:1px solid var(--line);padding:.85rem 1.05rem;display:flex;gap:.7rem;align-items:center;
  max-width:230px;
}
.hero-badge .hb-icon{flex:0 0 auto;width:38px;height:38px;border-radius:12px;background:var(--green-100);
  display:grid;place-items:center;color:var(--green-700)}
.hero-badge .hb-icon svg{width:20px;height:20px}
.hero-badge strong{display:block;font-size:.92rem;color:var(--ink)}
.hero-badge small{color:var(--muted);font-size:.8rem}
.hero-float-card{
  position:absolute;right:-10px;top:24px;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);box-shadow:var(--shadow-md);padding:1rem 1.1rem;width:210px;
}
.hero-float-card .mini-title{font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;color:var(--green-600);font-weight:700;margin-bottom:.6rem}
.hero-float-card ol{display:grid;gap:.5rem}
.hero-float-card li{display:flex;align-items:center;gap:.55rem;font-size:.85rem;font-weight:500;color:var(--text)}
.hero-float-card li span{flex:0 0 auto;width:21px;height:21px;border-radius:50%;background:var(--green-600);color:#fff;font-size:.72rem;font-weight:700;display:grid;place-items:center}

/* ---------- Logos / trust strip ---------- */
.trust-strip{border-block:1px solid var(--line-soft);background:#fff}
.trust-strip .container{display:flex;flex-wrap:wrap;justify-content:space-between;gap:1.2rem;padding-block:1.4rem}
.trust-item{display:flex;align-items:center;gap:.6rem;font-size:.92rem;font-weight:600;color:var(--green-900)}
.trust-item svg{width:22px;height:22px;color:var(--green-600);flex:0 0 auto}

/* ---------- Category / treatment cards grid ---------- */
.grid{display:grid;gap:1.3rem}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.mt-head{margin-top:2.6rem}

.cat-card{
  display:flex;flex-direction:column;gap:.9rem;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:1.5rem;transition:transform .2s var(--ease),box-shadow .2s,border-color .2s;
}
.cat-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--green-300)}
.cat-icon{width:52px;height:52px;border-radius:15px;display:grid;place-items:center;
  background:var(--green-100);color:var(--green-700)}
.cat-icon svg{width:26px;height:26px}
.cat-card h3{font-size:1.15rem}
.cat-card p{color:var(--muted);font-size:.95rem;flex:1}
.cat-link{display:inline-flex;align-items:center;gap:.4rem;font-weight:600;color:var(--green-700);font-size:.92rem}
.cat-link svg{width:15px;height:15px;transition:transform .18s}
.cat-card:hover .cat-link svg{transform:translateX(3px)}

/* ---------- Process / steps ---------- */
.process-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(2rem,4vw,3.5rem);align-items:start}
.steps{display:grid;gap:1rem}
.step{
  display:flex;gap:1.1rem;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:1.3rem 1.4rem;align-items:flex-start;
  transition:box-shadow .2s,border-color .2s;
}
.step:hover{box-shadow:var(--shadow-sm);border-color:var(--green-300)}
.step-num{flex:0 0 auto;width:42px;height:42px;border-radius:13px;background:var(--green-600);color:#fff;
  font-weight:800;font-size:1rem;display:grid;place-items:center;letter-spacing:-.02em}
.step h3{font-size:1.08rem;margin-bottom:.25rem}
.step p{color:var(--muted);font-size:.94rem}

/* ---------- Why / feature cards ---------- */
.feature-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.8rem;text-align:left}
.feature-card .why-icon{width:54px;height:54px;border-radius:16px;background:var(--green-100);color:var(--green-700);display:grid;place-items:center;margin-bottom:1.1rem}
.feature-card .why-icon svg{width:28px;height:28px}
.feature-card h3{margin-bottom:.5rem}
.feature-card p{color:var(--muted);font-size:.96rem}

/* ---------- Contact bar ---------- */
.contact-bar{background:var(--green-900);color:#eafaf2}
.contact-bar .container{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1.4rem;padding-block:1.7rem}
.contact-bar h3{color:#fff;font-size:1.25rem}
.contact-bar p{color:#bfe6d4;font-size:.96rem;margin-top:.2rem}
.contact-links{display:flex;flex-wrap:wrap;gap:.7rem}
.contact-links a{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);padding:.7rem 1.1rem;border-radius:var(--radius-pill);font-weight:600;font-size:.95rem;color:#fff}
.contact-links a:hover{background:rgba(255,255,255,.18)}

/* ---------- Reviews ---------- */
.reviews-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(2rem,4vw,3.5rem);align-items:start}
.review-summary{display:flex;align-items:center;gap:1rem;margin-top:1.6rem;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.1rem 1.3rem;box-shadow:var(--shadow-xs)}
.review-summary strong{font-size:2.2rem;color:var(--green-700);line-height:1;letter-spacing:-.04em}
.review-summary .rs-stars{color:var(--gold);font-size:1rem;letter-spacing:2px}
.review-summary small{display:block;color:var(--muted);font-size:.8rem;margin-top:.2rem}
.review-summary p{color:var(--muted);font-size:.85rem}
.reviews-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.1rem}
.review-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.5rem;display:flex;flex-direction:column;gap:.9rem;box-shadow:var(--shadow-xs)}
.review-card.feat{background:var(--green-900);border-color:var(--green-900);color:#eafaf2}
.review-card.feat p{color:#dff3e9}
.review-card.feat .review-person strong{color:#fff}
.review-card.feat .rp-avatar{background:rgba(255,255,255,.16);color:#fff}
.stars{color:var(--gold);letter-spacing:2px;font-size:.95rem}
.review-card p{font-size:1rem;color:var(--text);flex:1}
.review-person{display:flex;align-items:center;gap:.7rem}
.rp-avatar{width:40px;height:40px;border-radius:50%;background:var(--green-100);color:var(--green-700);font-weight:700;display:grid;place-items:center;font-size:.85rem}
.review-person strong{display:block;font-size:.92rem;color:var(--ink)}
.review-person small{color:var(--muted);font-size:.8rem}

/* ---------- Final CTA ---------- */
.final-card{
  position:relative;overflow:hidden;border-radius:var(--radius-xl);
  background:radial-gradient(130% 120% at 90% 0,var(--green-700) 0,var(--green-900) 60%);
  color:#fff;padding:clamp(2.4rem,5vw,4rem);display:grid;grid-template-columns:1.3fr .7fr;gap:2rem;align-items:center;
}
.final-card::after{content:"";position:absolute;right:-60px;bottom:-90px;width:280px;height:280px;border-radius:50%;background:rgba(255,255,255,.06)}
.final-card h2{color:#fff;position:relative;z-index:1}
.final-card p{color:#cdeede;margin-top:.9rem;position:relative;z-index:1}
.final-actions{display:flex;flex-direction:column;gap:.7rem;position:relative;z-index:1}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{background:linear-gradient(180deg,var(--green-50),#fff);border-bottom:1px solid var(--line-soft);padding:clamp(2.4rem,5vw,3.6rem) 0}
.breadcrumb{display:flex;align-items:center;gap:.45rem;font-size:.85rem;color:var(--muted);margin-bottom:1rem}
.breadcrumb a:hover{color:var(--green-700)}
.breadcrumb span{opacity:.5}
.page-hero h1{font-size:clamp(2rem,4vw,3rem)}
.page-hero .lead{color:var(--muted);font-size:1.1rem;margin-top:.9rem;max-width:42rem}

/* =============================================================
   SHOP (WooCommerce-style mockup)
   ============================================================= */
.shop-layout{display:grid;grid-template-columns:250px 1fr;gap:2.2rem;align-items:start}
.shop-sidebar{position:sticky;top:96px;display:grid;gap:1.4rem}
.filter-block{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.2rem 1.3rem}
.filter-block h4{font-size:.82rem;text-transform:uppercase;letter-spacing:.1em;color:var(--muted);margin-bottom:.9rem;font-weight:700}
.filter-list{display:grid;gap:.15rem}
.filter-list a{display:flex;align-items:center;justify-content:space-between;padding:.5rem .65rem;border-radius:var(--radius-sm);font-size:.93rem;color:var(--text);transition:background .15s}
.filter-list a:hover{background:var(--green-50)}
.filter-list a.active{background:var(--green-100);color:var(--green-800);font-weight:600}
.filter-list a .count{font-size:.78rem;color:var(--muted)}
.filter-pillbox{display:flex;flex-wrap:wrap;gap:.4rem}
.filter-pillbox button{border:1px solid var(--line);background:#fff;border-radius:var(--radius-pill);padding:.4rem .8rem;font-size:.84rem;cursor:pointer;color:var(--text);transition:.15s}
.filter-pillbox button:hover{border-color:var(--green-300)}
.filter-pillbox button.active{background:var(--green-600);border-color:var(--green-600);color:#fff}

.shop-toolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1.4rem}
.shop-result-count{color:var(--muted);font-size:.92rem}
.shop-result-count strong{color:var(--ink)}
.shop-sort{display:flex;align-items:center;gap:.6rem}
.shop-sort select{border:1px solid var(--line);border-radius:var(--radius-pill);padding:.55rem 2.2rem .55rem 1rem;font-size:.9rem;font-family:inherit;color:var(--text);background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23647067' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right .9rem center;-webkit-appearance:none;appearance:none;cursor:pointer}

.filter-toggle-mobile{display:none}

.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.product-card{
  position:relative;display:flex;flex-direction:column;background:#fff;
  border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;
  transition:transform .2s var(--ease),box-shadow .2s,border-color .2s;
}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--green-300)}
.product-media{position:relative;aspect-ratio:1/1;background:linear-gradient(160deg,var(--green-50),var(--mint));display:grid;place-items:center;overflow:hidden}
.product-media svg.rx-art{width:58%;height:58%;color:var(--green-600);opacity:.92}
.product-badges{position:absolute;top:.7rem;left:.7rem;display:flex;flex-direction:column;gap:.35rem;z-index:2}
.pbadge{font-size:.68rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase;padding:.28rem .55rem;border-radius:var(--radius-pill)}
.pbadge.pom{background:var(--gold-100);color:#8a6418;border:1px solid #e9d4a3}
.pbadge.otc{background:var(--green-100);color:var(--green-800)}
.pbadge.sale{background:#fde6e3;color:#b0341f}
.wishlist{position:absolute;top:.7rem;right:.7rem;width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.85);border:1px solid var(--line);display:grid;place-items:center;color:var(--muted);cursor:pointer;z-index:2;transition:.16s}
.wishlist:hover{color:#d6453a;border-color:#f1c4bf}
.wishlist svg{width:17px;height:17px}
.product-body{display:flex;flex-direction:column;gap:.5rem;padding:1.1rem 1.2rem 1.3rem;flex:1}
.product-cat{font-size:.74rem;text-transform:uppercase;letter-spacing:.1em;color:var(--green-600);font-weight:700}
.product-title{font-size:1.05rem;font-weight:700;color:var(--ink);line-height:1.25}
.product-title a:hover{color:var(--green-700)}
.product-rating{display:flex;align-items:center;gap:.4rem;font-size:.82rem;color:var(--muted)}
.product-rating .stars{font-size:.82rem}
.product-desc{font-size:.88rem;color:var(--muted);flex:1}
.product-foot{display:flex;align-items:center;justify-content:space-between;gap:.6rem;margin-top:.4rem}
.price{display:flex;align-items:baseline;gap:.45rem}
.price .now{font-size:1.25rem;font-weight:800;color:var(--ink);letter-spacing:-.02em}
.price .was{font-size:.9rem;color:var(--muted);text-decoration:line-through}
.price .from{font-size:.78rem;color:var(--muted);font-weight:500}
.add-btn{
  display:inline-flex;align-items:center;gap:.45rem;background:var(--green-600);color:#fff;
  border:none;border-radius:var(--radius-pill);padding:.6rem .95rem;font-size:.88rem;font-weight:600;cursor:pointer;
  transition:background .16s,transform .16s;
}
.add-btn:hover{background:var(--green-700);transform:translateY(-1px)}
.add-btn svg{width:16px;height:16px}
.add-btn.consult{background:#fff;color:var(--green-700);border:1.5px solid var(--line)}
.add-btn.consult:hover{border-color:var(--green-300);background:var(--green-50);transform:none}
.add-btn.added{background:var(--green-800)}

/* ---------- Single product page ---------- */
.product-single{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,4vw,3.5rem);align-items:start}
.psingle-gallery{position:sticky;top:96px}
.psingle-main{aspect-ratio:1/1;background:linear-gradient(160deg,var(--green-50),var(--mint));border:1px solid var(--line);border-radius:var(--radius-xl);display:grid;place-items:center;overflow:hidden}
.psingle-main svg{width:55%;height:55%;color:var(--green-600)}
.psingle-thumbs{display:flex;gap:.7rem;margin-top:.9rem}
.psingle-thumbs button{width:78px;height:78px;border-radius:var(--radius);border:1.5px solid var(--line);background:var(--green-50);display:grid;place-items:center;cursor:pointer;color:var(--green-600);transition:border-color .15s}
.psingle-thumbs button.active,.psingle-thumbs button:hover{border-color:var(--green-600)}
.psingle-thumbs button svg{width:55%;height:55%}
.psingle-info .product-cat{margin-bottom:.6rem}
.psingle-info h1{font-size:clamp(1.8rem,3vw,2.4rem);margin-bottom:.7rem}
.psingle-rating{display:flex;align-items:center;gap:.5rem;font-size:.9rem;color:var(--muted);margin-bottom:1.2rem}
.psingle-price{display:flex;align-items:baseline;gap:.6rem;margin-bottom:1.2rem}
.psingle-price .now{font-size:2rem;font-weight:800;color:var(--ink);letter-spacing:-.03em}
.psingle-price .was{font-size:1.1rem;color:var(--muted);text-decoration:line-through}
.psingle-price .vat{font-size:.82rem;color:var(--muted)}
.psingle-lead{color:var(--text);font-size:1.02rem;margin-bottom:1.4rem}
.psingle-options{display:grid;gap:1rem;margin-bottom:1.4rem}
.option-group label{display:block;font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);margin-bottom:.5rem}
.option-pills{display:flex;flex-wrap:wrap;gap:.5rem}
.option-pills button{border:1.5px solid var(--line);background:#fff;border-radius:var(--radius);padding:.6rem 1rem;font-size:.92rem;cursor:pointer;font-family:inherit;transition:.15s}
.option-pills button.active{border-color:var(--green-600);background:var(--green-50);color:var(--green-800);font-weight:600}
.psingle-buy{display:flex;flex-wrap:wrap;gap:.8rem;align-items:center;margin-bottom:1.4rem}
.qty{display:inline-flex;align-items:center;border:1.5px solid var(--line);border-radius:var(--radius-pill);overflow:hidden}
.qty button{width:42px;height:46px;border:none;background:#fff;font-size:1.2rem;cursor:pointer;color:var(--green-700)}
.qty button:hover{background:var(--green-50)}
.qty input{width:44px;height:46px;border:none;text-align:center;font-size:1rem;font-family:inherit;font-weight:600;-moz-appearance:textfield}
.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.psingle-assure{display:grid;gap:.6rem;background:var(--mist);border:1px solid var(--line);border-radius:var(--radius);padding:1.1rem 1.2rem}
.psingle-assure li{display:flex;align-items:center;gap:.6rem;font-size:.9rem;color:var(--text)}
.psingle-assure svg{width:18px;height:18px;color:var(--green-600);flex:0 0 auto}

/* Tabs */
.tabs{margin-top:clamp(2.5rem,5vw,4rem)}
.tab-nav{display:flex;gap:.4rem;border-bottom:1px solid var(--line);flex-wrap:wrap}
.tab-nav button{background:none;border:none;padding:.85rem 1.1rem;font-size:.97rem;font-weight:600;color:var(--muted);cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-1px}
.tab-nav button.active{color:var(--green-700);border-color:var(--green-600)}
.tab-panel{padding-top:1.6rem;max-width:52rem}
.tab-panel[hidden]{display:none}
.tab-panel p{color:var(--text);margin-bottom:1rem}
.tab-panel ul.bullets{display:grid;gap:.6rem;margin:1rem 0}
.tab-panel ul.bullets li{display:flex;gap:.6rem;color:var(--text);font-size:.96rem}
.tab-panel ul.bullets li::before{content:"✓";color:var(--green-600);font-weight:800}

/* ---------- Notice / info banner ---------- */
.notice{display:flex;gap:.8rem;align-items:flex-start;background:var(--gold-100);border:1px solid #ecd9ad;border-radius:var(--radius);padding:1rem 1.2rem;font-size:.92rem;color:#6b541c}
.notice svg{width:20px;height:20px;flex:0 0 auto;color:var(--gold);margin-top:1px}

/* ---------- Basket drawer ---------- */
.drawer-overlay{position:fixed;inset:0;background:rgba(13,27,20,.4);opacity:0;visibility:hidden;transition:.25s;z-index:150}
.drawer-overlay.open{opacity:1;visibility:visible}
.basket-drawer{position:fixed;top:0;right:0;height:100%;width:min(400px,90vw);background:#fff;box-shadow:var(--shadow-lg);transform:translateX(100%);transition:transform .3s var(--ease);z-index:160;display:flex;flex-direction:column}
.basket-drawer.open{transform:translateX(0)}
.drawer-head{display:flex;align-items:center;justify-content:space-between;padding:1.3rem 1.4rem;border-bottom:1px solid var(--line)}
.drawer-head h3{font-size:1.15rem}
.drawer-close{width:38px;height:38px;border:1px solid var(--line);border-radius:50%;background:#fff;cursor:pointer;font-size:1.2rem;color:var(--muted)}
.drawer-close:hover{background:var(--green-50)}
.drawer-items{flex:1;overflow-y:auto;padding:1rem 1.4rem;display:grid;gap:1rem;align-content:start}
.drawer-empty{text-align:center;color:var(--muted);padding:3rem 1rem;font-size:.95rem}
.drawer-item{display:flex;gap:.9rem;align-items:center}
.drawer-item-media{width:58px;height:58px;border-radius:var(--radius-sm);background:var(--green-50);display:grid;place-items:center;color:var(--green-600);flex:0 0 auto}
.drawer-item-media svg{width:60%;height:60%}
.drawer-item-info{flex:1;min-width:0}
.drawer-item-info strong{display:block;font-size:.92rem;color:var(--ink);line-height:1.3}
.drawer-item-info small{color:var(--muted);font-size:.82rem}
.drawer-item-remove{background:none;border:none;color:var(--muted);cursor:pointer;font-size:.8rem;text-decoration:underline}
.drawer-foot{border-top:1px solid var(--line);padding:1.3rem 1.4rem;display:grid;gap:.9rem}
.drawer-total{display:flex;align-items:center;justify-content:space-between;font-size:1.05rem}
.drawer-total strong{font-size:1.3rem;color:var(--ink)}
.drawer-foot small{color:var(--muted);font-size:.82rem;text-align:center}

/* =============================================================
   CART · CHECKOUT · CONFIRMATION
   ============================================================= */
.cart-layout,.checkout-layout{display:grid;grid-template-columns:1fr 380px;gap:2.2rem;align-items:start}
.cart-items{display:grid;gap:.2rem}
.cart-row{display:grid;grid-template-columns:64px 1fr auto auto;gap:1.1rem;align-items:center;padding:1.1rem 0;border-bottom:1px solid var(--line)}
.cart-row:first-child{border-top:1px solid var(--line)}
.cart-row-media{width:64px;height:64px;border-radius:var(--radius);background:linear-gradient(160deg,var(--green-50),var(--mint));display:grid;place-items:center;color:var(--green-600)}
.cart-row-media svg{width:58%;height:58%}
.cart-row-main{display:flex;flex-direction:column;gap:.2rem;min-width:0}
.cart-row-title{font-weight:700;color:var(--ink);font-size:1rem}
.cart-row-title:hover{color:var(--green-700)}
.cart-row-cat{font-size:.82rem;color:var(--muted)}
.cart-row-qty .qty{transform:scale(.9);transform-origin:left}
.cart-row-price{font-weight:800;color:var(--ink);font-size:1.05rem;white-space:nowrap}

/* Summary cards */
.summary-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.5rem;box-shadow:var(--shadow-sm);position:sticky;top:96px}
.summary-card h3{font-size:1.15rem;margin-bottom:1.1rem}
.sum-line{display:flex;justify-content:space-between;padding:.5rem 0;color:var(--text);font-size:.95rem}
.sum-hint{font-size:.82rem;color:var(--green-700);background:var(--green-50);border-radius:var(--radius-sm);padding:.55rem .7rem;margin:.4rem 0}
.sum-total{display:flex;justify-content:space-between;align-items:center;padding-top:.9rem;margin-top:.5rem;border-top:1px solid var(--line);font-size:1rem}
.sum-total strong{font-size:1.5rem;color:var(--ink);letter-spacing:-.02em}
.summary-card .btn{margin-top:1.2rem}
.promo{display:flex;gap:.5rem;margin:1.1rem 0}
.promo input{flex:1;border:1.5px solid var(--line);border-radius:var(--radius-pill);padding:.6rem .95rem;font-family:inherit;font-size:.9rem}
.promo input:focus{outline:none;border-color:var(--green-500);box-shadow:0 0 0 3px var(--green-100)}

/* Checkout form blocks */
.checkout-section{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(1.3rem,2.5vw,1.9rem);margin-bottom:1.3rem}
.checkout-section h3{display:flex;align-items:center;gap:.6rem;font-size:1.15rem;margin-bottom:1.2rem}
.checkout-section h3 .step-dot{width:28px;height:28px;border-radius:50%;background:var(--green-600);color:#fff;font-size:.85rem;font-weight:800;display:grid;place-items:center;flex:0 0 auto}
.radio-card{display:flex;align-items:center;gap:.85rem;border:1.5px solid var(--line);border-radius:var(--radius);padding:1rem 1.1rem;cursor:pointer;margin-bottom:.7rem;transition:border-color .15s,background .15s}
.radio-card:hover{border-color:var(--green-300)}
.radio-card input{accent-color:var(--green-600);width:18px;height:18px;flex:0 0 auto}
.radio-card:has(input:checked){border-color:var(--green-600);background:var(--green-50)}
.radio-card .rc-main{flex:1}
.radio-card strong{display:block;font-size:.97rem;color:var(--ink)}
.radio-card small{color:var(--muted);font-size:.85rem}
.radio-card .rc-price{font-weight:800;color:var(--ink)}
.card-fields{margin-top:.9rem}
.pay-icons{display:flex;gap:.4rem;margin-left:auto}
.pay-icons span{font-size:.62rem;font-weight:800;letter-spacing:.04em;border:1px solid var(--line);border-radius:.3rem;padding:.2rem .4rem;color:var(--muted)}

/* Checkout order summary items */
.co-items{display:grid;gap:.9rem;margin-bottom:1.1rem;max-height:300px;overflow-y:auto}
.co-item{display:flex;align-items:center;gap:.8rem}
.co-item-media{position:relative;width:48px;height:48px;border-radius:var(--radius-sm);background:var(--green-50);display:grid;place-items:center;color:var(--green-600);flex:0 0 auto}
.co-item-media svg{width:58%;height:58%}
.co-item-qty{position:absolute;top:-7px;right:-7px;min-width:20px;height:20px;background:var(--green-700);color:#fff;font-size:.72rem;font-weight:800;border-radius:var(--radius-pill);display:grid;place-items:center;border:2px solid #fff}
.co-item-info{flex:1;min-width:0}
.co-item-info strong{display:block;font-size:.9rem;color:var(--ink);line-height:1.3}
.co-item-info small{color:var(--muted);font-size:.8rem}
.co-item-price{font-weight:700;color:var(--ink);white-space:nowrap}

/* Confirmation */
.conf-hero{text-align:center;max-width:640px;margin-inline:auto}
.conf-check{width:84px;height:84px;border-radius:50%;background:var(--green-100);color:var(--green-700);display:grid;place-items:center;margin:0 auto 1.4rem}
.conf-check svg{width:42px;height:42px}
.conf-ref{display:inline-flex;align-items:center;gap:.5rem;background:var(--mist);border:1px solid var(--line);border-radius:var(--radius-pill);padding:.6rem 1.2rem;font-weight:700;color:var(--ink);margin:1.2rem 0}
.conf-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.7rem;max-width:560px;margin:2rem auto 0;text-align:left;box-shadow:var(--shadow-sm)}
.conf-card h3{font-size:1.05rem;margin-bottom:1rem}
.conf-meta{display:grid;gap:.5rem;margin-bottom:1.2rem;padding-bottom:1.2rem;border-bottom:1px solid var(--line)}
.conf-meta div{display:flex;justify-content:space-between;font-size:.92rem}
.conf-meta span:first-child{color:var(--muted)}
.empty-state{text-align:center;padding:4rem 1rem;max-width:440px;margin-inline:auto}
.empty-state .es-icon{width:72px;height:72px;border-radius:50%;background:var(--green-50);color:var(--green-600);display:grid;place-items:center;margin:0 auto 1.3rem}
.empty-state .es-icon svg{width:34px;height:34px}
.empty-state h2{margin-bottom:.6rem}
.empty-state p{color:var(--muted);margin-bottom:1.5rem}

/* ---------- Contact / form ---------- */
.contact-layout{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,4vw,3.5rem);align-items:start}
.contact-info{display:grid;gap:1rem}
.contact-info-card{display:flex;gap:1rem;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.2rem 1.3rem;align-items:flex-start}
.contact-info-card .ci-icon{width:46px;height:46px;border-radius:13px;background:var(--green-100);color:var(--green-700);display:grid;place-items:center;flex:0 0 auto}
.contact-info-card .ci-icon svg{width:22px;height:22px}
.contact-info-card strong{display:block;color:var(--ink);font-size:1rem;margin-bottom:.2rem}
.contact-info-card a,.contact-info-card p{color:var(--muted);font-size:.94rem}
.contact-info-card a:hover{color:var(--green-700)}
.form-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(1.5rem,3vw,2.2rem);box-shadow:var(--shadow-sm)}
.form-row{display:grid;gap:.4rem;margin-bottom:1.1rem}
.form-row.two{grid-template-columns:1fr 1fr;gap:1rem}
.form-row label{font-size:.85rem;font-weight:600;color:var(--text)}
.form-row input,.form-row select,.form-row textarea{
  width:100%;border:1.5px solid var(--line);border-radius:var(--radius-sm);padding:.8rem .95rem;
  font-family:inherit;font-size:.95rem;color:var(--text);background:#fff;transition:border-color .15s,box-shadow .15s;
}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{outline:none;border-color:var(--green-500);box-shadow:0 0 0 3px var(--green-100)}
.form-row textarea{min-height:130px;resize:vertical}

/* ---------- Footer ---------- */
.site-footer{background:var(--green-950);color:#cfe3da}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.3fr;gap:2rem;padding-block:clamp(2.8rem,5vw,4rem)}
.footer-brand-logo{height:30px;margin-bottom:1rem;filter:brightness(0) invert(1);opacity:.95}
.footer-about{font-size:.92rem;color:#a7c4b8;max-width:24rem;margin-bottom:1.3rem}
.gphc-wrap{margin-bottom:1.2rem}
.gphc-badge{width:200px;height:auto;border-radius:.6rem}
.social-row{display:flex;gap:.6rem}
.social{width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,.16);display:grid;place-items:center;color:#cfe3da;transition:.16s}
.social:hover{background:rgba(255,255,255,.1);color:#fff}
.social .icon{width:18px;height:18px}
.footer-head{color:#fff;font-size:.82rem;text-transform:uppercase;letter-spacing:.1em;margin-bottom:1.1rem;font-weight:700}
.footer-links{display:grid;gap:.65rem}
.footer-links a,.footer-links li{color:#a7c4b8;font-size:.93rem}
.footer-links a:hover{color:#fff}
.footer-bar{border-top:1px solid rgba(255,255,255,.1)}
.footer-bar .container{padding-block:1.3rem;display:flex;flex-wrap:wrap;gap:.6rem;justify-content:space-between}
.footer-bar p{color:#8fab9f;font-size:.84rem}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid,.reviews-layout{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:repeat(2,1fr)}
  .final-card{grid-template-columns:1fr}
  .final-actions{flex-direction:row;flex-wrap:wrap}
  .hero-float-card{display:none}
}
@media (max-width:900px){
  /* Mobile nav */
  .nav-toggle{display:inline-flex}
  .primary-nav{
    position:fixed;inset:74px 0 auto 0;background:#fff;border-bottom:1px solid var(--line);
    box-shadow:var(--shadow-md);padding:1rem 1.25rem 1.6rem;margin:0;
    transform:translateY(-12px);opacity:0;visibility:hidden;transition:.22s var(--ease);
  }
  body.nav-open .primary-nav{transform:translateY(0);opacity:1;visibility:visible}
  .nav-list{flex-direction:column;align-items:stretch;gap:.2rem}
  .nav-link{padding:.85rem 1rem;border-radius:var(--radius-sm);font-size:1rem}
  .nav-link:hover{background:var(--green-50)}
  .header-phone span{display:none}
  .hero-grid{grid-template-columns:1fr;gap:2.5rem}
  .hero-visual{max-width:440px;margin-inline:auto;width:100%}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .shop-layout{grid-template-columns:1fr}
  .shop-sidebar{position:static;display:none;margin-bottom:1.4rem}
  .shop-sidebar.open{display:grid}
  .filter-toggle-mobile{display:inline-flex;align-items:center;gap:.5rem}
  .product-single{grid-template-columns:1fr}
  .psingle-gallery{position:static}
  .contact-layout{grid-template-columns:1fr}
  .cart-layout,.checkout-layout{grid-template-columns:1fr}
  .summary-card{position:static}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  .cart-row{grid-template-columns:54px 1fr;grid-template-areas:"media main" "media qty" "price price";gap:.5rem 1rem;row-gap:.6rem}
  .cart-row-media{grid-area:media}.cart-row-main{grid-area:main}.cart-row-qty{grid-area:qty}
  .cart-row-price{grid-area:price;text-align:right}
}
@media (max-width:560px){
  .grid-3,.grid-4,.grid-2{grid-template-columns:1fr}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:.9rem}
  .reviews-grid{grid-template-columns:1fr}
  .contact-bar .container{flex-direction:column;align-items:flex-start}
  .hero-badge{left:0}
  .form-row.two{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .product-body{padding:.9rem 1rem 1.1rem}
  .price .now{font-size:1.1rem}
  .add-btn{padding:.55rem .75rem;font-size:.82rem}
}
@media (max-width:380px){
  .product-grid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
}
