/* ============================================
   NurPro — Design System
   ============================================ */

:root{
  --ink: #0B1220;
  --ink-2: #080D17;
  --paper: #F7FAFC;
  --teal: #14B8A6;
  --teal-deep: #0F766E;
  --teal-mid: #0D9488;
  --teal-light: #5EEAD4;
  --teal-pale: #ECFBF8;
  --teal-on: #04201C;
  --text-soft: #AEB9C7;
  --text-muted: #5B6675;
  --text-faint: #6B7686;
  --line: #E4EAF0;
  --line-soft: #EEF2F6;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 11px;
  --shadow-card: 0 26px 46px -28px rgba(11,18,32,0.45);
  --ease: cubic-bezier(.16,.84,.44,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Outfit',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:var(--paper);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{ text-decoration:none; color:inherit; }
img{ max-width:100%; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,p{ margin:0; }

.container{ max-width:1240px; margin:0 auto; padding:0 24px; }

/* ---------- Motion ---------- */
@keyframes np-float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
@keyframes np-glow{ 0%,100%{ opacity:.5; } 50%{ opacity:.85; } }
@keyframes np-rise{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:translateY(0); } }
@keyframes np-spin-slow{ from{ transform:rotate(0deg); } to{ transform:rotate(360deg); } }

.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ transition-delay:calc(var(--i,0) * 70ms); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; }
}

/* ---------- Top utility bar ---------- */
.topbar{
  background:var(--ink-2); color:#9FE9DF; font-size:13px; font-weight:500;
  display:flex; align-items:center; justify-content:center; gap:10px 22px;
  padding:9px 16px; flex-wrap:wrap; text-align:center;
}
.topbar .dot{ opacity:.4; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(11,18,32,0.92); backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:padding .25s var(--ease), background .25s var(--ease);
}
.site-header.shrink{ background:rgba(8,13,23,0.97); }
.site-header .bar{
  max-width:1240px; margin:0 auto; padding:14px 24px;
  display:flex; align-items:center; gap:22px; transition:padding .25s var(--ease);
}
.site-header.shrink .bar{ padding:9px 24px; }
.site-header .logo{ display:flex; align-items:center; flex-shrink:0; }
.site-header .logo img{ height:30px; width:auto; display:block; transition:height .25s var(--ease); }
.site-header.shrink .logo img{ height:25px; }

.nav-links{ display:flex; align-items:center; gap:28px; white-space:nowrap; margin-left:8px; }
.nav-links a{ color:#C7D0DC; font-size:15px; font-weight:500; position:relative; padding:4px 0; transition:color .2s; }
.nav-links a:hover{ color:#fff; }
.nav-links a.active{ color:var(--teal-light); }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background:var(--teal); transition:width .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }

.header-search{
  flex:1; display:flex; align-items:center; gap:9px; background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.28); border-radius:10px; padding:9px 14px; max-width:380px; margin:0 auto;
  transition:background .2s, border-color .2s;
}
.header-search:hover, .header-search:focus-within{ background:rgba(255,255,255,0.2); border-color:rgba(255,255,255,0.4); }
.header-search input{ background:transparent; border:none; outline:none; color:#F7FAFC; font-family:inherit; font-size:14px; width:100%; }
.header-search input::placeholder{ color:#B8C2CC; }
.header-search svg{ flex-shrink:0; }

.header-actions{ display:flex; align-items:center; gap:12px; margin-left:auto; flex-shrink:0; }

.cart-link{
  position:relative; display:flex; align-items:center; justify-content:center;
  width:38px; height:38px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14);
  border-radius:8px; flex-shrink:0; transition:background .2s; color:#F7FAFC;
}
.cart-link:hover{ background:rgba(255,255,255,0.12); }
.cart-badge{
  position:absolute; top:-6px; right:-6px; min-width:18px; height:18px; padding:0 4px;
  display:flex; align-items:center; justify-content:center; background:var(--teal); color:var(--teal-on);
  border-radius:999px; font-size:11px; font-weight:800; line-height:1;
}

.account-switch{ position:relative; }
.account-btn{
  display:flex; align-items:center; gap:6px; background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14); color:#F7FAFC; padding:7px 12px; border-radius:8px;
  font-size:13px; font-weight:600; letter-spacing:0.02em; transition:background .2s; cursor:pointer; max-width:240px;
}
.account-btn:hover{ background:rgba(255,255,255,0.12); }
.account-label{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:120px; }
.account-switch.open .lang-caret{ transform:rotate(180deg); }
.account-menu{ min-width:200px; }
.account-logout-btn{ width:100%; text-align:left; background:none; border:none; cursor:pointer; font-family:inherit; }
.account-guest-info{ color:#9AA6B5; font-size:12.5px; cursor:default; }
.account-guest-info:hover{ background:transparent; }

.lang-switch{ position:relative; }
.lang-btn{
  display:flex; align-items:center; gap:6px; background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14); color:#F7FAFC; padding:7px 12px; border-radius:8px;
  font-size:13px; font-weight:600; letter-spacing:0.02em; transition:background .2s; cursor:pointer;
}
.lang-btn:hover{ background:rgba(255,255,255,0.12); }
.lang-caret{ transition:transform .2s var(--ease); opacity:0.7; }
.lang-switch.open .lang-caret{ transform:rotate(180deg); }
.lang-menu{
  position:absolute; top:calc(100% + 8px); right:0; min-width:170px; background:#0B1220;
  border:1px solid rgba(255,255,255,0.14); border-radius:10px; padding:6px; box-shadow:0 18px 40px -12px rgba(0,0,0,0.5);
  list-style:none; margin:0; z-index:40;
}
.lang-option{
  display:flex; align-items:center; gap:10px; padding:9px 10px; border-radius:7px;
  color:#F7FAFC; font-size:13.5px; text-decoration:none; transition:background .15s;
}
.lang-option:hover{ background:rgba(255,255,255,0.08); }
.lang-option.active{ background:rgba(20,184,166,0.16); color:#5EEAD4; }
.lang-option .lang-code{
  display:inline-flex; align-items:center; justify-content:center; width:26px; height:20px;
  background:rgba(255,255,255,0.1); border-radius:5px; font-size:11px; font-weight:700; letter-spacing:0.02em;
}
.lang-option.active .lang-code{ background:rgba(20,184,166,0.25); }
.lang-option svg{ flex-shrink:0; opacity:0.85; }
.account-menu{ min-width:218px; }
.account-menu-divider{ border-top:1px solid rgba(255,255,255,0.1); margin-top:4px; padding-top:4px; }
.account-points-pill{
  display:inline-flex; align-items:center; gap:4px; background:rgba(20,184,166,0.18); color:var(--teal-light);
  font-size:11.5px; font-weight:800; padding:2px 8px 2px 6px; border-radius:999px; flex-shrink:0;
}
.account-points-pill svg{ flex-shrink:0; }
.account-menu-badge{
  margin-left:auto; min-width:18px; height:18px; padding:0 5px; border-radius:999px;
  background:var(--teal); color:var(--teal-on); font-size:10.5px; font-weight:800;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.mobile-menu-account-link{ display:flex !important; align-items:center; gap:12px; }
.mobile-menu-account-link svg{ flex-shrink:0; color:var(--teal-light); }

.btn-burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14);
  border-radius:8px; padding:0; flex-shrink:0;
}
.btn-burger span{ display:block; width:16px; height:2px; background:#F7FAFC; margin:0 auto; transition:transform .25s, opacity .25s; }
.btn-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.btn-burger.open span:nth-child(2){ opacity:0; }
.btn-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:0 0 0 auto; top:var(--header-h,58px); width:100%; max-width:360px; z-index:99;
  background:#0B1220; border-left:1px solid rgba(255,255,255,0.08);
  transform:translateX(100%); transition:transform .3s var(--ease);
  padding:28px 26px; display:flex; flex-direction:column; gap:6px;
  box-shadow:-30px 0 60px -30px rgba(0,0,0,0.5);
  max-height:calc(100vh - var(--header-h,58px)); overflow-y:auto;
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu a{ color:#E7ECF1; font-size:17px; font-weight:600; padding:13px 4px; border-bottom:1px solid rgba(255,255,255,0.06); }
.mobile-menu-search{ max-width:none; margin:0 0 14px; }
@media (max-width:980px){
  /* The .header-search hide-on-mobile rule below targets the desktop nav's
     copy; this one lives inside .mobile-menu instead, so it must stay shown. */
  .header-search.mobile-menu-search{ display:flex !important; }
}
.menu-backdrop{ position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:98; opacity:0; pointer-events:none; transition:opacity .3s; }
.menu-backdrop.open{ opacity:1; pointer-events:auto; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:9px; padding:15px 26px; border-radius:11px;
  font-size:16px; font-weight:700; border:none; transition:transform .22s var(--ease), box-shadow .22s var(--ease), background .2s;
}
.btn:hover{ transform:translateY(-3px); }
.btn-primary{ background:var(--teal); color:var(--teal-on); box-shadow:0 16px 30px -14px rgba(20,184,166,0.5); }
.btn-primary:hover{ box-shadow:0 22px 38px -14px rgba(20,184,166,0.65); }
.btn-ghost-dark{ background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.18); color:#F7FAFC; font-weight:600; }
.btn-ghost-dark:hover{ background:rgba(255,255,255,0.1); }
.btn-ghost-light{ background:#fff; border:1px solid #D5DDE4; color:var(--ink); font-weight:600; }
.btn-ghost-light:hover{ border-color:#B9C4CE; }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-sm{ padding:12px 18px; font-size:14px; border-radius:10px; }

/* ---------- Hero ---------- */
.hero-section{ position:relative; overflow:hidden; }
.hero-blob-1{ position:absolute; border-radius:50%; filter:blur(4px); animation:np-glow 7s ease-in-out infinite; pointer-events:none; }
.hero-blob-2{ position:absolute; border-radius:50%; pointer-events:none; }

.eyebrow-pill{
  display:inline-flex; align-items:center; gap:9px; background:rgba(20,184,166,0.12);
  border:1px solid rgba(20,184,166,0.32); color:var(--teal-light); padding:7px 14px;
  border-radius:999px; font-size:13px; font-weight:600; letter-spacing:0.04em; margin-bottom:24px;
}
.eyebrow-pill .pulse-dot{ width:7px; height:7px; border-radius:50%; background:var(--teal); box-shadow:0 0 10px var(--teal); animation:np-glow 2.4s ease-in-out infinite; }

.gradient-text{
  background:linear-gradient(100deg,var(--teal),var(--teal-light));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------- Sections / typography ---------- */
.eyebrow{ font-size:13px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--teal-mid); margin-bottom:10px; }
.eyebrow.on-dark{ color:var(--teal-light); }
.section-head h2{ font-size:38px; font-weight:800; letter-spacing:-0.025em; line-height:1.1; margin-bottom:12px; }
.section-head p{ font-size:17px; color:var(--text-muted); line-height:1.55; }
.section-head.on-dark p{ color:var(--text-soft); }

/* ---------- Cards ---------- */
.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:26px;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }
.card-dark{
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09); border-radius:var(--radius-md); padding:30px;
  transition:transform .25s var(--ease), border-color .25s var(--ease);
}
.card-dark:hover{ transform:translateY(-6px); border-color:rgba(20,184,166,0.5); }

.icon-box{ width:48px; height:48px; border-radius:12px; background:var(--teal-pale); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.icon-box.lg{ width:54px; height:54px; border-radius:14px; }
.icon-box.on-dark{ background:rgba(20,184,166,0.14); }

/* ---------- Hub cards (homepage) ---------- */
.hub-card{
  position:relative; overflow:hidden; display:block; border-radius:var(--radius-lg);
  padding:42px 38px; transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hub-card:hover{ transform:translateY(-8px) scale(1.005); }
.hub-card-shop{
  background:linear-gradient(160deg,#0F766E,#0B1220 130%); color:#F7FAFC;
  box-shadow:0 30px 60px -28px rgba(15,118,110,0.6); border:1px solid rgba(20,184,166,0.3);
}
.hub-card-shop:hover{ box-shadow:0 44px 80px -28px rgba(15,118,110,0.78); }
.hub-card-services{
  background:#FFFFFF; color:#0B1220; box-shadow:0 30px 60px -34px rgba(11,18,32,0.4); border:1px solid var(--line);
}
.hub-card-services:hover{ box-shadow:0 44px 80px -30px rgba(11,18,32,0.55); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink-2); color:#9AA6B5; padding:60px 24px 30px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1fr; gap:32px; padding-bottom:42px; border-bottom:1px solid rgba(255,255,255,0.08); }
.foot-grid h4{ color:#F7FAFC; font-weight:700; font-size:15px; margin-bottom:15px; }
.foot-links{ display:flex; flex-direction:column; gap:11px; font-size:14px; }
.foot-links a{ color:#9AA6B5; transition:color .2s; }
.foot-links a:hover{ color:var(--teal-light); }
.foot-bottom{ display:flex; align-items:center; justify-content:space-between; gap:18px; padding-top:22px; flex-wrap:wrap; font-size:13px; color:var(--text-faint); }
.pay-badges{ display:flex; align-items:center; gap:13px; font-size:13px; color:var(--text-faint); }
.pay-badges span{ font-weight:700; color:#9AA6B5; }

/* ---------- Back to top ---------- */
.back-to-top{
  position:fixed; bottom:26px; right:26px; z-index:90; width:46px; height:46px; border-radius:50%;
  background:var(--teal); color:var(--teal-on); border:none; display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(20,184,166,0.6); opacity:0; pointer-events:none; transform:translateY(10px);
  transition:opacity .25s, transform .25s;
}
.back-to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.back-to-top:hover{ transform:translateY(-3px); }

/* ---------- Forms ---------- */
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:14px; font-weight:600; color:var(--ink); margin-bottom:7px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; font-family:inherit; font-size:15px; padding:13px 14px; border-radius:10px;
  border:1px solid var(--line); background:#fff; color:var(--ink); transition:border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none; border-color:var(--teal); box-shadow:0 0 0 4px rgba(20,184,166,0.14);
}
.form-field textarea{ resize:vertical; min-height:130px; }
.form-note{ font-size:13px; color:var(--text-faint); margin-top:6px; }
.alert{ padding:14px 18px; border-radius:12px; font-size:14.5px; line-height:1.5; margin-bottom:22px; }
.alert-success{ background:#ECFDF5; color:#065F46; border:1px solid #A7F3D0; }
.alert-error{ background:#FEF2F2; color:#991B1B; border:1px solid #FECACA; }

/* ---------- Legal doc pages ---------- */
.legal-doc{ max-width:780px; margin:0 auto; padding:60px 24px 100px; }
.legal-doc h1{ font-size:36px; font-weight:800; letter-spacing:-0.02em; margin-bottom:10px; }
.legal-doc .updated{ font-size:14px; color:var(--text-faint); margin-bottom:40px; }
.legal-doc h2{ font-size:21px; font-weight:700; margin:36px 0 12px; letter-spacing:-0.01em; }
.legal-doc p, .legal-doc li{ font-size:15.5px; line-height:1.7; color:#374151; }
.legal-doc ul{ padding-left:20px; }
.legal-doc .placeholder{ background:#FFFBEB; border:1px dashed #F59E0B; color:#92400E; padding:2px 6px; border-radius:5px; font-weight:600; }
.legal-notice{
  background:#FFFBEB; border:1px solid #FDE68A; color:#92400E; padding:16px 20px; border-radius:12px;
  font-size:14px; line-height:1.6; margin-bottom:30px;
}

/* ---------- Grids ---------- */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

/* ---------- Shop slider ---------- */
.shop-slider{ position:relative; border-radius:var(--radius-lg); overflow:hidden; margin:24px 0; box-shadow:0 20px 50px -30px rgba(11,18,32,0.4); }
.shop-slider-track{ position:relative; }
.shop-slide{ display:none; position:relative; }
.shop-slide.active{ display:block; }
.shop-slide-link{ position:relative; display:block; }
.shop-slide img{ width:100%; height:380px; object-fit:cover; display:block; }
.shop-slide-caption{
  position:absolute; left:48px; bottom:44px; max-width:480px; color:#fff;
  text-shadow:0 2px 12px rgba(0,0,0,0.4);
}
.shop-slide-caption h2{ font-size:34px; font-weight:800; letter-spacing:-0.02em; margin:0 0 10px; line-height:1.1; }
.shop-slide-caption p{ font-size:16px; line-height:1.5; margin:0 0 16px; }
.shop-slider::before{
  content:""; position:absolute; inset:0; background:linear-gradient(90deg, rgba(11,18,32,0.55), rgba(11,18,32,0) 60%); pointer-events:none; z-index:1;
}
.shop-slider-dots{ position:absolute; bottom:18px; right:24px; display:flex; gap:8px; z-index:2; }
.shop-slider-dot{ width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,0.45); border:none; padding:0; cursor:pointer; transition:background .2s, transform .2s; }
.shop-slider-dot.active{ background:#fff; transform:scale(1.2); }
@media (max-width:760px){
  .shop-slide img{ height:240px; }
  .shop-slide-caption{ left:22px; bottom:24px; max-width:90%; }
  .shop-slide-caption h2{ font-size:22px; }
  .shop-slide-caption p{ font-size:14px; margin-bottom:10px; }
}

/* ---------- Pills / chips ---------- */
.chip-row{
  display:flex; align-items:center; gap:11px; overflow-x:auto; padding-bottom:6px; scrollbar-width:thin;
  -webkit-mask-image:linear-gradient(to right, black calc(100% - 28px), transparent 100%);
  mask-image:linear-gradient(to right, black calc(100% - 28px), transparent 100%);
}
.chip{ background:#fff; border:1px solid #E0E6EC; color:#3A4555; padding:9px 18px; border-radius:999px; font-size:14px; font-weight:500; white-space:nowrap; cursor:pointer; transition:background .2s, color .2s, border-color .2s; }
.chip.active{ background:var(--ink); border-color:var(--ink); color:#fff; font-weight:600; }
.chip:hover:not(.active){ border-color:#B9C4CE; }

/* ---------- Shop filter/sort bar ---------- */
.shop-filter-bar{ margin-top:14px; }
.shop-filter-toggle{
  display:none; align-items:center; gap:8px; background:#fff; border:1px solid #E0E6EC; color:var(--ink);
  padding:9px 16px; border-radius:999px; font-size:14px; font-weight:600; cursor:pointer;
}
.shop-filter-panel{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.shop-filter-group{ display:flex; align-items:center; gap:8px; }
.shop-filter-group label{ font-size:13px; font-weight:600; color:#6B7686; white-space:nowrap; }
.shop-filter-group select{
  border:1px solid #E0E6EC; border-radius:9px; padding:8px 12px; font-size:13.5px; color:var(--ink);
  background:#fff; font-family:inherit; cursor:pointer;
}
.shop-filter-price{ display:flex; align-items:center; gap:6px; }
.shop-filter-price input{
  width:72px; border:1px solid #E0E6EC; border-radius:9px; padding:8px 10px; font-size:13.5px;
  font-family:inherit; color:var(--ink);
}
.shop-filter-price span{ color:#9AA6B5; }
.shop-filter-checkbox{ display:flex; align-items:center; gap:7px; font-size:13.5px; color:var(--ink); cursor:pointer; white-space:nowrap; }
.shop-filter-reset{
  background:none; border:none; color:#0D9488; font-size:13.5px; font-weight:600; cursor:pointer;
  padding:6px 4px; margin-left:auto;
}
.shop-filter-reset:hover{ text-decoration:underline; }
.shop-filter-empty{ text-align:center; color:#6B7686; font-size:14.5px; padding:50px 0; }
@media (max-width:760px){
  .shop-filter-toggle{ display:flex; }
  .shop-filter-panel{
    display:none; width:100%; margin-top:12px; gap:14px; background:#fff; border:1px solid var(--line);
    border-radius:12px; padding:16px; flex-direction:column; align-items:stretch;
  }
  .shop-filter-panel.open{ display:flex; }
  .shop-filter-group{ justify-content:space-between; }
  .shop-filter-group select{ flex:1; max-width:200px; }
  .shop-filter-reset{ margin-left:0; align-self:flex-start; }
}

/* ---------- Product gallery (product detail page) ---------- */
.product-gallery-thumbs{ display:flex; gap:10px; margin-top:12px; }
.product-gallery-thumb{ width:72px; height:72px; padding:0; border-radius:10px; overflow:hidden; border:2px solid var(--line); background:#F4F6F8; cursor:pointer; flex-shrink:0; transition:border-color .2s; }
.product-gallery-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.product-gallery-thumb:hover{ border-color:#B9C4CE; }
.product-gallery-thumb.active{ border-color:var(--teal); }

/* ---------- Shipping option picker (cart/checkout) ---------- */
.shipping-pick-group{ display:flex; flex-direction:column; gap:7px; margin-top:7px; }
.shipping-pick{ display:block; cursor:pointer; }
.shipping-pick input{ position:absolute; opacity:0; width:1px; height:1px; }
.shipping-pick-card{ display:flex; align-items:center; gap:10px; padding:9px 12px; border:1.5px solid var(--line); border-radius:10px; background:#fff; transition:border-color .15s, background .15s; }
.shipping-pick:hover .shipping-pick-card{ border-color:#C7CDD6; }
.shipping-pick input:checked + .shipping-pick-card{ border-color:var(--teal-mid); background:var(--teal-pale); }
.shipping-pick input:focus-visible + .shipping-pick-card{ outline:2px solid var(--teal-mid); outline-offset:1px; }
.shipping-pick-radio{ width:17px; height:17px; border-radius:50%; border:2px solid #C7CDD6; flex-shrink:0; position:relative; }
.shipping-pick input:checked + .shipping-pick-card .shipping-pick-radio{ border-color:var(--teal-mid); }
.shipping-pick input:checked + .shipping-pick-card .shipping-pick-radio::after{ content:''; position:absolute; inset:3px; border-radius:50%; background:var(--teal-mid); }
.shipping-pick-logo{ height:18px; width:auto; border-radius:3px; flex-shrink:0; }
.shipping-pick-label{ flex:1; min-width:0; font-size:13.5px; font-weight:600; color:var(--ink); }
.shipping-pick-eta{ font-weight:400; color:#9AA6B5; }
.shipping-pick-price{ font-size:13.5px; font-weight:700; color:var(--ink); flex-shrink:0; }

/* ---------- Payment method picker (checkout) ---------- */
.payment-pick-group{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.payment-pick{ display:block; cursor:pointer; }
.payment-pick input{ position:absolute; opacity:0; width:1px; height:1px; }
.payment-pick-card{ display:flex; flex-direction:column; align-items:center; gap:8px; text-align:center; padding:16px 12px; border:1.5px solid var(--line); border-radius:12px; background:#fff; transition:border-color .15s, background .15s; height:100%; }
.payment-pick:hover .payment-pick-card{ border-color:#C7CDD6; }
.payment-pick input:checked + .payment-pick-card{ border-color:var(--teal-mid); background:var(--teal-pale); }
.payment-pick input:focus-visible + .payment-pick-card{ outline:2px solid var(--teal-mid); outline-offset:1px; }
.payment-pick-icon{ flex-shrink:0; }
.payment-pick-label{ font-size:13.5px; font-weight:700; color:var(--ink); }
.payment-pick-sub{ font-size:11.5px; color:#9AA6B5; }
.payment-pick-radio{ width:16px; height:16px; border-radius:50%; border:2px solid #C7CDD6; position:relative; flex-shrink:0; }
.payment-pick input:checked + .payment-pick-card .payment-pick-radio{ border-color:var(--teal-mid); }
.payment-pick input:checked + .payment-pick-card .payment-pick-radio::after{ content:''; position:absolute; inset:2.5px; border-radius:50%; background:var(--teal-mid); }
@media (max-width:560px){ .payment-pick-group{ grid-template-columns:1fr; } .payment-pick-card{ flex-direction:row; text-align:left; padding:12px 14px; } }

/* ---------- Checkout: horizontal progress stepper ---------- */
.checkout-stepper{ display:flex; align-items:flex-start; justify-content:center; margin-bottom:30px; }
.checkout-stepper-step{ display:flex; flex-direction:column; align-items:center; gap:9px; width:120px; flex-shrink:0; cursor:default; }
.checkout-stepper-step.is-active,
.checkout-stepper-step.is-done{ cursor:pointer; }
.checkout-stepper-circle{ width:44px; height:44px; border-radius:50%; background:#F4F6F8; color:#AEB6C0; border:2px solid #E4EAF0; display:flex; align-items:center; justify-content:center; transition:background .2s, border-color .2s, color .2s; }
.checkout-stepper-label{ font-size:12.5px; font-weight:600; color:#AEB6C0; text-align:center; transition:color .2s; }
.checkout-stepper-step.is-active .checkout-stepper-circle{ background:var(--teal); border-color:var(--teal); color:var(--teal-on); }
.checkout-stepper-step.is-active .checkout-stepper-label{ color:var(--ink); }
.checkout-stepper-step.is-done .checkout-stepper-circle{ background:var(--teal-pale); border-color:var(--teal-mid); color:var(--teal-mid); }
.checkout-stepper-step.is-done .checkout-stepper-label{ color:var(--teal-mid); }
.checkout-stepper-line{ flex-shrink:1; width:60px; height:2px; background:#E4EAF0; margin-top:22px; transition:background .2s; }
.checkout-stepper-line.is-done{ background:var(--teal-mid); }
@media (max-width:560px){ .checkout-stepper-step{ width:auto; } .checkout-stepper-label{ display:none; } .checkout-stepper-line{ width:24px; } }

/* ---------- Checkout: step accordion ---------- */
.checkout-step{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); margin-bottom:16px; overflow:hidden; }
.checkout-step-head{ display:flex; align-items:center; gap:14px; padding:18px 22px; }
.checkout-step-num{ width:30px; height:30px; border-radius:50%; background:#F4F6F8; color:#6B7686; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; flex-shrink:0; transition:background .15s, color .15s; }
.checkout-step.is-collapsed .checkout-step-num{ background:var(--teal-pale); color:var(--teal-mid); }
.checkout-step-headtext{ flex:1; min-width:0; }
.checkout-step-title{ font-size:16px; font-weight:700; color:var(--ink); }
.checkout-step-summary{ display:none; font-size:13.5px; color:#6B7686; margin-top:2px; }
.checkout-step.is-collapsed .checkout-step-summary{ display:block; }
.checkout-step-action{ flex-shrink:0; }
.checkout-step-body{ padding:0 22px 22px; }
.checkout-step.is-collapsed .checkout-step-body,
.checkout-step.is-pending .checkout-step-body{ display:none; }
.checkout-step.is-collapsed .checkout-step-head,
.checkout-step.is-pending .checkout-step-head{ padding-bottom:18px; }
.checkout-step:not(.is-collapsed) .checkout-step-edit{ display:none; }
.checkout-step.is-collapsed .checkout-step-continue{ display:none; }
.checkout-step.is-pending .checkout-step-edit,
.checkout-step.is-pending .checkout-step-continue{ display:none; }
.checkout-step.is-pending .checkout-step-headtext{ opacity:.5; }
.checkout-step.is-pending .checkout-step-num{ opacity:.5; }

/* ---------- Checkout: saved-address picker ---------- */
.address-pick-group{ display:flex; flex-direction:column; gap:10px; margin-bottom:16px; }
.address-pick{ display:block; cursor:pointer; }
.address-pick input{ position:absolute; opacity:0; width:1px; height:1px; }
.address-pick-card{ display:flex; align-items:flex-start; gap:12px; padding:14px 16px; border:1.5px solid var(--line); border-radius:12px; background:#fff; transition:border-color .15s, background .15s; }
.address-pick:hover .address-pick-card{ border-color:#C7CDD6; }
.address-pick input:checked + .address-pick-card{ border-color:var(--teal-mid); background:var(--teal-pale); }
.address-pick input:focus-visible + .address-pick-card{ outline:2px solid var(--teal-mid); outline-offset:1px; }
.address-pick-radio{ width:17px; height:17px; border-radius:50%; border:2px solid #C7CDD6; flex-shrink:0; position:relative; margin-top:2px; }
.address-pick input:checked + .address-pick-card .address-pick-radio{ border-color:var(--teal-mid); }
.address-pick input:checked + .address-pick-card .address-pick-radio::after{ content:''; position:absolute; inset:3px; border-radius:50%; background:var(--teal-mid); }
.address-pick-body{ flex:1; min-width:0; }
.address-pick-name{ font-size:14px; font-weight:700; color:var(--ink); display:flex; align-items:center; gap:8px; }
.address-pick-lines{ font-size:13.5px; color:#5B6675; line-height:1.5; margin-top:3px; }
.address-pick-badge{ font-size:11px; font-weight:700; color:#0D9488; background:#ECFBF8; padding:2px 9px; border-radius:999px; }
.address-pick-card.is-add{ border-style:dashed; align-items:center; color:var(--teal-mid); font-weight:600; font-size:14px; }
.address-pick-card.is-add svg{ flex-shrink:0; }

/* ---------- Address forms: "use my current location" + searchable state field ---------- */
.addr-geolocate{ grid-column:1 / -1; display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:6px; }
.addr-geolocate-status{ font-size:12.5px; color:#6B7686; }
[data-addr-geolocate-btn]:disabled{ opacity:.6; cursor:default; }

/* ---------- Product card ---------- */
.product-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; display:flex; flex-direction:column; transition:transform .25s var(--ease), box-shadow .25s var(--ease); }
.product-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }
.product-thumb{ position:relative; height:186px; overflow:hidden; }
.product-thumb img{ width:100%; height:100%; object-fit:cover; }
.product-badge{ position:absolute; top:12px; left:12px; background:#fff; color:var(--ink); font-size:12px; font-weight:800; padding:4px 10px; border-radius:7px; }
.product-cat{ position:absolute; bottom:12px; left:14px; color:#fff; background:rgba(11,18,32,0.72); padding:4px 9px; border-radius:6px; font-size:12px; font-weight:600; letter-spacing:0.04em; }
.product-body{ padding:18px 18px 20px; display:flex; flex-direction:column; flex:1; }
.product-body h3{ font-size:16px; font-weight:700; line-height:1.32; margin-bottom:10px; min-height:42px; }
.product-body h3 a{ color:inherit; text-decoration:none; }
.stars{ display:flex; align-items:center; gap:6px; margin-bottom:14px; }
.price-row{ display:flex; align-items:baseline; gap:9px; margin-bottom:3px; }
.price-now{ font-size:22px; font-weight:800; color:var(--ink); white-space:nowrap; }
.price-old{ font-size:14px; color:#9AA6B5; text-decoration:line-through; }
.price-vat{ font-size:12px; color:#9AA6B5; margin-bottom:14px; }

.product-card-actions{ display:flex; align-items:stretch; gap:8px; }
.product-card-action-form{ margin:0; }
.btn-card-action{ padding:12px; border-radius:10px; flex-shrink:0; }
.btn-card-action:hover{ transform:translateY(-3px); }
.product-card-unavailable{
  flex:1; display:flex; align-items:center; justify-content:center; padding:12px; border-radius:10px;
  background:#FEF2F2; color:#B91C1C; font-size:13px; font-weight:700; text-align:center;
}
.product-card-points-badge{
  display:inline-flex; align-items:center; gap:5px; font-size:12px; font-weight:700; color:#B7791F;
  background:#FFFBEB; padding:4px 9px; border-radius:999px; margin-bottom:10px; width:fit-content;
}
.product-card-points-badge svg{ fill:#F59E0B; stroke:none; flex-shrink:0; }
.product-points-badge{
  display:inline-flex; align-items:center; gap:7px; font-size:13.5px; font-weight:700; color:#B7791F;
  background:#FFFBEB; border:1px solid #FDE9B8; padding:8px 14px; border-radius:999px; margin-bottom:18px;
}
.product-points-badge svg{ fill:#F59E0B; stroke:none; flex-shrink:0; }

/* ---------- Pricing cards ---------- */
.price-card{ background:#fff; border:1px solid var(--line); border-radius:20px; padding:32px; }
.price-card.featured{ background:var(--ink); color:#F7FAFC; border:1px solid var(--teal); position:relative; box-shadow:0 30px 60px -30px rgba(15,118,110,0.6); }
.price-card .tag{ font-size:13px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color:var(--teal-mid); margin-bottom:8px; }
.price-card.featured .tag{ color:var(--teal-light); }
.price-card .amount{ font-size:34px; font-weight:800; letter-spacing:-0.02em; margin-bottom:18px; display:block; }
.price-card .feat-list{ display:flex; flex-direction:column; gap:10px; }
.price-card .feat-list div{ display:flex; gap:9px; font-size:14.5px; color:#3A4555; }
.price-card.featured .feat-list div{ color:#C7D0DC; }
.price-card .check{ color:var(--teal); font-weight:800; }
.price-card.featured .check{ color:var(--teal-light); }
.popular-badge{ position:absolute; top:20px; right:20px; background:var(--teal); color:var(--teal-on); font-size:11px; font-weight:800; padding:4px 10px; border-radius:7px; letter-spacing:0.04em; }

/* ---------- CTA panel ---------- */
.cta-panel{ position:relative; overflow:hidden; border-radius:var(--radius-lg); padding:48px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; background:linear-gradient(150deg,#0F766E,#0B1220 135%); }
.cta-panel h2, .cta-panel h3{ color:#F7FAFC; }
.cta-panel p{ color:#C7D0DC; }
.cta-blob{ position:absolute; top:-90px; right:-50px; width:340px; height:340px; border-radius:50%; background:radial-gradient(circle, rgba(20,184,166,0.26), rgba(20,184,166,0) 70%); pointer-events:none; }

/* ============================================
   Help Center
   ============================================ */

/* ---------- Contact channel cards ---------- */
.channel-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.channel-card{
  position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:28px 24px; display:flex; flex-direction:column; text-align:left;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.channel-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }
.channel-card.featured{ border-color:var(--teal); box-shadow:0 26px 50px -30px rgba(20,184,166,0.45); }
.channel-badge{
  position:absolute; top:18px; right:18px; background:var(--teal); color:var(--teal-on);
  font-size:11px; font-weight:800; padding:4px 10px; border-radius:7px; letter-spacing:0.03em;
}
.channel-title{ font-size:18px; font-weight:700; margin:0 0 6px; }
.channel-tip{ font-size:13.5px; color:var(--text-faint); line-height:1.55; margin:0 0 18px; flex:1; }
.channel-cta{ display:inline-flex; align-items:center; gap:7px; font-size:14.5px; font-weight:700; color:var(--teal-mid); }

/* ---------- Map ---------- */
.map-panel{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); background:#fff; }
.map-panel iframe{ display:block; width:100%; height:340px; border:none; }
.map-placeholder{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  min-height:280px; background:linear-gradient(135deg,#ECFBF8,#F7FAFC); color:var(--text-muted); text-align:center; padding:30px;
}

/* ---------- Help hub (5 cards) ---------- */
.hub5-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:20px; }
.hub5-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:30px 26px;
  display:flex; flex-direction:column; height:100%;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.hub5-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); border-color:rgba(20,184,166,0.4); }
.hub5-cta{ margin-top:auto; padding-top:16px; display:inline-flex; align-items:center; gap:7px; font-size:14.5px; font-weight:700; color:var(--teal-mid); }

/* ---------- Knowledgebase search + categories ---------- */
.kb-search{
  display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line); border-radius:14px;
  padding:8px 8px 8px 20px; max-width:620px; margin:0 auto; box-shadow:0 20px 40px -28px rgba(11,18,32,0.25);
}
.kb-search input{ flex:1; border:none; outline:none; font-family:inherit; font-size:15.5px; background:transparent; }
.kb-cat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.kb-cat-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:26px;
  display:flex; flex-direction:column; gap:6px; transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.kb-cat-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }
.kb-cat-count{ font-size:13px; color:var(--text-faint); margin-top:auto; padding-top:14px; }

/* ---------- Tabs ---------- */
.tabs-nav{ display:flex; gap:22px; border-bottom:1px solid var(--line); margin-bottom:28px; }
.tabs-nav button{ background:none; border:none; padding:12px 2px; font-size:15.5px; font-weight:600; color:var(--text-faint); position:relative; }
.tabs-nav button.active{ color:var(--ink); }
.tabs-nav button.active::after{ content:""; position:absolute; left:0; right:0; bottom:-1px; height:2px; background:var(--teal); }
.tab-panel{ display:none; }
.tab-panel.active{ display:block; }

/* ---------- Article / FAQ rows ---------- */
.article-row{ display:flex; align-items:flex-start; justify-content:space-between; gap:18px; padding:18px 0; border-bottom:1px solid var(--line-soft); }
.article-row h3{ font-size:16.5px; font-weight:700; margin-bottom:4px; }
.article-row p{ font-size:14px; color:var(--text-muted); margin:0; }
.faq-item{ padding:18px 0; border-bottom:1px solid var(--line-soft); }
.faq-item h3{ font-size:16px; font-weight:700; margin-bottom:6px; }
.faq-item p{ font-size:14.5px; color:var(--text-muted); line-height:1.6; margin:0; }

/* ---------- Article detail body ---------- */
.article-body{ font-size:16px; line-height:1.75; color:#374151; }
.article-body p{ margin:0 0 18px; }
.article-body ul{ margin:0 0 18px; padding-left:22px; }
.article-body li{ margin-bottom:8px; }

/* ---------- Guru Guides ---------- */
.guru-spotlight{ display:grid; grid-template-columns:0.85fr 1.15fr; border-radius:var(--radius-lg); overflow:hidden; background:linear-gradient(150deg,#0F766E,#0B1220 130%); color:#fff; }
.guru-spotlight-stats{ padding:38px; display:flex; flex-direction:column; gap:22px; justify-content:center; border-right:1px solid rgba(255,255,255,0.1); }
.guru-stat-num{ font-size:34px; font-weight:800; color:#5EEAD4; display:block; }
.guru-stat-label{ font-size:13px; color:#C7D0DC; }
.guru-spotlight-body{ padding:38px; display:flex; flex-direction:column; justify-content:center; gap:14px; }
.guru-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.guru-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:28px;
  display:flex; flex-direction:column; gap:10px; transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.guru-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }
.guru-topic-tag{ display:inline-flex; align-self:flex-start; background:var(--teal-pale); color:var(--teal-deep); font-size:12px; font-weight:700; padding:4px 10px; border-radius:7px; letter-spacing:0.03em; }
.guru-avatar{
  width:46px; height:46px; border-radius:50%; background:linear-gradient(135deg,var(--teal),var(--teal-deep));
  color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:16px; flex-shrink:0;
}
.guru-byline{ display:flex; align-items:center; gap:12px; margin-top:auto; padding-top:10px; }

/* ---------- Blog ---------- */
.blog-featured{ display:grid; grid-template-columns:1fr 1fr; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); background:#fff; }
.blog-featured-visual{ background:linear-gradient(150deg,#0F766E,#0B1220 130%); display:flex; align-items:center; justify-content:center; min-height:280px; }
.blog-featured-body{ padding:40px; display:flex; flex-direction:column; justify-content:center; gap:14px; }
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.blog-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; display:flex; flex-direction:column; transition:transform .25s var(--ease), box-shadow .25s var(--ease); }
.blog-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }
.blog-card-visual{ height:130px; background:linear-gradient(135deg,var(--teal-pale),#F7FAFC); display:flex; align-items:center; justify-content:center; }
.blog-card-body{ padding:20px; display:flex; flex-direction:column; gap:8px; flex:1; }
.blog-cat-pill{ font-size:12px; font-weight:700; color:var(--teal-mid); letter-spacing:0.04em; text-transform:uppercase; }
.blog-meta{ font-size:13px; color:var(--text-faint); margin-top:auto; padding-top:10px; }

/* ---------- How-To videos ---------- */
.video-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.video-card{ position:relative; border-radius:var(--radius-md); overflow:hidden; cursor:pointer; border:1px solid var(--line); background:#fff; transition:transform .25s var(--ease), box-shadow .25s var(--ease); }
.video-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }
.video-thumb{ position:relative; height:170px; background:linear-gradient(135deg,#0F766E,#0B1220 130%); display:flex; align-items:center; justify-content:center; }
.video-play{ width:54px; height:54px; border-radius:50%; background:rgba(255,255,255,0.92); display:flex; align-items:center; justify-content:center; transition:transform .2s var(--ease); }
.video-card:hover .video-play{ transform:scale(1.08); }
.video-duration{ position:absolute; bottom:10px; right:10px; background:rgba(11,18,32,0.78); color:#fff; font-size:12px; font-weight:700; padding:3px 8px; border-radius:6px; }
.video-featured-badge{ position:absolute; top:10px; left:10px; background:var(--teal); color:var(--teal-on); font-size:11px; font-weight:800; padding:4px 9px; border-radius:6px; }
.video-body{ padding:16px 18px 18px; }
.video-body h3{ font-size:15.5px; font-weight:700; margin-bottom:6px; }
.video-body p{ font-size:13.5px; color:var(--text-muted); margin:0; }
.video-cat{ font-size:12px; font-weight:700; color:var(--teal-mid); text-transform:uppercase; letter-spacing:0.03em; margin-bottom:6px; display:block; }
.video-modal-backdrop{
  position:fixed; inset:0; background:rgba(8,13,23,0.82); z-index:200; display:flex; align-items:center; justify-content:center;
  padding:24px; opacity:0; pointer-events:none; transition:opacity .25s;
}
.video-modal-backdrop.open{ opacity:1; pointer-events:auto; }
.video-modal{
  background:#0B1220; border-radius:18px; max-width:820px; width:100%; aspect-ratio:16/9; position:relative;
  display:flex; align-items:center; justify-content:center; color:#C7D0DC; overflow:hidden; text-align:center; padding:30px;
}
.video-modal iframe{ width:100%; height:100%; border:none; position:absolute; inset:0; }
.video-modal-close{
  position:absolute; top:14px; right:14px; width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.1);
  border:none; color:#fff; display:flex; align-items:center; justify-content:center; z-index:1;
}

/* ---------- Pro Points marketing popup (shop home/category/product only) ---------- */
.points-popup-backdrop{
  position:fixed; inset:0; background:rgba(8,13,23,0.78); z-index:210; display:flex; align-items:center; justify-content:center;
  padding:24px; opacity:0; pointer-events:none; transition:opacity .3s;
}
.points-popup-backdrop.open{ opacity:1; pointer-events:auto; }
.points-popup{
  position:relative; background:#fff; border-radius:22px; max-width:440px; width:100%; overflow:hidden;
  box-shadow:0 40px 80px -20px rgba(0,0,0,0.5); transform:translateY(18px) scale(0.97); opacity:0;
  transition:transform .35s var(--ease), opacity .35s var(--ease);
}
.points-popup-backdrop.open .points-popup{ transform:translateY(0) scale(1); opacity:1; }
.points-popup-close{
  position:absolute; top:14px; right:14px; width:36px; height:36px; border-radius:50%; background:#fff;
  border:none; color:var(--ink); font-size:20px; line-height:1; display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:2; box-shadow:0 6px 16px -4px rgba(0,0,0,0.3); transition:transform .15s;
}
.points-popup-close:hover{ transform:scale(1.08); }
.points-popup-visual{ height:190px; position:relative; overflow:hidden; }
.points-popup-visual img{ width:100%; height:100%; object-fit:cover; display:block; }
.points-popup-illustration{
  width:100%; height:100%; background:linear-gradient(135deg,var(--ink) 0%,var(--teal-deep) 130%);
  position:relative; display:flex; align-items:center; justify-content:center;
}
.points-popup-illustration::after{
  content:""; position:absolute; top:-60px; right:-40px; width:220px; height:220px; border-radius:50%;
  background:radial-gradient(circle,rgba(94,234,212,0.3),transparent 70%); pointer-events:none;
}
.points-popup-illustration-icon{ position:relative; z-index:1; color:#fff; opacity:0.95; }
.points-popup-coin{ position:absolute; color:#FBBF24; filter:drop-shadow(0 6px 10px rgba(0,0,0,0.25)); animation:np-float 4s ease-in-out infinite; }
.points-popup-coin-1{ top:24px; left:18%; animation-delay:0s; }
.points-popup-coin-2{ bottom:28px; left:32px; animation-delay:.8s; }
.points-popup-coin-3{ top:32px; right:16%; animation-delay:1.6s; }
.points-popup-body{ padding:26px 28px 30px; text-align:center; }
.points-popup-body h3{ font-size:21px; font-weight:800; letter-spacing:-0.01em; margin:0 0 10px; color:var(--ink); }
.points-popup-body p{ font-size:14.5px; color:#5B6675; line-height:1.6; margin:0 0 20px; }
.points-popup-btn{ width:100%; justify-content:center; }
@media (max-width:480px){
  .points-popup-visual{ height:150px; }
  .points-popup-body{ padding:22px 20px 26px; }
}

/* ---------- Hero visual mockup cards (kontakt.php, wissensdatenbank.php) ---------- */
.hero-visual-card{
  position:relative; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1);
  border-radius:18px; padding:22px; max-width:380px; margin:0 auto; box-shadow:0 30px 60px -30px rgba(0,0,0,0.5);
}
.hero-visual-card img{ display:block; width:100%; border-radius:14px; }
.hvc-dots{ display:flex; gap:6px; margin-bottom:14px; }
.hvc-dots span{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.18); }
.hvc-head{ display:flex; align-items:center; gap:10px; font-size:12.5px; color:#9AA6B5; margin-bottom:16px; padding-bottom:14px; border-bottom:1px solid rgba(255,255,255,0.08); }
.hvc-row{ display:flex; align-items:flex-end; gap:10px; margin-bottom:12px; }
.hvc-row.reverse{ justify-content:flex-end; }
.hvc-avatar{ width:28px; height:28px; border-radius:50%; background:linear-gradient(135deg,var(--teal),var(--teal-deep)); flex-shrink:0; }
.hvc-bubble{ background:rgba(255,255,255,0.07); color:#E7ECF1; font-size:13.5px; line-height:1.4; padding:10px 14px; border-radius:12px; max-width:230px; }
.hvc-bubble.teal{ background:var(--teal); color:var(--teal-on); font-weight:600; }
.hvc-status{ display:flex; align-items:center; gap:8px; font-size:12.5px; color:#9AA6B5; margin-top:6px; padding-top:14px; border-top:1px solid rgba(255,255,255,0.08); }
.hvc-dot-live{ width:7px; height:7px; border-radius:50%; background:#34D399; box-shadow:0 0 8px #34D399; animation:np-glow 2.4s ease-in-out infinite; flex-shrink:0; }
.hvc-search{ display:flex; align-items:center; gap:10px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:10px; padding:11px 14px; margin-bottom:16px; font-size:13.5px; color:#9AA6B5; }
.hvc-result{ display:flex; align-items:center; gap:12px; padding:11px 0; border-bottom:1px solid rgba(255,255,255,0.07); }
.hvc-result:last-child{ border-bottom:none; }
.hvc-result-icon{ width:32px; height:32px; border-radius:9px; background:rgba(20,184,166,0.16); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hvc-result-title{ font-size:13.5px; font-weight:600; color:#E7ECF1; margin-bottom:4px; }
.hvc-result-sub{ font-size:12px; color:#7E8A99; }
.hero-visual-badge{
  position:absolute; bottom:-20px; right:-16px; background:#fff; color:var(--ink); border-radius:12px;
  padding:11px 16px; font-size:13px; font-weight:700; box-shadow:0 18px 34px -12px rgba(0,0,0,0.45);
  display:flex; align-items:center; gap:9px; white-space:nowrap;
}

/* ---------- Services page: category illustrations & solution showcase ---------- */
.svc-mockup{ position:relative; height:200px; border-radius:16px; overflow:hidden; margin-bottom:20px; background:linear-gradient(150deg,#0F766E,#0B1220 130%); }
.svc-mockup-glow{ position:absolute; border-radius:50%; filter:blur(30px); opacity:.55; animation:np-glow 6s ease-in-out infinite; }
.svc-mockup-inner{ position:relative; z-index:1; width:100%; height:100%; padding:18px; }

.svc-pos-screen{ background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:12px; padding:14px; height:100%; display:flex; flex-direction:column; gap:9px; }
.svc-pos-line{ height:9px; border-radius:5px; background:rgba(255,255,255,0.14); }
.svc-pos-paid{ margin-top:auto; align-self:flex-end; display:flex; align-items:center; gap:6px; background:var(--teal); color:var(--teal-on); font-size:12px; font-weight:700; padding:6px 12px; border-radius:999px; }

.svc-browser{ background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:12px; height:100%; overflow:hidden; }
.svc-browser-bar{ display:flex; gap:5px; padding:10px 12px; border-bottom:1px solid rgba(255,255,255,0.1); }
.svc-browser-bar span{ width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.18); }
.svc-browser-body{ padding:14px; display:flex; flex-direction:column; gap:8px; }
.svc-browser-block{ height:8px; border-radius:4px; background:rgba(255,255,255,0.14); }
.svc-browser-block.w60{ width:60%; }
.svc-browser-grid{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:8px; margin-top:6px; }
.svc-browser-grid div{ height:36px; border-radius:8px; background:rgba(20,184,166,0.18); }

.svc-phone{ width:108px; height:100%; margin:0 auto; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); border-radius:20px; padding:12px 10px; display:flex; flex-direction:column; gap:8px; }
.svc-phone-notch{ width:36px; height:5px; border-radius:4px; background:rgba(255,255,255,0.2); margin:0 auto 6px; }
.svc-phone-card{ height:24px; border-radius:8px; background:rgba(20,184,166,0.22); }
.svc-phone-nav{ margin-top:auto; display:flex; justify-content:space-between; padding:0 4px; }
.svc-phone-nav span{ width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.25); }
.svc-phone-nav span.active{ background:var(--teal); }

.svc-swatches{ position:relative; height:100%; display:flex; align-items:center; justify-content:center; }
.svc-swatch{ position:absolute; width:78px; height:78px; border-radius:14px; box-shadow:0 14px 30px -12px rgba(0,0,0,0.5); }
.svc-swatch-1{ background:linear-gradient(135deg,var(--teal),var(--teal-deep)); transform:rotate(-14deg) translate(-34px,6px); }
.svc-swatch-2{ background:rgba(255,255,255,0.94); transform:rotate(6deg) translate(8px,-10px); display:flex; align-items:center; justify-content:center; color:var(--ink); font-weight:800; font-size:22px; }
.svc-swatch-3{ background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.2); transform:rotate(20deg) translate(34px,18px); }

.svc-flow{ position:relative; height:100%; display:flex; align-items:center; justify-content:space-between; padding:0 16px; }
.svc-flow-node{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.18); display:flex; align-items:center; justify-content:center; flex-shrink:0; z-index:1; }
.svc-flow-node.active{ background:var(--teal); border-color:var(--teal); animation:np-spin-slow 6s linear infinite; }
.svc-flow-line{ flex:1; height:2px; background:repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0 6px, transparent 6px 12px); }

.svc-globe-wrap{ position:relative; height:100%; display:flex; align-items:center; justify-content:center; }
.svc-globe{ width:108px; height:108px; border-radius:50%; background:radial-gradient(circle at 32% 28%, rgba(94,234,212,0.5), rgba(20,184,166,0.08) 70%); border:1px solid rgba(94,234,212,0.4); position:relative; animation:np-spin-slow 18s linear infinite; }
.svc-globe::before, .svc-globe::after{ content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,0.16); border-radius:50%; }
.svc-globe::before{ transform:scaleX(0.45); }
.svc-globe::after{ transform:scaleX(0.8) rotate(20deg); }
.svc-domain-pill{ position:absolute; bottom:8px; background:#fff; color:var(--ink); font-size:11px; font-weight:700; padding:5px 12px; border-radius:999px; box-shadow:0 10px 24px -10px rgba(0,0,0,0.5); }

.solutions-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.solution-card{ background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09); border-radius:var(--radius-lg); padding:28px; transition:transform .25s var(--ease), border-color .25s var(--ease); }
.solution-card:hover{ transform:translateY(-6px); border-color:rgba(20,184,166,0.5); }
.solution-frame{ position:relative; border-radius:14px; overflow:hidden; border:1px solid rgba(255,255,255,0.12); margin-bottom:22px; background:#080D17; }
.solution-frame-bar{ display:flex; align-items:center; gap:8px; padding:10px 14px; background:rgba(255,255,255,0.04); border-bottom:1px solid rgba(255,255,255,0.08); }
.solution-frame-bar span{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.18); }
.solution-frame-url{ margin-left:6px; font-size:12px; color:#9AA6B5; background:rgba(255,255,255,0.06); padding:3px 10px; border-radius:6px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.solution-frame img{ display:block; width:100%; height:auto; }
.solution-featured-badge{ display:inline-flex; align-items:center; gap:6px; background:rgba(20,184,166,0.14); color:var(--teal-light); font-size:12px; font-weight:700; padding:5px 12px; border-radius:999px; margin-bottom:14px; }
.tech-tag-row{ display:flex; flex-wrap:wrap; gap:8px; margin:16px 0 22px; }
.tech-tag{ font-size:12px; font-weight:600; color:var(--teal-light); background:rgba(20,184,166,0.12); border:1px solid rgba(20,184,166,0.3); padding:5px 11px; border-radius:999px; }
.solution-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.solution-more-card{ display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; min-height:300px; border:1px dashed rgba(255,255,255,0.22); border-radius:var(--radius-lg); padding:32px; }
.solution-more-card .icon-box{ background:rgba(20,184,166,0.14); }

/* ---------- Portfolio (reuses .product-card/.product-thumb/.product-badge/.product-cat from the shop grid) ---------- */
.portfolio-thumb{ height:220px; }
.portfolio-badge-client{ background:var(--teal); color:var(--teal-on); }
.portfolio-badge-concept{ background:rgba(11,18,32,0.78); color:#fff; }
.portfolio-hero-frame{ max-width:760px; margin:0 auto; }
.portfolio-gallery{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.portfolio-gallery img{ width:100%; border-radius:14px; display:block; }
.portfolio-meta-row{ display:flex; flex-wrap:wrap; gap:10px 28px; margin:18px 0 26px; }
.portfolio-meta-item{ font-size:13.5px; color:var(--text-soft); }
.portfolio-meta-item strong{ display:block; font-size:14.5px; color:#F7FAFC; font-weight:700; margin-bottom:2px; }
@media (max-width:600px){
  .portfolio-gallery{ grid-template-columns:1fr; }
}

/* ---------- Status page ---------- */
.status-banner{ display:flex; align-items:center; gap:16px; padding:28px 32px; border-radius:var(--radius-lg); color:#fff; }
.status-banner.ok{ background:linear-gradient(150deg,#0F766E,#0B1220 130%); }
.status-banner.issue{ background:linear-gradient(150deg,#B45309,#0B1220 130%); }
.status-banner-dot{ width:14px; height:14px; border-radius:50%; background:#34D399; box-shadow:0 0 0 6px rgba(52,211,153,0.25); animation:np-glow 2.4s ease-in-out infinite; flex-shrink:0; }
.status-banner.issue .status-banner-dot{ background:#FBBF24; box-shadow:0 0 0 6px rgba(251,191,36,0.25); }
.status-row{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 0; border-bottom:1px solid var(--line-soft); }
.status-row-name{ display:flex; align-items:center; gap:10px; font-weight:600; }
.status-dot{ width:9px; height:9px; border-radius:50%; flex-shrink:0; }
.status-dot.operational{ background:#10B981; }
.status-dot.maintenance{ background:#3B82F6; }
.status-dot.monitoring{ background:#8B5CF6; }
.status-dot.degraded{ background:#F59E0B; }
.status-dot.outage{ background:#EF4444; }
.status-uptime{ font-size:13.5px; color:var(--text-faint); }
.status-feed-item{ display:flex; gap:16px; padding:20px 0; border-bottom:1px solid var(--line-soft); }
.status-feed-date{ width:108px; flex-shrink:0; font-size:13px; color:var(--text-faint); }
.status-feed-body h3{ font-size:15.5px; font-weight:700; margin-bottom:5px; display:flex; align-items:center; gap:8px; }
.status-feed-body p{ font-size:14px; color:var(--text-muted); line-height:1.6; margin:0; }
.status-level-tag{ font-size:11px; font-weight:700; padding:2px 8px; border-radius:6px; text-transform:uppercase; letter-spacing:0.03em; }
.status-level-tag.operational{ background:#ECFDF5; color:#065F46; }
.status-level-tag.maintenance{ background:#EFF6FF; color:#1E40AF; }
.status-level-tag.monitoring{ background:#F5F3FF; color:#5B21B6; }
.status-level-tag.degraded{ background:#FFFBEB; color:#92400E; }
.status-level-tag.outage{ background:#FEF2F2; color:#991B1B; }

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr !important; padding-top:64px !important; padding-bottom:72px !important; gap:36px !important; }
  .hero-h1{ font-size:46px !important; }
  .hub-grid{ grid-template-columns:1fr !important; }
  .grid-3{ grid-template-columns:1fr 1fr !important; }
  .grid-4{ grid-template-columns:1fr 1fr !important; }
  .foot-grid{ grid-template-columns:1fr 1fr !important; gap:28px !important; }
  .nav-links, .header-search{ display:none !important; }
  .btn-burger{ display:flex !important; }
  .channel-grid, .kb-cat-grid, .guru-grid, .blog-grid, .video-grid{ grid-template-columns:1fr 1fr !important; }
  .guru-spotlight, .blog-featured{ grid-template-columns:1fr !important; }
  .guru-spotlight-stats{ border-right:none !important; border-bottom:1px solid rgba(255,255,255,0.1) !important; }
  .solutions-grid{ grid-template-columns:1fr !important; }
}
@media (max-width:600px){
  .hero-h1{ font-size:33px !important; }
  .hero-visual{ display:none !important; }
  .grid-3, .grid-4{ grid-template-columns:1fr !important; }
  .solutions-grid{ grid-template-columns:1fr !important; }
  .foot-grid{ grid-template-columns:1fr !important; }
  .cta-panel{ flex-direction:column !important; align-items:flex-start !important; padding:30px !important; }
  .section-pad{ padding-left:18px !important; padding-right:18px !important; }
  .hub-card{ padding:32px 26px !important; }
  .price-head{ flex-direction:column !important; align-items:flex-start !important; gap:6px !important; }
  .channel-grid, .kb-cat-grid, .guru-grid, .blog-grid, .video-grid, .hub5-grid{ grid-template-columns:1fr !important; }
  .guru-spotlight-stats, .guru-spotlight-body, .blog-featured-body{ padding:28px !important; }
  .article-row{ flex-direction:column !important; }
  .status-feed-item{ flex-direction:column !important; gap:6px !important; }
  .status-feed-date{ width:auto !important; }
}
@media (max-width:760px){
  .product-grid{ grid-template-columns:repeat(2,1fr) !important; }
}
@media (max-width:420px){
  .product-grid{ grid-template-columns:1fr !important; }
}

/* ---------- Account area shared tab nav ---------- */
.account-tabs-card{
  background:#fff; border-radius:18px; padding:9px; margin:24px 0 36px;
  box-shadow:0 16px 36px -24px rgba(11,18,32,0.18); border:1px solid var(--line-soft);
}
.account-tabs{ display:flex; gap:8px; overflow-x:auto; }
.account-tab{
  display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:11px 14px; border-radius:12px; border:1px solid transparent;
  background:transparent; color:#5B6675; font-size:13.5px; font-weight:700; text-decoration:none; white-space:nowrap;
  transition:background .18s var(--ease), color .18s, box-shadow .18s, transform .18s; flex:1 1 0; min-width:fit-content;
}
.account-tab:hover{ background:var(--teal-pale); color:var(--teal-deep); }
.account-tab.active{
  background:linear-gradient(135deg,var(--teal),var(--teal-deep)); color:#fff;
  box-shadow:0 12px 22px -10px rgba(20,184,166,0.55); transform:translateY(-1px);
}
.account-tab svg{ flex-shrink:0; }
.account-tab-badge{ min-width:18px; height:18px; padding:0 5px; border-radius:999px; background:var(--teal); color:var(--teal-on); font-size:10.5px; font-weight:800; display:flex; align-items:center; justify-content:center; }
.account-tab.active .account-tab-badge{ background:rgba(255,255,255,0.28); color:#fff; }

/* ---------- Account hub ---------- */
.account-hero{
  background:linear-gradient(135deg,var(--ink) 0%,var(--teal-deep) 130%); color:#fff; border-radius:var(--radius-lg);
  padding:32px 34px; display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap;
  position:relative; overflow:hidden; margin-bottom:36px;
}
.account-hero::after{ content:""; position:absolute; top:-70px; right:-50px; width:240px; height:240px; border-radius:50%; background:radial-gradient(circle,rgba(94,234,212,0.26),transparent 70%); pointer-events:none; }
.account-hero-left{ display:flex; align-items:center; gap:16px; position:relative; z-index:1; }
.account-avatar{
  width:56px; height:56px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:800; color:#fff; background:linear-gradient(135deg,var(--teal-light),var(--teal-deep));
  box-shadow:0 10px 22px -8px rgba(20,184,166,0.6);
}
.account-hero-greeting{ font-size:12.5px; color:#9FE9DF; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:3px; }
.account-hero-name{ font-size:21px; font-weight:800; line-height:1.2; }
.account-hero-email{ font-size:13px; color:#C9D5DE; margin-top:2px; }
.account-hero-stats{ display:flex; align-items:center; gap:22px; position:relative; z-index:1; }
.account-hero-stat{ text-align:center; }
.account-hero-stat span{ display:flex; align-items:center; justify-content:center; gap:5px; font-size:24px; font-weight:800; }
.account-hero-stat label{ display:block; font-size:11.5px; color:#9FE9DF; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; margin-top:2px; }
.account-hero-stat-divider{ width:1px; height:34px; background:rgba(255,255,255,0.18); }

.account-hub-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin:0 0 48px; }
.account-hub-tile{
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:24px 22px 22px; overflow:hidden;
  display:flex; flex-direction:column; gap:11px; text-decoration:none; color:var(--ink);
  transition:transform .22s var(--ease), box-shadow .22s var(--ease), border-color .2s; position:relative;
}
.account-hub-tile::before{ content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--tile-accent, var(--teal)); opacity:0; transition:opacity .2s; }
.account-hub-tile:hover{ transform:translateY(-5px); box-shadow:0 22px 40px -22px rgba(11,18,32,0.25); border-color:transparent; }
.account-hub-tile:hover::before{ opacity:1; }
.account-hub-tile-icon{
  width:48px; height:48px; border-radius:14px; background:var(--tile-bg, var(--teal-pale)); color:var(--tile-accent, var(--teal-mid));
  display:flex; align-items:center; justify-content:center; transition:transform .22s var(--ease);
}
.account-hub-tile:hover .account-hub-tile-icon{ transform:scale(1.08) rotate(-4deg); }
.account-hub-tile-label{ font-size:16px; font-weight:800; letter-spacing:-0.01em; }
.account-hub-tile-desc{ font-size:13px; color:#9AA6B5; line-height:1.4; }
.account-hub-tile-badge{ position:absolute; top:20px; right:20px; min-width:20px; height:20px; padding:0 5px; border-radius:999px; background:var(--teal); color:var(--teal-on); font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 10px -2px rgba(20,184,166,0.5); }
.account-hub-tile-arrow{ position:absolute; bottom:20px; right:20px; opacity:0; transform:translateX(-6px); transition:opacity .2s, transform .2s; color:var(--tile-accent, var(--teal-mid)); }
.account-hub-tile:hover .account-hub-tile-arrow{ opacity:1; transform:translateX(0); }

.rv-rail{ display:flex; gap:14px; overflow-x:auto; padding-bottom:8px; scrollbar-width:thin; }
.rv-card{ flex:0 0 148px; text-decoration:none; color:inherit; }
.rv-card img{ width:100%; height:138px; object-fit:cover; border-radius:10px; border:1px solid var(--line); background:#F4F6F8; display:block; }
.rv-card-name{ font-size:13px; font-weight:600; margin-top:8px; line-height:1.35; max-height:36px; overflow:hidden; color:var(--ink); }
.rv-card-price{ font-size:13px; font-weight:800; margin-top:4px; color:var(--ink); }

/* ---------- Orders ---------- */
.order-group-date{ font-size:14.5px; font-weight:800; color:var(--ink); margin:28px 0 12px; }
.order-group-date:first-child{ margin-top:0; }
.order-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:20px 22px; margin-bottom:14px; display:flex; gap:18px; align-items:center; flex-wrap:wrap; }
.order-card-img{ width:88px; height:88px; border-radius:10px; object-fit:cover; background:#F4F6F8; flex-shrink:0; }
.order-status{ display:flex; flex-direction:column; align-items:center; gap:6px; width:96px; flex-shrink:0; text-align:center; }
.order-status-icon{ width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.order-status-icon.is-completed{ background:var(--teal-pale); color:var(--teal-mid); }
.order-status-icon.is-pending{ background:#FEF3C7; color:#92400E; }
.order-status-icon.is-cancelled{ background:#FEE2E2; color:#DC2626; }
.order-status-icon.is-confirmed{ background:#E0F2FE; color:#0369A1; }
.order-status-label{ font-size:12px; font-weight:700; line-height:1.3; }
.order-status-date{ font-size:11px; color:#9AA6B5; }
.order-card-info{ flex:1 1 200px; min-width:200px; }
.order-card-name{ font-weight:700; font-size:15px; margin-bottom:4px; color:var(--ink); text-decoration:none; }
.order-card-variant{ font-size:13px; color:#6B7686; margin-bottom:8px; }
.order-card-link{ font-size:13.5px; font-weight:700; color:var(--teal-mid); display:inline-flex; align-items:center; gap:5px; text-decoration:none; }
.order-card-seller{ font-size:12.5px; color:#9AA6B5; width:100%; padding-top:12px; border-top:1px solid var(--line-soft); margin-top:6px; }

/* ---------- Invoices ---------- */
.invoice-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:20px 22px; margin-bottom:14px; }
.invoice-card-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:14px; flex-wrap:wrap; }
.invoice-amount{ font-size:21px; font-weight:800; color:var(--ink); }
.invoice-status-pill{ font-size:12px; font-weight:700; padding:4px 11px; border-radius:999px; flex-shrink:0; }
.invoice-status-pill.is-open{ background:#FEF3C7; color:#92400E; }
.invoice-status-pill.is-paid{ background:var(--teal-pale); color:var(--teal-mid); }
.invoice-thumbs{ display:flex; gap:8px; margin-top:14px; }
.invoice-thumb{ width:48px; height:48px; border-radius:8px; object-fit:cover; border:1px solid var(--line); background:#F4F6F8; }
.invoice-thumb-more{ width:48px; height:48px; border-radius:8px; background:var(--ink); color:#fff; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; }

/* ---------- Pro Points ---------- */
.points-hero{
  background:linear-gradient(135deg,var(--ink) 0%,var(--teal-deep) 130%); color:#fff; border-radius:var(--radius-lg);
  padding:36px 32px; display:flex; justify-content:space-between; align-items:center; gap:26px; flex-wrap:wrap; position:relative; overflow:hidden;
}
.points-hero::after{ content:""; position:absolute; top:-60px; right:-60px; width:220px; height:220px; border-radius:50%; background:radial-gradient(circle,rgba(94,234,212,0.28),transparent 70%); pointer-events:none; }
.points-hero-balance{ font-size:42px; font-weight:800; line-height:1; }
.points-hero-label{ font-size:13px; color:#9FE9DF; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:6px; }
.points-tier-badge{ display:inline-flex; align-items:center; gap:8px; padding:6px 14px; border-radius:999px; font-weight:700; font-size:13px; background:rgba(255,255,255,0.14); margin-bottom:14px; }
.points-progress-track{ height:8px; border-radius:999px; background:rgba(255,255,255,0.18); overflow:hidden; margin-top:10px; width:100%; max-width:320px; }
.points-progress-fill{ height:100%; background:linear-gradient(90deg,var(--teal-light),var(--teal)); border-radius:999px; transition:width .4s var(--ease); }
.points-progress-note{ font-size:12.5px; color:#C9F4ED; margin-top:8px; }
.points-package-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.points-package-card{ background:#fff; border:1.5px solid var(--line); border-radius:var(--radius-md); padding:24px 20px; text-align:center; transition:border-color .2s, transform .2s; }
.points-package-card:hover{ border-color:var(--teal-mid); transform:translateY(-3px); }
.points-package-amount{ font-size:25px; font-weight:800; color:var(--ink); display:flex; align-items:center; justify-content:center; gap:7px; }
.points-package-price{ font-size:14px; color:#6B7686; margin:6px 0 16px; }
.points-history-row{ display:flex; justify-content:space-between; align-items:center; gap:12px; padding:13px 0; border-bottom:1px solid var(--line-soft); font-size:13.5px; }
.points-history-desc{ font-weight:600; color:var(--ink); }
.points-history-date{ font-size:12px; color:#9AA6B5; margin-top:2px; }
.points-history-amount{ font-weight:800; flex-shrink:0; }
.points-history-amount.is-positive{ color:var(--teal-mid); }
.points-history-amount.is-negative{ color:#DC2626; }

/* ---------- Messages / support tickets ---------- */
.ticket-list-card{
  display:flex; justify-content:space-between; align-items:center; gap:14px; padding:18px 20px;
  border:1px solid var(--line); border-radius:var(--radius-md); background:#fff; margin-bottom:12px;
  text-decoration:none; color:inherit; transition:border-color .2s, transform .2s;
}
.ticket-list-card:hover{ border-color:var(--teal-mid); transform:translateX(3px); }
.ticket-list-card.is-unread{ border-color:var(--teal-mid); background:var(--teal-pale); }
.ticket-subject{ font-weight:700; font-size:14.5px; color:var(--ink); margin-bottom:4px; }
.ticket-preview{ font-size:13px; color:#6B7686; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:420px; }
.ticket-meta{ font-size:11.5px; color:#9AA6B5; margin-top:6px; }
.ticket-status-pill{ font-size:11.5px; font-weight:800; padding:4px 11px; border-radius:999px; flex-shrink:0; white-space:nowrap; }
.ticket-status-pill.is-open{ background:#FEF3C7; color:#92400E; }
.ticket-status-pill.is-answered{ background:#E0F2FE; color:#0369A1; }
.ticket-status-pill.is-closed{ background:#F4F6F8; color:#6B7686; }
.ticket-unread-dot{ width:9px; height:9px; border-radius:50%; background:var(--teal); flex-shrink:0; }

.chat-thread{ display:flex; flex-direction:column; gap:16px; padding:6px 2px 18px; }
.chat-bubble-row{ display:flex; gap:10px; max-width:80%; }
.chat-bubble-row.is-mine{ align-self:flex-end; flex-direction:row-reverse; }
.chat-bubble{ padding:12px 16px; font-size:14px; line-height:1.55; }
.chat-bubble-row.is-mine .chat-bubble{ background:var(--teal); color:var(--teal-on); border-radius:16px 16px 4px 16px; }
.chat-bubble-row:not(.is-mine) .chat-bubble{ background:#F4F6F8; color:var(--ink); border-radius:16px 16px 16px 4px; }
.chat-meta{ font-size:11px; color:#9AA6B5; margin-top:5px; }
.chat-bubble-row.is-mine .chat-meta{ text-align:right; }
.chat-avatar{ width:32px; height:32px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; color:#fff; }
.chat-avatar.is-mine{ background:var(--teal-deep); }
.chat-avatar.is-admin{ background:var(--ink); }
.chat-input-bar{ display:flex; gap:10px; margin-top:8px; }
.chat-input-bar textarea{ flex:1; border:1px solid var(--line); border-radius:12px; padding:12px 14px; font-family:inherit; font-size:14px; resize:none; }
.chat-input-bar textarea:focus{ outline:none; border-color:var(--teal); box-shadow:0 0 0 4px rgba(20,184,166,0.14); }
.chat-send-btn{ width:46px; height:46px; border-radius:12px; background:var(--teal); color:var(--teal-on); display:flex; align-items:center; justify-content:center; border:none; flex-shrink:0; cursor:pointer; transition:transform .15s; }
.chat-send-btn:hover{ transform:scale(1.05); }

/* ---------- Notifications ---------- */
.notification-card{
  display:flex; align-items:flex-start; gap:14px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-md);
  padding:18px 20px; margin-bottom:12px; text-decoration:none; color:var(--ink); transition:transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s;
}
.notification-card:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -18px rgba(11,18,32,0.22); border-color:transparent; }
.notification-card.is-unread{ background:var(--teal-pale); border-color:rgba(20,184,166,0.3); }
.notification-icon{
  width:42px; height:42px; border-radius:12px; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  background:var(--teal-pale); color:var(--teal-mid);
}
.notification-icon.is-confirmed{ background:#EFF6FF; color:#1D4ED8; }
.notification-icon.is-completed{ background:#ECFDF5; color:#059669; }
.notification-icon.is-cancelled{ background:#FEF2F2; color:#DC2626; }
.notification-title{ font-weight:700; font-size:14.5px; color:var(--ink); margin-bottom:3px; }
.notification-body{ font-size:13.5px; color:#5B6675; line-height:1.5; }
.notification-date{ font-size:12px; color:#9AA6B5; margin-top:6px; }
.notification-unread-dot{ width:9px; height:9px; border-radius:50%; background:var(--teal); flex-shrink:0; margin-top:5px; box-shadow:0 0 0 3px rgba(20,184,166,0.22); }

.shop-pagination{ display:flex; gap:7px; flex-wrap:wrap; margin-top:22px; }
.shop-page-link{
  width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:9px;
  border:1px solid var(--line); font-size:13.5px; font-weight:700; color:#5B6675; text-decoration:none; transition:border-color .15s, color .15s, background .15s;
}
.shop-page-link:hover{ border-color:var(--teal); color:var(--teal-deep); }
.shop-page-link.active{ background:linear-gradient(135deg,var(--teal),var(--teal-deep)); border-color:transparent; color:#fff; }

/* ---------- Product reviews ---------- */
.review-card{ display:flex; gap:14px; padding:20px 0; border-bottom:1px solid var(--line); }
.review-card:last-child{ border-bottom:none; padding-bottom:0; }
.review-avatar{
  width:40px; height:40px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  font-size:15px; font-weight:800; color:#fff; background:linear-gradient(135deg,var(--teal-light),var(--teal-deep));
}
.review-card-name{ font-weight:700; font-size:14px; color:var(--ink); }
.review-card-date{ font-size:12.5px; color:#9AA6B5; }
.review-card-title{ font-weight:700; font-size:15px; margin:2px 0 4px; color:var(--ink); }
.review-card-body{ font-size:14.5px; color:#3A4555; line-height:1.6; }
.review-card-photo-trigger{ margin-top:10px; display:block; padding:0; border:none; background:none; cursor:pointer; }
.review-card-photo{ display:block; width:88px; height:88px; border-radius:10px; object-fit:cover; border:1px solid var(--line); transition:transform .18s var(--ease); }
.review-card-photo-trigger:hover .review-card-photo{ transform:scale(1.04); }
.review-card-reply{ margin-top:14px; padding:12px 16px; background:var(--teal-pale); border-left:3px solid var(--teal); border-radius:0 10px 10px 0; }
.review-card-reply-head{ display:flex; align-items:center; gap:7px; font-size:12.5px; font-weight:800; color:var(--teal-deep); text-transform:uppercase; letter-spacing:0.03em; margin-bottom:5px; }
.review-card-reply-body{ font-size:14px; color:#3A4555; line-height:1.6; }

/* ---------- Review photo lightbox/slider ---------- */
.review-photo-modal-backdrop{
  position:fixed; inset:0; background:rgba(8,13,23,0.88); z-index:200; display:flex; align-items:center; justify-content:center;
  padding:24px; opacity:0; pointer-events:none; transition:opacity .25s;
}
.review-photo-modal-backdrop.open{ opacity:1; pointer-events:auto; }
.review-photo-modal{ position:relative; max-width:min(90vw, 640px); max-height:90vh; display:flex; align-items:center; justify-content:center; }
.review-photo-modal img{ max-width:100%; max-height:90vh; border-radius:14px; display:block; box-shadow:0 30px 60px -20px rgba(0,0,0,0.6); }
.review-photo-modal-close{
  position:absolute; top:-44px; right:-6px; width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.12);
  border:none; color:#fff; font-size:22px; line-height:1; display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:1;
}
.review-photo-modal-nav{
  position:absolute; top:50%; transform:translateY(-50%); width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,0.14);
  border:none; color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:1; transition:background .15s;
}
.review-photo-modal-nav:hover{ background:rgba(255,255,255,0.26); }
.review-photo-modal-nav.is-prev{ left:-54px; }
.review-photo-modal-nav.is-next{ right:-54px; }
.review-photo-modal-nav.is-hidden{ display:none; }
@media (max-width:680px){
  .review-photo-modal-nav.is-prev{ left:4px; }
  .review-photo-modal-nav.is-next{ right:4px; }
  .review-photo-modal-close{ top:-40px; right:0; }
}

/* Five radio inputs in row-reverse order so the CSS sibling selector below can light up
   "this star and everything visually to its left" on hover/check without any JS. */
.star-rating-input{ display:flex; flex-direction:row-reverse; justify-content:flex-end; gap:2px; width:fit-content; }
.star-rating-input input{ position:absolute; opacity:0; width:0; height:0; }
.star-rating-input label{ cursor:pointer; padding:2px; line-height:0; }
.star-rating-input label svg{ width:30px; height:30px; fill:#E2E5EA; transition:fill .15s; }
.star-rating-input input:checked ~ label svg,
.star-rating-input label:hover svg,
.star-rating-input label:hover ~ label svg{ fill:#F59E0B; }

/* ---------- Profile ---------- */
.profile-section{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:24px 26px; margin-bottom:18px; }
.profile-section-head{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.profile-section-icon{ width:38px; height:38px; border-radius:10px; background:var(--teal-pale); color:var(--teal-mid); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.profile-section-title{ font-size:16px; font-weight:800; color:var(--ink); }

@media (max-width:760px){
  .account-hub-grid{ grid-template-columns:1fr 1fr !important; }
  .points-package-grid{ grid-template-columns:1fr 1fr !important; }
  .points-hero{ flex-direction:column; align-items:flex-start !important; }
  .account-hero{ flex-direction:column; align-items:flex-start !important; }
  .account-hero-stats{ width:100%; justify-content:space-between !important; }
}
@media (max-width:480px){
  .account-hub-grid{ grid-template-columns:1fr !important; }
  .points-package-grid{ grid-template-columns:1fr !important; }
  .order-status{ width:auto; flex-direction:row !important; }
  .ticket-preview{ max-width:200px; }
  .account-tabs-card{ padding:7px; }
  .account-tab span{ display:none; }
  .account-tab{ padding:11px; }
}

/* ============================================================
   EXTENDED MOBILE RESPONSIVE
   Global patterns and overrides to ensure all pages render
   correctly across 320–980 px viewports.
   ============================================================ */

/* ---------- Product detail page: 2-col → 1-col ---------- */
/* Grid moved from inline style to CSS so media queries can collapse it.
   PHP now sets class="container product-detail-layout" on this container. */
.product-detail-layout{
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; padding:0;
}
.product-detail-main-img{ height:480px; }
@media (max-width:760px){
  .product-detail-layout{ grid-template-columns:1fr !important; gap:24px !important; }
  .product-detail-main-img{ height:320px !important; }
}
@media (max-width:480px){
  .product-detail-main-img{ height:240px !important; }
}

/* ---------- Header: prevent overflow on 360-390px phones ---------- */
@media (max-width:980px){
  /* "Loslegen / Jetzt anfragen" CTA pill in the header bar — redundant on
     mobile because every page is one tap away via the burger menu. Hiding it
     frees ~110 px that prevents the bar from overflowing on narrow screens. */
  .header-actions .btn{ display:none !important; }
  /* Tighten bar horizontal padding (24 → 16 px each side = 16 px saved). */
  .site-header .bar{ padding-left:16px !important; padding-right:16px !important; }
}
@media (max-width:480px){
  /* Compress icon gaps further for < 480 px. */
  .header-actions{ gap:8px !important; }
  /* Language button: keep globe icon, hide text label and caret to save ~40 px. */
  .lang-btn .lang-label{ display:none !important; }
  .lang-btn .lang-caret{ display:none !important; }
  .lang-btn{ padding:7px 9px !important; }
}

/* ---------- Section heading typography ---------- */
@media (max-width:760px){
  .section-head h2{ font-size:28px !important; }
}
@media (max-width:480px){
  .section-head h2{ font-size:22px !important; }
}

/* ---------- Container horizontal padding on small phones ---------- */
@media (max-width:480px){
  .container{ padding-left:16px !important; padding-right:16px !important; }
}

/* ---------- grid-2 generic class: collapse on mobile ---------- */
@media (max-width:640px){
  .grid-2{ grid-template-columns:1fr !important; }
}

/* ---------- Hero section vertical padding ---------- */
@media (max-width:600px){
  .hero-grid{ padding-top:52px !important; padding-bottom:56px !important; }
}
@media (max-width:480px){
  .hero-grid{ padding-top:40px !important; padding-bottom:44px !important; }
  .hero-h1{ font-size:28px !important; }
  .eyebrow-pill{ font-size:12px !important; padding:6px 12px !important; }
}

/* ---------- Hub cards ---------- */
@media (max-width:600px){
  .hub-card .icon-box{ margin-bottom:28px !important; }
  .hub-card h2{ font-size:22px !important; }
}

/* ---------- CTA panel text ---------- */
@media (max-width:600px){
  .cta-panel{ padding:28px 24px !important; }
  .cta-panel h2, .cta-panel h3{ font-size:22px !important; }
  .cta-panel p{ font-size:15px !important; }
}

/* ---------- Topbar on very small screens ---------- */
@media (max-width:380px){
  .topbar{ font-size:12px; padding:7px 10px; gap:5px 10px; }
}

/* ---------- Shop slider caption on medium-small screens ---------- */
@media (max-width:480px){
  .shop-slide img{ height:200px !important; }
  .shop-slide-caption h2{ font-size:18px !important; }
}

/* ---------- Solution/service cards on tablet narrow ---------- */
@media (max-width:640px){
  .solution-more-card{ min-height:200px !important; }
}

/* ---------- Checkout step body padding on mobile ---------- */
@media (max-width:480px){
  .checkout-step-body{ padding:0 14px 18px !important; }
  .checkout-step-head{ padding:14px 16px !important; }
}

/* ---------- Article rows on mobile ---------- */
@media (max-width:480px){
  .article-row{ gap:8px !important; }
  .article-row h3{ font-size:15px !important; }
}

/* ---------- Hero visual badge overflow ---------- */
@media (max-width:480px){
  .hero-visual-badge{ font-size:12px; padding:9px 12px; gap:7px; }
}

/* ============================================
   V2 components — 2026 redesign (home / shop / services)
   ============================================ */

/* ---------- Cinematic photo hero ---------- */
.hero-v2{
  position:relative; overflow:hidden; background:var(--ink); color:var(--paper);
}
.hero-v2-bg{
  position:absolute; inset:0; z-index:0;
}
.hero-v2-bg img{
  width:100%; height:100%; object-fit:cover; opacity:0.38;
  animation:np-hero-zoom 22s ease-out both;
}
@keyframes np-hero-zoom{ from{ transform:scale(1.12); } to{ transform:scale(1); } }
.hero-v2-bg::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(20,184,166,0.28), transparent 62%),
    linear-gradient(180deg, rgba(11,18,32,0.55) 0%, rgba(11,18,32,0.78) 55%, var(--ink) 100%);
}
.hero-v2-grid-lines{
  position:absolute; inset:0; z-index:0; opacity:.25; pointer-events:none;
  background-image:linear-gradient(rgba(94,234,212,0.07) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(94,234,212,0.07) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(720px 460px at 70% 30%, #000 30%, transparent 75%);
  -webkit-mask-image:radial-gradient(720px 460px at 70% 30%, #000 30%, transparent 75%);
}
.hero-v2 .container{ position:relative; z-index:2; }

.hero-v2-title{
  font-size:clamp(38px, 6.2vw, 72px); line-height:1.02; font-weight:800; letter-spacing:-0.035em; margin:0 0 22px;
}
.hero-v2-lede{ font-size:clamp(16px,1.7vw,20px); line-height:1.65; color:#B9C4D2; max-width:560px; margin:0 0 36px; }

.gradient-text{
  background:linear-gradient(96deg,#5EEAD4 4%, #14B8A6 52%, #2DD4BF 96%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* floating product chips in hero */
.hero-float-card{
  position:absolute; display:flex; align-items:center; gap:12px;
  background:rgba(13,20,34,0.72); border:1px solid rgba(255,255,255,0.12);
  border-radius:16px; padding:12px 16px; backdrop-filter:blur(12px);
  box-shadow:0 24px 50px -20px rgba(0,0,0,0.55);
  animation:np-float 7s ease-in-out infinite;
}
.hero-float-card img{ width:46px; height:46px; object-fit:cover; border-radius:10px; }
.hero-float-card .t1{ font-size:13.5px; font-weight:700; color:#F7FAFC; }
.hero-float-card .t2{ font-size:12px; font-weight:600; color:var(--teal-light); }

/* hero stats band */
.hero-stats{
  position:relative; z-index:2; display:grid; grid-template-columns:repeat(4,1fr);
  gap:1px; background:rgba(255,255,255,0.09); border:1px solid rgba(255,255,255,0.09);
  border-radius:18px; overflow:hidden; backdrop-filter:blur(10px);
}
.hero-stat{
  background:rgba(11,18,32,0.72); padding:22px 26px; text-align:left;
}
.hero-stat .num{ font-size:28px; font-weight:800; letter-spacing:-0.02em; color:#F7FAFC; }
.hero-stat .num em{ font-style:normal; color:var(--teal-light); }
.hero-stat .lbl{ font-size:13px; font-weight:500; color:#93A1B3; margin-top:4px; }

/* ---------- Marquee strip ---------- */
.marquee{ overflow:hidden; position:relative; padding:18px 0; border-top:1px solid rgba(255,255,255,0.07); border-bottom:1px solid rgba(255,255,255,0.07); background:var(--ink-2); }
.marquee-track{ display:flex; gap:44px; width:max-content; animation:np-marquee 30s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee-item{ display:inline-flex; align-items:center; gap:12px; color:#8FA0B3; font-size:14.5px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; white-space:nowrap; }
.marquee-item svg{ color:var(--teal); flex-shrink:0; }
@keyframes np-marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }

/* ---------- Photo category tiles ---------- */
.photo-tile{
  position:relative; display:flex; flex-direction:column; justify-content:flex-end;
  border-radius:var(--radius-md); overflow:hidden; min-height:240px; isolation:isolate;
  background:var(--ink);
}
.photo-tile img{
  position:absolute; inset:0; z-index:0; width:100%; height:100%; object-fit:cover;
  transition:transform .8s var(--ease), opacity .4s;
}
.photo-tile::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(185deg, rgba(11,18,32,0) 30%, rgba(11,18,32,0.82) 82%);
}
.photo-tile:hover img{ transform:scale(1.07); }
.photo-tile-body{ position:relative; z-index:2; padding:20px 22px; }
.photo-tile-body h3{ font-size:19px; font-weight:800; color:#fff; margin:0 0 3px; letter-spacing:-0.01em; }
.photo-tile-body p{ font-size:13.5px; color:#C3CDD9; margin:0; }
.photo-tile-arrow{
  position:absolute; top:16px; right:16px; z-index:2; width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,0.14); border:1px solid rgba(255,255,255,0.25); backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center; color:#fff;
  transform:translateY(-6px); opacity:0; transition:transform .35s var(--ease), opacity .35s;
}
.photo-tile:hover .photo-tile-arrow{ transform:translateY(0); opacity:1; }
.photo-tile-badge{
  position:absolute; top:16px; left:16px; z-index:2; font-size:11.5px; font-weight:800; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--teal-on); background:var(--teal-light); padding:5px 10px; border-radius:999px;
}

/* ---------- Bento hub (home) ---------- */
.bento{ display:grid; grid-template-columns:repeat(12,1fr); gap:20px; }
.bento-card{
  position:relative; border-radius:var(--radius-lg); overflow:hidden; isolation:isolate;
  display:flex; flex-direction:column; justify-content:flex-end; min-height:340px; color:#fff;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bento-card:hover{ transform:translateY(-6px); box-shadow:0 40px 70px -34px rgba(11,18,32,0.65); }
.bento-card > img{ position:absolute; inset:0; z-index:0; width:100%; height:100%; object-fit:cover; transition:transform .9s var(--ease); }
.bento-card:hover > img{ transform:scale(1.06); }
.bento-scrim{ position:absolute; inset:0; z-index:1; background:linear-gradient(190deg, rgba(11,18,32,0.06) 20%, rgba(11,18,32,0.9) 88%); }
.bento-scrim.teal{ background:linear-gradient(200deg, rgba(15,118,110,0.25) 0%, rgba(4,32,28,0.93) 90%); }
.bento-body{ position:relative; z-index:2; padding:30px; }
.bento-eyebrow{ font-size:12px; font-weight:800; letter-spacing:0.14em; text-transform:uppercase; color:var(--teal-light); margin-bottom:10px; }
.bento-body h3{ font-size:clamp(22px,2.4vw,30px); font-weight:800; letter-spacing:-0.02em; margin:0 0 10px; }
.bento-body p{ font-size:15.5px; line-height:1.55; color:#C9D2DE; margin:0 0 18px; max-width:420px; }
.bento-link{ display:inline-flex; align-items:center; gap:9px; font-size:15px; font-weight:800; color:var(--teal-light); }
.bento-link svg{ transition:transform .3s var(--ease); }
.bento-card:hover .bento-link svg{ transform:translateX(5px); }
.bento-6{ grid-column:span 6; } .bento-4{ grid-column:span 4; } .bento-8{ grid-column:span 8; } .bento-12{ grid-column:span 12; }
@media (max-width:900px){ .bento-6,.bento-4,.bento-8{ grid-column:span 12; } .bento-card{ min-height:280px; } }

/* ---------- Featured products strip (home) ---------- */
.featured-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom:36px; }

/* ---------- Munich local band ---------- */
.local-band{
  position:relative; border-radius:var(--radius-lg); overflow:hidden; isolation:isolate; color:#fff;
  display:grid; grid-template-columns:1.05fr 0.95fr; min-height:380px;
}
.local-band-img{ position:absolute; inset:0; z-index:0; }
.local-band-img img{ width:100%; height:100%; object-fit:cover; }
.local-band-img::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(94deg, rgba(8,13,23,0.94) 22%, rgba(8,13,23,0.55) 58%, rgba(8,13,23,0.18) 100%);
}
.local-band-body{ position:relative; z-index:1; padding:clamp(28px,4.5vw,60px); display:flex; flex-direction:column; justify-content:center; }
.local-band-body h2{ font-size:clamp(26px,3.2vw,40px); font-weight:800; letter-spacing:-0.025em; margin:0 0 14px; }
.local-band-body p{ font-size:16.5px; line-height:1.65; color:#C9D2DE; max-width:480px; margin:0 0 26px; }
.local-points{ display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.local-point{ display:flex; align-items:center; gap:11px; font-size:15px; font-weight:600; color:#E3E9F0; }
.local-point svg{ color:var(--teal-light); flex-shrink:0; }
@media (max-width:820px){ .local-band{ grid-template-columns:1fr; min-height:0; } }

/* ---------- Testimonials ---------- */
.quote-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:28px;
  display:flex; flex-direction:column; gap:16px; height:100%;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-card); }
.quote-card .stars-row{ display:flex; gap:3px; color:#F59E0B; }
.quote-card blockquote{ margin:0; font-size:15.5px; line-height:1.65; color:#3A4555; flex:1; }
.quote-who{ display:flex; align-items:center; gap:12px; }
.quote-avatar{
  width:42px; height:42px; border-radius:50%; background:linear-gradient(140deg,var(--teal),var(--teal-deep));
  color:#fff; font-weight:800; font-size:15px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.quote-who .n{ font-size:14.5px; font-weight:700; color:var(--ink); }
.quote-who .r{ font-size:12.5px; color:var(--text-faint); }

/* ---------- Shop hero (photographic) ---------- */
.shop-hero{
  position:relative; overflow:hidden; background:var(--ink); color:var(--paper);
}
.shop-hero-inner{
  position:relative; z-index:2; display:grid; grid-template-columns:1.05fr 0.95fr; gap:48px; align-items:center;
  padding:72px 0 76px;
}
.shop-hero-visual{ position:relative; }
.shop-hero-visual .main-img{
  width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,0.14); box-shadow:0 48px 90px -40px rgba(0,0,0,0.8);
}
.shop-hero-search{
  display:flex; align-items:center; gap:11px; background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.22); border-radius:14px; padding:15px 18px; max-width:480px;
  transition:background .2s, border-color .2s; margin-bottom:22px;
}
.shop-hero-search:focus-within{ background:rgba(255,255,255,0.16); border-color:var(--teal); }
.shop-hero-search input{ background:transparent; border:none; outline:none; color:#F7FAFC; font-family:inherit; font-size:16px; width:100%; }
.shop-hero-search input::placeholder{ color:#9AA6B5; }
.shop-hero-quicklinks{ display:flex; gap:9px; flex-wrap:wrap; }
.quick-chip{
  display:inline-flex; align-items:center; gap:7px; padding:8px 15px; border-radius:999px;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.16); color:#DCE4EC;
  font-size:13.5px; font-weight:600; transition:background .2s, border-color .2s, color .2s;
}
.quick-chip:hover{ background:rgba(20,184,166,0.18); border-color:rgba(20,184,166,0.5); color:var(--teal-light); }
@media (max-width:900px){ .shop-hero-inner{ grid-template-columns:1fr; padding:52px 0 56px; } .shop-hero-visual{ display:none; } }

/* promo banner cards fed by admin sliders */
.promo-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.promo-card{
  position:relative; border-radius:var(--radius-md); overflow:hidden; isolation:isolate; min-height:210px;
  display:flex; align-items:flex-end; color:#fff;
}
.promo-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.promo-card:hover img{ transform:scale(1.06); }
.promo-card::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(11,18,32,0.05) 30%, rgba(11,18,32,0.85) 90%); }
.promo-card-body{ position:relative; z-index:2; padding:22px 24px; }
.promo-card-body h3{ font-size:20px; font-weight:800; margin:0 0 4px; letter-spacing:-0.01em; }
.promo-card-body p{ font-size:14px; color:#C9D2DE; margin:0 0 12px; }
@media (max-width:700px){ .promo-grid{ grid-template-columns:1fr; } }

/* ---------- Services: process timeline ---------- */
.timeline{ position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.timeline::before{
  content:""; position:absolute; top:26px; left:6%; right:6%; height:2px; z-index:0;
  background:linear-gradient(90deg, transparent, rgba(20,184,166,0.55) 12%, rgba(20,184,166,0.55) 88%, transparent);
}
.timeline-step{ position:relative; z-index:1; }
.timeline-num{
  width:52px; height:52px; border-radius:16px; background:linear-gradient(140deg,var(--teal),var(--teal-deep));
  color:var(--teal-on); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:19px;
  margin-bottom:18px; box-shadow:0 14px 30px -12px rgba(20,184,166,0.6);
}
.timeline-step h3{ font-size:18px; font-weight:700; margin:0 0 8px; color:#F7FAFC; }
.timeline-step p{ font-size:14.5px; color:#AEB9C7; line-height:1.6; margin:0; }
@media (max-width:860px){ .timeline{ grid-template-columns:repeat(2,1fr); } .timeline::before{ display:none; } }
@media (max-width:480px){ .timeline{ grid-template-columns:1fr; } }

/* ---------- FAQ accordion ---------- */
.faq-list{ display:flex; flex-direction:column; gap:12px; max-width:820px; margin:0 auto; }
.faq-item{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-sm); overflow:hidden;
  transition:border-color .2s, box-shadow .2s;
}
.faq-item[open]{ border-color:rgba(20,184,166,0.45); box-shadow:0 18px 36px -26px rgba(11,18,32,0.35); }
.faq-item summary{
  list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:19px 22px; font-size:16.5px; font-weight:700; color:var(--ink);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-chevron{
  flex-shrink:0; width:30px; height:30px; border-radius:50%; background:var(--teal-pale); color:var(--teal-mid);
  display:flex; align-items:center; justify-content:center; transition:transform .3s var(--ease), background .2s;
}
.faq-item[open] .faq-chevron{ transform:rotate(180deg); background:var(--teal); color:var(--teal-on); }
.faq-body{ padding:0 22px 20px; font-size:15px; line-height:1.7; color:var(--text-muted); max-width:720px; }

/* ---------- Services hero photo panel ---------- */
.svc-hero-visual{ position:relative; }
.svc-hero-visual .photo{
  width:100%; aspect-ratio:5/4; object-fit:cover; border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,0.14); box-shadow:0 48px 90px -40px rgba(0,0,0,0.8);
}
.svc-hero-code{
  position:absolute; left:-26px; bottom:-24px; width:min(300px, 80%);
  background:rgba(8,13,23,0.92); border:1px solid rgba(94,234,212,0.25); border-radius:14px;
  padding:15px 17px; backdrop-filter:blur(8px); box-shadow:0 30px 60px -25px rgba(0,0,0,0.7);
}
.svc-hero-badge{
  position:absolute; top:-18px; right:22px; display:flex; align-items:center; gap:9px;
  background:#fff; color:var(--ink); border-radius:999px; padding:10px 17px;
  font-size:13.5px; font-weight:800; box-shadow:0 20px 45px -18px rgba(0,0,0,0.55);
}
.svc-hero-badge svg{ color:var(--teal-mid); }
@media (max-width:980px){ .svc-hero-code{ left:0; } }

/* ---------- Section helpers ---------- */
.big-cta{
  position:relative; overflow:hidden; border-radius:calc(var(--radius-lg) + 4px); isolation:isolate;
  background:linear-gradient(130deg, #0F766E 0%, #115E59 45%, #0B1220 100%);
  color:#fff; padding:clamp(36px,5vw,64px); text-align:center;
}
.big-cta::before{
  content:""; position:absolute; z-index:0; width:560px; height:560px; border-radius:50%;
  top:-320px; left:50%; transform:translateX(-50%);
  background:radial-gradient(circle, rgba(94,234,212,0.35), transparent 70%);
}
.big-cta > *{ position:relative; z-index:1; }
.big-cta h2{ font-size:clamp(26px,3.6vw,44px); font-weight:800; letter-spacing:-0.03em; margin:0 0 14px; }
.big-cta p{ font-size:17px; line-height:1.6; color:#CBE8E2; max-width:560px; margin:0 auto 30px; }

/* stat counters on light bg */
.stat-inline{ display:flex; gap:clamp(24px,4vw,56px); flex-wrap:wrap; }
.stat-inline .num{ font-size:clamp(28px,3vw,40px); font-weight:800; letter-spacing:-0.02em; color:var(--ink); }
.stat-inline .num em{ font-style:normal; color:var(--teal-mid); }
.stat-inline .lbl{ font-size:13.5px; font-weight:600; color:var(--text-faint); margin-top:2px; }

/* responsive hero stats */
@media (max-width:760px){
  .hero-stats{ grid-template-columns:repeat(2,1fr); }
  .hero-float-card{ display:none; }
}

/* ---------- Cookie consent banner (GA4 / Consent Mode v2) ---------- */
.cookie-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:1000;
  background:var(--ink-2); color:#F7FAFC;
  border-top:1px solid rgba(255,255,255,0.1);
  box-shadow:0 -12px 32px -16px rgba(0,0,0,0.4);
}
.cookie-banner[hidden]{ display:none; }
.cookie-banner-inner{
  max-width:1100px; margin:0 auto; padding:20px 24px;
  display:flex; flex-wrap:wrap; align-items:center; gap:20px; justify-content:space-between;
}
.cookie-banner-text{ margin:0; font-size:14.5px; line-height:1.55; color:#C7D0DA; flex:1 1 420px; }
.cookie-banner-text a{ color:var(--teal-light); font-weight:600; }
.cookie-banner-actions{ display:flex; gap:12px; flex:0 0 auto; flex-wrap:wrap; }
.cookie-btn{
  padding:12px 22px; font-size:14.5px; font-weight:700; border-radius:10px; border:none; cursor:pointer;
  min-width:150px; text-align:center; font-family:inherit;
}
.cookie-btn-accept{ background:var(--teal); color:var(--teal-on); }
.cookie-btn-accept:hover{ box-shadow:0 12px 24px -10px rgba(20,184,166,0.55); }
.cookie-btn-reject{ background:#fff; color:var(--ink); border:1px solid #D5DDE4; }
.cookie-btn-reject:hover{ border-color:#B9C4CE; }
@media (max-width:640px){
  .cookie-banner-inner{ flex-direction:column; align-items:stretch; }
  .cookie-banner-actions{ flex-direction:column; }
  .cookie-btn{ width:100%; }
}
