/* ═══════════════════════════════════════════════════════════════
   RCS Graphic — Design System CSS
   Fixes in this version:
   ✅ Desktop dropdown hover bridge (no more flicker)
   ✅ Mobile drawer backdrop + body scroll lock
   ✅ Product gallery class names corrected (pd-gallery-col → pd-gallery)
   ✅ Thumbnail row width matches main image (flex layout)
   ✅ Banner slider styles
   ✅ Product carousel styles
   ✅ Product title larger + better spacing
   ✅ Related products CTA buttons
   ✅ No horizontal overflow on mobile
═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --blue:#2563EB;  --blue2:#1D4ED8; --blue3:#1E40AF;
  --blue-bg:#EAF1FF; --blue-mid:#BFD3FF;
  --orange:#EA580C; --orange2:#C2410C;
  --orange-bg:#FFF3E8; --orange-mid:#FDC9A6;
  --ink:#0F172A; --ink2:#1E293B;
  --text:#0F172A; --text2:#475569; --text3:#94A3B8;
  --white:#FFFFFF; --bg:#F8FAFC; --bg2:#EEF2F7;
  --border:#E2E8F0; --border2:#CBD5E1;
  --green:#0F766E; --green-bg:#ECFEF7; --green-mid:#99F6E4;
  --red:#DC2626;   --red-bg:#FEF2F2;   --red-mid:#FECACA;
  --amber:#B45309; --amber-bg:#FFFBEB; --amber-mid:#FDE68A;
  --purple:#6D28D9; --purple-bg:#F5F3FF;
  --sh:0 1px 3px rgba(0,0,0,.07);
  --sh-md:0 4px 16px rgba(0,0,0,.08);
  --sh-lg:0 10px 40px rgba(0,0,0,.12),0 4px 16px rgba(0,0,0,.06);
  --ring:0 0 0 3px rgba(37,99,235,.2);
  --space-1:6px; --space-2:10px; --space-3:14px; --space-4:18px; --space-5:24px;
  --r:12px; --rs:8px;
  --tr:.2s cubic-bezier(.4,0,.2,1);
  --fd:'Poppins',sans-serif; --fn:'Poppins',sans-serif; --fb:'Poppins',sans-serif;
  --hh:66px;
  --post-header-gap:50px;
  --site-section-gap:50px;
  --site-section-gap-mobile:38px;
  --page-max:1680px;
  --page-gutter:40px;
}


/* ── Reset ───────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html  { font-size:15px; scroll-behavior:smooth; overflow-x:hidden; }
body  {
  font-family:var(--fn);
  background:
    radial-gradient(900px 300px at 110% -5%, rgba(37,99,235,.08), transparent 60%),
    radial-gradient(760px 260px at -10% 38%, rgba(15,118,110,.06), transparent 58%),
    linear-gradient(180deg, #FAFCFF 0%, var(--bg) 42%, #F7FAFC 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
/* Prevent body scroll when mobile drawer is open */
body.drawer-open { overflow:hidden; }
a   { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; height:auto; }
button { cursor:pointer; font-family:var(--fn); border:none; background:none; }
input,select,textarea { font-family:var(--fn); outline:none; }
ul  { list-style:none; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.header {
  position:fixed; top:0; left:0; right:0; height:var(--hh);
  background:var(--white); z-index:900;
  display:flex; align-items:center; padding:0 22px; gap:16px;
  border-bottom:1px solid var(--border);
  box-shadow:0 1px 4px rgba(0,0,0,.06);
}
body:has(#siteHeader) { --site-hh:126px; --post-header-gap:50px; }
.site-header {
  --purple:#4B148C;
  --purple-dark:#3F0F78;
  --header-text:#111111;
  --header-muted:#666666;
  --header-border:#EEEEEE;
  --header-badge:#FF8A00;
  --topbar-height:34px;
  --navbar-height:92px;
  --header-shadow:0 8px 24px rgba(17,17,17,.06);
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:900;
  width:100%;
  background:#fff;
  color:var(--header-text);
  font-family:'Poppins', var(--fn);
}
.header-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  margin:0 auto;
  padding:0;
}
.topbar {
  background:var(--purple);
  color:#fff;
  min-height:var(--topbar-height);
  font-size:13px;
  line-height:1;
}
.topbar-inner {
  min-height:var(--topbar-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.topbar-left,
.topbar-right {
  display:flex;
  align-items:center;
  gap:18px;
  white-space:nowrap;
}
.topbar-left {
  overflow:hidden;
  text-overflow:ellipsis;
}
.topbar-left span {
  display:inline-flex;
  align-items:center;
  font-weight:500;
  letter-spacing:.1px;
}
.topbar-left i {
  font-size:12px;
  margin-right:8px;
  color:#FF8A00;
}
.topbar-links {
  display:flex;
  align-items:center;
  gap:14px;
}
.topbar-links a {
  display:inline-flex;
  align-items:center;
  gap:7px;
  opacity:.96;
  transition:opacity .25s ease;
}
.topbar-links a:hover { opacity:1; }
.topbar-divider {
  width:1px;
  height:12px;
  background:rgba(255,255,255,.35);
}
.social-links {
  display:flex;
  align-items:center;
  gap:12px;
}
.social-links a {
  font-size:12px;
  opacity:.92;
  transition:transform .25s ease, opacity .25s ease;
}
.social-links a:hover {
  opacity:1;
  transform:translateY(-1px);
}
.navbar {
  background:#fff;
  border-bottom:1px solid var(--header-border);
}
.navbar-inner {
  min-height:var(--navbar-height);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
}
.brand {
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  min-width:200px;
  flex-shrink:0;
}
.brand-img {
  display:block;
  width:auto;
  height:76px;
  max-width:224px;
  object-fit:contain;
}
.nav-center {
  display:flex;
  justify-content:center;
  min-width:0;
}
.nav-menu {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  flex-wrap:nowrap;
}
.nav-link {
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:7px;
  height:var(--navbar-height);
  font-size:14.5px;
  font-weight:500;
  color:var(--header-text);
  transition:color .25s ease;
  white-space:nowrap;
}
.nav-link:hover { color:var(--purple); }
.nav-link.active { font-weight:600; }
.nav-link.active::after,
.nav-link:hover::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
  width:100%;
  height:3px;
  border-radius:99px 99px 0 0;
  background:var(--purple);
}
.nav-link .fa-chevron-down {
  font-size:11px;
  margin-top:1px;
}
.nav-link-button { font:inherit; }
.nav-dropdown {
  position:relative;
  display:flex;
  align-items:center;
  height:var(--navbar-height);
}
.dd-bridge {
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:0;
}
.dd-panel {
  position:absolute;
  top:100%;
  left:50%;
  transform:translate(-50%,-8px);
  width:min(360px, calc(100vw - 32px));
  padding:10px;
  background:#fff;
  border:1px solid var(--header-border);
  border-radius:0;
  box-shadow:0 18px 45px rgba(17,17,17,.12);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease, transform .2s ease;
  z-index:200;
}
.dd-panel.open,
.nav-dropdown:hover .dd-panel,
.nav-dropdown:focus-within .dd-panel {
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,0);
}
.dd-cat-lbl {
  padding:8px 10px 7px;
  color:var(--header-muted);
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.dd-divider {
  height:1px;
  margin:8px 0;
  background:var(--header-border);
}
.dd-item {
  display:flex;
  align-items:center;
  gap:9px;
  padding:10px;
  border-radius:10px;
  color:var(--header-text);
  font-size:13px;
  font-weight:500;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.dd-item:hover {
  background:rgba(75,20,140,.06);
  color:var(--purple);
}
.dd-item-ic {
  width:26px;
  height:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  background:rgba(75,20,140,.06);
  font-size:12px;
  flex-shrink:0;
}
.dd-count {
  margin-left:auto;
  min-width:22px;
  height:20px;
  padding:0 7px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#f3f6ff;
  color:var(--header-muted);
  font-size:10px;
  font-weight:700;
}

.dd-category-list {
  display:flex;
  flex-direction:column;
  gap:4px;
  position:relative;
}
.dd-cat-group {
  position:relative;
  min-width:0;
}
.dd-cat-link {
  font-weight:700;
  color:var(--header-text);
  justify-content:flex-start;
}
.dd-cat-group:hover > .dd-cat-link,
.dd-cat-group:focus-within > .dd-cat-link,
.dd-cat-group.is-open > .dd-cat-link {
  background:linear-gradient(90deg, rgba(75,20,140,.08), rgba(26,86,232,.05));
  color:var(--purple);
  transform:translateX(2px);
}
.dd-cat-name {
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.dd-flyout-arrow {
  margin-left:auto;
  color:var(--blue);
  font-size:12px;
  line-height:1;
}
.dd-product-list {
  position:absolute;
  top:-10px;
  left:calc(100% - 1px);
  width:min(420px, calc(100vw - 420px));
  min-width:300px;
  max-height:min(68vh, 540px);
  overflow:auto;
  padding:10px;
  border:1px solid var(--header-border);
  border-radius:0;
  background:#fff;
  box-shadow:0 18px 45px rgba(17,17,17,.14);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateX(-3px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:230;
}
.dd-product-list::before {
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:-10px;
  width:10px;
}
.dd-product-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:8px 10px 10px;
  margin-bottom:4px;
  border-bottom:1px solid var(--header-border);
  color:var(--header-text);
  font-size:13px;
  font-weight:700;
}
.dd-product-head small {
  color:var(--header-muted);
  font-size:10px;
  font-weight:700;
  white-space:nowrap;
}
.dd-cat-group:hover .dd-product-list,
.dd-cat-group:focus-within .dd-product-list,
.dd-cat-group.is-open .dd-product-list {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(0);
}
.dd-product-link {
  gap:8px;
  padding:9px 10px;
  border-radius:10px;
  color:var(--header-muted);
  font-size:13px;
}
.dd-product-link:hover {
  color:var(--blue);
  background:rgba(26,86,232,.06);
  transform:translateX(2px);
}
.dd-product-link span:first-child {
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.dd-product-all { color:var(--purple); font-weight:800; border-top:1px solid var(--header-border); margin-top:4px; padding-top:10px; }
.dd-product-arrow {
  color:var(--blue);
  font-size:15px;
  line-height:1;
}
.dd-item-all { color:var(--purple); font-weight:700; }
.navbar-actions {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  min-width:160px;
}
.action-btn,
.menu-toggle {
  position:relative;
  width:42px;
  height:42px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--header-text);
  transition:background-color .25s ease, color .25s ease, transform .25s ease;
}
.action-btn:hover,
.menu-toggle:hover {
  background:rgba(75,20,140,.06);
  color:var(--purple);
  transform:translateY(-1px);
}
.action-btn i,
.menu-toggle i {
  font-size:19px;
  line-height:1;
}
.cart-btn { margin-left:2px; }
.cart-badge {
  position:absolute;
  top:5px;
  right:3px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--header-badge);
  color:#fff;
  font-size:10px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid #fff;
  box-shadow:0 6px 14px rgba(255,138,0,.26);
}
.cart-badge.hidden { display:none; }
.menu-toggle { display:none; }
body:has(#siteHeader) .mob-drawer {
  top:var(--site-hh,126px);
  height:calc(100vh - var(--site-hh,126px));
}
body:has(#siteHeader) .mob-backdrop { top:var(--site-hh,126px); }
body:has(#siteHeader) .banner-slider { margin-top:var(--site-hh,126px); }
body:has(#siteHeader) .auth-page {
  margin-top:calc(var(--site-hh,126px) + var(--post-header-gap,50px));
  min-height:calc(100vh - var(--site-hh,126px) - var(--post-header-gap,50px));
}
body:has(#siteHeader) .myord-hdr { margin-top:calc(var(--site-hh,126px) + var(--post-header-gap,50px)); }
body:has(#siteHeader) .confirm-page {
  margin-top:calc(var(--site-hh,126px) + var(--post-header-gap,50px));
  min-height:calc(100vh - var(--site-hh,126px) - var(--post-header-gap,50px));
}
.profile-page {
  margin-top:calc(var(--site-hh, var(--hh)) + var(--post-header-gap,50px));
  min-height:calc(100vh - var(--site-hh, var(--hh)) - var(--post-header-gap,50px));
}
@media (max-width:1100px) {
  .nav-menu { gap:24px; }
  .brand { min-width:170px; }
  .brand-img { height:66px; max-width:195px; }
  .navbar-actions { min-width:132px; }
}
@media (max-width:920px) {
  .topbar-right { gap:12px; }
  .topbar-links { gap:10px; }
  .rcs-topbar-contact-links { flex-wrap:wrap; justify-content:flex-end; }
  .social-links { gap:10px; }
  .navbar-inner { gap:18px; }
  .nav-menu { gap:18px; }
  .nav-link { font-size:13.5px; }
}
@media (max-width:768px) {
  body:has(#siteHeader) { --site-hh:129px; }
  :root { --page-gutter:24px; }
  .header-container { width:min(var(--page-max), calc(100vw - var(--page-gutter))); padding:0; }
  .topbar { min-height:auto; }
  .topbar-inner {
    min-height:auto;
    padding:8px 0;
    flex-direction:column;
    align-items:flex-start;
    gap:7px;
  }
  .topbar-left,
  .topbar-right { white-space:normal; }
  .topbar-left span { line-height:1.45; }
  .topbar-right {
    width:100%;
    justify-content:space-between;
    gap:14px;
  }
  .navbar-inner {
    min-height:80px;
    grid-template-columns:1fr auto;
  }
  .nav-center,
  .navbar-actions .action-btn { display:none; }
  .menu-toggle { display:inline-flex; }
  .brand { min-width:0; }
  .brand-img { height:58px; max-width:180px; }
  body:has(#siteHeader) .mob-drawer {
    top:var(--site-hh,129px);
    left:0;
    right:auto;
    width:100%;
    height:auto;
    max-height:calc(100vh - var(--site-hh,129px));
    transform:translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition:opacity .24s ease, transform .24s ease;
    box-shadow:var(--header-shadow);
  }
  body:has(#siteHeader) .mob-drawer.open {
    right:auto;
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }
  .md-action { width:100%; text-align:left; font:inherit; }
  .md-cart-badge { margin-left:8px; display:inline-flex; align-items:center; justify-content:center; min-width:18px; height:18px; padding:0 5px; border-radius:999px; background:#FF8A00; color:#fff; font-size:10px; font-weight:700; }
}
@media (max-width:560px) {
  body:has(#siteHeader) { --site-hh:144px; }
  :root { --page-gutter:24px; }
  .header-container { width:min(var(--page-max), calc(100vw - var(--page-gutter))); padding:0; }
  .topbar-inner {
    align-items:center;
    gap:8px;
    padding:8px 0 9px;
  }
  .topbar-left {
    justify-content:center;
    text-align:center;
    width:100%;
  }
  .topbar-left span {
    justify-content:center;
    font-size:12px;
  }
  .topbar-right {
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
  }
  .topbar-links {
    justify-content:center;
    gap:8px;
  }
  .topbar-links a {
    display:inline-flex;
    align-items:center;
    min-height:24px;
    padding:0 8px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    font-size:11px;
    font-weight:600;
  }
  .topbar-divider { display:none; }
  .social-links {
    justify-content:center;
    gap:8px;
  }
  .social-links a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    font-size:11px;
  }
  .navbar-inner { min-height:76px; }
  .brand-img { height:54px; max-width:168px; }
}
@media (max-width:380px) {
  body:has(#siteHeader) { --site-hh:154px; }
  .topbar-left span { font-size:11.5px; }
  .topbar-links a { padding:0 7px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════════════════════════════ */
.mob-drawer {
  position:fixed; top:var(--hh); right:-100%; width:min(320px,100%);
  height:calc(100vh - var(--hh)); background:var(--white);
  z-index:860; overflow-y:auto;
  box-shadow:-4px 0 30px rgba(0,0,0,.12);
  transition:right .28s cubic-bezier(.4,0,.2,1);
}
.mob-drawer.open { right:0; }
.mob-backdrop {
  display:none; position:fixed; inset:0; top:var(--hh);
  background:rgba(17,24,39,.45); z-index:850; backdrop-filter:blur(2px);
}
.mob-backdrop.show { display:block; }

.md-item {
  display:flex; align-items:center; justify-content:space-between;
  padding:13px 18px; border-bottom:1px solid var(--border);
  font-size:14px; font-weight:500; color:var(--text2);
  cursor:pointer; text-decoration:none; transition:background .14s;
}
.md-item:hover,.md-home { color:var(--blue); }
.md-acc-arrow { width:18px; height:18px; fill:var(--text3); flex-shrink:0; transition:transform .2s; }
.md-sub-list  { background:var(--bg); }
.md-sub {
  padding-left:36px; font-size:13px; font-weight:400; color:var(--text3);
  justify-content:flex-start;
}
.md-cat-block { border-bottom:1px solid var(--border); background:#fff; }
.md-cat-row {
  padding:0;
  border-bottom:0;
  justify-content:stretch;
  background:#fff;
}
.md-cat-link {
  flex:1;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:13px 12px 13px 36px;
  color:var(--blue);
  font-size:13px;
  font-weight:700;
}
.md-cat-count {
  min-width:20px;
  height:20px;
  padding:0 7px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--blue-bg);
  color:var(--blue);
  font-size:10px;
}
.md-cat-expand {
  width:48px;
  align-self:stretch;
  border:0;
  border-left:1px solid var(--border);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text3);
  cursor:pointer;
}
.md-cat-expand svg { width:18px; height:18px; fill:currentColor; transition:transform .2s ease; }
.md-cat-block.open .md-cat-expand svg { transform:rotate(180deg); }
.md-cat-products { background:#f8fafc; border-top:1px solid var(--border); }
.md-product {
  padding-left:58px;
  font-size:12.5px;
  color:var(--text2);
  border-bottom:1px solid rgba(226,232,240,.8);
}
.md-all { font-weight:700; color:var(--blue); background:#fff; }
.md-sub:hover { color:var(--blue); background:var(--blue-bg); }
.md-start {
  color:var(--blue); font-weight:700;
  background:linear-gradient(180deg,#f8fbff 0%,#eef3fd 100%);
}

/* ═══════════════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════════════ */
.toast-wrap {
  position:fixed; top:76px; left:50%; transform:translateX(-50%);
  z-index:9999; pointer-events:none;
  display:flex; flex-direction:column; gap:7px; width:90%; max-width:340px;
}
.toast {
  padding:11px 18px; border-radius:12px; font-size:13px; font-weight:600;
  color:#fff; opacity:0; transform:translateY(-8px); transition:all .24s;
  text-align:center; box-shadow:0 4px 16px rgba(0,0,0,.18);
}
.toast.show   { opacity:1; transform:translateY(0); }
.toast.success{ background:var(--green); }
.toast.error  { background:var(--red); }
.toast.info   { background:var(--blue); }
.toast.warn   { background:var(--amber); }

/* ═══════════════════════════════════════════════════════════════
   PAY OVERLAY
═══════════════════════════════════════════════════════════════ */
.pay-ov {
  display:none; position:fixed; inset:0;
  background:rgba(17,24,39,.78); z-index:9000;
  align-items:center; justify-content:center; flex-direction:column;
  gap:14px; backdrop-filter:blur(4px);
}
.pay-ov.show { display:flex; }
.pay-spin {
  width:48px; height:48px; border:3px solid rgba(255,255,255,.15);
  border-top-color:var(--blue); border-radius:50%;
  animation:spin .7s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }
.pay-txt { color:#fff; font-size:15px; font-weight:600; font-family:var(--fd); }
.pay-sub { color:rgba(255,255,255,.55); font-size:13px; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:7px;
  padding:12px 22px; border-radius:12px; font-size:14px; font-weight:700;
  transition:var(--tr); border:none; cursor:pointer;
  white-space:nowrap; font-family:var(--fn); text-decoration:none;
  -webkit-tap-highlight-color:transparent;
}
.btn:focus-visible,
.btn-auth:focus-visible,
.adm-user-btn:focus-visible {
  outline:none;
  box-shadow:var(--ring);
}
.btn-blue   { background:var(--blue); color:#fff; }
.btn-blue:hover   { background:var(--blue2); transform:translateY(-1px); box-shadow:0 6px 20px rgba(37,99,235,.28); }
.btn-orange { background:var(--orange); color:#fff; }
.btn-orange:hover { background:var(--orange2); transform:translateY(-1px); }
.btn-green  { background:var(--green); color:#fff; }
.btn-green:hover  { background:#047857; transform:translateY(-1px); }
.btn-outline{ background:var(--white); border:1.5px solid var(--border2); color:var(--text2); }
.btn-outline:hover{ border-color:var(--blue); color:var(--blue); background:var(--blue-bg); }
.btn-ghost  { background:transparent; color:var(--text2); padding:9px 13px; }
.btn-ghost:hover  { background:var(--bg2); }
.btn-red    { background:var(--red-bg); color:var(--red); border:1px solid var(--red-mid); }
.btn-red:hover    { background:var(--red); color:#fff; }
.btn-sm     { padding:7px 14px;  font-size:12px; border-radius:8px; }
.btn-xs     { padding:5px 10px;  font-size:11px; border-radius:6px; }
.btn-full   { width:100%; }
.btn:disabled { opacity:.42; cursor:not-allowed; transform:none !important; box-shadow:none !important; }

/* ═══════════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════════ */
.fg          { margin-bottom:13px; }
.fg label    { display:block; font-size:11px; font-weight:700; color:var(--text2); text-transform:uppercase; letter-spacing:.06em; margin-bottom:5px; }
.fi          { width:100%; min-height:42px; padding:11px 13px; border:1.5px solid var(--border2); border-radius:10px; font-size:14px; color:var(--text); background:var(--white); transition:var(--tr); }
.fi:focus    { border-color:var(--blue); box-shadow:var(--ring); }
.fi:hover    { border-color:#c3cde0; }
.fi::placeholder { color:var(--text3); }
.fi.err      { border-color:var(--red); }
.fi-sel      { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6.5L13 1' stroke='%234B5563' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 12px center; padding-right:36px; }
textarea.fi  { resize:vertical; }
.f2          { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.f-hint      { font-size:11px; color:var(--text3); margin-top:4px; line-height:1.5; }

/* ═══════════════════════════════════════════════════════════════
   BADGES / CHIPS / TOGGLE
═══════════════════════════════════════════════════════════════ */
.badge { display:inline-flex; align-items:center; padding:3px 8px; border-radius:100px; font-size:10px; font-weight:700; letter-spacing:.04em; white-space:nowrap; }
.b-blue   { background:var(--blue-bg);   color:var(--blue); }
.b-green  { background:var(--green-bg);  color:var(--green); }
.b-amber  { background:var(--amber-bg);  color:var(--amber); }
.b-red    { background:var(--red-bg);    color:var(--red); }
.b-orange { background:var(--orange-bg); color:var(--orange); }
.b-ink    { background:var(--ink2);      color:#fff; }
.b-purple { background:var(--purple-bg); color:var(--purple); }

.chip-row { display:flex; gap:7px; overflow-x:auto; scrollbar-width:none; padding-bottom:2px; }
.chip-row::-webkit-scrollbar { display:none; }
.chip { padding:6px 14px; border-radius:100px; font-size:12px; font-weight:600; white-space:nowrap; background:var(--bg2); color:var(--text2); border:1.5px solid var(--border); cursor:pointer; transition:var(--tr); flex-shrink:0; }
.chip:hover,.chip.on { background:var(--blue); color:#fff; border-color:var(--blue); }

.tog   { width:42px; height:23px; border-radius:12px; background:var(--border2); position:relative; cursor:pointer; transition:background .24s; flex-shrink:0; }
.tog.on{ background:var(--green); }
.tog-k { width:19px; height:19px; border-radius:50%; background:#fff; position:absolute; top:2px; left:2px; transition:transform .24s; box-shadow:0 1px 3px rgba(0,0,0,.15); }
.tog.on .tog-k { transform:translateX(19px); }

.ic-btn { width:32px; height:32px; border-radius:8px; display:flex; align-items:center; justify-content:center; transition:var(--tr); border:1.5px solid var(--border); background:var(--bg2); cursor:pointer; flex-shrink:0; }
.ic-btn:hover { background:var(--blue-bg); border-color:var(--blue-mid); }
.ic-btn svg { width:13px; height:13px; fill:var(--text2); }
.ic-btn:hover svg { fill:var(--blue); }
.ic-btn.del:hover { background:var(--red-bg); border-color:var(--red-mid); }
.ic-btn.del:hover svg { fill:var(--red); }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════════════════════ */
.container { width:min(var(--page-max), calc(100vw - var(--page-gutter))); max-width:none; margin:0 auto; padding:0; }
.sec { padding:56px 0; }
.sec-tint-blue {
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.88)),
    linear-gradient(120deg, rgba(37,99,235,.06), rgba(255,255,255,0) 48%);
  border-top:1px solid rgba(37,99,235,.08);
  border-bottom:1px solid rgba(37,99,235,.08);
}
.sec-tint-warm {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.92)),
    linear-gradient(120deg, rgba(234,88,12,.055), rgba(255,255,255,0) 52%);
  border-top:1px solid rgba(234,88,12,.08);
  border-bottom:1px solid rgba(234,88,12,.08);
}
.sec-ey { font-size:11px; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:.09em; margin-bottom:6px; }
.sec-t  { font-family:var(--fd); font-size:clamp(22px,3vw,32px); font-weight:700; color:var(--ink); letter-spacing:-.02em; line-height:1.15; }
.sec-hdr{ display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap; margin-bottom:24px; }

/* ── Premium Motion Utilities ─────────────────────────────────── */
[data-reveal] {
  opacity:0;
  transform:translateY(16px) scale(.985);
  transition:opacity .55s cubic-bezier(.2,.7,.25,1), transform .55s cubic-bezier(.2,.7,.25,1);
  will-change:opacity,transform;
}
[data-reveal].is-visible {
  opacity:1;
  transform:translateY(0) scale(1);
}

/* ═══════════════════════════════════════════════════════════════
   BANNER SLIDER
   To change images: edit .bs-slide background-image or <img> src
   To change CTA links: edit href on .bs-cta-* buttons in home.php
═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   BANNER SLIDER — Fully responsive (mobile-first)
═══════════════════════════════════════════════════════════════ */
.banner-slider {
  position:relative;
  overflow:hidden;
  height:clamp(320px, calc(37.5vw + 100px), 580px);
  width:100%;
  max-width:none;
  margin-top:var(--site-hh, var(--hh));
  margin-left:0;
  margin-right:0;
  background:
    radial-gradient(720px 260px at 85% 18%, rgba(15,118,110,.10), transparent 60%),
    radial-gradient(520px 220px at 12% 12%, rgba(109,40,217,.08), transparent 58%),
    linear-gradient(135deg,#FFFFFF 0%,#FFFBF7 44%,#F7FBF8 100%);
  border-bottom:1px solid rgba(234,88,12,.14);
}
.bs-slide {
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:none;
  pointer-events:none;
}
.bs-slide.active { opacity:1; pointer-events:all; }
.bs-slide > img,
.bs-image-link,
.bs-image-link img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.bs-slide > img,
.bs-image-link img {
  object-fit:cover;
  object-position:center;
  background:#fff;
}
.bs-image-link {
  z-index:1;
  display:block;
  cursor:pointer;
}
.bs-slide.active > img,
.bs-slide.active .bs-image-link img {
  animation:none;
  transform:none;
}
.bs-overlay {
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:transparent;
}
.bs-overlay::before,
.bs-overlay::after {
  content:'';
  position:absolute;
  border-radius:999px;
  pointer-events:none;
}
.bs-overlay::before,
.bs-overlay::after { display:none; }
.bs-content {
  position:relative;
  z-index:3;
  width:min(46%, 520px);
  margin-right:auto;
  margin-left:clamp(22px,5.2vw,76px);
  padding:clamp(18px,3vw,34px);
  color:var(--ink);
  border-left:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;
}
.bs-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--purple);
  margin-bottom:9px;
}
.bs-eyebrow::before {
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
  box-shadow:14px 0 0 var(--orange);
}
.bs-title {
  font-family:'Poppins', var(--fd);
  font-size:clamp(24px,4.2vw,54px);
  font-weight:700;
  line-height:1.08;
  letter-spacing:-.035em;
  margin-bottom:12px;
  color:#071225;
}
.bs-title strong,
.bs-title em { color:var(--orange); font-style:normal; }
.bs-sub {
  font-size:clamp(12px,1.35vw,15px);
  color:#253044;
  line-height:1.65;
  margin-bottom:20px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.bs-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.bs-cta-primary {
  padding:12px 22px;
  background:linear-gradient(135deg,var(--orange),#ff7a18);
  color:#fff;
  border-radius:8px;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:none;
  cursor:pointer;
  font-family:'Poppins', var(--fn);
  box-shadow:0 10px 22px rgba(234,88,12,.26);
  transition:transform .2s, box-shadow .2s;
  white-space:nowrap;
}
.bs-cta-primary:hover { transform:translateY(-1px); box-shadow:0 14px 28px rgba(234,88,12,.32); }
.bs-cta-wa {
  padding:12px 20px;
  background:linear-gradient(135deg,var(--purple),#43178d);
  border:0;
  color:#fff;
  border-radius:8px;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  font-family:'Poppins', var(--fn);
  box-shadow:0 10px 22px rgba(109,40,217,.24);
  transition:transform .2s, box-shadow .2s;
  white-space:nowrap;
}
.bs-cta-wa:hover { transform:translateY(-1px); box-shadow:0 14px 28px rgba(109,40,217,.30); }

/* Slider controls */
.bs-prev,.bs-next {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(109,40,217,.14);
  color:var(--purple);
  cursor:pointer;
  transition:background .2s, color .2s, transform .2s;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 22px rgba(15,23,42,.12);
}
.bs-prev:hover,.bs-next:hover { background:var(--purple); color:#fff; transform:translateY(-50%) scale(1.04); }
.bs-prev { left:14px; }
.bs-next { right:14px; }
.bs-prev svg,.bs-next svg { width:19px; height:19px; fill:currentColor; }
.bs-dots {
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:8px;
  z-index:10;
  padding:6px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  box-shadow:0 8px 22px rgba(15,23,42,.10);
}
.bs-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
  opacity:.75;
  border:none;
  cursor:pointer;
  transition:background .2s,transform .2s,opacity .2s;
  padding:0;
}
.bs-dot:nth-child(3n+1) { background:var(--purple); }
.bs-dot:nth-child(3n+2) { background:var(--orange); }
.bs-dot.active { opacity:1; transform:scale(1.45); }
.bs-slide.image-only .bs-overlay,
.bs-slide.image-only .bs-content { display:none; }

/* ═══════════════════════════════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  background:linear-gradient(150deg,#EEF3FD 0%,#F9FAFB 55%,#FFF4ED 100%);
  padding:56px 0 52px; position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,235,.08),transparent 70%);
  top:-120px; right:-60px; pointer-events:none;
}
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; position:relative; z-index:1; }
.hero-tag  { display:inline-flex; align-items:center; gap:7px; background:var(--blue-bg); border:1px solid var(--blue-mid); border-radius:100px; padding:5px 13px 5px 8px; margin-bottom:18px; }
.hero-dot  { width:7px; height:7px; border-radius:50%; background:var(--blue); }
.hero-tag-t{ font-size:12px; font-weight:600; color:var(--blue); }
.hero-h1   { font-family:var(--fd); font-size:clamp(28px,4vw,52px); font-weight:700; color:var(--ink); line-height:1.1; letter-spacing:-.03em; margin-bottom:16px; }
.hero-h1 em{ font-style:italic; color:var(--blue); }
.hero-p    { font-size:16px; color:var(--text2); line-height:1.7; margin-bottom:28px; max-width:460px; }
.hero-btns { display:flex; gap:11px; flex-wrap:wrap; margin-bottom:32px; }
.hero-stats{ display:flex; gap:28px; flex-wrap:wrap; padding-top:20px; border-top:1px solid var(--border); }
.hs-n { font-family:var(--fd); font-size:26px; font-weight:700; color:var(--ink); line-height:1; }
.hs-l { font-size:11px; color:var(--text3); margin-top:3px; letter-spacing:.03em; text-transform:uppercase; }
.hero-mosaic { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:220px 160px; gap:12px; }
.hm { border-radius:14px; overflow:hidden; background:var(--blue-bg); box-shadow:var(--sh-md); }
.hm img { width:100%; height:100%; object-fit:cover; }
.hm.tall { grid-row:1/3; }

.shop-cat-section {
  padding:34px 0 42px;
  background:#fff;
}
.shop-cat-container {
  width:min(1680px, calc(100vw - 40px));
  margin:0 auto;
}
.shop-cat-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.shop-cat-title {
  font-family:'Poppins', var(--fn);
  font-size:clamp(24px,2.5vw,36px);
  line-height:1;
  letter-spacing:-.04em;
  color:#071225;
  font-weight:700;
}
.shop-cat-title span { color:var(--orange); }
.shop-cat-all {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 22px;
  border-radius:999px;
  background:#f5f6f8;
  color:#0f172a;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 8px 18px rgba(15,23,42,.06);
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.shop-cat-all:hover {
  transform:translateY(-1px);
  background:#fff7ed;
  box-shadow:0 12px 24px rgba(234,88,12,.14);
}
.shop-cat-track {
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 88px) / 5);
  gap:22px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:4px 4px 18px;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.shop-cat-track::-webkit-scrollbar { display:none; width:0; height:0; }
.shop-cat-card {
  min-width:0;
  scroll-snap-align:start;
}
.shop-cat-link {
  display:flex;
  min-height:320px;
  height:100%;
  flex-direction:column;
  border-radius:22px;
  overflow:hidden;
  background:
    radial-gradient(180px 110px at 50% 12%, rgba(234,88,12,.08), transparent 70%),
    linear-gradient(180deg,#fff 0%,#fffaf5 100%);
  border:1px solid #f0e4d8;
  box-shadow:0 16px 38px rgba(15,23,42,.09);
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.shop-cat-link:hover {
  transform:translateY(-6px);
  border-color:rgba(234,88,12,.42);
  box-shadow:0 24px 48px rgba(234,88,12,.15);
}
.shop-cat-img {
  flex:1 1 auto;
  min-height:244px;
  display:flex;
  align-items:stretch;
  justify-content:center;
  padding:0;
  overflow:hidden;
  background:
    radial-gradient(170px 110px at 70% 15%, rgba(109,40,217,.08), transparent 62%),
    linear-gradient(180deg,#fff 0%,#f8f9fb 100%);
}
.shop-cat-img img {
  width:100%;
  height:100%;
  min-height:244px;
  object-fit:cover;
  object-position:center;
  filter:drop-shadow(0 14px 18px rgba(15,23,42,.14));
  transition:transform .28s ease;
}
.shop-cat-link:hover .shop-cat-img img { transform:scale(1.04); }
.shop-cat-fallback {
  width:120px;
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:28px;
  background:linear-gradient(135deg,#fff7ed,#f5f3ff);
  font-size:54px;
  box-shadow:inset 0 0 0 1px rgba(234,88,12,.12);
}
.shop-cat-body {
  min-height:76px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px 18px;
}
.shop-cat-icon {
  width:36px;
  height:36px;
  flex:0 0 36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,var(--orange),#ff8a1f);
  color:#fff;
  font-size:17px;
  line-height:1;
  box-shadow:0 10px 18px rgba(234,88,12,.24);
}
.shop-cat-card:nth-child(3n+1) .shop-cat-icon { background:linear-gradient(135deg,var(--purple),#4b148c); box-shadow:0 8px 16px rgba(109,40,217,.22); }
.shop-cat-card:nth-child(3n+2) .shop-cat-icon { background:linear-gradient(135deg,var(--orange),#ff8a1f); }
.shop-cat-card:nth-child(3n+3) .shop-cat-icon { background:linear-gradient(135deg,var(--green),#18a55e); box-shadow:0 8px 16px rgba(15,118,110,.20); }
.shop-cat-name {
  min-width:0;
  color:var(--orange);
  font-family:'Poppins', var(--fn);
  font-size:16px;
  font-weight:700;
  line-height:1.25;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT GRID (home + related)
═══════════════════════════════════════════════════════════════ */
.cat-filters { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
.cat-btn { padding:7px 16px; border-radius:100px; font-size:13px; font-weight:600; border:1.5px solid var(--border2); background:var(--white); color:var(--text2); cursor:pointer; transition:var(--tr); }
.cat-btn:hover { border-color:var(--blue); color:var(--blue); }
.cat-btn.active{ background:var(--blue); border-color:var(--blue); color:#fff; }

.prod-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.pc {
  background:var(--white); border-radius:14px; overflow:hidden;
  border:1.5px solid var(--border); cursor:pointer; transition:var(--tr);
  display:flex; flex-direction:column; text-decoration:none;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
}
.pc:hover { border-color:var(--blue-mid); box-shadow:0 16px 36px rgba(37,99,235,.13); transform:translateY(-3px); }
.pc-img   { aspect-ratio:4/3; overflow:hidden; background:var(--bg2); position:relative; flex-shrink:0; }
.pc-img img { width:100%; height:100%; object-fit:cover; transition:transform .35s; }
.pc:hover .pc-img img { transform:scale(1.06); }
.pc-img-badge { position:absolute; top:10px; left:10px; }
.pc-body  { padding:14px 15px 16px; display:flex; flex-direction:column; flex:1; }
.pc-cat   { font-size:10px; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:.06em; margin-bottom:4px; }
.pc-name  { font-family:var(--fd); font-size:15px; font-weight:700; color:var(--ink); line-height:1.3; margin-bottom:5px; }
.pc-desc  { font-size:12.5px; color:var(--text2); line-height:1.5; margin-bottom:12px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; flex:1; }
.pc-foot  { display:flex; align-items:center; justify-content:space-between; margin-top:auto; }
.pc-from  { font-size:10px; color:var(--text3); margin-bottom:1px; }
.pc-price { font-family:var(--fd); font-size:17px; font-weight:700; color:var(--blue); }
.pc-arr   { width:32px; height:32px; border-radius:8px; background:var(--blue); display:flex; align-items:center; justify-content:center; transition:var(--tr); flex-shrink:0; }
.pc:hover .pc-arr { background:var(--blue2); transform:scale(1.08); }
.pc-arr svg { width:15px; height:15px; fill:#fff; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CAROUSEL (home page)
═══════════════════════════════════════════════════════════════ */
.prod-carousel-wrap { position:relative; }
.prod-carousel {
  overflow:hidden; position:relative;
  border-radius:var(--r);
}
.pc-track {
  display:flex; gap:20px;
  transition:transform .4s cubic-bezier(.4,0,.2,1);
  will-change:transform;
}
.pc-carousel-card {
  flex:0 0 calc(25% - 15px);   /* 4 visible at lg */
  min-width:240px;
}
.pc-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:5; width:42px; height:42px; border-radius:50%;
  background:var(--white); border:1.5px solid var(--border);
  box-shadow:var(--sh-md); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  color:var(--text2); transition:var(--tr);
}
.pc-arrow:hover { background:var(--blue); border-color:var(--blue); color:#fff; }
.pc-arrow:disabled { opacity:.35; cursor:not-allowed; }
.pc-arrow svg { width:18px; height:18px; fill:currentColor; }
.pc-prev { left:-21px; }
.pc-next { right:-21px; }

/* ═══════════════════════════════════════════════════════════════
   WHY US / FOOTER
═══════════════════════════════════════════════════════════════ */
.why-print-section {
  padding:28px 0 34px;
  background:#fff;
}
.why-print-container {
  width:min(1680px, calc(100vw - 40px));
  margin:0 auto;
}
.why-print-heading {
  font-family:'Poppins', var(--fn);
  font-size:clamp(23px,2.1vw,34px);
  line-height:1.05;
  letter-spacing:-.035em;
  color:#071225;
  font-weight:700;
  margin-bottom:16px;
}
.why-print-heading span { color:var(--orange); }
.why-print-panel {
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  align-items:stretch;
  overflow:hidden;
  border-radius:18px;
  background:linear-gradient(180deg,#fbfaf5 0%,#f3f1e9 100%);
  border:1px solid rgba(15,23,42,.06);
  box-shadow:none;
}
.why-print-item {
  min-height:104px;
  display:flex;
  align-items:center;
  gap:16px;
  padding:22px 24px;
  position:relative;
}
.why-print-item + .why-print-item::before {
  content:'';
  position:absolute;
  left:0;
  top:20px;
  bottom:20px;
  width:1px;
  background:rgba(15,23,42,.12);
}
.why-print-icon {
  width:68px;
  height:68px;
  flex:0 0 68px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:29px;
  box-shadow:0 10px 20px rgba(15,23,42,.14);
}
.why-print-purple { background:linear-gradient(135deg,#5b21b6,#43178d); }
.why-print-orange { background:linear-gradient(135deg,#ff7a18,var(--orange)); }
.why-print-green { background:linear-gradient(135deg,#22a647,#15803d); }
.why-print-copy h3 {
  font-family:'Poppins', var(--fn);
  font-size:15px;
  line-height:1.15;
  font-weight:700;
  color:#101827;
  margin-bottom:6px;
}
.why-print-copy p {
  max-width:180px;
  font-size:12px;
  line-height:1.45;
  font-weight:500;
  color:#1f2937;
}

.best-deals-section {
  padding:10px 0 40px;
  background:#fff;
}
.best-deals-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  margin:0 auto;
}
.best-deals-heading {
  font-family:'Poppins', var(--fn);
  font-size:clamp(24px,2.2vw,36px);
  line-height:1;
  letter-spacing:-.04em;
  font-weight:700;
  color:#071225;
  margin-bottom:14px;
}
.best-deals-heading span { color:var(--orange); }
.best-deals-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr)) 1.45fr;
  gap:22px;
  align-items:stretch;
}
.deal-card,
.deal-promo-card {
  min-width:0;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 9px 22px rgba(15,23,42,.10);
}
.deal-card-link {
  display:flex;
  flex-direction:column;
  height:100%;
  min-height:242px;
}
.deal-card-img {
  flex:1 1 auto;
  min-height:156px;
  background:linear-gradient(180deg,#fff,#f7f7f8);
  overflow:hidden;
}
.deal-card-img img {
  width:100%;
  height:100%;
  min-height:156px;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .28s ease;
}
.deal-card:hover .deal-card-img img { transform:scale(1.04); }
.deal-card-band {
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 16px 13px;
  color:#fff;
}
.deal-green .deal-card-band { background:linear-gradient(135deg,#22a647,#149135); }
.deal-orange .deal-card-band { background:linear-gradient(135deg,#ff7a18,var(--orange)); }
.deal-purple .deal-card-band { background:linear-gradient(135deg,#5b21b6,#43178d); }
.deal-copy h3 {
  font-family:'Poppins', var(--fn);
  font-size:15px;
  line-height:1.15;
  font-weight:700;
  margin-bottom:2px;
}
.deal-copy p {
  font-size:11px;
  line-height:1.1;
  font-weight:600;
  opacity:.92;
  margin-bottom:2px;
}
.deal-copy strong {
  display:block;
  font-family:'Poppins', var(--fn);
  font-size:26px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.04em;
}
.deal-order-btn {
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 16px;
  border-radius:7px;
  background:#fff;
  color:var(--orange);
  font-family:'Poppins', var(--fn);
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  box-shadow:0 7px 16px rgba(15,23,42,.13);
}
.deal-purple .deal-order-btn { color:#4b148c; }
.deal-promo-card {
  min-height:242px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:34px 34px 30px;
  color:#fff;
  background:
    radial-gradient(220px 130px at 78% 72%, rgba(255,122,24,.38), transparent 68%),
    radial-gradient(220px 150px at 20% 10%, rgba(255,255,255,.12), transparent 68%),
    linear-gradient(135deg,#3d117e 0%,#571a9f 52%,#42106f 100%);
}
.deal-promo-copy {
  position:relative;
  z-index:2;
  max-width:310px;
}
.deal-promo-copy h3 {
  font-family:'Poppins', var(--fn);
  font-size:clamp(26px,2.3vw,40px);
  line-height:1.15;
  letter-spacing:-.045em;
  font-weight:700;
  margin-bottom:24px;
}
.deal-promo-copy h3 span { color:#ff8a1f; }
.deal-promo-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 22px;
  border-radius:8px;
  background:linear-gradient(135deg,#ff8a1f,var(--orange));
  color:#fff;
  font-family:'Poppins', var(--fn);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  box-shadow:0 12px 24px rgba(234,88,12,.28);
}
.deal-gift {
  position:relative;
  z-index:2;
  width:155px;
  height:155px;
  flex:0 0 155px;
  filter:drop-shadow(0 18px 18px rgba(0,0,0,.22));
}

.deal-gift-image {
  border-radius:24px;
  overflow:hidden;
  background:rgba(255,255,255,.1);
}
.deal-gift-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:inherit;
}

.deal-gift-box {
  position:absolute;
  left:18px;
  right:18px;
  bottom:0;
  height:106px;
  border-radius:12px 12px 16px 16px;
  background:linear-gradient(135deg,#ffb11f,#ff7a18);
}
.deal-gift-box::before {
  content:'';
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:24px;
  transform:translateX(-50%);
  background:linear-gradient(180deg,#ffd35c,#f59e0b);
}
.deal-gift-box::after {
  content:'';
  position:absolute;
  left:-8px;
  right:-8px;
  top:-18px;
  height:28px;
  border-radius:9px;
  background:linear-gradient(135deg,#ffbf2e,#ff8a1f);
}
.deal-gift-bow {
  position:absolute;
  left:50%;
  top:4px;
  width:78px;
  height:54px;
  transform:translateX(-50%);
  z-index:3;
}
.deal-gift-bow::before,
.deal-gift-bow::after {
  content:'';
  position:absolute;
  top:8px;
  width:42px;
  height:34px;
  border:10px solid #ffbf2e;
  border-radius:50% 50% 45% 45%;
}
.deal-gift-bow::before { right:36px; transform:rotate(28deg); }
.deal-gift-bow::after { left:36px; transform:rotate(-28deg); }
.deal-confetti,
.deal-confetti::before,
.deal-confetti::after {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 8% 22%, #ff7a18 0 4px, transparent 5px),
    radial-gradient(circle at 28% 10%, #7c3aed 0 4px, transparent 5px),
    radial-gradient(circle at 78% 14%, #ff7a18 0 5px, transparent 6px),
    radial-gradient(circle at 88% 32%, #7c3aed 0 4px, transparent 5px),
    radial-gradient(circle at 12% 82%, #ff7a18 0 4px, transparent 5px);
  opacity:.9;
}

.how-works-section {
  padding:0 0 42px;
  background:#fff;
}
.how-works-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  margin:0 auto;
}
.how-works-panel {
  isolation:isolate;
  position:relative;
  overflow:hidden;
  border-radius:18px;
  min-height:152px;
  padding:24px 42px 26px;
  background:
    radial-gradient(360px 170px at 8% 8%, rgba(255,255,255,.10), transparent 70%),
    radial-gradient(280px 140px at 92% 92%, rgba(255,122,24,.16), transparent 68%),
    linear-gradient(135deg,#4a148c 0%,#42116f 54%,#3b0e6c 100%);
  box-shadow:0 14px 30px rgba(46,16,101,.16);
  color:#fff;
}
.how-works-panel::before,
.how-works-panel::after {
  content:'';
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  border:24px solid rgba(255,255,255,.045);
  pointer-events:none;
  z-index:-1;
}
.how-works-panel::before { left:-92px; bottom:-110px; }
.how-works-panel::after { right:-82px; top:-112px; }
.how-works-title {
  position:absolute;
  top:14px;
  left:50%;
  transform:translateX(-50%);
  font-family:'Poppins', var(--fn);
  font-size:clamp(22px,2vw,34px);
  line-height:1;
  letter-spacing:-.04em;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
}
.how-works-track {
  min-height:108px;
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
  align-items:center;
  gap:22px;
  padding-top:20px;
}
.how-step {
  display:flex;
  align-items:center;
  gap:15px;
  min-width:0;
}
.how-icon {
  position:relative;
  width:86px;
  height:86px;
  flex:0 0 86px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  box-shadow:0 12px 24px rgba(15,23,42,.18);
}
.how-icon::after {
  content:'';
  position:absolute;
  right:8px;
  bottom:9px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#22c55e;
  border:4px solid rgba(255,255,255,.9);
  box-shadow:0 6px 12px rgba(15,23,42,.18);
}
.how-icon i { position:relative; z-index:1; }
.how-icon-white {
  background:#fff;
  color:#4a148c;
}
.how-icon-orange {
  background:linear-gradient(135deg,#ff8a1f,var(--orange));
  color:#fff;
}
.how-icon-orange::after { background:#4a148c; }
.how-icon-green {
  background:linear-gradient(135deg,#22a647,#15803d);
  color:#fff;
}
.how-icon-green::after { background:#ff8a1f; }
.how-copy span {
  display:block;
  font-family:'Poppins', var(--fn);
  font-size:21px;
  line-height:1;
  font-weight:700;
  color:#16a34a;
  margin-bottom:6px;
}
.how-step:nth-of-type(2) .how-copy span,
.how-step:nth-of-type(4) .how-copy span { color:#fff; }
.how-copy h3 {
  font-family:'Poppins', var(--fn);
  font-size:14px;
  line-height:1.25;
  font-weight:700;
  color:#fff;
}
.how-arrow {
  font-family:'Poppins', var(--fn);
  font-size:54px;
  line-height:1;
  font-weight:300;
  color:#fff;
  opacity:.95;
  transform:translateY(4px);
}


.customer-say-section {
  padding:0 0 44px;
  background:#fff;
  font-family:'Poppins', var(--fn);
}
.customer-say-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  margin:0 auto;
}
.customer-say-title {
  font-size:clamp(22px,2.15vw,34px);
  line-height:1;
  letter-spacing:-.04em;
  font-weight:700;
  color:#071225;
  text-align:center;
  margin:0 0 12px;
}
.customer-say-title span { color:var(--orange); }
.customer-say-shell {
  position:relative;
  display:flex;
  align-items:center;
  gap:18px;
}
.customer-say-track {
  flex:1 1 auto;
  min-width:0;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:52px;
  align-items:stretch;
}
.customer-card {
  position:relative;
  min-height:190px;
  border-radius:16px;
  padding:28px 26px 22px 118px;
  background:linear-gradient(180deg,#f7f7f8 0%,#f3f3f4 100%);
  box-shadow:0 9px 22px rgba(15,23,42,.05);
  overflow:hidden;
}
.customer-card::after {
  content:'';
  position:absolute;
  right:-38px;
  bottom:-62px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(255,255,255,.34);
  pointer-events:none;
}
.customer-quote {
  position:absolute;
  top:18px;
  left:30px;
  color:#4a148c;
  font-size:31px;
  line-height:1;
}
.customer-text {
  max-width:330px;
  min-height:42px;
  margin:0 0 18px;
  color:#111827;
  font-size:12.5px;
  line-height:1.45;
  font-weight:500;
}
.customer-stars {
  display:flex;
  align-items:center;
  gap:5px;
  color:#ff8a00;
  font-size:16px;
  line-height:1;
  margin-bottom:14px;
}
.customer-profile {
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:-84px;
}
.customer-profile img {
  width:72px;
  height:72px;
  flex:0 0 72px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #e5e7eb;
  box-shadow:0 7px 16px rgba(15,23,42,.12);
}
.customer-profile h3 {
  font-size:14px;
  line-height:1.2;
  font-weight:700;
  color:#111827;
  margin:0 0 4px;
}
.customer-profile span {
  display:block;
  font-size:13px;
  line-height:1.2;
  font-weight:500;
  color:#111827;
}
.customer-nav {
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f3f0ff;
  color:#4a148c;
  font-size:18px;
  box-shadow:0 7px 16px rgba(74,20,140,.08);
  transition:transform .2s ease, background .2s ease;
}
.customer-nav:hover {
  transform:translateY(-1px);
  background:#ebe4ff;
}
.customer-dots {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:14px;
}
.customer-dot {
  width:12px;
  height:12px;
  border-radius:50%;
  background:#18a34a;
  box-shadow:0 5px 10px rgba(24,163,74,.16);
}
.customer-dot-active {
  background:#ff8a00;
  box-shadow:0 5px 10px rgba(255,138,0,.18);
}
.customer-dot-green { background:#18a34a; }


.blog-section {
  padding:0 0 50px;
  background:#fff;
  font-family:'Poppins', var(--fn);
}
.blog-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  margin:0 auto;
}
.blog-head {
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  margin-bottom:18px;
}
.blog-title {
  font-size:clamp(24px,2.25vw,36px);
  line-height:1;
  letter-spacing:-.045em;
  font-weight:700;
  color:#071225;
  text-align:center;
}
.blog-title span { color:var(--orange); }
.blog-view-all {
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 16px;
  border-radius:999px;
  background:#f3f0ff;
  color:#4a148c;
  font-size:12px;
  font-weight:700;
  box-shadow:0 7px 16px rgba(74,20,140,.08);
  transition:transform .2s ease, background .2s ease;
}
.blog-view-all:hover {
  transform:translateY(calc(-50% - 1px));
  background:#ebe4ff;
}
.blog-grid {
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 72px) / 4);
  gap:24px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x proximity;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  -ms-overflow-style:none;
  padding:2px 2px 8px;
}
.blog-grid::-webkit-scrollbar { display:none; width:0; height:0; }
.blog-card {
  min-width:0;
  scroll-snap-align:start;
  border-radius:18px;
  background:#f7f7f8;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
  overflow:hidden;
  transition:transform .24s ease, box-shadow .24s ease;
}
.blog-card:hover {
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(15,23,42,.12);
}
.blog-card-link {
  display:flex;
  flex-direction:column;
  height:100%;
  min-height:398px;
}
.blog-image {
  position:relative;
  aspect-ratio:1 / 1;
  min-height:0;
  background:#eceff3;
  overflow:hidden;
}
.blog-image img {
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
  transition:transform .3s ease;
}
.blog-card:hover .blog-image img { transform:scale(1.045); }
.blog-badge {
  position:absolute;
  left:18px;
  bottom:16px;
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 13px;
  border-radius:999px;
  background:#4a148c;
  color:#fff;
  font-size:11px;
  line-height:1;
  font-weight:700;
  box-shadow:0 9px 18px rgba(15,23,42,.16);
}
.blog-badge-orange { background:linear-gradient(135deg,#ff8a1f,var(--orange)); }
.blog-badge-green { background:linear-gradient(135deg,#22a647,#15803d); }
.blog-content {
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  padding:24px 24px 22px;
  background:linear-gradient(180deg,#f8f8f9 0%,#f2f2f4 100%);
}
.blog-meta {
  display:flex;
  align-items:center;
  gap:7px;
  color:#6b7280;
  font-size:12px;
  line-height:1;
  font-weight:700;
  margin-bottom:12px;
}
.blog-meta i { color:#ff8a00; }
.blog-content h3 {
  color:#111827;
  font-size:21px;
  line-height:1.22;
  letter-spacing:-.035em;
  font-weight:700;
  margin:0 0 10px;
}
.blog-content p {
  color:#4b5563;
  font-size:13.5px;
  line-height:1.58;
  font-weight:500;
  margin:0 0 18px;
}
.blog-read-more {
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#4a148c;
  font-size:12px;
  line-height:1;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.blog-read-more i {
  color:#ff8a00;
  transition:transform .2s ease;
}
.blog-card:hover .blog-read-more i { transform:translateX(3px); }
.blog-dots {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:18px;
}
.blog-dot {
  width:11px;
  height:11px;
  border-radius:50%;
  background:#18a34a;
  box-shadow:0 5px 10px rgba(24,163,74,.16);
}
.blog-dot-active {
  background:#ff8a00;
  box-shadow:0 5px 10px rgba(255,138,0,.18);
}


.quick-help-section {
  padding:0 0 46px;
  background:#fff;
  font-family:'Poppins', var(--fn);
}
.quick-help-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  margin:0 auto;
}
.quick-help-bar {
  display:grid;
  grid-template-columns:1.05fr 1.2fr 1.15fr;
  min-height:70px;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 24px rgba(15,23,42,.10);
  border:1px solid rgba(15,23,42,.08);
}
.quick-help-item {
  position:relative;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  padding:14px 30px;
  text-align:left;
  font-family:'Poppins', var(--fn);
  transition:filter .2s ease, transform .2s ease;
}
.quick-help-item:hover { filter:brightness(1.02); }
.quick-help-item + .quick-help-item::before {
  content:'';
  position:absolute;
  left:0;
  top:14px;
  bottom:14px;
  width:1px;
  background:rgba(255,255,255,.28);
}
.quick-help-call {
  background:linear-gradient(180deg,#fff 0%,#f8f8f9 100%);
  color:#111827;
}
.quick-help-whatsapp {
  background:linear-gradient(135deg,#1fa33c 0%,#169335 100%);
  color:#fff;
}
.quick-help-download {
  background:linear-gradient(135deg,#ff7a00 0%,#ff6700 100%);
  color:#fff;
}
.quick-help-icon {
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:24px;
}
.quick-help-call .quick-help-icon {
  color:#4a148c;
  background:#fff;
  border:2px solid rgba(74,20,140,.16);
}
.quick-help-whatsapp .quick-help-icon,
.quick-help-download .quick-help-icon {
  color:#fff;
  border:2px solid rgba(255,255,255,.74);
  background:rgba(255,255,255,.08);
}
.quick-help-copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:2px;
  min-width:0;
  line-height:1.12;
}
.quick-help-copy span {
  display:block;
  font-size:14px;
  font-weight:700;
  opacity:.96;
}
.quick-help-copy strong {
  display:block;
  font-size:19px;
  line-height:1.15;
  font-weight:700;
  letter-spacing:-.02em;
  white-space:nowrap;
}
.quick-help-whatsapp .quick-help-copy strong,
.quick-help-download .quick-help-copy strong { font-size:16px; }
.quick-help-whatsapp .quick-help-copy span,
.quick-help-download .quick-help-copy span { font-size:13px; }


.footer {
  background:
    radial-gradient(680px 180px at 4% 0%, rgba(255,255,255,.09), transparent 60%),
    linear-gradient(90deg,#4d168e 0%,#511694 42%,#431174 100%);
  color:#fff;
  font-family:'Poppins', var(--fn);
  padding:22px 0 0;
}
.footer-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  margin:0 auto;
}
.footer-main {
  display:grid;
  grid-template-columns:1.55fr .78fr .9fr 1.08fr 1.32fr 1.3fr;
  gap:36px;
  align-items:start;
  padding-bottom:18px;
}
.footer-brand-col { min-width:0; }
.footer-logo {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  text-decoration:none;
}
.footer-logo-img {
  width:176px;
  max-width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 12px 24px rgba(0,0,0,.26));
}
.all-blogs-page,
.blog-page,
.blog-detail-page,
.contact-showcase-page {
  font-family:var(--fn);
}
.all-blogs-page h1,
.all-blogs-page h2,
.all-blogs-page h3,
.blog-page h1,
.blog-page h2,
.blog-page h3,
.blog-detail-page h1,
.blog-detail-page h2,
.blog-detail-page h3,
.contact-showcase-page h1,
.contact-showcase-page h2,
.contact-showcase-page h3 {
  font-family:'Poppins', var(--fn) !important;
}
.footer-logo-main {
  display:block;
  font-family:'Poppins', var(--fn);
  font-size:62px;
  line-height:.78;
  letter-spacing:.03em;
  font-weight:700;
}
.footer-logo-sub {
  display:block;
  align-self:center;
  margin-top:9px;
  font-size:14px;
  line-height:1;
  letter-spacing:.48em;
  font-weight:600;
  text-indent:.48em;
}
.footer-desc {
  max-width:300px;
  color:rgba(255,255,255,.88);
  font-size:13px;
  line-height:1.45;
  font-weight:400;
  margin:0 0 15px;
}
.footer-social {
  display:flex;
  align-items:center;
  gap:13px;
}
.footer-social a {
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#fff;
  color:#4d168e;
  font-size:14px;
  transition:transform .2s ease, background .2s ease;
}
.footer-social a:hover {
  transform:translateY(-2px);
  background:#f5efff;
}
.footer-col { min-width:0; }
.footer-col h3 {
  color:#fff;
  font-size:16px;
  line-height:1.1;
  font-weight:700;
  margin:0 0 13px;
}
.footer-col a,
.footer-col p,
.footer-contact-item {
  color:rgba(255,255,255,.9);
  font-size:13px;
  line-height:1.35;
  font-weight:500;
}
.footer-col > a {
  display:block;
  margin-bottom:6px;
  transition:color .15s ease, transform .15s ease;
}
.footer-col > a:hover {
  color:#fff;
  transform:translateX(2px);
}
.footer-contact-col { padding-right:6px; }
.footer-contact-item {
  display:grid;
  grid-template-columns:18px 1fr;
  gap:9px;
  align-items:start;
  margin-bottom:10px;
}
.footer-contact-item i {
  color:#fff;
  font-size:13px;
  line-height:1.25;
  margin-top:1px;
  text-align:center;
}
.footer-contact-item span { min-width:0; }
.footer-newsletter-col p {
  margin:0 0 10px;
  max-width:260px;
}
.footer .sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.footer-newsletter {
  display:flex;
  flex-direction:column;
  gap:8px;
  max-width:290px;
}
.footer-newsletter input {
  width:100%;
  min-height:38px;
  border-radius:5px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.13);
  color:#fff;
  padding:0 14px;
  font-size:13px;
  font-weight:500;
}
.footer-newsletter input::placeholder { color:rgba(255,255,255,.78); }
.footer-newsletter input:focus {
  border-color:rgba(255,255,255,.55);
  box-shadow:0 0 0 3px rgba(255,255,255,.12);
}
.footer-newsletter button {
  width:100%;
  min-height:38px;
  border-radius:5px;
  background:#18b23d;
  color:#fff;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  box-shadow:0 8px 16px rgba(15,23,42,.14);
  transition:filter .2s ease, transform .2s ease;
}
.footer-newsletter button:hover {
  filter:brightness(1.05);
  transform:translateY(-1px);
}
.footer-bottom {
  min-height:40px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
  border-top:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.88);
  font-size:12px;
  font-weight:500;
}
.footer-developed { text-align:right; }
.footer-payments {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.footer-payments span {
  min-width:48px;
  min-height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  background:#fff;
  color:#34215f;
  font-size:9px;
  line-height:1;
  font-weight:700;
  padding:0 8px;
  box-shadow:0 4px 8px rgba(15,23,42,.13);
}
.footer-payments span:nth-child(2) { color:#d97706; }
.footer-payments span:nth-child(3) { color:#2563eb; }
.footer-payments span:nth-child(4) { color:#0f766e; }


/* Blog detail page + admin rich editor */
.blog-detail-page {
  background:#fff;
  padding-top:calc(var(--site-hh, var(--hh)) + var(--post-header-gap,50px));
  font-family:'Poppins', var(--fn);
}
.blog-detail-container {
  width:min(1180px, calc(100vw - var(--page-gutter)));
  margin:0 auto;
}
.blog-detail-hero {
  padding:54px 0 30px;
  background:
    radial-gradient(520px 220px at 10% 0%, rgba(255,138,0,.12), transparent 60%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}
.blog-back-link {
  display:inline-flex;
  margin-bottom:18px;
  color:#4a148c;
  font-size:13px;
  font-weight:700;
}
.blog-detail-meta-row {
  display:flex;
  align-items:center;
  gap:13px;
  flex-wrap:wrap;
  color:#64748b;
  font-size:13px;
  font-weight:700;
  margin-bottom:14px;
}
.blog-detail-badge {
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:0 13px;
  border-radius:999px;
  background:#4a148c;
  color:#fff;
  font-size:12px;
  box-shadow:0 8px 18px rgba(74,20,140,.16);
}
.blog-detail-hero h1 {
  max-width:900px;
  color:#071225;
  font-size:clamp(34px,4.4vw,64px);
  line-height:1.04;
  letter-spacing:-.055em;
  font-weight:700;
  margin:0 0 16px;
}
.blog-detail-excerpt {
  max-width:790px;
  color:#475569;
  font-size:17px;
  line-height:1.68;
  font-weight:500;
}
.blog-detail-body-section { padding:34px 0 58px; }
.blog-detail-layout {
  display:grid;
  grid-template-columns:minmax(0, 1fr) 340px;
  gap:34px;
  align-items:start;
}
.blog-detail-article {
  min-width:0;
  background:#fff;
}
.blog-detail-image {
  overflow:hidden;
  border-radius:22px;
  margin:0 0 24px;
  width:100%;
  background:#eef2f7;
  box-shadow:0 16px 34px rgba(15,23,42,.10);
}
.blog-detail-image img {
  display:block;
  width:100%;
  height:min(520px, 44vw);
  min-height:340px;
  object-fit:cover;
  object-position:center;
}
.blog-detail-content {
  color:#1f2937;
  font-size:16px;
  line-height:1.68;
}
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
  color:#111827;
  line-height:1.2;
  letter-spacing:-.035em;
  margin:24px 0 9px;
}
.blog-detail-content h2 { font-size:29px; }
.blog-detail-content h3 { font-size:22px; }
.blog-detail-content p { margin:0 0 14px; }
.blog-detail-content ul,
.blog-detail-content ol { margin:0 0 16px 22px; }
.blog-detail-content li { margin-bottom:6px; }
.blog-detail-content blockquote {
  margin:26px 0;
  padding:18px 22px;
  border-left:5px solid #ff8a00;
  background:#fff7ed;
  color:#7c2d12;
  border-radius:12px;
  font-weight:700;
}
.blog-detail-content a { color:#4a148c; font-weight:700; text-decoration:underline; }
.blog-detail-sidebar {
  position:sticky;
  top:calc(var(--site-hh, var(--hh)) + 18px);
  max-height:calc(100vh - var(--site-hh, var(--hh)) - 32px);
  overflow:auto;
  padding-right:4px;
  scrollbar-width:thin;
}
.blog-side-card {
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:20px;
  background:#f8fafc;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
  margin-bottom:18px;
}
.blog-side-card h2 {
  font-size:18px;
  line-height:1.2;
  font-weight:700;
  margin-bottom:9px;
  color:#111827;
}
.blog-side-card p {
  color:#475569;
  font-size:13px;
  line-height:1.6;
  margin-bottom:14px;
}
.blog-side-card button {
  width:100%;
  min-height:42px;
  border-radius:10px;
  background:#18a34a;
  color:#fff;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
}
.blog-sidebar-banner {
  display:block;
  margin-top:18px;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
  transition:transform .18s ease, box-shadow .18s ease;
}
.blog-sidebar-banner:hover {
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(15,23,42,.13);
}
.blog-sidebar-banner img {
  width:100%;
  display:block;
  aspect-ratio:4/5;
  object-fit:cover;
}
.blog-side-more-card { padding:18px; }
.blog-related-list { display:grid; gap:11px; }
.blog-related-link {
  display:grid;
  grid-template-columns:72px minmax(0, 1fr);
  gap:11px;
  align-items:center;
  color:#111827;
  text-decoration:none;
  padding:0 0 11px;
  border-bottom:1px solid #e5e7eb;
}
.blog-related-link:last-child { padding-bottom:0; border-bottom:0; }
.blog-related-thumb {
  width:72px;
  aspect-ratio:1.18/1;
  border-radius:12px;
  overflow:hidden;
  background:#eef2f7;
  display:block;
  border:1px solid #e5e7eb;
}
.blog-related-thumb img { width:100%; height:100%; display:block; object-fit:cover; transition:transform .18s ease; }
.blog-related-link:hover .blog-related-thumb img { transform:scale(1.06); }
.blog-related-copy { min-width:0; display:grid; gap:5px; }
.blog-related-copy strong {
  color:#111827;
  font-size:13px;
  line-height:1.28;
  font-weight:700;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.blog-related-copy small { color:#64748b; font-size:11px; line-height:1.25; font-weight:600; }
.blog-bottom-suggestions {
  margin-top:38px;
  padding-top:30px;
  border-top:1px solid #e5e7eb;
}
.blog-bottom-head { margin-bottom:18px; }
.blog-bottom-head span {
  display:inline-flex;
  color:#4a148c;
  background:#f5f3ff;
  border:1px solid #ddd6fe;
  border-radius:999px;
  padding:6px 11px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.07em;
  margin-bottom:10px;
}
.blog-bottom-head h2 { margin:0 0 8px; color:#071225; font-size:clamp(24px,2.7vw,34px); line-height:1.12; }
.blog-bottom-head p { margin:0; color:#64748b; font-size:14px; line-height:1.55; }
.blog-suggestion-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:16px; }
.blog-suggestion-card {
  display:grid;
  grid-template-rows:auto 1fr;
  overflow:hidden;
  min-width:0;
  border:1px solid #e5e7eb;
  border-radius:18px;
  background:#fff;
  color:inherit;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(15,23,42,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.blog-suggestion-card:hover { transform:translateY(-3px); border-color:#d8b4fe; box-shadow:0 18px 38px rgba(15,23,42,.11); }
.blog-suggestion-img { display:block; aspect-ratio:16/10; overflow:hidden; background:#eef2f7; }
.blog-suggestion-img img { width:100%; height:100%; display:block; object-fit:cover; transition:transform .22s ease; }
.blog-suggestion-card:hover .blog-suggestion-img img { transform:scale(1.045); }
.blog-suggestion-copy { display:grid; gap:7px; padding:14px; }
.blog-suggestion-copy small { color:#4a148c; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.blog-suggestion-copy strong { color:#111827; font-size:15px; line-height:1.28; font-weight:700; }
.blog-suggestion-copy em { color:#64748b; font-style:normal; font-size:12px; line-height:1.5; }
.blog-editor-toolbar {
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  padding:8px;
  border:1px solid var(--border);
  border-bottom:0;
  border-radius:10px 10px 0 0;
  background:#f8fafc;
}
.blog-editor-toolbar button {
  min-height:30px;
  padding:0 10px;
  border-radius:7px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--ink);
  font-size:12px;
  font-weight:700;
}
.blog-rich-editor {
  min-height:280px;
  padding:16px;
  border:1px solid var(--border);
  border-radius:0 0 10px 10px;
  background:#fff;
  color:var(--text);
  line-height:1.75;
  outline:none;
}
.blog-rich-editor:focus { box-shadow:var(--ring); border-color:var(--blue); }

@media (max-width:900px) {
  .blog-detail-layout { grid-template-columns:1fr; }
  .blog-detail-sidebar { position:static; max-height:none; overflow:visible; padding-right:0; }
}
@media (max-width:768px) {
  .blog-detail-container { width:min(100%, calc(100vw - 24px)); }
  .blog-detail-hero { padding:34px 0 22px; }
  .blog-detail-body-section { padding:24px 0 42px; }
  .blog-detail-meta-row { gap:9px; font-size:12px; }
  .blog-detail-excerpt { font-size:14px; line-height:1.65; }
  .blog-detail-image { border-radius:16px; margin-bottom:20px; }
  .blog-detail-image img { height:auto; min-height:0; aspect-ratio:16/10; }
  .blog-detail-content { font-size:14px; line-height:1.62; }
  .blog-detail-content h2 { font-size:24px; }
  .blog-detail-content h3 { font-size:20px; }
  .blog-suggestion-grid { grid-template-columns:1fr; }
  .blog-rich-editor { min-height:230px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
═══════════════════════════════════════════════════════════════ */
/* FIX: was pd-gallery-col in template but CSS had pd-gallery */
.pd-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:flex-start;
}

/* ── Gallery column ── */
.pd-gallery {                         /* was: pd-gallery-col in template — now aligned */
  position:sticky; top:calc(var(--hh) + 16px);
}

/* Square main image */
.pd-main {
  aspect-ratio:1/1; border-radius:14px; overflow:hidden;
  background:var(--bg2); border:1.5px solid var(--border);
  margin-bottom:10px; width:100%;
}
.pd-main img { width:100%; height:100%; object-fit:cover; transition:opacity .2s; }
.pd-main:hover img { transform:scale(1.045); transition:transform .35s ease, opacity .2s; }

/* Thumbnail row — exactly same width as main image, no overflow */
.pd-thumbs {                          /* was: pd-thumbs-row in template — now aligned */
  display:flex; gap:8px; width:100%;
}
.pd-thumbs.three { }                  /* auto: 3 thumbnails fill available width */
.pd-th {
  flex:1; aspect-ratio:1/1; border-radius:9px; overflow:hidden;
  border:2.5px solid transparent; cursor:pointer; transition:var(--tr);
  background:var(--bg2); min-width:0;
}
.pd-th:hover   { border-color:var(--blue-mid); }
.pd-th.act     { border-color:var(--blue); }
.pd-th img { width:100%; height:100%; object-fit:cover; }

/* ── Info column ── */
.pd-cat  { font-size:11px; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:.07em; margin-bottom:8px; }

/* IMPROVEMENT: larger, more prominent product title */
.pd-name {
  font-family:var(--fd);
  font-size:clamp(24px, 3.5vw, 36px);
  font-weight:700; color:var(--ink);
  line-height:1.12; letter-spacing:-.03em;
  margin-bottom:14px;
}
.pd-code {
  display:inline-flex;
  align-items:center;
  padding:5px 10px;
  border-radius:999px;
  border:1px solid var(--blue-mid);
  background:var(--blue-bg);
  color:var(--blue2);
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
  margin-bottom:12px;
}
.pd-desc { font-size:14px; color:var(--text2); line-height:1.72; margin-bottom:22px; }

/* Config blocks */
.cfg { background:var(--bg); border:1.5px solid var(--border); border-radius:12px; padding:16px 18px; margin-bottom:14px; }
.cfg-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--text2); margin-bottom:11px; }

/* Quality options */
.qual-opt {
  display:flex; align-items:flex-start; gap:12px; padding:12px 14px;
  border-radius:10px; border:2px solid var(--border2);
  background:var(--white); cursor:pointer; margin-bottom:8px; transition:var(--tr);
}
.qual-opt:hover { border-color:var(--blue-mid); }
.qual-opt.sel   { border-color:var(--blue); background:var(--blue-bg); }
.qual-radio { width:18px; height:18px; border-radius:50%; border:2px solid var(--border2); flex-shrink:0; margin-top:1px; display:flex; align-items:center; justify-content:center; transition:var(--tr); }
.qual-opt.sel .qual-radio { border-color:var(--blue); background:var(--blue); }
.qr-dot { width:7px; height:7px; border-radius:50%; background:#fff; display:none; }
.qual-opt.sel .qr-dot { display:block; }

/* Attribute pills */
.attr-opts { display:flex; gap:8px; flex-wrap:wrap; }
.attr-opt {
  padding:8px 14px; border-radius:8px; border:1.5px solid var(--border2);
  background:var(--white); font-size:13px; font-weight:600;
  color:var(--text2); cursor:pointer; transition:var(--tr); white-space:nowrap;
}
.attr-opt:hover { border-color:var(--blue); color:var(--blue); }
.attr-opt.sel   { border-color:var(--blue); background:var(--blue); color:#fff; }
.ao-add { font-size:10px; font-weight:500; opacity:.75; margin-left:4px; }

/* Design option cards */
.design-opt {
  border:2px solid var(--border2); border-radius:11px; padding:16px 14px;
  text-align:center; cursor:pointer; transition:var(--tr); background:var(--white);
}
.design-opt:hover { border-color:var(--blue-mid); }
.design-opt.sel   { border-color:var(--blue); background:var(--blue-bg); }

/* File upload zone */
.upload-zone {
  border:2px dashed var(--border2); border-radius:12px; padding:24px;
  text-align:center; cursor:pointer; transition:var(--tr); background:var(--bg);
}
.upload-zone:hover,.upload-zone.drag { border-color:var(--blue); background:var(--blue-bg); }
.upload-zone input { display:none; }
.upload-done {
  background:var(--green-bg); border:1.5px solid var(--green-mid);
  border-radius:10px; padding:12px 14px; display:flex; align-items:center; gap:10px; margin-top:8px;
}

/* Design fee info banner */
.design-fee-info {
  background:var(--amber-bg); border:1px solid var(--amber-mid);
  border-radius:8px; padding:10px 13px;
  font-size:12px; color:var(--amber); margin-top:10px;
  display:flex; align-items:center; gap:8px;
}

/* Price panel */
.price-panel {
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  border-radius:12px; padding:18px 20px; margin-bottom:14px;
  transition:transform .28s ease, box-shadow .28s ease;
}
.price-panel.flash {
  transform:translateY(-1px) scale(1.01);
  box-shadow:0 12px 28px rgba(37,99,235,.26);
}
.pp-row  { display:flex; align-items:center; justify-content:space-between; margin-bottom:6px; font-size:13px; }
.pp-row:last-child { margin:0; padding-top:12px; border-top:1px solid rgba(255,255,255,.2); margin-top:8px; }
.pp-l  { color:rgba(255,255,255,.75); }
.pp-v  { color:#fff; font-weight:600; }
.pp-tl { font-size:14px; font-weight:700; color:rgba(255,255,255,.85); }
.pp-tv { font-family:var(--fd); font-size:28px; font-weight:700; color:#fff; line-height:1; }

/* Sticky price bar (mobile only — shown via JS/CSS below) */
.sticky-price {
  display:none; position:fixed; bottom:0; left:0; right:0;
  background:var(--white); border-top:1.5px solid var(--border);
  padding:12px 16px; z-index:300; box-shadow:0 -4px 20px rgba(0,0,0,.1);
  align-items:center; justify-content:space-between; gap:12px;
}
.sticky-price.show { display:flex; }
.sp-price { font-family:var(--fd); font-size:22px; font-weight:700; color:var(--blue); }
.sp-sub   { font-size:11px; color:var(--text3); }

/* Breadcrumb */
.breadcrumb { padding:14px 0; display:flex; align-items:center; gap:6px; font-size:13px; color:var(--text3); flex-wrap:wrap; }
.breadcrumb a { cursor:pointer; color:var(--blue); font-weight:600; text-decoration:none; }
.breadcrumb span { color:var(--border2); }

/* ═══════════════════════════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════════════════════════ */
.cart-drawer {
  position:fixed; top:0; right:-100%; width:420px; max-width:100%;
  height:100%; background:var(--white); z-index:950;
  transition:right .3s cubic-bezier(.4,0,.2,1);
  box-shadow:-4px 0 30px rgba(0,0,0,.12);
  display:flex; flex-direction:column;
}
.cart-drawer.open { right:0; }
.cart-backdrop {
  display:none; position:fixed; inset:0;
  background:rgba(17,24,39,.4); z-index:940; backdrop-filter:blur(2px);
}
.cart-backdrop.show { display:block; }
.cart-hdr   { padding:18px 20px; border-bottom:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.cart-title { font-family:var(--fd); font-size:18px; font-weight:700; }
.cart-body  { flex:1; overflow-y:auto; padding:16px; }
.cart-footer{ padding:16px 20px; border-top:1px solid var(--border); }
.cart-item  { background:var(--bg); border-radius:12px; border:1px solid var(--border); padding:13px; margin-bottom:10px; display:flex; gap:12px; }
.ci-img     { width:60px; height:60px; border-radius:8px; overflow:hidden; background:var(--border); flex-shrink:0; }
.ci-img img { width:100%; height:100%; object-fit:cover; }
.ci-info    { flex:1; min-width:0; }
.ci-name    { font-size:13px; font-weight:700; margin-bottom:3px; color:var(--ink); }
.ci-attrs   { font-size:11px; color:var(--text2); line-height:1.5; margin-bottom:4px; }
.ci-price   { font-family:var(--fd); font-size:15px; font-weight:700; color:var(--blue); }
.cart-summary    { display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.cart-sum-row    { display:flex; align-items:center; justify-content:space-between; font-size:13px; }
.cart-sum-row.total { font-weight:700; font-size:16px; padding-top:8px; border-top:1px solid var(--border); margin-top:4px; }
.coupon-row { display:flex; gap:8px; margin-bottom:12px; }
.coupon-row input { flex:1; padding:9px 12px; border:1.5px solid var(--border2); border-radius:8px; font-size:13px; font-family:var(--fn); }
.coupon-row input:focus { border-color:var(--blue); outline:none; }
.coupon-applied { background:var(--green-bg); border:1px solid var(--green-mid); border-radius:8px; padding:8px 12px; font-size:12px; font-weight:600; color:var(--green); display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }

/* Admin/shared modal primitives (used by admin forms) */
.modal-bg {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.45);
  backdrop-filter:blur(2px);
  z-index:980;
  padding:22px 14px;
  overflow-y:auto;
}
.modal-bg.show { display:flex; align-items:center; justify-content:center; }
.modal-box {
  width:min(620px,100%);
  background:var(--white);
  border:1.5px solid var(--border);
  border-radius:16px;
  box-shadow:var(--sh-lg);
  overflow:hidden;
}
.modal-pill { width:46px; height:4px; border-radius:999px; background:var(--border2); margin:9px auto 0; }
.modal-hdr {
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:12px 16px; border-bottom:1px solid var(--border);
}
.modal-ttl { font-family:var(--fd); font-size:18px; font-weight:700; color:var(--ink); }
.modal-bdy { padding:16px; }

/* Close button */
.modal-cls { width:32px; height:32px; border-radius:50%; background:var(--bg2); display:flex; align-items:center; justify-content:center; color:var(--text2); font-size:17px; transition:var(--tr); border:none; cursor:pointer; }
.modal-cls:hover { background:var(--red-bg); color:var(--red); }

/* ═══════════════════════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════════════════════ */
.auth-page { margin-top:calc(var(--hh) + var(--post-header-gap,50px)); min-height:calc(100vh - var(--hh) - var(--post-header-gap,50px)); display:flex; align-items:center; justify-content:center; padding:36px 18px; background:linear-gradient(135deg,var(--blue-bg),var(--bg),var(--orange-bg)); }
.auth-card { background:var(--white); border-radius:18px; padding:34px 28px; width:100%; max-width:420px; box-shadow:var(--sh-lg); border:1.5px solid var(--border); }
.auth-mark { width:50px; height:50px; background:linear-gradient(135deg,var(--blue),var(--blue2)); border-radius:13px; display:flex; align-items:center; justify-content:center; margin:0 auto 10px; font-family:var(--fd); font-size:21px; font-weight:700; color:#fff; }
.auth-t    { font-family:var(--fd); font-size:22px; font-weight:700; text-align:center; margin-bottom:3px; }
.auth-s    { font-size:13px; color:var(--text2); text-align:center; margin-bottom:22px; }
.auth-sw   { text-align:center; font-size:13px; color:var(--text2); margin-top:14px; }
.auth-sw a { color:var(--blue); font-weight:700; cursor:pointer; }

/* ═══════════════════════════════════════════════════════════════
   MY ORDERS
═══════════════════════════════════════════════════════════════ */
.myord-hdr { background:linear-gradient(135deg,var(--blue),var(--blue2)); padding:48px 0 32px; margin-top:calc(var(--hh) + var(--post-header-gap,50px)); }
.myord-hdr-t { font-family:var(--fd); font-size:26px; font-weight:700; color:#fff; margin-bottom:5px; }
.myord-hdr-s { font-size:14px; color:rgba(255,255,255,.65); }
.ord-card { background:var(--white); border-radius:14px; border:1.5px solid var(--border); padding:16px; margin-bottom:12px; transition:var(--tr); }
.ord-card:hover { border-color:var(--blue-mid); box-shadow:var(--sh-md); }
.ord-timeline { display:flex; align-items:center; margin:12px 0; overflow-x:auto; padding-bottom:4px; }
.tl-step  { display:flex; flex-direction:column; align-items:center; gap:3px; min-width:72px; flex-shrink:0; }
.tl-circle { width:22px; height:22px; border-radius:50%; border:2px solid var(--border2); background:var(--white); display:flex; align-items:center; justify-content:center; font-size:9px; font-weight:700; color:var(--text3); position:relative; z-index:1; }
.tl-step.done   .tl-circle { background:var(--green); border-color:var(--green); color:#fff; }
.tl-step.active .tl-circle { background:var(--blue);  border-color:var(--blue);  color:#fff; box-shadow:0 0 0 3px var(--blue-bg); }
.tl-label { font-size:10px; font-weight:500; color:var(--text3); text-align:center; line-height:1.3; }
.tl-step.done   .tl-label,
.tl-step.active .tl-label { color:var(--ink); font-weight:600; }
.tl-line { flex:1; height:2px; background:var(--border); min-width:20px; margin:0 -2px; margin-top:-14px; position:relative; z-index:0; }
.tl-line.done { background:var(--green); }

/* ═══════════════════════════════════════════════════════════════
   CONFIRM PAGE
═══════════════════════════════════════════════════════════════ */
.confirm-page { margin-top:calc(var(--hh) + var(--post-header-gap,50px)); min-height:calc(100vh - var(--hh) - var(--post-header-gap,50px)); display:flex; align-items:center; justify-content:center; padding:36px 18px; background:var(--bg); }
.confirm-card { background:var(--white); border-radius:18px; padding:34px 26px; width:100%; max-width:520px; box-shadow:var(--sh-lg); border:1.5px solid var(--border); }
.confirm-ic   { width:66px; height:66px; background:var(--green); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; box-shadow:0 0 0 10px rgba(5,150,105,.1); }
.confirm-ic svg { width:32px; height:32px; fill:#fff; }
.confirm-oid  { background:var(--blue-bg); border:1px dashed var(--blue-mid); border-radius:8px; padding:11px; margin-bottom:16px; font-family:var(--fn); font-size:16px; font-weight:700; color:var(--blue); letter-spacing:2px; text-align:center; }
.confirm-rows { border:1.5px solid var(--border); border-radius:12px; overflow:hidden; margin-bottom:16px; }
.cr { display:flex; align-items:center; justify-content:space-between; padding:10px 14px; border-bottom:1px solid var(--border); font-size:13px; gap:8px; }
.cr:last-child { border:none; }
.cr-l { color:var(--text2); font-weight:500; }
.cr-v { font-weight:700; text-align:right; }

/* ═══════════════════════════════════════════════════════════════
   ADMIN
═══════════════════════════════════════════════════════════════ */
.adm-lay  { display:flex; min-height:calc(100vh - var(--hh)); }
.adm-sb   { width:224px; background:var(--ink2); flex-shrink:0; padding:14px 0; position:sticky; top:var(--hh); height:calc(100vh - var(--hh)); overflow-y:auto; display:flex; flex-direction:column; }
.adm-header { position:fixed; }
.adm-hdr-left {
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.adm-hdr-center {
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
}
.adm-hdr-right {
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:auto;
  justify-content:flex-end;
  flex-shrink:0;
}
.adm-hdr-actions { display:flex; align-items:center; gap:10px; }
.adm-hdr-name { font-size:13px; color:var(--text2); }
.adm-hdr-link { font-size:12px; }
.adm-user-menu { display:none; position:relative; }
.adm-user-btn {
  width:36px; height:36px; border-radius:10px;
  border:1.5px solid var(--border2); background:var(--white);
  color:var(--text2); font-weight:700; font-size:16px;
}
.adm-user-panel {
  position:absolute; right:0; top:calc(100% + 8px); min-width:170px;
  background:var(--white); border:1px solid var(--border); border-radius:10px;
  box-shadow:var(--sh-lg); padding:6px; display:none; z-index:980;
}
.adm-user-menu.open .adm-user-panel { display:block; }
.adm-user-name { font-size:12px; color:var(--text2); padding:8px 9px; border-bottom:1px solid var(--border); margin-bottom:4px; }
.adm-user-link { display:block; padding:8px 9px; border-radius:8px; font-size:13px; color:var(--text2); }
.adm-user-link:hover { background:var(--blue-bg); color:var(--blue); }
.adm-mob-toggle {
  display:none;
  width:38px;
  height:38px;
  border-radius:10px;
  border:1.5px solid var(--border2);
  background:var(--white);
  color:var(--text2);
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.adm-mob-toggle svg { width:18px; height:18px; fill:currentColor; }
.adm-sb-backdrop {
  display:none;
  position:fixed;
  inset:0;
  top:var(--hh);
  border:none;
  background:rgba(15,23,42,.52);
  z-index:940;
}
.adm-sb-logo { padding:0 14px 14px; border-bottom:1px solid rgba(255,255,255,.08); margin-bottom:8px; }
.adm-sb-t { font-family:var(--fd); font-size:14px; font-weight:700; color:#fff; }
.adm-sb-s { font-size:10px; color:rgba(255,255,255,.3); margin-top:2px; }
.adm-nl   { font-size:9px; font-weight:700; color:rgba(255,255,255,.24); text-transform:uppercase; letter-spacing:.09em; padding:10px 14px 4px; }
.adm-ni   { display:flex; align-items:center; gap:9px; padding:10px 14px; border-radius:9px; cursor:pointer; transition:background .15s, color .15s, transform .15s; color:rgba(255,255,255,.58); font-size:13px; font-weight:600; margin:2px 8px; text-decoration:none; position:relative; }
.adm-ni:hover { background:rgba(255,255,255,.09); color:#fff; transform:translateX(1px); }
.adm-ni.act   { background:linear-gradient(135deg,var(--blue),var(--blue2)); color:#fff; box-shadow:0 6px 14px rgba(37,99,235,.28); }
.adm-ni.act::before {
  content:'';
  position:absolute;
  left:0;
  top:8px;
  bottom:8px;
  width:3px;
  border-radius:0 6px 6px 0;
  background:#fff;
}
.adm-ni svg   { width:15px; height:15px; fill:currentColor; flex-shrink:0; }
.adm-sb-logout{ padding:12px 8px; margin-top:auto; border-top:1px solid rgba(255,255,255,.07); }
.adm-main { flex:1; min-width:0; padding:22px; background:var(--bg); overflow-y:auto; }
.adm-main--orders { padding:14px 14px 20px; }
.adm-dash-charts { display:grid; grid-template-columns:1fr 1fr; gap:13px; margin-bottom:13px; }
.adm-pt   { font-family:var(--fd); font-size:21px; font-weight:700; color:var(--ink); margin-bottom:18px; letter-spacing:-.02em; }
.adm-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:11px; margin-bottom:20px; }
.ast      { background:var(--white); border-radius:12px; border:1.5px solid var(--border); padding:16px 18px; }
.ast-v    { font-family:var(--fd); font-size:24px; font-weight:700; line-height:1; margin-bottom:4px; }
.ast-l    { font-size:12px; color:var(--text2); font-weight:500; }
.aoc { background:var(--white); border-radius:12px; border:1.5px solid var(--border); padding:14px; margin-bottom:9px; transition:var(--tr); }
.aoc:hover { border-color:var(--blue-mid); box-shadow:var(--sh-md); }
.aoc-top  { display:flex; align-items:flex-start; justify-content:space-between; gap:10px; margin-bottom:9px; }
.aoc-id   { font-family:var(--fn); font-size:11px; font-weight:700; color:var(--blue); }
.aoc-name { font-size:14px; font-weight:700; color:var(--ink); }
.aoc-contact { font-size:12px; color:var(--text2); margin-top:1px; }
.aoc-pills{ display:flex; gap:5px; flex-wrap:wrap; margin-bottom:8px; }
.aoc-pill { font-size:11px; color:var(--text2); background:var(--bg2); padding:3px 8px; border-radius:100px; border:1px solid var(--border); }
.aoc-acts { display:flex; gap:5px; padding-top:9px; border-top:1px solid var(--border); flex-wrap:wrap; }
.aoc-btn  { flex:1; min-width:65px; padding:6px; border-radius:7px; font-size:11px; font-weight:700; cursor:pointer; transition:var(--tr); font-family:var(--fn); border:1.5px solid var(--border); background:var(--bg2); color:var(--text2); }
.aoc-btn:hover:not(:disabled) { background:var(--blue-bg); border-color:var(--blue-mid); color:var(--blue); }
.aoc-btn:disabled { opacity:.35; cursor:not-allowed; }
.aoc-btn.cancel:hover:not(:disabled) { background:var(--red-bg); border-color:var(--red-mid); color:var(--red); }


/* Orders management table layout */
.adm-orders-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.adm-orders-page { width:100%; max-width:none; margin:0; }
.adm-orders-sub { font-size:12px; color:var(--text2); margin-top:4px; }
.adm-orders-filters {
  display:grid;
  grid-template-columns:minmax(220px,1fr) 180px auto auto;
  gap:9px;
  margin-bottom:14px;
  align-items:center;
}
.adm-orders-wrap {
  background:var(--white);
  border:1.5px solid var(--border);
  border-radius:14px;
  overflow:auto;
  box-shadow:0 8px 24px rgba(16,24,40,.05);
}
.adm-orders-table {
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width:1240px;
}
.adm-orders-table thead th {
  position:sticky;
  top:0;
  z-index:2;
  background:var(--bg2);
  color:var(--text2);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.05em;
  padding:10px 12px;
  border-bottom:1px solid var(--border);
  text-align:left;
}
.adm-orders-table td {
  border-bottom:1px solid var(--border);
  padding:12px 12px;
  vertical-align:top;
  font-size:12px;
}
.adm-orders-table tbody tr { background:var(--white); }
.adm-orders-table tbody tr + tr td { border-top:10px solid #F3F6FB; }
.adm-orders-table tbody tr td:first-child {
  border-left:1px solid var(--border);
  border-top-left-radius:10px;
  border-bottom-left-radius:10px;
}
.adm-orders-table tbody tr td:last-child {
  border-right:1px solid var(--border);
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
}
.adm-orders-table tbody tr:hover td { background:#FCFDFF; }
.adm-orders-table td { line-height:1.55; }
.ord-id { font-family:var(--fn); font-size:12px; font-weight:700; color:var(--blue); }
.ord-date, .ord-meta { color:var(--text2); font-size:11px; line-height:1.45; }
.ord-customer { font-weight:700; color:var(--ink); font-size:13px; margin-bottom:2px; }
.ord-cust-actions { display:flex; gap:6px; margin-top:8px; }
.ord-items-hdr {
  display:inline-flex;
  align-items:center;
  gap:5px;
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--text2);
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:999px;
  padding:3px 8px;
  margin-bottom:8px;
}
.ord-item-row + .ord-item-row { margin-top:8px; padding-top:8px; border-top:1px dashed var(--border); }
.ord-item-name { font-weight:700; color:var(--ink); font-size:12px; margin-bottom:1px; }
.ord-artwork {
  margin-top:6px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  font-size:11px;
  color:var(--text2);
  padding:6px 8px;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--bg2);
}
.ord-artwork-link {
  font-size:11px;
  font-weight:700;
  color:var(--blue);
  text-decoration:none;
  white-space:nowrap;
}
.ord-artwork-link:hover { text-decoration:underline; }
.ord-artwork-empty {
  justify-content:flex-start;
  color:var(--text3);
}
.ord-amt { font-family:var(--fd); font-size:16px; font-weight:700; color:var(--blue); }
.ord-actions { display:flex; gap:5px; flex-wrap:wrap; margin-bottom:8px; }
.ord-status-row { display:flex; gap:6px; align-items:center; margin-bottom:8px; }
.ord-status-row .fi { min-width:140px; }
.ord-ship { border:1px solid var(--border); border-radius:8px; padding:6px 8px; background:var(--bg); }
.ord-ship summary { cursor:pointer; font-size:11px; font-weight:700; color:var(--text2); }
.ord-ship-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:6px; margin:8px 0 6px; }

.aprod { background:var(--white); border-radius:12px; border:1.5px solid var(--border); padding:13px; margin-bottom:8px; display:flex; align-items:center; gap:12px; transition:var(--tr); }
.aprod:hover { border-color:var(--blue-mid); }
.aprod-img  { width:56px; height:56px; border-radius:9px; overflow:hidden; background:var(--bg2); flex-shrink:0; border:1px solid var(--border); }
.aprod-img img { width:100%; height:100%; object-fit:cover; }
.aprod-info { flex:1; min-width:0; }
.aprod-name { font-size:14px; font-weight:700; color:var(--ink); }
.aprod-meta { font-size:12px; color:var(--text2); margin-top:2px; }
.aprod-acts { display:flex; align-items:center; gap:7px; }
.fsec { background:var(--white); border-radius:14px; border:1.5px solid var(--border); padding:18px; margin-bottom:13px; box-shadow:0 2px 10px rgba(15,23,42,.03); }
.fsec-t { font-family:var(--fd); font-size:14px; font-weight:700; color:var(--blue); margin-bottom:14px; display:flex; align-items:center; gap:7px; }
.ptbl { width:100%; border-collapse:collapse; font-size:13px; }
.ptbl th { background:var(--bg2); padding:9px 12px; text-align:left; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--text2); border-bottom:1.5px solid var(--border); }
.ptbl td { padding:9px 12px; border-bottom:1px solid var(--border); }
.ptbl tr:last-child td { border:none; }
.ptbl tr:hover td { background:var(--bg); }
.pi { width:100px; padding:6px 9px; border:1.5px solid var(--border2); border-radius:7px; font-size:13px; font-family:var(--fn); text-align:right; transition:var(--tr); }
.pi:focus { border-color:var(--blue); outline:none; }
.ps-btn { padding:5px 11px; border-radius:6px; background:var(--blue-bg); border:1px solid var(--blue-mid); color:var(--blue); font-size:11px; font-weight:700; cursor:pointer; transition:var(--tr); font-family:var(--fn); }
.ps-btn:hover { background:var(--blue); color:#fff; }
.anl-grid { display:grid; grid-template-columns:1fr 1fr; gap:13px; margin-bottom:13px; }
.anl-card { background:var(--white); border-radius:12px; border:1.5px solid var(--border); padding:16px; }
.anl-t { font-size:12px; font-weight:700; color:var(--text2); text-transform:uppercase; letter-spacing:.05em; margin-bottom:12px; }
.anl-row { display:flex; align-items:center; justify-content:space-between; padding:5px 0; border-bottom:1px solid var(--border); font-size:13px; }
.anl-row:last-child { border:none; }
.anl-v { font-weight:700; color:var(--blue); }
.rev-chart { display:flex; align-items:flex-end; gap:6px; height:88px; }
.rv-bar-wrap { flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; }
.rv-bar { border-radius:4px 4px 0 0; background:var(--blue-bg); transition:height .4s ease; min-height:3px; width:100%; }
.rv-bar.hi { background:var(--blue); }
.rv-lbl { font-size:9px; color:var(--text3); text-align:center; }
.rv-val { font-size:9px; font-weight:600; color:var(--text2); }
.coupon-item { background:var(--white); border-radius:12px; border:1.5px solid var(--border); padding:13px; margin-bottom:8px; display:flex; align-items:center; gap:12px; transition:var(--tr); }
.coupon-item:hover { border-color:var(--blue-mid); box-shadow:0 6px 16px rgba(15,23,42,.05); }
.coupon-code { font-family:var(--fn); font-size:14px; font-weight:700; color:var(--blue); background:var(--blue-bg); padding:5px 11px; border-radius:6px; letter-spacing:1px; }
.coupon-info { flex:1; min-width:0; }
.coupon-name { font-size:13px; font-weight:700; color:var(--ink); }
.coupon-meta { font-size:12px; color:var(--text2); margin-top:2px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width:1100px) {
  .prod-grid { grid-template-columns:repeat(3,1fr); }
  .adm-stats { grid-template-columns:repeat(2,1fr); }

  .adm-orders-filters { grid-template-columns:1fr 1fr; }
  .adm-main--orders { padding:12px; }
  .ord-ship-grid { grid-template-columns:1fr 1fr; }
  .ord-cust-actions { flex-wrap:wrap; }
  .pc-carousel-card { flex:0 0 calc(33.333% - 14px); }
  .best-deals-grid { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .deal-promo-card { grid-column:span 2; }
  .how-works-track { grid-template-columns:1fr 1fr; gap:22px 28px; padding-top:42px; }
  .how-arrow { display:none; }
  .customer-say-track { gap:18px; }
  .customer-card { padding:26px 20px 20px 96px; }
  .customer-profile { margin-left:-70px; }
  .customer-profile img { width:62px; height:62px; flex-basis:62px; }
  .blog-grid { grid-auto-columns:calc((100% - 36px) / 3); gap:18px; }
  .blog-card-link { min-height:370px; }
  .blog-image, .blog-image img { min-height:0; }
  .blog-content { padding:20px 18px 19px; }
  .blog-content h3 { font-size:18px; }
  .quick-help-bar { grid-template-columns:1fr; border-radius:12px; }
  .quick-help-item { min-height:66px; justify-content:flex-start; padding:13px 24px; }
  .quick-help-item + .quick-help-item::before { display:none; }
  .quick-help-copy strong { white-space:normal; }
  .shop-cat-track { grid-auto-columns:calc((100% - 60px) / 4); gap:20px; }
}

@media (max-width:900px) {
  .hero-grid,.pd-grid { grid-template-columns:1fr; }
  .hero-mosaic,.hero-stats { display:none; }
  .footer-main { grid-template-columns:1.35fr 1fr 1fr; gap:28px 24px; }
  .footer-newsletter-col { grid-column:span 2; }
  .footer-bottom { grid-template-columns:1fr; justify-items:center; text-align:center; padding:14px 0; gap:10px; }
  .footer-developed { text-align:center; }
  .why-print-panel { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .why-print-item:nth-child(odd)::before { display:none; }
  .why-print-item:nth-child(n+3) { border-top:1px solid rgba(15,23,42,.10); }
  /* Unstick gallery on mobile — stack below */
  .pd-gallery { position:static; }
  .adm-mob-toggle {
    display:inline-flex;
  }
  .adm-hdr-name,
  .adm-hdr-actions { display:none; }
  .adm-user-menu { display:block; }
  .adm-hdr-right {
    gap:0;
  }
  .adm-hdr-left { gap:8px; }
  .adm-hdr-center .hdr-logo-name { font-size:16px; }
  .adm-hdr-center .hdr-logo-sub { display:none; }
  .adm-sb  {
    display:flex;
    position:fixed;
    left:0;
    top:var(--hh);
    width:min(286px,88vw);
    height:calc(100vh - var(--hh));
    z-index:950;
    transform:translateX(-104%);
    transition:transform .24s cubic-bezier(.4,0,.2,1);
    box-shadow:8px 0 28px rgba(2,6,23,.35);
  }
  body.adm-sb-open {
    overflow:hidden;
  }
  body.adm-sb-open .adm-sb { transform:translateX(0); }
  body.adm-sb-open .adm-sb-backdrop { display:block; }
  .anl-grid{ grid-template-columns:1fr; }
  .pc-carousel-card { flex:0 0 calc(50% - 10px); }
  .best-deals-grid { gap:16px; }
  .shop-cat-track { grid-auto-columns:calc((100% - 40px) / 3); gap:20px; }
}

@media (max-width:768px) {
  .prod-grid { grid-template-columns:repeat(2,1fr); gap:13px; }
  .sec { padding:38px 0; }
  .f2 { grid-template-columns:1fr; gap:10px; }
  .cart-drawer { width:100%; max-width:100%; }
  /* Banner mobile fixes */
  .banner-slider {
    height:clamp(184px, 56vw, 300px);
    margin-top:var(--site-hh, 129px);
    width:100%;
    max-width:none;
    margin-left:0;
    margin-right:0;
  }
  .bs-slide > img,
  .bs-image-link img {
    object-fit:cover;
    object-position:center center;
  }
  .bs-prev,.bs-next { width:32px; height:32px; }
  .bs-content {
    width:min(58%, 360px);
    margin-left:14px;
    padding:12px 14px;
    border-left-width:4px;
    border-radius:0;
  }
  .bs-title { font-size:clamp(18px,5.6vw,28px); line-height:1.12; margin-bottom:7px; }
  .bs-sub { display:block; font-size:11px; line-height:1.45; margin-bottom:10px; }
  .bs-eyebrow { font-size:9px; margin-bottom:5px; }
  .bs-cta-primary,.bs-cta-wa { padding:9px 12px; font-size:11px; border-radius:8px; }
  .bs-actions { gap:7px; }
  /* Category page grid */
  .cat-page-grid { grid-template-columns:repeat(2,1fr) !important; }
  .shop-cat-section { padding:26px 0 32px; }
  .shop-cat-container { width:min(100%, calc(100vw - 24px)); }
  .shop-cat-head { margin-bottom:14px; }
  .shop-cat-track {
    grid-auto-columns:minmax(220px, 58vw);
    gap:16px;
    padding:2px 2px 12px;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
  }
  .shop-cat-track::-webkit-scrollbar { display:none; }
  .shop-cat-link { min-height:250px; border-radius:18px; }
  .shop-cat-img { min-height:186px; padding:0; }
  .shop-cat-img img { min-height:186px; height:100%; }
  .shop-cat-body { min-height:64px; padding:10px 14px 14px; gap:10px; }
  .shop-cat-icon { width:30px; height:30px; flex-basis:30px; font-size:14px; }
  .shop-cat-name { font-size:14px; }
  .related-grid { grid-template-columns:1fr !important; gap:12px; }
  /* Why choose strip */
  .why-print-section { padding:24px 0 30px; }
  .why-print-container { width:min(100%, calc(100vw - 24px)); }
  .why-print-panel { grid-template-columns:1fr; border-radius:16px; }
  .why-print-item { min-height:auto; padding:18px 18px; }
  .why-print-item + .why-print-item::before { display:none; }
  .why-print-item:nth-child(n+2) { border-top:1px solid rgba(15,23,42,.10); }
  .why-print-icon { width:56px; height:56px; flex-basis:56px; font-size:24px; }
  .best-deals-section { padding:6px 0 30px; }
  .best-deals-container { width:min(100%, calc(100vw - 24px)); }
  .best-deals-grid { grid-template-columns:1fr; gap:14px; }
  .deal-promo-card { grid-column:auto; min-height:220px; }
  .deal-card-link { min-height:220px; }
  .how-works-section { padding-bottom:30px; }
  .how-works-container { width:min(100%, calc(100vw - 24px)); }
  .how-works-panel { padding:20px 18px; border-radius:16px; }
  .how-works-title { position:static; transform:none; text-align:center; margin-bottom:18px; }
  .how-works-track { grid-template-columns:1fr; gap:16px; padding-top:0; }
  .how-step { gap:13px; }
  .how-icon { width:64px; height:64px; flex-basis:64px; font-size:27px; }
  .customer-say-section { padding-bottom:32px; }
  .customer-say-container { width:min(100%, calc(100vw - 24px)); }
  .customer-say-shell { gap:10px; }
  .customer-say-track {
    display:flex;
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding:0 2px 4px;
  }
  .customer-say-track::-webkit-scrollbar { display:none; }
  .customer-card { flex:0 0 min(82vw, 360px); scroll-snap-align:center; }
  .customer-nav { width:30px; height:30px; flex-basis:30px; font-size:15px; }
  .blog-section { padding-bottom:36px; }
  .blog-container { width:min(100%, calc(100vw - 24px)); }
  .blog-head { flex-direction:column; gap:10px; margin-bottom:14px; }
  .blog-view-all { position:static; transform:none; display:inline-flex; }
  .blog-view-all:hover { transform:translateY(-1px); }
  .blog-grid {
    display:flex;
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding:0 2px 6px;
  }
  .blog-grid::-webkit-scrollbar { display:none; }
  .blog-card { flex:0 0 min(86vw, 380px); scroll-snap-align:center; }
  .blog-card-link { min-height:378px; }
  .quick-help-section { padding-bottom:34px; }
  .quick-help-container { width:min(100%, calc(100vw - 24px)); }
  .quick-help-bar { grid-template-columns:1fr; border-radius:12px; }
  .quick-help-item { min-height:66px; justify-content:flex-start; padding:13px 20px; gap:13px; }
  .quick-help-item + .quick-help-item::before { display:none; }
  .quick-help-icon { width:40px; height:40px; flex-basis:40px; font-size:22px; }
  .quick-help-copy strong { white-space:normal; }
}


@media (max-width:480px) {
  .prod-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
  .header { padding:0 12px; gap:8px; }
  .why-print-heading { font-size:22px; margin-bottom:12px; }
  .why-print-item { gap:13px; padding:16px 14px; }
  .why-print-copy h3 { font-size:14px; }
  .why-print-copy p { font-size:11.5px; }
  .best-deals-heading { font-size:22px; }
  .deal-card-img, .deal-card-img img { min-height:138px; }
  .deal-card-band { padding:10px 12px; }
  .deal-copy strong { font-size:23px; }
  .deal-promo-card { padding:24px 18px; overflow:hidden; }
  .deal-promo-copy h3 { font-size:25px; margin-bottom:16px; }
  .deal-gift { width:105px; height:105px; flex-basis:105px; margin-right:-12px; }
  .deal-gift-box { left:12px; right:12px; height:72px; }
  .how-works-title { font-size:22px; }
  .how-copy span { font-size:18px; }
  .how-copy h3 { font-size:13px; }
  .customer-say-title { font-size:22px; margin-bottom:10px; }
  .customer-say-shell { gap:6px; }
  .customer-card {
    flex-basis:calc(100vw - 88px);
    min-height:176px;
    padding:24px 18px 18px 90px;
    border-radius:14px;
  }
  .customer-quote { left:24px; font-size:28px; }
  .customer-text { font-size:11.5px; margin-bottom:14px; }
  .customer-stars { font-size:14px; gap:4px; margin-bottom:12px; }
  .customer-profile { gap:11px; margin-left:-66px; }
  .customer-profile img { width:58px; height:58px; flex-basis:58px; }
  .customer-profile h3 { font-size:12.5px; }
  .customer-profile span { font-size:11.5px; }
  .customer-dots { gap:12px; margin-top:10px; }
  .customer-dot { width:10px; height:10px; }
  .blog-title { font-size:22px; }
  .blog-card { flex-basis:calc(100vw - 38px); border-radius:14px; }
  .blog-card-link { min-height:356px; }
  .blog-image, .blog-image img { min-height:0; }
  .blog-badge { left:14px; bottom:12px; min-height:28px; padding:0 11px; font-size:10px; }
  .blog-content { padding:18px 16px 17px; }
  .blog-meta { font-size:11px; margin-bottom:10px; }
  .blog-content h3 { font-size:18px; margin-bottom:8px; }
  .blog-content p { font-size:12.5px; line-height:1.5; margin-bottom:14px; }
  .blog-dots { gap:12px; margin-top:10px; }
  .blog-dot { width:10px; height:10px; }
  .quick-help-section { padding-bottom:28px; }
  .quick-help-container { width:min(100%, calc(100vw - 24px)); }
  .quick-help-item { min-height:62px; padding:12px 16px; gap:12px; }
  .quick-help-icon { width:38px; height:38px; flex-basis:38px; font-size:20px; }
  .quick-help-copy span { font-size:12px; }
  .quick-help-copy strong { font-size:16px; }
  .quick-help-whatsapp .quick-help-copy strong,
  .quick-help-download .quick-help-copy strong { font-size:14px; }
  .quick-help-whatsapp .quick-help-copy span,
  .quick-help-download .quick-help-copy span { font-size:11.5px; }
  .related-grid { grid-template-columns:1fr !important; }
  .footer { padding-top:24px; }
  .footer-container { width:min(100%, calc(100vw - 24px)); }
  .footer-main { grid-template-columns:1fr; gap:22px; text-align:left; }
  .footer-newsletter-col { grid-column:auto; }
  .footer-logo-main { font-size:54px; }
  .footer-desc, .footer-newsletter, .footer-newsletter-col p { max-width:none; }
  .footer-social { gap:10px; }
  .footer-col h3 { margin-bottom:10px; }
  .footer-bottom { grid-template-columns:1fr; justify-items:center; text-align:center; gap:10px; padding:14px 0 18px; }
  .footer-payments { flex-wrap:wrap; gap:8px; }
  .footer-developed { text-align:center; }
  .f2 { grid-template-columns:1fr; }
  .hero-btns .btn { flex:1; justify-content:center; }
  .adm-stats,
  .adm-dash-charts { grid-template-columns:1fr; }
  .modal-bg { padding:10px; }
  .modal-box { border-radius:14px; }
  .modal-hdr { padding:11px 13px; }
  .modal-ttl { font-size:16px; }
  .modal-bdy { padding:13px; }
  .pc-carousel-card { flex:0 0 calc(100% - 0px); }
  .pc-prev { left:-14px; } .pc-next { right:-14px; }
  /* Banner tiny */
  .banner-slider {
    height:clamp(168px, 58vw, 238px);
    margin-top:var(--site-hh, 144px);
    width:100%;
    max-width:none;
    margin-left:0;
    margin-right:0;
  }
  .bs-prev,.bs-next { display:none; }
  .bs-content {
    width:auto;
    max-width:72%;
    margin-left:10px;
    padding:9px 10px;
    border-radius:0;
  }
  .bs-title { font-size:clamp(15px,4.8vw,22px); }
  .bs-sub, .bs-eyebrow { display:none; }
  /* Category page grid */
  .cat-page-grid { grid-template-columns:1fr !important; }
  .shop-cat-head { align-items:flex-start; }
  .shop-cat-title { font-size:22px; }
  .shop-cat-all { min-height:32px; padding:0 14px; font-size:10px; }
  .shop-cat-track { grid-auto-columns:minmax(210px, 76vw); }
  .shop-cat-link { min-height:236px; }
  .shop-cat-img { min-height:170px; }
  .shop-cat-img img { min-height:170px; height:100%; }
  .bs-actions { width:100%; }
  .bs-actions .bs-cta-primary, .bs-actions .bs-cta-wa { flex:1 1 auto; justify-content:center; padding:8px 9px; }
}

@keyframes floatOrb {
  0%,100% { transform:translateY(0) translateX(0); }
  50%     { transform:translateY(10px) translateX(-8px); }
}
@keyframes ctaShine {
  0%, 75% { transform:translateX(-120%); }
  100%    { transform:translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity:1; transform:none; transition:none; }
  .bs-slide.active img,
  .bs-overlay::after { animation:none !important; }
}

html[data-motion='minimal'] [data-reveal] {
  opacity:1 !important;
  transform:none !important;
  transition:none !important;
}
html[data-motion='minimal'] .bs-slide.active img,
html[data-motion='minimal'] .bs-overlay::after { animation:none !important; }
html[data-motion='minimal'] .pd-main:hover img { transform:none !important; }

/* Product detail premium ecommerce refresh */
.pd-page-wrap {
  margin-top:calc(var(--site-hh, var(--hh)) + var(--post-header-gap,50px));
  padding:24px 0 120px;
  background:
    radial-gradient(760px 240px at 8% 4%, rgba(255,138,31,.08), transparent 62%),
    radial-gradient(680px 260px at 94% 16%, rgba(109,40,217,.08), transparent 60%),
    #fff;
}
.pd-grid { gap:clamp(28px, 4vw, 58px); }
.pd-gallery {
  top:calc(var(--site-hh, var(--hh)) + 18px);
  padding:14px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 46px rgba(15,23,42,.08);
}
.pd-main {
  border-radius:20px;
  border:1px solid rgba(15,23,42,.08);
  background:linear-gradient(135deg,#fff7ed,#f8fafc);
  box-shadow:none;
  margin-bottom:14px;
}
.pd-thumbs-shell {
  display:grid;
  grid-template-columns:38px minmax(0,1fr) 38px;
  gap:10px;
  align-items:center;
}
.pd-gallery-nav {
  width:38px;
  height:38px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:var(--purple);
  border:1px solid rgba(109,40,217,.18);
  box-shadow:0 8px 18px rgba(15,23,42,.08);
  font-size:28px;
  line-height:1;
  transition:var(--tr);
}
.pd-gallery-nav:hover { background:var(--purple); color:#fff; transform:translateY(-1px); }
.pd-thumbs {
  gap:10px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:2px;
}
.pd-thumbs::-webkit-scrollbar { display:none; }
.pd-th {
  flex:0 0 calc((100% - 30px) / 4);
  border-radius:13px;
  border:2px solid transparent;
  background:#fff;
  box-shadow:0 8px 18px rgba(15,23,42,.06);
}
.pd-th:hover { border-color:rgba(255,138,31,.55); }
.pd-th.act { border-color:var(--orange); box-shadow:0 0 0 3px rgba(255,138,31,.16); }
.pd-info-col {
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  padding:24px;
  background:rgba(255,255,255,.96);
  box-shadow:0 18px 46px rgba(15,23,42,.08);
}
.pd-cat {
  display:inline-flex;
  min-height:28px;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  background:#f3f0ff;
  color:var(--purple);
  margin-bottom:12px;
}
.pd-name { font-family:'Poppins', var(--fd); font-weight:700; color:#071225; margin-bottom:10px; }
.pd-rating-row {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 12px;
  color:#64748b;
  font-size:13px;
  font-weight:600;
}
.pd-rating-row > span:not(.pd-stars) + span::before {
  content:'•';
  margin-right:8px;
  color:#cbd5e1;
}
.pd-stars { color:#ff8a1f; letter-spacing:.08em; font-size:14px; }
.pd-rating-row strong { color:#071225; font-weight:700; }
.pd-code { border-color:rgba(109,40,217,.18); background:#f3f0ff; color:var(--purple); }
.pd-desc { margin-bottom:16px; }
.pd-trust-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:9px;
  margin:0 0 18px;
}
.pd-trust-grid span {
  min-height:42px;
  display:flex;
  align-items:center;
  gap:9px;
  padding:9px 11px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:12px;
  background:linear-gradient(180deg,#fff,#fbfaf7);
  color:#172033;
  font-size:12px;
  font-weight:700;
}
.pd-trust-grid i { color:var(--orange); font-size:14px; }
.cfg {
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  background:linear-gradient(180deg,#fff,#fffaf6);
  padding:18px;
}
.cfg-title { color:#4b148c; font-weight:700; letter-spacing:.09em; }
.qual-opt {
  border-radius:14px;
  border-color:rgba(15,23,42,.10);
  box-shadow:0 7px 18px rgba(15,23,42,.04);
}
.qual-opt:hover { border-color:rgba(255,138,31,.55); }
.qual-opt.sel {
  border-color:var(--orange);
  background:#fff7ed;
  box-shadow:0 0 0 3px rgba(255,138,31,.14);
}
.qual-opt.sel .qual-radio { border-color:var(--orange); background:var(--orange); }
.pd-design-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:14px; }
.design-opt {
  position:relative;
  min-height:154px;
  border-radius:16px;
  border-color:rgba(15,23,42,.10);
  padding:18px 16px;
  text-align:left;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
}
.design-opt:hover { border-color:rgba(109,40,217,.28); transform:translateY(-1px); }
.design-opt.sel {
  border-color:var(--purple);
  background:linear-gradient(180deg,#f7f2ff,#fff);
  box-shadow:0 0 0 3px rgba(109,40,217,.12);
}
.design-opt.sel::after {
  content:'✓';
  position:absolute;
  top:12px;
  right:12px;
  width:24px;
  height:24px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--purple);
  color:#fff;
  font-size:13px;
  font-weight:700;
}
.design-opt-icon { font-size:28px; margin-bottom:10px; }
.design-opt-title { font-size:14px; font-weight:700; color:#071225; margin-bottom:5px; }
.design-opt-copy { font-size:12px; color:#64748b; line-height:1.45; }
.design-opt-note { font-size:12px; color:#64748b; margin-top:10px; font-weight:700; }
.design-opt-note.is-free { color:var(--green); }
.design-opt-note.is-paid { color:var(--orange); }
.upload-zone {
  border-radius:16px;
  background:#fff;
  border-color:rgba(109,40,217,.22);
}
.upload-zone:hover,.upload-zone.drag { border-color:var(--purple); background:#f7f2ff; }
.price-panel {
  border-radius:18px;
  background:
    radial-gradient(220px 100px at 92% 12%, rgba(255,138,31,.35), transparent 68%),
    linear-gradient(135deg,#4b148c,#431174);
  box-shadow:0 14px 30px rgba(75,20,140,.18);
}
.pd-checkout-note {
  display:flex;
  flex-direction:column;
  gap:4px;
  color:#475569;
  font-size:12px;
  line-height:1.5;
}
.pd-checkout-note small { color:#16a34a; font-weight:700; }
@media (max-width:900px) {
  .pd-page-wrap { padding-top:16px; }
  .pd-gallery { position:static; }
  .pd-info-col { padding:18px; border-radius:20px; }
}
@media (max-width:560px) {
  .pd-gallery { padding:10px; border-radius:18px; }
  .pd-thumbs-shell { grid-template-columns:32px minmax(0,1fr) 32px; gap:7px; }
  .pd-gallery-nav { width:32px; height:32px; font-size:22px; }
  .pd-th { flex-basis:calc((100% - 14px) / 3); }
  .pd-trust-grid,.pd-design-grid { grid-template-columns:1fr; }
  .design-opt { min-height:auto; }
}

/* Category page */
.cat-page-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
@media (max-width:1100px) {
  .cat-page-grid { grid-template-columns:repeat(3,1fr); }
}
/* ═══════════════════════════════════════════════════════════════
   CHATBOT WIDGET
═══════════════════════════════════════════════════════════════ */
.chatbot-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9200;
}
.chatbot-toggle {
  border: none;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  box-shadow: var(--sh-lg);
}
.chatbot-panel {
  width: min(360px, calc(100vw - 26px));
  height: 470px;
  margin-top: 10px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--sh-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chatbot-widget.open .chatbot-panel {
  display: flex;
}
.chatbot-panel[hidden] { display: none !important; }
.chatbot-head {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: var(--blue-bg);
}
.chatbot-head button { font-size: 16px; color: var(--text2); }
.chatbot-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background: #f8fafc;
}
.chatbot-msg {
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.chatbot-msg.bot { background: #fff; border: 1px solid var(--border); color: var(--text); }
.chatbot-msg.user { background: var(--blue); color: #fff; margin-left: 35px; }
.chatbot-form {
  padding: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.chatbot-form input {
  flex: 1;
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
}
.chatbot-human {
  padding: 8px 12px 12px;
  font-size: 12px;
  color: var(--blue);
  display: inline-block;
}
@media (max-width: 640px) {
  .chatbot-widget { right: 10px; bottom: 10px; }
  .chatbot-panel { height: 62vh; }
}

/* All categories listing */
.all-cat-grid {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}
.all-cat-card {
  display:flex;
  min-height:350px;
  flex-direction:column;
  overflow:hidden;
  border:1px solid #e8eaee;
  border-radius:20px;
  background:linear-gradient(180deg,#fff 0%,#fbfbfc 100%);
  box-shadow:0 12px 28px rgba(15,23,42,.09);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.all-cat-card:hover {
  transform:translateY(-4px);
  border-color:rgba(234,88,12,.35);
  box-shadow:0 18px 36px rgba(15,23,42,.13);
}
.all-cat-img {
  min-height:230px;
  display:flex;
  align-items:stretch;
  justify-content:center;
  padding:0;
  overflow:hidden;
  background:radial-gradient(140px 100px at 70% 15%, rgba(109,40,217,.08), transparent 62%), linear-gradient(180deg,#fff 0%,#f8f9fb 100%);
}
.all-cat-img img {
  width:100%;
  height:100%;
  min-height:230px;
  object-fit:cover;
  object-position:center;
  filter:drop-shadow(0 10px 14px rgba(15,23,42,.12));
  transition:transform .28s ease;
}
.all-cat-card:hover .all-cat-img img { transform:scale(1.04); }
.all-cat-body {
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px 16px;
  border-top:1px solid rgba(15,23,42,.06);
}
.all-cat-icon {
  width:32px;
  height:32px;
  flex:0 0 32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  color:#fff;
  background:linear-gradient(135deg,var(--orange),#ff8a1f);
  box-shadow:0 8px 16px rgba(234,88,12,.20);
  font-size:15px;
}
.all-cat-body h2 {
  margin:0 0 3px;
  color:var(--ink);
  font-size:15px;
  line-height:1.25;
  font-weight:700;
}
.all-cat-body p {
  margin:0;
  color:var(--text2);
  font-size:12px;
  line-height:1.35;
}
.all-cat-arrow {
  margin-left:auto;
  color:var(--orange);
  font-size:22px;
  font-weight:700;
  line-height:1;
}

@media (max-width:1100px) {
  .all-cat-grid { grid-template-columns:repeat(3, minmax(0, 1fr)); gap:18px; }
}
@media (max-width:768px) {
  .all-cat-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); gap:16px; }
  .all-cat-card { min-height:280px; border-radius:18px; }
  .all-cat-img { min-height:185px; padding:0; }
  .all-cat-img img { min-height:185px; height:100%; }
  .all-cat-body { padding:10px 11px 12px; gap:8px; }
  .all-cat-icon { width:26px; height:26px; flex-basis:26px; font-size:12px; border-radius:8px; }
  .all-cat-body h2 { font-size:12px; }
  .all-cat-body p { font-size:10px; }
  .all-cat-arrow { font-size:18px; }
}


/* Public blogs listing */
.all-blogs-grid {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
}
.all-blogs-grid .blog-content h2 {
  color:#111827;
  font-size:20px;
  line-height:1.22;
  letter-spacing:-.035em;
  font-weight:700;
  margin:0 0 10px;
}
@media (max-width:1100px) {
  .all-blogs-grid { grid-template-columns:repeat(3, minmax(0, 1fr)); gap:18px; }
}
@media (max-width:768px) {
  .all-blogs-grid { grid-template-columns:1fr; gap:16px; }
}

/* Home page typography readability tuning: soften heavy weights and loosen tight tracking. */
.bs-title,
.shop-cat-title,
.why-print-heading,
.best-deals-heading,
.how-works-title,
.customer-say-title,
.blog-title {
  font-weight:700;
  letter-spacing:-.012em;
}
.bs-eyebrow,
.bs-cta-primary,
.bs-cta-wa,
.shop-cat-all,
.deal-card-band,
.deal-cta,
.deal-promo-cta,
.blog-view-all,
.blog-badge,
.blog-read-more,
.quick-help-copy strong,
.footer-col h3,
.footer-newsletter button {
  font-weight:700;
  letter-spacing:.005em;
}
.shop-cat-name,
.why-print-copy h3,
.deal-copy strong,
.deal-promo-copy h3,
.how-copy span,
.how-copy h3,
.customer-profile h3,
.blog-content h3,
.all-blogs-grid .blog-content h2,
.quick-help-copy span,
.footer-logo-main,
.footer-logo-sub {
  font-weight:700;
  letter-spacing:0;
}
.blog-content h3,
.all-blogs-grid .blog-content h2,
.deal-promo-copy h3,
.deal-copy strong,
.quick-help-copy strong {
  letter-spacing:-.005em;
}
.bs-sub,
.deal-copy span,
.deal-promo-copy p,
.how-copy p,
.customer-text,
.blog-content p,
.footer-desc,
.footer-col a,
.footer-col p,
.footer-contact-item,
.footer-copy,
.footer-developed {
  font-weight:400;
  letter-spacing:.002em;
}

/* How It Works heading placement + 3-color home brand consistency. */
.how-works-title {
  position:static;
  transform:none;
  text-align:center;
  margin:0 0 18px;
  color:#071225;
}
.how-works-title span { color:var(--orange); }
.how-works-panel { padding:26px 30px; }
.how-works-track { padding-top:0; }
.why-print-green,
.how-icon-green,
.quick-help-whatsapp {
  background:linear-gradient(135deg,var(--green),#15803d);
}
.deal-green .deal-card-band,
.blog-badge-green {
  background:linear-gradient(135deg,var(--green),#15803d);
}
.why-print-orange,
.how-icon-orange,
.deal-orange .deal-card-band,
.blog-badge-orange,
.quick-help-download {
  background:linear-gradient(135deg,var(--orange),#ff7a18);
}
.why-print-purple,
.deal-purple .deal-card-band,
.blog-badge,
.deal-promo-card,
.footer {
  background:linear-gradient(135deg,var(--purple),#43178d);
}
.deal-promo-card {
  background:
    radial-gradient(220px 130px at 78% 72%, rgba(255,138,31,.34), transparent 68%),
    linear-gradient(135deg,var(--purple) 0%,#571a9f 58%,#43178d 100%);
}
.why-print-heading span,
.best-deals-heading span,
.shop-cat-title span,
.customer-say-title span,
.blog-title span,
.deal-promo-copy h3 span,
.how-works-title span {
  color:var(--orange);
}
.how-copy span,
.blog-meta i,
.blog-read-more i,
.all-cat-arrow {
  color:var(--orange);
}
.how-step:nth-of-type(3) .how-copy span { color:#fff; }
.how-step:nth-of-type(1) .how-copy span,
.how-step:nth-of-type(4) .how-copy span { color:#fff; }
.how-icon::after { background:var(--green); }
.how-icon-orange::after { background:var(--purple); }
.how-icon-green::after { background:var(--orange); }
.quick-help-call .quick-help-icon,
.how-icon-white {
  color:var(--purple);
}
.shop-cat-card:nth-child(3n+1) .shop-cat-icon,
.all-cat-icon,
.blog-badge {
  background:linear-gradient(135deg,var(--purple),#43178d);
}
.shop-cat-card:nth-child(3n+2) .shop-cat-icon {
  background:linear-gradient(135deg,var(--orange),#ff7a18);
}
.shop-cat-card:nth-child(3n+3) .shop-cat-icon {
  background:linear-gradient(135deg,var(--green),#15803d);
}
@media (max-width:900px) {
  .how-works-panel { padding:20px 18px; }
  .how-works-title { margin-bottom:14px; }
}

/* Footer breathing room */
.footer {
  padding:36px 0 0;
}
.footer-container {
  padding:0 clamp(18px, 2.4vw, 34px);
}
.footer-main {
  gap:42px;
  padding:8px 0 30px;
}
.footer-bottom {
  min-height:58px;
  padding:12px 0 14px;
}
@media (max-width:900px) {
  .footer-container { padding:0 14px; }
  .footer-main { gap:26px; padding:4px 0 28px; }
  .footer-bottom { padding:16px 0 22px; }
}
@media (max-width:480px) {
  .footer { padding-top:32px; }
  .footer-container { width:min(100%, calc(100vw - 20px)); padding:0 12px; }
}


/* Home page section rhythm: keep vertical spacing consistent between sections. */
:root {
  --home-header-gap:0px;
  --home-section-gap:var(--site-section-gap);
}
body:has(#siteHeader) .banner-slider {
  margin-top:var(--site-hh, 126px);
}
.banner-slider ~ .shop-cat-section,
.banner-slider ~ .why-print-section,
.banner-slider ~ .best-deals-section,
.banner-slider ~ .how-works-section,
.banner-slider ~ .customer-say-section,
.banner-slider ~ .blog-section,
.banner-slider ~ .quick-help-section {
  padding-top:var(--home-section-gap);
  padding-bottom:var(--home-section-gap);
}
.banner-slider ~ .footer {
  padding-top:var(--home-section-gap);
}
/* Public page rhythm: keep section gaps consistent with the Home banner → category gap. */
.shop-cat-section,
.why-print-section,
.best-deals-section,
.how-works-section,
.customer-say-section,
.blog-section,
.quick-help-section,
.blog-detail-body-section,
.info-section,
.contact-main-section,
.contact-benefits-section,
.contact-location-section,
.about-story-section,
.about-choose-section,
.about-process-section,
.about-testimonials-section,
.register-main-section,
.pd-tabs-section,
.pd-design-section,
.ym-section {
  padding-top:var(--site-section-gap);
  padding-bottom:var(--site-section-gap);
}
.contact-faq-section,
.info-cta-section,
.register-trust-section {
  padding-top:var(--site-section-gap);
  padding-bottom:calc(var(--site-section-gap) + 20px);
}
.all-blogs-page,
.blog-page,
.blog-detail-page,
.contact-showcase-page,
.about-showcase-page,
.register-page,
.auth-page,
.info-page,
.info-page-simple {
  font-family:var(--fn);
}
.all-blogs-page :is(h1,h2,h3,h4),
.blog-page :is(h1,h2,h3,h4),
.blog-detail-page :is(h1,h2,h3,h4),
.contact-showcase-page :is(h1,h2,h3,h4),
.about-showcase-page :is(h1,h2,h3,h4),
.register-page :is(h1,h2,h3,h4),
.auth-page :is(h1,h2,h3,h4),
.info-page :is(h1,h2,h3,h4),
.info-page-simple :is(h1,h2,h3,h4) {
  font-family:var(--fd);
}
@media (max-width:768px) {
  :root {
    --home-header-gap:0px;
    --home-section-gap:var(--site-section-gap-mobile);
    --site-section-gap:var(--site-section-gap-mobile);
  }
  body:has(#siteHeader) .banner-slider {
    margin-top:var(--site-hh, 129px);
  }
}
@media (max-width:480px) {
  :root {
    --home-header-gap:0px;
    --home-section-gap:var(--site-section-gap-mobile);
  }
  body:has(#siteHeader) .banner-slider {
    margin-top:var(--site-hh, 144px);
  }
}

/* Testimonials auto-slider without arrow controls + simplified footer bottom */
.customer-say-shell { display:block; }
.customer-say-track {
  display:flex;
  gap:24px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  -ms-overflow-style:none;
  padding:0 2px 4px;
}
.customer-say-track::-webkit-scrollbar { display:none; width:0; height:0; }
.customer-card {
  flex:0 0 calc((100% - 24px) / 2);
  scroll-snap-align:start;
}
.customer-nav,
.footer-payments { display:none !important; }
.footer-bottom { grid-template-columns:1fr 1fr; }
@media (max-width:900px) {
  .customer-card { flex-basis:min(82vw, 360px); }
}
@media (max-width:480px) {
  .customer-card { flex-basis:calc(100vw - 88px); }
  .footer-bottom { grid-template-columns:1fr; }
}

/* All Categories hero banner */
.all-cat-page {
  margin-top:var(--site-hh, var(--hh));
  padding:0 0 34px;
  background:#fff;
  min-height:calc(100vh - var(--site-hh, var(--hh)));
}
.all-cat-hero-banner {
  min-height:300px;
  display:grid;
  grid-template-columns:minmax(320px, 42%) minmax(0, 58%);
  align-items:center;
  overflow:hidden;
  padding-inline:max(calc(var(--page-gutter) / 2), calc((100vw - var(--page-max)) / 2));
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 39%, rgba(248,250,252,.8) 68%, #f8fafc 100%);
  border-bottom:1px solid rgba(15,23,42,.05);
}
.all-cat-hero-copy {
  position:relative;
  z-index:2;
  padding:40px 0 42px;
}
.all-cat-crumb {
  display:flex;
  align-items:center;
  gap:9px;
  margin-bottom:34px;
  color:#071225;
  font-size:12px;
  line-height:1;
  font-weight:500;
}
.all-cat-crumb a { color:#071225; }
.all-cat-crumb span { color:#071225; }
.all-cat-hero-copy h1 {
  margin:0 0 12px;
  color:#071225;
  font-family:'Poppins', var(--fn);
  font-size:clamp(42px, 5.2vw, 70px);
  line-height:.98;
  letter-spacing:-.025em;
  font-weight:700;
}
.all-cat-hero-copy p {
  margin:0;
  color:#172033;
  font-size:clamp(15px, 1.35vw, 19px);
  line-height:1.55;
  font-weight:400;
}
.all-cat-hero-visual {
  height:100%;
  min-height:300px;
  display:flex;
  align-items:stretch;
  justify-content:flex-end;
  pointer-events:none;
}
.all-cat-hero-visual img {
  width:100%;
  height:100%;
  min-height:300px;
  object-fit:cover;
  object-position:center right;
  display:block;
}
.all-cat-content { padding-top:34px; }
@media (max-width:900px) {
  .all-cat-hero-banner {
    grid-template-columns:1fr;
    min-height:300px;
  }
  .all-cat-hero-copy {
    padding:24px 0 12px;
  }
  .all-cat-crumb { margin-bottom:22px; }
  .all-cat-hero-visual {
    min-height:180px;
    opacity:.96;
  }
  .all-cat-hero-visual img {
    min-height:180px;
    object-position:center;
  }
}
@media (max-width:480px) {
  .all-cat-hero-copy h1 { font-size:38px; }
  .all-cat-hero-copy p { font-size:14px; }
  .all-cat-hero-visual,
  .all-cat-hero-visual img { min-height:150px; }
}

/* All Categories product-style browse section */
.all-cat-shop {
  display:grid;
  grid-template-columns:244px minmax(0,1fr);
  gap:56px;
  align-items:start;
}
.all-cat-sidebar {
  display:flex;
  flex-direction:column;
  gap:14px;
}
.all-cat-side-box {
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,23,42,.035);
  overflow:hidden;
}
.all-cat-side-box h2 {
  margin:0;
  padding:18px 18px 10px;
  color:#071225;
  font-size:17px;
  line-height:1;
  font-weight:700;
}
.all-cat-side-list {
  display:flex;
  flex-direction:column;
  padding:0 0 12px;
}
.all-cat-side-list a {
  min-height:38px;
  display:flex;
  align-items:center;
  padding:0 18px;
  color:#111827;
  font-size:13px;
  font-weight:400;
  transition:background .18s ease, color .18s ease;
}
.all-cat-side-list a:hover { background:#faf7ff; color:var(--purple); }
.all-cat-side-list a.is-active {
  margin:0 0 4px;
  background:linear-gradient(135deg,var(--purple),#43178d);
  color:#fff;
  font-weight:600;
}
.all-cat-filter-box { padding-bottom:16px; }
.all-cat-filter-group {
  padding:8px 18px 10px;
}
.all-cat-filter-group h3 {
  margin:0 0 12px;
  color:#071225;
  font-size:14px;
  line-height:1;
  font-weight:700;
}
.all-cat-filter-group label {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  color:#273244;
  font-size:12px;
  line-height:1.1;
  font-weight:400;
}
.all-cat-filter-group input[type="checkbox"] {
  width:16px;
  height:16px;
  margin:0;
  accent-color:var(--purple);
}
.all-cat-price-line {
  position:relative;
  height:18px;
  margin:4px 2px 2px;
}
.all-cat-price-line::before {
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:8px;
  height:5px;
  border-radius:999px;
  background:#ede9fe;
}
.all-cat-price-line span {
  position:absolute;
  left:2px;
  right:2px;
  top:8px;
  height:5px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--purple),#43178d);
}
.all-cat-price-line span::before,
.all-cat-price-line span::after {
  content:'';
  position:absolute;
  top:50%;
  width:12px;
  height:12px;
  border-radius:50%;
  border:3px solid var(--purple);
  background:#fff;
  transform:translateY(-50%);
}
.all-cat-price-line span::before { left:-2px; }
.all-cat-price-line span::after { right:-2px; }
.all-cat-price-values {
  display:flex;
  justify-content:space-between;
  color:#111827;
  font-size:12px;
  font-weight:500;
}
.all-cat-apply-btn {
  width:calc(100% - 36px);
  min-height:39px;
  margin:7px 18px 0;
  border:0;
  border-radius:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:#fff;
  background:linear-gradient(135deg,var(--orange),#ff6700);
  font-family:'Poppins', var(--fn);
  font-size:11px;
  line-height:1;
  font-weight:700;
  text-transform:uppercase;
  cursor:pointer;
}
.all-cat-clear-btn {
  width:calc(100% - 36px);
  min-height:36px;
  margin:9px 18px 0;
  border:1px solid #e5e7eb;
  border-radius:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#4f1db7;
  background:#fff;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
}
.all-cat-toolbar {
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.all-cat-toolbar p {
  margin:0;
  color:#071225;
  font-size:15px;
  font-weight:400;
}
.all-cat-toolbar label {
  min-width:190px;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  border:1px solid #e5e7eb;
  border-radius:9px;
  background:#fff;
  color:#071225;
  font-size:13px;
  font-weight:700;
}
.all-cat-toolbar select {
  border:0;
  outline:0;
  background:transparent;
  color:#071225;
  font:inherit;
  font-weight:400;
}
.all-cat-results .all-cat-grid {
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:24px 22px;
}
.all-cat-results .all-cat-card {
  min-height:360px;
  border-radius:16px;
  box-shadow:0 12px 28px rgba(15,23,42,.07);
  border:1px solid #e5e7eb;
  background:#fff;
}
.all-cat-results .all-cat-card:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(15,23,42,.08);
}
.all-cat-results .all-cat-img {
  min-height:230px;
  padding:0;
  overflow:hidden;
  background:#f8f8f8;
}
.all-cat-results .all-cat-img img {
  width:100%;
  height:100%;
  min-height:230px;
  object-fit:cover;
  object-position:center;
  filter:drop-shadow(0 12px 13px rgba(15,23,42,.12));
}
.all-cat-results .all-cat-body {
  position:relative;
  display:block;
  padding:32px 20px 20px;
  border-top:0;
}
.all-cat-results .all-cat-icon {
  position:absolute;
  left:20px;
  top:-18px;
  width:38px;
  height:38px;
  border-radius:50%;
  box-shadow:0 10px 18px rgba(15,23,42,.13);
  font-size:16px;
}
.all-cat-card-purple .all-cat-icon { background:linear-gradient(135deg,var(--purple),#43178d); }
.all-cat-card-orange .all-cat-icon { background:linear-gradient(135deg,var(--orange),#ff6700); }
.all-cat-card-green .all-cat-icon { background:linear-gradient(135deg,var(--green),#15803d); }
.all-cat-results .all-cat-body h2 {
  margin:0 0 12px;
  color:#071225;
  font-size:17px;
  line-height:1.15;
  font-weight:700;
}
.all-cat-results .all-cat-body p {
  min-height:52px;
  margin:0 0 18px;
  color:#303949;
  font-size:12px;
  line-height:1.55;
  font-weight:400;
}
.all-cat-results .all-cat-body strong {
  display:block;
  color:#071225;
  font-size:13px;
  line-height:1;
  font-weight:500;
}
.all-cat-results .all-cat-body {
  min-height:auto;
  padding:30px 18px 18px;
}
.all-cat-results .all-cat-body h2 {
  margin-bottom:7px;
}
.all-cat-results .all-cat-body p {
  min-height:0;
  margin-bottom:14px;
}
.all-cat-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  width:100%;
  min-height:38px;
  padding:0 13px;
  border-radius:999px;
  background:#fff7ed;
  color:var(--orange);
  font-size:12px;
  font-weight:700;
  line-height:1;
  border:1px solid rgba(234,88,12,.18);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.all-cat-card:hover .all-cat-cta {
  background:var(--orange);
  color:#fff;
  transform:translateY(-1px);
}
.all-cat-cta i {
  font-size:11px;
}

.all-cat-pagination {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin:34px 0 0;
}
.all-cat-pagination span,
.all-cat-pagination strong {
  min-width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #e5e7eb;
  border-radius:7px;
  background:#fff;
  color:#071225;
  font-size:13px;
  font-weight:500;
}
.all-cat-pagination strong {
  border-color:transparent;
  background:linear-gradient(135deg,var(--purple),#43178d);
  color:#fff;
  font-weight:700;
}
.all-cat-pagination .is-muted { color:#9ca3af; background:#f8fafc; }
.all-cat-usp {
  margin-top:38px;
}
.all-cat-usp .why-print-panel {
  width:100%;
}
.all-cat-benefits {
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:0;
  align-items:center;
  margin-top:38px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 30px rgba(15,23,42,.08);
  overflow:hidden;
}
.all-cat-benefits > div {
  min-height:86px;
  display:grid;
  grid-template-columns:46px 1fr;
  gap:12px;
  align-items:center;
  padding:16px 18px;
}
.all-cat-benefits > div + div { border-left:1px solid #eef0f4; }
.all-cat-benefit-icon {
  grid-row:span 2;
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:18px;
}
.all-cat-benefit-icon.is-purple { background:linear-gradient(135deg,var(--purple),#43178d); }
.all-cat-benefit-icon.is-orange { background:linear-gradient(135deg,var(--orange),#ff6700); }
.all-cat-benefit-icon.is-green { background:linear-gradient(135deg,var(--green),#15803d); }
.all-cat-benefits strong {
  align-self:end;
  color:#071225;
  font-size:12px;
  line-height:1.2;
  font-weight:700;
}
.all-cat-benefits p {
  margin:0;
  color:#4b5563;
  font-size:10px;
  line-height:1.35;
  font-weight:400;
}
@media (max-width:1180px) {
  .all-cat-shop { grid-template-columns:220px minmax(0,1fr); gap:30px; }
  .all-cat-results .all-cat-grid { grid-template-columns:repeat(3, minmax(0,1fr)); }
  .all-cat-benefits { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .all-cat-benefits > div + div { border-left:0; border-top:1px solid #eef0f4; }
}
@media (max-width:820px) {
  .all-cat-shop { grid-template-columns:1fr; gap:22px; }
  .all-cat-side-list { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); padding:0 10px 12px; gap:6px; }
  .all-cat-side-list a { border-radius:8px; padding:0 10px; }
  .all-cat-toolbar { align-items:flex-start; flex-direction:column; }
  .all-cat-toolbar label { justify-content:space-between; width:100%; }
  .all-cat-results .all-cat-grid { grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; }
  .all-cat-results .all-cat-card { min-height:330px; }
  .all-cat-results .all-cat-img { min-height:210px; }
  .all-cat-results .all-cat-img img { min-height:210px; }
  .all-cat-benefits { grid-template-columns:1fr; }
}
@media (max-width:520px) {
  .all-cat-side-list { grid-template-columns:1fr; }
  .all-cat-results .all-cat-grid { grid-template-columns:1fr; }
  .all-cat-results .all-cat-img { min-height:220px; }
  .all-cat-results .all-cat-img img { min-height:220px; }
  .all-cat-pagination { gap:8px; }
}

/* All Categories responsive filter panel refinement */
.all-cat-shop {
  grid-template-columns:284px minmax(0,1fr);
  gap:46px;
}
.all-cat-filter-panel {
  min-width:0;
}
.all-cat-filter-panel > summary {
  display:none;
}
@media (max-width:1180px) {
  .all-cat-shop { grid-template-columns:260px minmax(0,1fr); gap:28px; }
}
@media (max-width:820px) {
  .all-cat-shop { grid-template-columns:1fr; gap:20px; }
  .all-cat-filter-panel {
    border:1px solid #e5e7eb;
    border-radius:14px;
    background:#fff;
    box-shadow:0 8px 22px rgba(15,23,42,.04);
    overflow:hidden;
  }
  .all-cat-filter-panel > summary {
    min-height:52px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:0 16px;
    color:#071225;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    list-style:none;
  }
  .all-cat-filter-panel > summary::-webkit-details-marker { display:none; }
  .all-cat-filter-panel > summary i {
    color:var(--purple);
    transition:transform .2s ease;
  }
  .all-cat-filter-panel[open] > summary i { transform:rotate(180deg); }
  .all-cat-filter-panel .all-cat-sidebar {
    padding:0 12px 14px;
  }
  .all-cat-filter-panel .all-cat-side-box {
    box-shadow:none;
  }
}
@media (max-width:520px) {
  .all-cat-filter-panel > summary { min-height:50px; }
  .all-cat-filter-panel .all-cat-sidebar { padding:0 10px 12px; }
}

/* Mobile All Categories title/filter polish */
@media (max-width:900px) {
  .all-cat-hero-copy { padding-top:56px; }
  .all-cat-hero-copy h1 { margin-top:18px; }
}
@media (max-width:820px) {
  .all-cat-filter-panel > summary {
    position:sticky;
    top:calc(var(--hh) + 8px);
    z-index:8;
    background:#fff;
    border-bottom:1px solid #f1f2f5;
  }
  .all-cat-filter-panel:not([open]) {
    box-shadow:0 8px 20px rgba(15,23,42,.05);
  }
  .all-cat-filter-panel[open] > summary {
    box-shadow:0 6px 14px rgba(15,23,42,.04);
  }
}
@media (max-width:480px) {
  .all-cat-hero-copy { padding-top:64px; }
  .all-cat-crumb { margin-bottom:22px; }
  .all-cat-hero-copy h1 { margin-top:22px; }
}

/* Category detail product listing: keep product grid alignment while reusing All Categories hero exactly */
.subcat-page .all-cat-shop {
  align-items:start;
}
.subcat-page .all-cat-results {
  min-width:0;
}
.cat-detail-content {
  padding-top:30px;
}
.cat-detail-browse {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:26px;
}
.cat-detail-browse > span {
  margin-right:4px;
  color:var(--text3);
  font-size:12px;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.cat-detail-results {
  width:100%;
}
.cat-detail-results .cat-product-grid {
  grid-template-columns:repeat(4, minmax(0,1fr));
}
.cat-detail-results .cat-product-card {
  position:relative;
  aspect-ratio:1 / 1;
  min-height:0;
  border-radius:18px;
}
.cat-detail-results .cat-product-card .all-cat-img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  min-height:0;
}
.cat-detail-results .cat-product-card .all-cat-img img {
  width:100%;
  height:100%;
  min-height:0;
  object-fit:cover;
}
.cat-detail-results .cat-product-card .all-cat-body {
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:52px 16px 16px;
  border-top:0;
  background:linear-gradient(180deg, rgba(7,18,37,0) 0%, rgba(7,18,37,.72) 48%, rgba(7,18,37,.92) 100%);
}
.cat-detail-results .cat-product-card .all-cat-body h2 {
  margin:0 0 8px;
  color:#fff;
  font-size:16px;
  line-height:1.2;
  text-shadow:0 1px 8px rgba(0,0,0,.28);
}
.cat-detail-results .cat-product-card .all-cat-body strong {
  color:#fff;
  font-weight:700;
  text-shadow:0 1px 8px rgba(0,0,0,.24);
}
.cat-detail-whatsapp {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin-top:44px;
  padding:28px 24px;
  border:1.5px solid var(--border);
  border-radius:16px;
  background:var(--white);
}
.cat-detail-whatsapp h2 {
  margin:0 0 5px;
  color:var(--ink);
  font-family:var(--fd);
  font-size:18px;
  font-weight:700;
}
.cat-detail-whatsapp p {
  margin:0;
  color:var(--text2);
  font-size:13px;
}
.cat-detail-whatsapp .btn {
  flex-shrink:0;
  padding:13px 24px;
  font-size:14px;
}
.cat-detail-empty {
  padding:80px 20px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  color:var(--text2);
  text-align:center;
}
.cat-detail-empty-icon {
  margin-bottom:14px;
  font-size:52px;
}
.cat-detail-empty-title {
  margin-bottom:8px;
  color:var(--ink);
  font-size:18px;
  font-weight:700;
}
.cat-detail-empty p {
  margin:0 0 24px;
  color:var(--text2);
  font-size:14px;
}
.cat-detail-empty-actions {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}
@media (max-width:1180px) {
  .cat-detail-results .cat-product-grid { grid-template-columns:repeat(3, minmax(0,1fr)); }
}
@media (max-width:820px) {
  .cat-detail-results .cat-product-grid { grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; }
  .cat-detail-results .cat-product-card { min-height:0; }
  .cat-detail-browse { margin-bottom:22px; }
}
@media (max-width:520px) {
  .cat-detail-results .cat-product-grid { grid-template-columns:1fr; }
  .cat-detail-results .cat-product-card .all-cat-img { min-height:0; }
  .cat-detail-results .cat-product-card .all-cat-img img { min-height:0; }
  .cat-detail-whatsapp { align-items:flex-start; padding:22px 18px; }
  .cat-detail-whatsapp .btn { width:100%; justify-content:center; }
}

/* Product detail layout to match provided reference */
.pd-page-wrap{background:#fff;padding-top:12px}
.pd-grid{grid-template-columns:minmax(320px,44%) minmax(0,56%);gap:24px}
.pd-gallery,.pd-info-col{box-shadow:none;border:1px solid #e6e8ee;border-radius:10px;background:#fff}
.pd-main{position:relative;border-radius:8px;background:#fafafa}
.pd-badge{position:absolute;top:12px;left:12px;background:#ff7a00;color:#fff;padding:4px 10px;border-radius:4px;font-size:12px;font-weight:700;z-index:2}
.pd-name{font-size:46px;line-height:1.08;margin-bottom:8px}
.pd-rating-row{margin-bottom:16px}
.pd-viewing-dot{color:#16a34a;font-weight:700}
.pd-price-strip{display:flex;align-items:center;gap:12px;margin-bottom:14px;flex-wrap:wrap}
.pd-price-now{color:#f97316;font-size:44px;font-weight:700;line-height:1}
.pd-price-label{font-size:18px;color:#1f2937;font-weight:600}
.pd-price-old{font-size:28px;color:#9ca3af;text-decoration:line-through;font-weight:700}
.pd-discount{background:#dcfce7;color:#15803d;padding:4px 10px;border-radius:6px;font-weight:700}
.cfg{border-radius:8px;padding:10px 12px;background:#fff}
.cfg-title{font-size:15px;letter-spacing:0;color:#1f2937;margin-bottom:8px}
.cfg-title-qty{background:#ff7a00;color:#fff;padding:5px 10px;border-radius:4px;display:inline-block}
.design-opt{min-height:auto;padding:14px;border-style:dashed}
.price-panel{background:#fff;border:1px solid #e6e8ee;color:#111827}
.pp-l,.pp-v,.pp-tl,.pp-tv{color:#111827!important}
.pd-checkout-note.pd-delivery-row{margin-top:4px;padding-top:8px;border-top:1px solid #eef0f4}
.pd-checkout-note.pd-delivery-row span,.pd-checkout-note.pd-delivery-row small{font-size:14px;font-weight:600;color:#334155}
.pd-th.act{border-color:#4f46e5;box-shadow:none}
.btn.btn-blue{background:#ff7a00;border-color:#ff7a00}
.btn.btn-green{background:#4f46e5;border-color:#4f46e5}
.btn.btn-outline{background:#22c55e;color:#fff;border-color:#22c55e}
@media (max-width:900px){.pd-grid{grid-template-columns:1fr}.pd-name{font-size:34px}.pd-price-now{font-size:34px}.pd-price-old{font-size:22px}}

/* You may also like section - match provided reference */
.ym-section{margin-top:50px}
.ym-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px}
.ym-title{margin:0;font-family:var(--fd);font-size:38px;font-weight:700;color:#111827;line-height:1.1}
.ym-title span{color:#f97316}
.ym-view-all{padding:8px 14px;border:1px solid #d1d5db;border-radius:999px;background:#f8fafc;color:#111827;text-decoration:none;font-size:12px;font-weight:700}
.ym-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}
.ym-card{border:1px solid #eceff3;border-radius:10px;background:#fff;overflow:hidden;display:flex;flex-direction:column}
.ym-img{display:block;aspect-ratio:1.5/1;background:#f8fafc}
.ym-img img{width:100%;height:100%;object-fit:cover}
.ym-body{padding:10px 10px 12px}
.ym-cat{display:flex;align-items:center;gap:6px;color:#1f2937;font-size:16px;font-weight:700;line-height:1.2;margin-bottom:8px}
.ym-cat i{font-size:14px;color:#7c3aed}
.ym-from{font-size:15px;color:#475569;margin-bottom:3px}
.ym-foot{display:flex;align-items:center;justify-content:space-between;gap:8px}
.ym-price{font-size:34px;line-height:1;color:#f97316;font-weight:700}
.ym-order{display:inline-flex;align-items:center;justify-content:center;height:30px;padding:0 12px;border-radius:6px;background:#ff7a00;color:#fff;text-decoration:none;font-size:11px;font-weight:700}
@media (max-width:1300px){.ym-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}
@media (max-width:1024px){.ym-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.ym-title{font-size:30px}.ym-price{font-size:34px}.ym-cat{font-size:15px}.ym-from{font-size:14px}}
@media (max-width:700px){.ym-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ym-title{font-size:24px}.ym-view-all{font-size:11px}}
@media (max-width:460px){.ym-grid{grid-template-columns:1fr}}


/* Mobile-first cleanup: sub-category page without filter sidebar */
.subcat-page .all-cat-results{width:100%}
.subcat-page .all-cat-toolbar{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.subcat-page .all-cat-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
@media (max-width:1200px){.subcat-page .all-cat-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}}
@media (max-width:820px){
  .subcat-page .all-cat-content{padding-top:20px}
  .subcat-page .all-cat-toolbar{align-items:flex-start}
  .subcat-page .all-cat-toolbar label{width:100%}
  .subcat-page .all-cat-toolbar select{width:100%;min-height:42px}
  .subcat-page .all-cat-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
}
@media (max-width:520px){
  .subcat-page .all-cat-grid{grid-template-columns:1fr}
}

/* Product detail strong mobile responsiveness */
@media (max-width:900px){
  .pd-info-col{padding:16px}
  .pd-price-strip{gap:8px}
  .pd-price-now{font-size:30px}
  .pd-price-label{font-size:14px}
  .pd-price-old{font-size:18px}
  .pd-discount{font-size:12px;padding:3px 8px}
  .pd-rating-row{font-size:12px}
  .pd-design-grid{grid-template-columns:1fr}
  .upload-zone{padding:14px}
}
@media (max-width:560px){
  .pd-page-wrap{padding-bottom:96px}
  .pd-main{margin-bottom:10px}
  .pd-name{font-size:28px;line-height:1.15}
  .cfg{padding:12px}
  .cfg-title{font-size:13px}
  .fi.fi-sel{min-height:42px;font-size:14px!important}
  .price-panel{padding:12px}
  .pp-tv{font-size:22px}
  .ym-title{font-size:22px}
  .ym-price{font-size:28px}
  .sticky-price{left:8px;right:8px;bottom:8px;border-radius:12px;padding:10px;gap:8px;flex-wrap:wrap}
  .sticky-price .btn{flex:1;min-width:120px;padding:10px 12px}
}


/* Responsive polish for key pages with footer now enabled */
@media (max-width:768px){
  .auth-page{padding:18px 12px 28px}
  .auth-card{width:100%;max-width:100%;padding:18px;border-radius:14px}
  .f2{grid-template-columns:1fr}
  .myord-hdr .container{padding-top:16px;padding-bottom:16px}
  .ord-card{padding:14px}
  .confirm-card{width:100%;max-width:520px;padding:16px;border-radius:14px}
}
@media (max-width:520px){
  .myord-hdr-t{font-size:24px}
  .ord-meta{font-size:11px}
  .ord-timeline{overflow-x:auto;padding-bottom:6px}
  .confirm-oid{font-size:13px}
}

/* Cart page redesign */
.cart-page{max-width:1240px!important}
.cart-hero h1{margin:0;font-size:58px;line-height:1.05;font-family:var(--fd)}
.cart-hero h1 span{font-size:38px;color:#ff7a00;margin-left:8px}
.cart-hero p{margin:8px 0 22px;color:#4b5563}
.cart-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:24px;align-items:start}
.cart-main .fsec,.cart-main>div{background:#fff;border:1px solid #e5e7eb!important;border-radius:14px}
.cart-side>div,.cart-summary-card{background:#fff;border:1px solid #e5e7eb!important;border-radius:14px;padding:16px;margin-bottom:14px}
.cart-summary-card div:last-child span:last-child{color:#4c1d95;font-size:34px;font-weight:700}
#totalsBox{padding:16px}
@media (max-width:980px){.cart-layout{grid-template-columns:1fr}.cart-hero h1{font-size:40px}.cart-hero h1 span{font-size:26px}}
@media (max-width:560px){.cart-hero h1{font-size:32px}.cart-hero h1 span{display:block;margin:4px 0 0;font-size:22px}}

/* Dedicated cart page */
.cartp-wrap{margin-top:calc(var(--site-hh, var(--hh)) + var(--post-header-gap,50px));padding:26px 0 70px;background:#f8fafc}
.cartp-page{max-width:1240px}
.cartp-head h1{margin:0;font-size:64px;line-height:1.02;font-family:var(--fd)}
.cartp-head h1 span{font-size:36px;color:#ff7a00;margin-left:8px}
.cartp-head p{margin:10px 0 22px;color:#4b5563}
.cartp-grid{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:24px}
.cartp-main,.cartp-card{background:#fff;border:1px solid #e5e7eb;border-radius:14px}
.cartp-table-head{display:grid;grid-template-columns:1.8fr .7fr .8fr .7fr;padding:16px;border-bottom:1px solid #e5e7eb;font-weight:700}
.cartp-row{display:grid;grid-template-columns:1.8fr .7fr .8fr .7fr 34px;gap:12px;align-items:center;padding:14px 16px;border-bottom:1px solid #eef2f7}
.cartp-prod{display:flex;gap:12px;align-items:center}.cartp-img{width:112px;height:84px;border:1px solid #eceff3;border-radius:10px;overflow:hidden;background:#f8fafc}.cartp-img img{width:100%;height:100%;object-fit:cover}
.cartp-prod h3{margin:0 0 6px;font-size:26px}.cartp-prod p{margin:0;color:#475569;font-size:18px}.cartp-prod small{color:#7c3aed;font-size:13px}
.cartp-price,.cartp-total{font-size:38px;color:#4c1d95;font-weight:700}.cartp-qty{display:flex;align-items:center;gap:10px}.cartp-qty button{width:34px;height:34px;border:1px solid #d1d5db;background:#fff;border-radius:8px}.cartp-qty span{font-weight:700}
.cartp-del{background:none;border:none;font-size:18px;color:#6b7280}
.cartp-actions{display:flex;justify-content:space-between;padding:16px}
.cartp-card{padding:16px;margin-bottom:14px}.cartp-card h2{margin:0 0 12px}.cartp-card .r,.cartp-card .rt{display:flex;justify-content:space-between;margin-bottom:10px}.cartp-card .rt{border-top:1px solid #e5e7eb;padding-top:10px;font-size:24px;font-weight:700}.cartp-card .rt strong{color:#4c1d95}.cartp-card .link{background:none;border:none;color:#4c1d95;font-weight:700}
@media (max-width:980px){.cartp-grid{grid-template-columns:1fr}.cartp-head h1{font-size:44px}.cartp-head h1 span{font-size:28px}.cartp-prod h3{font-size:20px}.cartp-price,.cartp-total{font-size:28px}}
@media (max-width:700px){.cartp-table-head{display:none}.cartp-row{grid-template-columns:1fr;position:relative;padding:12px}.cartp-del{position:absolute;right:8px;top:8px}.cartp-prod h3{font-size:18px}.cartp-prod p{font-size:14px}.cartp-img{width:92px;height:72px}.cartp-price,.cartp-total{font-size:22px}.cartp-actions{flex-direction:column;gap:10px}}

/* Mobile-friendly category filters + smaller price typography */
.all-cat-mobile-filter-select {
  display:none;
}
@media (max-width:820px) {
  .subcat-page .all-cat-filter-panel {
    border-radius:16px;
  }
  .subcat-page .all-cat-filter-panel > summary {
    min-height:46px;
    padding:0 14px;
    font-size:13px;
  }
  .subcat-page .all-cat-filter-panel .all-cat-sidebar {
    display:block;
    padding:10px 10px 12px;
  }
  .subcat-page .all-cat-side-box {
    border-radius:12px;
    margin-bottom:10px;
  }
  .subcat-page .all-cat-side-box h2 {
    padding:12px 12px 8px;
    font-size:14px;
  }
  .subcat-page .all-cat-side-categories .all-cat-side-list {
    display:flex;
    grid-template-columns:none;
    gap:8px;
    overflow-x:auto;
    padding:0 10px 12px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .subcat-page .all-cat-side-categories .all-cat-side-list::-webkit-scrollbar {
    display:none;
  }
  .subcat-page .all-cat-side-categories .all-cat-side-list a {
    flex:0 0 auto;
    min-height:34px;
    max-width:180px;
    padding:0 12px;
    border:1px solid #eceff3;
    border-radius:999px;
    font-size:12px;
    white-space:nowrap;
  }
  .subcat-page .all-cat-side-categories .all-cat-side-list a.is-active {
    margin:0;
    border-color:transparent;
  }
  .subcat-page .all-cat-filter-box {
    padding-bottom:12px;
  }
  .subcat-page .all-cat-filter-group {
    padding:8px 12px;
  }
  .subcat-page .all-cat-filter-group h3 {
    margin-bottom:7px;
    font-size:12px;
  }
  .subcat-page .all-cat-filter-group label {
    display:none;
  }
  .subcat-page .all-cat-mobile-filter-select {
    width:100%;
    min-height:40px;
    display:block;
    border:1px solid #e5e7eb;
    border-radius:10px;
    background:#fff;
    color:#111827;
    padding:0 12px;
    font-size:12px;
    font-weight:600;
    outline:0;
  }
  .subcat-page .all-cat-price-line {
    height:14px;
    margin-top:0;
  }
  .subcat-page .all-cat-price-values {
    font-size:11px;
  }
  .subcat-page .all-cat-apply-btn {
    width:calc(100% - 24px);
    min-height:38px;
    margin:6px 12px 0;
    border-radius:10px;
    font-size:10px;
  }
  .subcat-page .all-cat-toolbar p {
    font-size:12px;
  }
  .subcat-page .all-cat-toolbar label {
    min-height:38px;
    font-size:12px;
  }
  .subcat-page .all-cat-results .all-cat-body h2 {
    font-size:15px;
  }
  .subcat-page .all-cat-results .all-cat-body p {
    min-height:auto;
    font-size:11px;
  }
}
@media (max-width:520px) {
  .subcat-page .all-cat-content {
    padding-top:16px;
  }
  .subcat-page .all-cat-filter-panel > summary {
    min-height:44px;
    font-size:12px;
  }
  .subcat-page .all-cat-results .all-cat-card {
    min-height:315px;
  }
  .subcat-page .all-cat-results .all-cat-img {
    min-height:210px;
  }
  .subcat-page .all-cat-results .all-cat-img img {
    min-height:210px;
    height:100%;
  }
  .subcat-page .all-cat-results .cat-product-card {
    min-height:0;
  }
  .subcat-page .all-cat-results .cat-product-card .all-cat-img,
  .subcat-page .all-cat-results .cat-product-card .all-cat-img img {
    min-height:0;
  }
  .subcat-page .all-cat-results .all-cat-body {
    padding:28px 15px 16px;
  }
  .subcat-page .all-cat-results .all-cat-icon {
    width:34px;
    height:34px;
    top:-16px;
    left:15px;
    font-size:14px;
  }
  .subcat-page .all-cat-results .all-cat-body h2 {
    font-size:14px;
  }
  .subcat-page .all-cat-results .all-cat-body p {
    font-size:10.5px;
    line-height:1.45;
  }
}

/* Reduce visible price text sizes across public pages */
.pc-price,
.ci-price,
.ord-amt,
.all-cat-results .all-cat-body strong {
  font-size:clamp(12px, .95vw, 14px);
}
.pd-price-now {
  font-size:clamp(30px, 3.1vw, 38px);
}
.pd-price-old {
  font-size:clamp(18px, 2vw, 24px);
}
.pd-price-label,
.ym-from {
  font-size:clamp(12px, 1.1vw, 15px);
}
.pp-tv {
  font-size:clamp(20px, 2.1vw, 24px);
}
.sp-price {
  font-size:19px;
}
.ym-price {
  font-size:clamp(24px, 2.5vw, 30px);
}
.cartp-price,
.cartp-total {
  font-size:clamp(22px, 2.6vw, 30px);
}
.cartp-card .rt {
  font-size:20px;
}
@media (max-width:700px) {
  .pd-price-now { font-size:26px; }
  .pd-price-old { font-size:16px; }
  .pd-price-label { font-size:12px; }
  .pp-tv { font-size:19px; }
  .sp-price { font-size:17px; }
  .ym-price { font-size:22px; }
  .cartp-price,
  .cartp-total { font-size:19px; }
  .cartp-card .rt { font-size:18px; }
  .all-cat-results .all-cat-body strong { font-size:11px; }
}

/* Product detail page: strong mobile fit and typography polish */
.pd-page-wrap,
.pd-page-wrap * {
  box-sizing:border-box;
}
.pd-grid,
.pd-gallery,
.pd-info-col,
.cfg,
.price-panel,
.ym-card {
  min-width:0;
}
.pd-main img {
  max-width:100%;
}
@media (max-width:900px) {
  .pd-page-wrap {
    margin-top:calc(var(--site-hh, var(--hh)) + 10px);
    padding:12px 0 118px;
    overflow-x:hidden;
  }
  .pd-page-wrap .container {
    width:min(100%, calc(100vw - 24px));
  }
  .pd-grid {
    grid-template-columns:minmax(0,1fr);
    gap:16px;
  }
  .pd-gallery {
    position:static;
    width:100%;
    max-width:100%;
    padding:10px;
    border-radius:18px;
  }
  .pd-main {
    aspect-ratio:4/3;
    margin-bottom:10px;
    border-radius:14px;
  }
  .pd-main img {
    object-fit:contain;
    background:#f8fafc;
  }
  .pd-main:hover img {
    transform:none;
  }
  .pd-badge {
    top:9px;
    left:9px;
    padding:3px 8px;
    font-size:10px;
  }
  .pd-thumbs-shell {
    grid-template-columns:30px minmax(0,1fr) 30px;
    gap:6px;
  }
  .pd-gallery-nav {
    width:30px;
    height:30px;
    font-size:20px;
  }
  .pd-thumbs {
    gap:7px;
  }
  .pd-th {
    flex:0 0 58px;
    border-radius:10px;
  }
  .pd-info-col {
    width:100%;
    max-width:100%;
    padding:14px;
    border-radius:16px;
  }
  .breadcrumb {
    padding:8px 0 10px;
    font-size:11px;
    line-height:1.45;
  }
  .pd-name {
    margin-bottom:8px;
    font-size:clamp(24px, 7vw, 32px);
    line-height:1.12;
    letter-spacing:-.02em;
  }
  .pd-rating-row {
    gap:5px;
    margin-bottom:12px;
    font-size:11px;
    line-height:1.45;
  }
  .pd-price-strip {
    gap:7px;
    margin-bottom:12px;
  }
  .pd-price-now {
    font-size:26px;
  }
  .pd-price-label {
    font-size:12px;
  }
  .pd-price-old {
    font-size:16px;
  }
  .pd-discount {
    padding:3px 7px;
    border-radius:999px;
    font-size:10px;
  }
  .cfg {
    width:100%;
    max-width:100%;
    padding:12px;
    margin-bottom:10px;
    border-radius:12px;
    overflow:hidden;
  }
  .cfg-title {
    margin-bottom:8px;
    font-size:11px;
  }
  .pd-info-col .cfg ul {
    min-width:0;
  }
  .pd-info-col .cfg li {
    min-width:0;
    align-items:flex-start !important;
    flex-wrap:wrap;
    gap:5px !important;
    font-size:12px !important;
  }
  .pd-info-col .cfg li strong {
    white-space:normal !important;
    font-size:10px !important;
  }
  .pd-info-col .cfg li span:last-child {
    min-width:0;
    overflow-wrap:anywhere;
  }
  .qual-opt {
    gap:9px;
    padding:10px;
    border-radius:11px;
  }
  .qual-radio {
    width:16px;
    height:16px;
  }
  .pd-design-grid {
    grid-template-columns:minmax(0,1fr);
    gap:9px;
  }
  .design-opt {
    min-height:auto;
    padding:12px;
    border-radius:12px;
  }
  .design-opt-icon {
    margin-bottom:6px;
    font-size:22px;
  }
  .design-opt-title {
    font-size:13px;
  }
  .design-opt-copy,
  .design-opt-note {
    font-size:11px;
  }
  .design-opt.sel::after {
    top:10px;
    right:10px;
    width:20px;
    height:20px;
    font-size:11px;
  }
  .upload-zone {
    padding:14px 10px;
    border-radius:12px;
  }
  .upload-zone div:first-of-type {
    font-size:28px !important;
  }
  .upload-zone div:nth-of-type(2) {
    font-size:13px !important;
  }
  .upload-zone div:nth-of-type(3) {
    font-size:10px !important;
    line-height:1.45;
  }
  .fi.fi-sel,
  #pdQty {
    width:100%;
    max-width:100%;
    min-height:40px;
    font-size:12px !important;
  }
  .price-panel {
    padding:12px;
    border-radius:14px;
  }
  .pp-row {
    gap:10px;
    font-size:11px;
  }
  .pp-l,
  .pp-v,
  .pp-tl,
  .pp-tv {
    min-width:0;
  }
  .pp-v,
  .pp-tv {
    text-align:right;
    overflow-wrap:anywhere;
  }
  .pp-tl {
    font-size:12px;
  }
  .pp-tv {
    font-size:20px;
  }
  .pd-action-stack .btn {
    min-width:0;
    min-height:42px;
    font-size:12px !important;
    border-radius:10px !important;
  }
  .pd-action-row {
    display:grid !important;
    grid-template-columns:1fr;
    gap:8px !important;
  }
  .pd-action-row .btn {
    width:100%;
    justify-content:center;
  }
  .pd-checkout-note.pd-delivery-row,
  .pd-checkout-note.pd-delivery-row span,
  .pd-checkout-note.pd-delivery-row small {
    font-size:11px;
    line-height:1.45;
  }
  .ym-section {
    margin-top:28px;
  }
  .ym-head {
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
  .ym-title {
    font-size:22px;
  }
  .ym-grid {
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:10px;
  }
  .ym-body {
    padding:9px;
  }
  .ym-cat {
    gap:5px;
    font-size:12px;
  }
  .ym-from {
    font-size:10px;
  }
  .ym-foot {
    align-items:flex-start;
    flex-direction:column;
  }
  .ym-price {
    font-size:20px;
  }
  .ym-order {
    width:100%;
    height:28px;
    font-size:10px;
  }
  .sticky-price {
    left:8px;
    right:8px;
    bottom:8px;
    padding:9px;
    border:1px solid #e5e7eb;
    border-radius:14px;
    gap:8px;
  }
  .sp-sub {
    font-size:10px;
  }
  .sp-price {
    font-size:16px;
  }
  .sticky-price-actions {
    flex:1;
    justify-content:flex-end;
    gap:6px !important;
  }
  .sticky-price-actions .btn {
    min-height:36px;
    padding:8px 10px !important;
    border-radius:9px;
    font-size:11px;
    white-space:nowrap;
  }
}
@media (max-width:420px) {
  .pd-page-wrap .container {
    width:min(100%, calc(100vw - 18px));
  }
  .pd-info-col,
  .pd-gallery {
    padding:9px;
    border-radius:14px;
  }
  .pd-main {
    aspect-ratio:1/1;
  }
  .pd-name {
    font-size:22px;
  }
  .pd-rating-row {
    font-size:10.5px;
  }
  .pd-price-now {
    font-size:24px;
  }
  .cfg {
    padding:10px;
  }
  .qual-opt {
    align-items:flex-start;
  }
  .ym-grid {
    grid-template-columns:minmax(0,1fr);
  }
  .sticky-price {
    align-items:stretch;
    flex-direction:column;
  }
  .sticky-price-actions {
    width:100%;
    display:grid !important;
    grid-template-columns:1fr 1fr;
  }
}

/* Product detail reference layout refresh */
.pd-page-wrap {
  background:#fff;
  padding:12px 0 46px;
}
.pd-page-wrap .breadcrumb {
  margin-bottom:12px;
  color:#475569;
  font-size:13px;
}
.pd-grid {
  grid-template-columns:minmax(320px, 44%) minmax(0, 56%);
  gap:28px;
  align-items:start;
}
.pd-gallery {
  position:sticky;
  top:calc(var(--site-hh, var(--hh)) + 18px);
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.pd-main {
  position:relative;
  aspect-ratio:1/1;
  margin-bottom:14px;
  overflow:hidden;
  border:1px solid #e9edf3;
  border-radius:10px;
  background:#fbfbfc;
}
.pd-main img {
  width:100%;
  height:100%;
  object-fit:cover;
  padding:0;
  background:#fbfbfc;
}
.pd-main:hover img {
  transform:scale(1.025);
}
.pd-badge {
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 10px;
  border-radius:4px;
  background:#ff7900;
  color:#fff;
  font-size:12px;
  font-weight:700;
  box-shadow:0 8px 18px rgba(255,121,0,.2);
}
.pd-zoom-btn,
.pd-wishlist-btn {
  position:absolute;
  top:18px;
  right:18px;
  z-index:2;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border:1px solid #e5e7eb;
  border-radius:999px;
  background:#fff;
  color:#0f172a;
  cursor:pointer;
  font-size:18px;
  box-shadow:0 12px 24px rgba(15,23,42,.08);
  transition:transform .18s ease, border-color .18s ease;
}
.pd-zoom-btn:hover,
.pd-wishlist-btn:hover {
  transform:translateY(-1px);
  border-color:#cbd5e1;
}
.pd-wishlist-btn.is-active {
  border-color:#fecdd3;
  background:#fff1f2;
  color:#e11d48;
}
.pd-thumbs-shell {
  display:grid;
  grid-template-columns:26px minmax(0, 1fr) 26px;
  gap:12px;
  align-items:center;
  margin:0 0 18px;
}
.pd-gallery-nav {
  width:26px;
  height:42px;
  border:0;
  border-radius:8px;
  background:#fff;
  color:#1f2937;
  cursor:pointer;
  font-size:30px;
  line-height:1;
  box-shadow:none;
}
.pd-gallery-nav:hover {
  background:#f8fafc;
  color:#4f46e5;
  transform:none;
}
.pd-thumbs {
  display:flex;
  gap:16px;
  overflow-x:auto;
  scrollbar-width:none;
}
.pd-thumbs::-webkit-scrollbar { display:none; }
.pd-th {
  flex:0 0 calc((100% - 48px) / 4);
  aspect-ratio:1/1;
  min-width:82px;
  overflow:hidden;
  border:1px solid #edf0f4;
  border-radius:8px;
  background:#fff;
  cursor:pointer;
  transition:border-color .18s ease, box-shadow .18s ease;
}
.pd-th.act {
  border-color:#4f46e5;
  box-shadow:0 0 0 2px rgba(79,70,229,.14);
}
.pd-th img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.pd-gallery-actions {
  display:flex;
  justify-content:center;
  gap:12px;
}
.pd-gallery-actions button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:142px;
  height:42px;
  border:1px solid #e5e7eb;
  border-radius:6px;
  background:#fff;
  color:#111827;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 4px 10px rgba(15,23,42,.03);
}
.pd-info-col {
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.pd-name {
  margin:0 0 8px;
  color:#08111f;
  font-size:clamp(32px, 3.3vw, 46px);
  font-weight:700;
  line-height:1.06;
  letter-spacing:-.035em;
}
.pd-rating-row {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
  color:#111827;
  font-size:12px;
}
.pd-stars {
  color:#ff8a00;
  letter-spacing:.12em;
  font-size:14px;
}
.pd-viewing-dot {
  color:#16a34a;
  font-weight:700;
}
.pd-price-strip {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:18px;
}
.pd-price-now {
  color:#f97316;
  font-size:clamp(32px, 3vw, 42px);
  font-weight:700;
  line-height:1;
}
.pd-price-label {
  color:#1f2937;
  font-size:16px;
  font-weight:700;
}
.pd-price-old {
  color:#9ca3af;
  font-size:22px;
  font-weight:700;
  text-decoration:line-through;
}
.pd-discount {
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:4px 11px;
  border-radius:4px;
  background:#dcfce7;
  color:#15803d;
  font-size:12px;
  font-weight:700;
}
.pd-spec-table {
  margin-bottom:12px;
  border:1px solid #e7ebf0;
  border-radius:8px;
  overflow:hidden;
  background:#fff;
}
.pd-spec-row {
  display:grid;
  grid-template-columns:120px minmax(0, 1fr);
  gap:8px;
  align-items:center;
  min-height:34px;
  border-bottom:1px solid #e7ebf0;
}
.pd-spec-row:last-child { border-bottom:0; }
.pd-spec-label,
.pd-spec-value {
  height:100%;
  display:flex;
  align-items:center;
  padding:7px 11px;
  color:#111827;
  font-size:13px;
  line-height:1.35;
}
.pd-spec-label {
  border-right:1px solid #e7ebf0;
  background:#fbfcfe;
  color:#334155;
  font-weight:500;
}
.pd-spec-value {
  min-width:0;
  overflow-wrap:anywhere;
  font-weight:700;
}
.pd-quality-panel.cfg {
  padding:10px;
  border:1px solid #e7ebf0;
  border-radius:8px;
  background:#fff;
}
.pd-quality-panel .cfg-title {
  margin-bottom:8px;
  color:#111827;
  font-size:13px;
  font-weight:700;
  letter-spacing:0;
  text-transform:none;
}
.pd-quality-panel .qual-opt {
  margin-bottom:7px;
  padding:9px 10px;
  border:1px solid #e7ebf0;
  border-radius:6px;
  box-shadow:none;
}
.pd-quality-panel .qual-opt.sel {
  border-color:#ff7900;
  background:#fff7ed;
  box-shadow:none;
}
.pd-quality-panel .qual-opt.sel .qual-radio {
  border-color:#ff7900;
  background:#ff7900;
}
.pd-qty-row {
  display:grid;
  grid-template-columns:120px minmax(0, 1fr);
  align-items:stretch;
  margin-bottom:14px;
  overflow:hidden;
  border:1px solid #e7ebf0;
  border-radius:7px;
  background:#fff;
}
.pd-qty-label {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 12px;
  background:#ff7900;
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.03em;
}
.pd-qty-control {
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
  padding:6px 8px;
}
.pd-qty-control .fi.fi-sel {
  width:185px;
  min-width:150px;
  height:34px;
  min-height:34px;
  padding:0 10px;
  border:0;
  border-radius:4px;
  background:#fff;
  color:#111827;
  font-size:13px !important;
  font-weight:700;
  box-shadow:none;
}
.pd-qty-control span {
  min-width:0;
  color:#9ca3af;
  font-size:12px;
  line-height:1.35;
}
.pd-design-section {
  margin-bottom:14px;
}
.pd-design-heading {
  margin-bottom:7px;
  color:#111827;
  font-size:13px;
  font-weight:700;
}
.pd-design-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) 36px minmax(0,1fr);
  gap:12px;
  align-items:stretch;
  margin-bottom:0;
}
.pd-design-or {
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111827;
  font-size:13px;
  font-weight:700;
}
.design-opt {
  position:relative;
  min-height:88px;
  margin:0;
  padding:0;
  border:1.5px dashed #e7c98f;
  border-radius:7px;
  background:#fffdf8;
  color:#111827;
  text-align:center;
  cursor:pointer;
  box-shadow:none;
}
.design-opt:hover,
.design-opt.sel {
  border-color:#ff7900;
  background:#fffaf2;
  box-shadow:none;
  transform:none;
}
.design-opt.sel::after { display:none; }
.upload-zone {
  height:100%;
  min-height:88px;
  padding:12px 10px;
  border:0;
  border-radius:7px;
  background:transparent;
  text-align:center;
}
.upload-zone:hover,
.upload-zone.drag {
  background:#fff7ed;
  border-color:transparent;
}
.upload-zone input { display:none; }
.design-opt-icon {
  margin-bottom:5px;
  color:#4f46e5;
  font-size:25px;
  line-height:1;
}
.design-opt-title {
  margin-bottom:3px;
  color:#111827;
  font-size:13px;
  font-weight:700;
}
.design-opt-copy,
.design-opt-note {
  margin:0;
  color:#64748b;
  font-size:10.5px;
  font-weight:600;
  line-height:1.35;
}
.design-opt-note.is-free { color:#16a34a; }
.design-opt-note.is-paid { color:#f97316; }
#dopt-rcs {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:12px 10px;
}
.upload-done {
  margin-top:8px;
  padding:8px;
  border:1px solid #bbf7d0;
  border-radius:7px;
  background:#f0fdf4;
  text-align:left;
}
.price-panel {
  margin:0 0 12px;
  padding:10px 12px;
  border:1px solid #e7ebf0;
  border-radius:8px;
  background:#fff;
  color:#111827;
  box-shadow:none;
}
.pp-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:5px;
  color:#111827;
  font-size:12px;
}
.pp-row:last-child {
  margin:6px 0 0;
  padding-top:8px;
  border-top:1px solid #eef2f7;
}
.pp-l,
.pp-v,
.pp-tl,
.pp-tv {
  color:#111827 !important;
}
.pp-l { color:#64748b !important; }
.pp-v { font-weight:700; }
.pp-tl { font-size:13px; font-weight:700; }
.pp-tv { color:#f97316 !important; font-size:22px; font-weight:700; }
.pd-action-stack {
  display:flex;
  flex-direction:column;
  gap:10px;
}
.pd-action-row {
  display:grid !important;
  grid-template-columns:1fr 1fr 1.05fr;
  gap:10px !important;
}
.pd-action-row .btn {
  min-height:42px;
  padding:10px 12px !important;
  border-radius:5px !important;
  font-size:12px !important;
  font-weight:700;
  white-space:nowrap;
}
.btn.btn-blue { background:#ff7900; border-color:#ff7900; color:#fff; }
.btn.btn-green { background:#4f1db7; border-color:#4f1db7; color:#fff; }
.btn.btn-outline { background:#21a947; border-color:#21a947; color:#fff; }
.pd-checkout-note.pd-delivery-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:2px;
  padding-top:12px;
  border-top:1px solid #eef2f7;
}
.pd-checkout-note.pd-delivery-row span,
.pd-checkout-note.pd-delivery-row small {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  color:#111827;
  font-size:13px;
  font-weight:700;
  line-height:1.4;
}
.pd-checkout-note.pd-delivery-row i {
  color:#4f46e5;
}
.pd-checkout-note.pd-delivery-row small i {
  color:#16a34a;
}
@media (max-width:1020px) {
  .pd-grid { grid-template-columns:minmax(280px, 42%) minmax(0, 58%); gap:20px; }
  .pd-action-row { grid-template-columns:1fr; }
  .pd-checkout-note.pd-delivery-row { grid-template-columns:1fr; gap:8px; }
}
@media (max-width:900px) {
  .pd-page-wrap {
    margin-top:calc(var(--site-hh, var(--hh)) + 10px);
    padding:12px 0 118px;
  }
  .pd-grid { grid-template-columns:minmax(0,1fr); gap:18px; }
  .pd-gallery { position:static; }
  .pd-main { aspect-ratio:1/1; }
  .pd-main img { padding:0; object-fit:cover; }
  .pd-info-col { padding:0; border:0; border-radius:0; }
  .pd-name { font-size:clamp(26px, 7vw, 34px); }
  .pd-spec-row,
  .pd-qty-row { grid-template-columns:108px minmax(0,1fr); }
  .pd-design-grid { grid-template-columns:minmax(0,1fr); }
  .pd-design-or { min-height:20px; }
  .pd-qty-control { flex-wrap:wrap; }
  .pd-qty-control .fi.fi-sel { width:100%; }
  .pd-qty-control span { width:100%; }
  .pd-action-row { grid-template-columns:1fr; }
}
@media (max-width:520px) {
  .pd-thumbs-shell { grid-template-columns:22px minmax(0,1fr) 22px; gap:6px; }
  .pd-thumbs { gap:8px; }
  .pd-th { min-width:64px; flex-basis:calc((100% - 24px) / 4); }
  .pd-gallery-actions { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
  .pd-gallery-actions button { min-width:0; height:38px; font-size:11px; }
  .pd-spec-row,
  .pd-qty-row { grid-template-columns:94px minmax(0,1fr); }
  .pd-spec-label,
  .pd-spec-value { padding:7px 8px; font-size:12px; }
  .pd-qty-label { padding:0 8px; font-size:11px; }
  .pd-price-strip { gap:8px; }
  .pd-price-now { font-size:28px; }
  .pd-price-label { font-size:12px; }
  .pd-price-old { font-size:16px; }
}
.pd-order-hint {
  grid-column:1 / -1;
  min-height:16px;
  color:#64748b;
  font-size:11px;
  font-style:normal;
  font-weight:700;
  text-align:center;
}

/* Product detail tabs and review section */
.pd-tabs-section {
  margin-top:34px;
}
.pd-tabs-card {
  overflow:hidden;
  border:1px solid #e8ebf0;
  border-radius:10px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,23,42,.03);
}
.pd-tabs-nav {
  display:flex;
  align-items:center;
  gap:54px;
  padding:18px 22px 0;
  border-bottom:1px solid transparent;
  overflow-x:auto;
  scrollbar-width:none;
}
.pd-tabs-nav::-webkit-scrollbar { display:none; }
.pd-tab-btn {
  position:relative;
  flex:0 0 auto;
  padding:0 0 14px;
  border:0;
  background:transparent;
  color:#020617;
  cursor:pointer;
  font-size:15px;
  font-weight:700;
  line-height:1.2;
}
.pd-tab-btn::after {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  border-radius:999px 999px 0 0;
  background:#4f1db7;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .18s ease;
}
.pd-tab-btn.is-active {
  color:#4f1db7;
}
.pd-tab-btn.is-active::after {
  transform:scaleX(1);
}
.pd-tabs-content {
  display:grid;
  grid-template-columns:minmax(280px, 39%) minmax(0, 61%);
  min-height:238px;
}
.pd-tabs-left {
  padding:24px 22px 22px;
}
.pd-tab-panel h2,
.pd-reviews-head h2 {
  margin:0 0 14px;
  color:#0f172a;
  font-size:20px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:-.02em;
}
.pd-tab-panel p {
  margin:0 0 18px;
  color:#111827;
  font-size:13px;
  font-weight:500;
  line-height:1.75;
}
.pd-check-list {
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:0;
  margin:0;
  list-style:none;
}
.pd-check-list li {
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#111827;
  font-size:13px;
  font-weight:600;
  line-height:1.35;
}
.pd-check-list i {
  margin-top:1px;
  color:#16a34a;
  font-size:15px;
}
.pd-tab-spec-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}
.pd-tab-spec-grid div {
  padding:10px 12px;
  border:1px solid #e7ebf0;
  border-radius:8px;
  background:#fbfcfe;
}
.pd-tab-spec-grid span {
  display:block;
  margin-bottom:4px;
  color:#64748b;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.pd-tab-spec-grid strong {
  display:block;
  color:#0f172a;
  font-size:13px;
  font-weight:700;
  line-height:1.35;
}
.pd-faq-list {
  display:flex;
  flex-direction:column;
  gap:8px;
}
.pd-faq-list details {
  border:1px solid #e7ebf0;
  border-radius:8px;
  background:#fff;
}
.pd-faq-list summary {
  padding:11px 12px;
  color:#0f172a;
  cursor:pointer;
  font-size:13px;
  font-weight:700;
}
.pd-faq-list p {
  margin:0;
  padding:0 12px 12px;
  color:#475569;
}
.pd-reviews-panel {
  position:relative;
  min-width:0;
  padding:24px 24px 22px;
  border-left:1px solid #e7ebf0;
}
.pd-reviews-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}
.pd-reviews-head h2 {
  margin:0;
}
.pd-reviews-head a {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#4f1db7;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}
.pd-review-cards {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}
.pd-review-cards::-webkit-scrollbar { display:none; }
.pd-review-card {
  min-width:0;
  padding:18px 16px;
  border:1px solid #edf0f4;
  border-radius:9px;
  background:#fbfbfc;
  scroll-snap-align:start;
}
.pd-review-person {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}
.pd-review-avatar {
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  flex:0 0 50px;
  border:3px solid #fff;
  border-radius:999px;
  background:linear-gradient(135deg, #4f1db7, #ff7900);
  color:#fff;
  font-size:14px;
  font-weight:700;
  box-shadow:0 6px 14px rgba(15,23,42,.10);
}
.pd-review-person strong,
.pd-review-person span {
  display:block;
  line-height:1.25;
}
.pd-review-person strong {
  color:#111827;
  font-size:12px;
  font-weight:700;
}
.pd-review-person span {
  margin-top:3px;
  color:#334155;
  font-size:11px;
  font-weight:600;
}
.pd-review-stars {
  margin-bottom:14px;
  color:#ff8a00;
  font-size:15px;
  letter-spacing:.08em;
}
.pd-review-card p {
  margin:0;
  color:#111827;
  font-size:12px;
  font-weight:600;
  line-height:1.65;
}
.pd-review-next {
  position:absolute;
  top:50%;
  right:-17px;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border:1px solid #e7ebf0;
  border-radius:999px;
  background:#fff;
  color:#4f1db7;
  cursor:pointer;
  font-size:27px;
  line-height:1;
  box-shadow:0 8px 18px rgba(15,23,42,.08);
  transform:translateY(-20%);
}
@media (max-width:1020px) {
  .pd-tabs-nav { gap:32px; }
  .pd-tabs-content { grid-template-columns:1fr; }
  .pd-reviews-panel { border-left:0; border-top:1px solid #e7ebf0; }
  .pd-review-next { right:12px; }
}
@media (max-width:720px) {
  .pd-tabs-section { margin-top:24px; }
  .pd-tabs-nav { gap:24px; padding:16px 16px 0; }
  .pd-tab-btn { font-size:13px; }
  .pd-tabs-left,
  .pd-reviews-panel { padding:18px 16px; }
  .pd-tab-panel h2,
  .pd-reviews-head h2 { font-size:18px; }
  .pd-tab-spec-grid { grid-template-columns:1fr; }
  .pd-reviews-head { align-items:flex-start; flex-direction:column; gap:8px; }
  .pd-review-cards { display:flex; gap:12px; }
  .pd-review-card { flex:0 0 76%; }
}
@media (max-width:480px) {
  .pd-review-card { flex-basis:88%; }
  .pd-check-list li,
  .pd-tab-panel p { font-size:12px; }
  .pd-review-next { display:none; }
}

/* You May Also Like compact product cards */
.ym-section {
  margin-top:34px;
  padding-bottom:8px;
}
.ym-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}
.ym-title {
  margin:0;
  color:#0f172a;
  font-family:var(--fd);
  font-size:clamp(24px, 2vw, 32px);
  font-weight:700;
  letter-spacing:-.025em;
  line-height:1.12;
}
.ym-title span { color:#f97316; }
.ym-view-all {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:8px 18px;
  border:0;
  border-radius:999px;
  background:#f8fafc;
  color:#111827;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
  box-shadow:inset 0 0 0 1px #eef2f7;
  white-space:nowrap;
}
.ym-grid {
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:18px;
}
.ym-card {
  overflow:hidden;
  border:1px solid #edf0f4;
  border-radius:12px;
  background:#fff;
  box-shadow:0 8px 20px rgba(15,23,42,.035);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ym-card:hover {
  border-color:#fed7aa;
  box-shadow:0 12px 24px rgba(15,23,42,.07);
  transform:translateY(-2px);
}
.ym-img {
  display:block;
  aspect-ratio:1.72 / 1;
  background:#f8fafc;
}
.ym-img img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.ym-body {
  padding:9px 12px 12px;
}
.ym-cat {
  display:flex;
  align-items:center;
  gap:7px;
  min-width:0;
  margin-bottom:10px;
  color:#111827;
  font-size:13px;
  font-weight:700;
  line-height:1.25;
}
.ym-cat i {
  display:grid;
  place-items:center;
  width:18px;
  height:18px;
  flex:0 0 18px;
  border-radius:999px;
  background:#4f1db7;
  color:#fff;
  font-size:9px;
}
.ym-cat {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.ym-from {
  margin-bottom:3px;
  color:#64748b;
  font-size:12px;
  font-weight:600;
  line-height:1.2;
}
.ym-foot {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}
.ym-price {
  color:#f97316;
  font-size:clamp(19px, 1.65vw, 24px);
  font-weight:700;
  line-height:1;
  letter-spacing:-.02em;
}
.ym-order {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:84px;
  height:30px;
  padding:0 12px;
  border-radius:6px;
  background:#ff7900;
  color:#fff;
  text-decoration:none;
  font-size:10px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  box-shadow:0 6px 12px rgba(255,121,0,.18);
}
@media (max-width:1180px) {
  .ym-grid { grid-template-columns:repeat(4, minmax(0, 1fr)); }
}
@media (max-width:900px) {
  .ym-section { margin-top:28px; }
  .ym-grid { grid-template-columns:repeat(3, minmax(0, 1fr)); gap:14px; }
  .ym-foot { align-items:flex-start; flex-direction:column; gap:7px; }
  .ym-order { width:100%; min-width:0; }
}
@media (max-width:640px) {
  .ym-head { align-items:center; margin-bottom:12px; }
  .ym-title { font-size:22px; }
  .ym-view-all { min-height:30px; padding:7px 12px; font-size:10px; }
  .ym-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); gap:12px; }
  .ym-body { padding:8px 9px 10px; }
  .ym-cat { gap:6px; margin-bottom:8px; font-size:11.5px; }
  .ym-cat i { width:16px; height:16px; flex-basis:16px; font-size:8px; }
  .ym-from { font-size:10.5px; }
  .ym-price { font-size:18px; }
  .ym-order { height:28px; font-size:9px; }
}
@media (max-width:360px) {
  .ym-head { align-items:flex-start; flex-direction:column; gap:8px; }
  .ym-grid { grid-template-columns:minmax(0, 1fr); }
  .ym-foot { flex-direction:row; align-items:center; }
  .ym-order { width:auto; min-width:88px; }
}

/* Cart page reference layout refresh */
.cartp-wrap {
  margin-top:calc(var(--site-hh, var(--hh)) + 18px);
  padding:34px 0 70px;
  background:#fff;
}
.cartp-page {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  max-width:var(--page-max);
  margin-inline:auto;
}
.cartp-head {
  margin-bottom:28px;
}
.cartp-head h1 {
  margin:0;
  color:#05070d;
  font-family:var(--fd);
  font-size:clamp(44px, 5vw, 72px);
  font-weight:700;
  line-height:.95;
  letter-spacing:-.055em;
}
.cartp-head h1 span {
  margin-left:12px;
  color:#f97316;
  font-size:clamp(18px, 1.8vw, 28px);
  font-weight:700;
  letter-spacing:-.02em;
  vertical-align:middle;
}
.cartp-head p {
  margin:18px 0 0;
  color:#111827;
  font-size:16px;
  font-weight:500;
}
.cartp-grid {
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(340px, 380px);
  gap:40px;
  align-items:start;
}
.cartp-main,
.cartp-card,
.cartp-empty {
  border:1px solid #e7ebf0;
  border-radius:12px;
  background:#fff;
  box-shadow:0 8px 20px rgba(15,23,42,.025);
}
.cartp-table-head {
  display:grid;
  grid-template-columns:minmax(300px, 1.7fr) minmax(90px, .55fr) minmax(150px, .75fr) minmax(90px, .55fr) 36px;
  gap:16px;
  padding:22px 20px;
  border-bottom:1px solid #e7ebf0;
  color:#111827;
  font-size:14px;
  font-weight:700;
}
.cartp-row {
  display:grid;
  grid-template-columns:minmax(300px, 1.7fr) minmax(90px, .55fr) minmax(150px, .75fr) minmax(90px, .55fr) 36px;
  gap:16px;
  align-items:center;
  min-height:158px;
  padding:16px 20px;
  border-bottom:1px solid #eef2f7;
}
.cartp-row:last-of-type {
  border-bottom:0;
}
.cartp-prod {
  display:flex;
  align-items:center;
  gap:18px;
  min-width:0;
}
.cartp-img {
  display:block;
  width:148px;
  height:112px;
  flex:0 0 148px;
  overflow:hidden;
  border:1px solid #edf0f4;
  border-radius:8px;
  background:#f8fafc;
}
.cartp-img img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.cartp-prod-copy {
  min-width:0;
}
.cartp-prod h3 {
  margin:0 0 6px;
  color:#111827;
  font-size:17px;
  font-weight:700;
  line-height:1.25;
}
.cartp-prod p,
.cartp-prod small {
  display:block;
  margin:0;
  color:#111827;
  font-size:13px;
  font-weight:500;
  line-height:1.45;
}
.cartp-prod small {
  color:#475569;
}
.cartp-price,
.cartp-total {
  color:#4f1db7;
  font-size:clamp(18px, 1.5vw, 24px);
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}
.cartp-qty-select {
  width:134px;
  height:44px;
  padding:0 34px 0 14px;
  border:1px solid #e5e7eb;
  border-radius:9px;
  background:#fff;
  color:#111827;
  font-size:13px;
  font-weight:700;
  outline:none;
  box-shadow:0 4px 12px rgba(15,23,42,.035);
}
.cartp-qty-select:focus {
  border-color:#4f1db7;
  box-shadow:0 0 0 3px rgba(79,29,183,.12);
}
.cartp-del {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border:0;
  border-radius:8px;
  background:transparent;
  color:#111827;
  cursor:pointer;
  font-size:18px;
}
.cartp-del:hover {
  background:#fef2f2;
  color:#dc2626;
}
.cartp-actions {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:30px 0 0;
}
.cartp-continue,
.cartp-clear {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  border-radius:8px;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
}
.cartp-continue {
  padding:0 22px;
  border:2px solid #4f1db7;
  background:#fff;
  color:#4f1db7;
}
.cartp-clear {
  padding:0;
  border:0;
  background:transparent;
  color:#6b7280;
  cursor:pointer;
}
.cartp-clear:hover {
  color:#dc2626;
}
.cartp-side {
  position:sticky;
  top:calc(var(--site-hh, var(--hh)) + 20px);
}
.cartp-card {
  padding:20px;
  margin-bottom:26px;
}
.cartp-card h2 {
  margin:0 0 24px;
  color:#111827;
  font-size:24px;
  font-weight:700;
  letter-spacing:-.025em;
}
.cartp-card .r,
.cartp-card .rt {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:22px;
  color:#111827;
  font-size:14px;
}
.cartp-card .r strong {
  color:#111827;
  font-weight:700;
}
.cartp-card .r .is-free {
  color:#16a34a;
}
.cartp-card .cartp-discount-row,
.cartp-card .cartp-discount-row strong {
  color:#16a34a;
}
.cartp-card .link {
  border:0;
  background:transparent;
  color:#4f1db7;
  cursor:pointer;
  font-size:13px;
  font-weight:700;
}
.cartp-card .rt {
  margin:10px 0 22px;
  padding-top:20px;
  border-top:1px solid #e7ebf0;
  font-size:22px;
  font-weight:700;
}
.cartp-card .rt strong {
  color:#4f1db7;
  font-size:30px;
  font-weight:700;
  letter-spacing:-.03em;
}
.cartp-checkout {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:100%;
  min-height:54px;
  border-radius:8px;
  background:#ff7900;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  box-shadow:0 10px 20px rgba(255,121,0,.20);
}
.cartp-secure {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:18px;
  color:#6b7280;
  font-size:13px;
  font-weight:600;
}
.cartp-promo-card {
  padding:20px;
}
.cartp-promo-head {
  display:flex;
  gap:13px;
  align-items:flex-start;
  margin-bottom:16px;
}
.cartp-promo-head > span {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  flex:0 0 34px;
  border-radius:8px;
  background:#f3e8ff;
  color:#4f1db7;
  font-size:18px;
}
.cartp-promo-head h3 {
  margin:0 0 4px;
  color:#111827;
  font-size:16px;
  font-weight:700;
}
.cartp-promo-head p {
  margin:0;
  color:#475569;
  font-size:12px;
  font-weight:500;
}
.cartp-promo-card .coupon-row {
  display:grid;
  grid-template-columns:minmax(0,1fr) 76px;
  gap:0;
}
.cartp-promo-card .coupon-row input {
  min-width:0;
  height:44px;
  padding:0 12px;
  border:1px solid #e5e7eb;
  border-right:0;
  border-radius:7px 0 0 7px;
  font-size:13px;
}
.cartp-promo-card .coupon-row button {
  height:44px;
  border-radius:0 7px 7px 0;
  background:#4f1db7;
  color:#fff;
  font-size:12px;
  font-weight:700;
}
.cartp-why-card {
  position:relative;
  overflow:hidden;
  padding:24px 20px 26px;
  border-radius:12px;
  background:
    radial-gradient(circle at 88% 82%, rgba(255,121,0,.38), transparent 22%),
    linear-gradient(145deg, #5b21b6 0%, #3b087e 100%);
  color:#fff;
  box-shadow:0 14px 26px rgba(79,29,183,.24);
}
.cartp-why-card h3 {
  position:relative;
  z-index:1;
  margin:0 0 20px;
  font-size:23px;
  font-weight:700;
  line-height:1.2;
}
.cartp-why-card h3 span {
  color:#ff8a00;
}
.cartp-why-list {
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.cartp-why-list > div {
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.cartp-why-list i {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  flex:0 0 34px;
  border-radius:999px;
  background:#22c55e;
  color:#fff;
  font-size:15px;
}
.cartp-why-list p {
  margin:0;
}
.cartp-why-list strong,
.cartp-why-list span {
  display:block;
}
.cartp-why-list strong {
  margin-bottom:3px;
  font-size:13px;
  font-weight:700;
}
.cartp-why-list span {
  color:rgba(255,255,255,.88);
  font-size:11px;
  line-height:1.35;
}
.cartp-gift {
  position:absolute;
  right:8px;
  bottom:4px;
  z-index:0;
  font-size:82px;
  filter:drop-shadow(0 8px 12px rgba(0,0,0,.22));
  transform:rotate(-4deg);
}
.cartp-empty {
  padding:58px 20px;
  text-align:center;
}
.cartp-empty-icon {
  margin-bottom:12px;
  font-size:48px;
}
.cartp-empty h2 {
  margin:0 0 8px;
  font-size:30px;
  font-weight:700;
}
.cartp-empty p {
  margin:0 0 20px;
  color:#64748b;
}
@media (max-width:1080px) {
  .cartp-grid {
    grid-template-columns:minmax(0,1fr);
  }
  .cartp-side {
    position:static;
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:18px;
  }
  .cartp-side .cartp-card,
  .cartp-side .cartp-why-card {
    margin-bottom:0;
  }
  .cartp-why-card {
    grid-column:1 / -1;
  }
}
@media (max-width:820px) {
  .cartp-wrap {
    padding-top:22px;
  }
  .cartp-page {
    width:min(100%, calc(100vw - 28px));
  }
  .cartp-head {
    margin-bottom:20px;
  }
  .cartp-head h1 span {
    display:inline-block;
  }
  .cartp-table-head {
    display:none;
  }
  .cartp-main {
    border:0;
    box-shadow:none;
    background:transparent;
  }
  .cartp-row {
    grid-template-columns:1fr auto;
    gap:12px;
    min-height:0;
    margin-bottom:12px;
    padding:12px;
    border:1px solid #e7ebf0;
    border-radius:12px;
    background:#fff;
  }
  .cartp-prod {
    grid-column:1 / -1;
    padding-right:34px;
  }
  .cartp-del {
    grid-column:2;
    grid-row:1;
    align-self:start;
  }
  .cartp-price,
  .cartp-qty,
  .cartp-total {
    display:flex;
    align-items:center;
    justify-content:space-between;
    grid-column:1 / -1;
    gap:12px;
    padding-top:10px;
    border-top:1px solid #eef2f7;
    font-size:18px;
  }
  .cartp-price::before,
  .cartp-qty::before,
  .cartp-total::before {
    content:attr(data-label);
    color:#64748b;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.04em;
  }
  .cartp-qty-select {
    width:150px;
  }
  .cartp-side {
    grid-template-columns:1fr;
  }
}
@media (max-width:560px) {
  .cartp-page {
    width:min(100%, calc(100vw - 24px));
  }
  .cartp-head h1 {
    font-size:42px;
  }
  .cartp-head h1 span {
    margin-left:6px;
    font-size:18px;
  }
  .cartp-head p {
    margin-top:12px;
    font-size:13px;
  }
  .cartp-img {
    width:96px;
    height:82px;
    flex-basis:96px;
  }
  .cartp-prod {
    gap:12px;
  }
  .cartp-prod h3 {
    font-size:15px;
  }
  .cartp-prod p,
  .cartp-prod small {
    font-size:12px;
  }
  .cartp-actions {
    flex-direction:column;
    align-items:stretch;
    padding-top:18px;
  }
  .cartp-continue,
  .cartp-clear {
    width:100%;
  }
  .cartp-card {
    padding:16px;
  }
  .cartp-card .rt strong {
    font-size:24px;
  }
  .cartp-why-card h3 {
    font-size:20px;
  }
  .cartp-gift {
    font-size:58px;
    opacity:.65;
  }
}
@media (max-width:380px) {
  .cartp-prod {
    align-items:flex-start;
    flex-direction:column;
  }
  .cartp-img {
    width:100%;
    height:auto;
    aspect-ratio:1.45 / 1;
    flex-basis:auto;
  }
  .cartp-qty-select {
    width:132px;
  }
}

/* Cart pricing breakdown alignment */
.cartp-price strong,
.cartp-total strong {
  display:block;
  color:#4f1db7;
  font-size:clamp(18px, 1.5vw, 24px);
  font-weight:700;
  line-height:1;
  white-space:nowrap;
}
.cartp-price small,
.cartp-total small {
  display:block;
  margin-top:5px;
  color:#64748b;
  font-size:11px;
  font-weight:700;
  line-height:1.25;
  white-space:normal;
}
@media (max-width:820px) {
  .cartp-price,
  .cartp-total {
    align-items:flex-start;
  }
  .cartp-price strong,
  .cartp-total strong {
    font-size:18px;
  }
  .cartp-price small,
  .cartp-total small {
    font-size:10px;
  }
}
@media (max-width:820px) {
  .cartp-price,
  .cartp-total {
    flex-wrap:wrap;
  }
  .cartp-price small,
  .cartp-total small {
    flex-basis:100%;
    text-align:right;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Admin Design Studio
════════════════════════════════════════════════════════════════ */
.ds-shell { max-width:100%; }
.ds-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.ds-head .adm-pt { margin-bottom:6px; }
.ds-sub {
  color:var(--text2);
  font-size:13px;
  line-height:1.55;
  max-width:760px;
}
.ds-actions { display:flex; gap:9px; flex-wrap:wrap; justify-content:flex-end; }
.ds-grid {
  display:grid;
  grid-template-columns:minmax(320px, 430px) minmax(0, 1fr);
  gap:18px;
  align-items:start;
}
.ds-panel,
.ds-preview-wrap {
  background:var(--white);
  border:1.5px solid var(--border);
  border-radius:18px;
  box-shadow:0 12px 36px rgba(15,23,42,.06);
}
.ds-panel {
  padding:14px;
  position:sticky;
  top:calc(var(--hh) + 16px);
  max-height:calc(100vh - var(--hh) - 42px);
  overflow:auto;
}
.ds-status {
  padding:10px 12px;
  border-radius:12px;
  background:var(--blue-bg);
  color:var(--blue);
  border:1px solid var(--blue-mid);
  font-size:12px;
  font-weight:700;
  margin-bottom:12px;
}
.ds-status.ok { background:var(--green-bg); color:var(--green); border-color:var(--green-mid); }
.ds-status.bad { background:var(--red-bg); color:var(--red); border-color:var(--red-mid); }
.ds-section {
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  margin-bottom:11px;
  background:#fff;
}
.ds-section summary {
  cursor:pointer;
  padding:12px 13px;
  font-weight:700;
  color:var(--ink);
  background:linear-gradient(180deg,#fff,#f8fafc);
  border-bottom:1px solid var(--border);
  user-select:none;
}
.ds-section:not([open]) summary { border-bottom:0; }
.ds-fields { padding:12px; display:grid; gap:12px; }
.ds-field { display:grid; gap:7px; }
.ds-field > span { display:flex; justify-content:space-between; gap:10px; align-items:flex-end; }
.ds-field strong { font-size:12px; color:var(--ink); }
.ds-field em { font-style:normal; font-size:10px; color:var(--text3); white-space:nowrap; }
.ds-color-row { display:grid; grid-template-columns:52px 1fr; gap:9px; align-items:center; }
.ds-color-row input[type="color"] {
  width:52px;
  height:42px;
  border:1.5px solid var(--border2);
  border-radius:10px;
  padding:3px;
  background:#fff;
}
.ds-color-text { text-transform:uppercase; font-weight:700; letter-spacing:.04em; }
.ds-range-row { display:grid; grid-template-columns:1fr 58px; gap:10px; align-items:center; }
.ds-range-row input[type="range"] { accent-color:var(--blue); width:100%; }
.ds-range-row output {
  min-height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:var(--bg);
  border:1px solid var(--border);
  color:var(--ink);
  font-size:12px;
  font-weight:700;
}
.ds-preview-wrap { overflow:hidden; }
.ds-preview-top {
  min-height:62px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-bottom:1px solid var(--border);
  background:linear-gradient(180deg,#fff,#f8fafc);
}
.ds-preview-top strong { display:block; color:var(--ink); font-size:14px; }
.ds-preview-top span { display:block; color:var(--text2); font-size:11px; margin-top:2px; }
.ds-devices { display:flex; gap:6px; padding:4px; background:var(--bg); border-radius:999px; border:1px solid var(--border); }
.ds-devices button {
  padding:7px 11px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  color:var(--text2);
}
.ds-devices button.act { background:var(--blue); color:#fff; box-shadow:0 8px 18px rgba(37,99,235,.18); }
.ds-frame-shell {
  height:calc(100vh - var(--hh) - 145px);
  min-height:620px;
  padding:12px;
  background:linear-gradient(135deg,#e2e8f0,#f8fafc);
  overflow:auto;
  display:flex;
  justify-content:center;
}
.ds-frame-shell iframe {
  width:100%;
  height:100%;
  border:1px solid var(--border2);
  border-radius:16px;
  background:#fff;
  box-shadow:0 18px 50px rgba(15,23,42,.16);
}
.ds-frame-shell[data-size="tablet"] iframe { width:820px; }
.ds-frame-shell[data-size="mobile"] iframe { width:390px; }
.ds-element-field.has-override {
  border-left:3px solid var(--blue);
  padding-left:9px;
}
.ds-clear-prop {
  justify-self:start;
  padding:6px 9px;
  border-radius:9px;
  background:#fff;
  border:1px solid var(--border2);
  color:var(--text2);
  font-size:11px;
  font-weight:700;
  cursor:pointer;
}
.ds-clear-prop:hover { color:var(--red); border-color:var(--red-mid); background:var(--red-bg); }
.ds-font-size-control { display:grid; gap:9px; }
.ds-number-row { display:grid; grid-template-columns:1fr 34px; gap:8px; align-items:center; }
.ds-number-row span { color:var(--text2); font-size:12px; font-weight:700; }
.ds-presets { display:flex; gap:6px; flex-wrap:wrap; }
.ds-presets button {
  padding:5px 8px;
  border-radius:999px;
  background:var(--bg);
  border:1px solid var(--border);
  color:var(--ink);
  font-size:11px;
  font-weight:700;
  cursor:pointer;
}
.ds-presets button:hover { background:var(--blue-bg); border-color:var(--blue-mid); color:var(--blue); }
.ds-actions .btn:disabled { opacity:.5; cursor:not-allowed; }

@media (max-width:1180px) {
  .ds-grid { grid-template-columns:1fr; }
  .ds-panel { position:relative; top:auto; max-height:none; }
  .ds-frame-shell { height:720px; }
}
@media (max-width:760px) {
  .ds-head, .ds-preview-top { flex-direction:column; align-items:stretch; }
  .ds-actions { justify-content:flex-start; }
  .ds-frame-shell { min-height:560px; height:560px; padding:8px; }
  .ds-frame-shell[data-size="tablet"] iframe,
  .ds-frame-shell[data-size="mobile"] iframe { width:100%; }
}
.ds-section summary small {
  float:right;
  color:var(--text3);
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-top:2px;
}
.ds-selected-section {
  border-color:var(--blue-mid);
  box-shadow:0 10px 26px rgba(37,99,235,.08);
}
.ds-selected-box { padding:12px; }
.ds-selected-empty {
  padding:14px;
  border:1px dashed var(--blue-mid);
  border-radius:12px;
  background:var(--blue-bg);
  color:var(--blue);
  font-size:12px;
  font-weight:700;
  line-height:1.45;
}
.ds-selected-title {
  color:var(--ink);
  font-size:14px;
  font-weight:700;
  margin-bottom:4px;
}
.ds-selected-key {
  display:inline-flex;
  max-width:100%;
  padding:5px 8px;
  border-radius:999px;
  background:var(--bg);
  border:1px solid var(--border);
  color:var(--text2);
  font-family:var(--fn);
  font-size:11px;
  margin-bottom:10px;
  overflow:hidden;
  text-overflow:ellipsis;
}
.ds-element-field {
  padding:10px;
  border:1px solid var(--border);
  border-radius:12px;
  background:linear-gradient(180deg,#fff,#fbfdff);
}
.ds-mini-actions {
  display:flex;
  justify-content:flex-end;
  margin-top:10px;
}
.ds-mini-actions .btn { border-radius:10px; }

/* Static info/legal/contact pages */
.info-page {
  margin-top:calc(var(--site-hh, var(--hh)) + var(--post-header-gap,50px));
  background:
    radial-gradient(680px 280px at 92% 0%, rgba(37,99,235,.10), transparent 62%),
    linear-gradient(180deg,#fff 0%,var(--bg) 34%,var(--bg) 100%);
  color:var(--ink);
  min-height:calc(100vh - var(--site-hh, var(--hh)) - var(--post-header-gap,50px));
}
.info-container { width:min(1180px, calc(100vw - 32px)); margin:0 auto; }
.info-hero { padding:34px 0 28px; }
.info-breadcrumb { display:flex; align-items:center; gap:8px; color:var(--text2); font-size:12px; font-weight:700; margin-bottom:22px; }
.info-breadcrumb a { color:var(--blue); }
.info-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) 360px; gap:24px; align-items:stretch; }
.info-hero h1 { margin:8px 0 14px; font-family:var(--fd); font-size:clamp(34px,5vw,62px); line-height:1.04; letter-spacing:-.045em; color:#071225; }
.info-hero p { margin:0; max-width:760px; color:var(--text2); font-size:16px; line-height:1.75; }
.info-badges { display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.info-badges span { padding:8px 12px; border-radius:999px; background:var(--blue-bg); color:var(--blue); border:1px solid var(--blue-mid); font-size:12px; font-weight:700; }
.info-hero-card,
.info-feature-card,
.info-content-card,
.info-step,
.contact-card,
.contact-form,
.contact-help-card {
  background:rgba(255,255,255,.94);
  border:1.5px solid var(--border);
  border-radius:22px;
  box-shadow:0 16px 38px rgba(15,23,42,.07);
}
.info-hero-card { padding:24px; display:flex; flex-direction:column; justify-content:center; }
.info-hero-card strong { font-family:var(--fd); font-size:24px; color:#071225; }
.info-hero-card p { font-size:14px; margin:10px 0 18px; }
.info-actions { display:flex; gap:10px; flex-wrap:wrap; }
.info-section { padding:30px 0; }
.info-section-soft { background:rgba(255,255,255,.56); border-top:1px solid rgba(226,232,240,.8); border-bottom:1px solid rgba(226,232,240,.8); }
.info-card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.info-feature-card { padding:22px; }
.info-feature-icon { width:48px; height:48px; border-radius:16px; display:grid; place-items:center; background:linear-gradient(135deg,var(--blue-bg),rgba(234,88,12,.12)); font-size:24px; margin-bottom:15px; }
.info-feature-card h2,
.info-content-card h2,
.contact-card h2,
.contact-form h2,
.contact-help-card h2 { margin:0 0 9px; font-family:var(--fd); font-size:22px; color:#071225; line-height:1.15; }
.info-feature-card p,
.info-content-card p,
.contact-card p,
.contact-form p,
.contact-help-card li,
.contact-faqs p { margin:0; color:var(--text2); font-size:14px; line-height:1.7; }
.info-content-wrap { display:grid; gap:16px; }
.info-content-card { padding:24px; }
.info-content-card p + p { margin-top:12px; }
.info-section-head { margin-bottom:18px; }
.info-section-head h2 { margin:7px 0 0; font-family:var(--fd); font-size:clamp(26px,3.5vw,42px); color:#071225; letter-spacing:-.035em; }
.info-steps { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:15px; }
.info-step { padding:20px; }
.info-step span { display:inline-grid; place-items:center; width:38px; height:38px; border-radius:14px; background:var(--orange); color:#fff; font-size:13px; font-weight:700; margin-bottom:14px; }
.info-step h3 { margin:0 0 8px; font-size:16px; color:#071225; }
.info-step p { margin:0; color:var(--text2); font-size:13px; line-height:1.65; }
.info-cta-section { padding-bottom:70px; }
.info-cta-card { display:flex; justify-content:space-between; gap:18px; align-items:center; padding:26px; border-radius:24px; background:linear-gradient(135deg,var(--blue),var(--blue2)); color:#fff; box-shadow:0 18px 48px rgba(37,99,235,.22); }
.info-cta-card h2 { margin:0 0 8px; font-family:var(--fd); font-size:30px; }
.info-cta-card p { margin:0; color:rgba(255,255,255,.86); line-height:1.65; }
.info-cta-card .btn-outline { color:#fff; border-color:rgba(255,255,255,.42); background:rgba(255,255,255,.08); }
.contact-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.contact-card { padding:20px; }
.contact-card i { width:44px; height:44px; display:grid; place-items:center; border-radius:15px; color:#fff; background:linear-gradient(135deg,var(--blue),var(--orange)); margin-bottom:14px; font-size:18px; }
.contact-card a { display:inline-flex; margin-top:12px; color:var(--blue); font-weight:700; font-size:13px; }
.contact-layout { display:grid; grid-template-columns:minmax(0,1fr) 380px; gap:18px; align-items:start; }
.contact-form { padding:24px; display:grid; gap:13px; }
.contact-form label { display:grid; gap:6px; color:var(--ink); font-size:12px; font-weight:700; }
.contact-form input,
.contact-form select,
.contact-form textarea { width:100%; border:1.5px solid var(--border2); border-radius:12px; padding:12px 13px; font-family:var(--fn); color:var(--ink); background:#fff; }
.contact-form textarea { resize:vertical; min-height:110px; }
.contact-help-card { padding:24px; }
.contact-help-card ul { margin:14px 0 18px; padding-left:18px; display:grid; gap:9px; }
.contact-hours { display:grid; gap:4px; padding:15px; border-radius:16px; background:var(--blue-bg); border:1px solid var(--blue-mid); color:var(--blue); }
.contact-hours strong { font-size:14px; }
.contact-hours span { font-size:12px; font-weight:700; }
.contact-faqs { display:grid; gap:10px; margin-top:18px; }
.contact-faqs details { background:#fff; border:1.5px solid var(--border); border-radius:16px; padding:16px 18px; }
.contact-faqs summary { cursor:pointer; font-weight:700; color:#071225; }
.contact-faqs p { margin-top:9px; }
@media (max-width:980px) {
  .info-hero-grid,
  .contact-layout { grid-template-columns:1fr; }
  .info-card-grid,
  .contact-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .info-steps { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:640px) {
  .info-container { width:min(100%, calc(100vw - 24px)); }
  .info-hero { padding:24px 0 20px; }
  .info-hero h1 { font-size:clamp(30px,11vw,44px); }
  .info-card-grid,
  .contact-grid,
  .info-steps { grid-template-columns:1fr; }
  .info-hero-card,
  .info-feature-card,
  .info-content-card,
  .info-step,
  .contact-card,
  .contact-form,
  .contact-help-card { border-radius:18px; }
  .info-actions,
  .info-actions .btn { width:100%; }
  .info-actions .btn { justify-content:center; }
  .info-cta-card { align-items:stretch; flex-direction:column; padding:22px; }
  .info-cta-card h2 { font-size:24px; }
}

/* Premium full-width polish for static pages */
.info-page {
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(37,99,235,.06), transparent 26%, transparent 74%, rgba(15,118,110,.07)),
    linear-gradient(180deg,#fff 0%,var(--bg) 34%,var(--bg) 100%);
}
.info-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  max-width:var(--page-max);
}
.info-section,
.info-hero {
  position:relative;
  isolation:isolate;
}
.info-hero::before,
.info-section-wide::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 240px at 4% 20%, rgba(37,99,235,.10), transparent 65%),
    radial-gradient(420px 220px at 96% 18%, rgba(234,88,12,.10), transparent 62%);
  pointer-events:none;
  z-index:-1;
}
.info-hero-grid {
  min-height:430px;
  grid-template-columns:minmax(0,1.03fr) minmax(360px,.72fr);
  align-items:center;
}
.info-hero h1 { max-width:900px; }
.info-hero p { font-size:clamp(15px,1.35vw,18px); max-width:820px; }
.info-visual-card {
  position:relative;
  min-height:390px;
  padding:24px;
  display:grid;
  align-content:end;
  gap:16px;
  overflow:hidden;
  border:1.5px solid rgba(37,99,235,.18);
  border-radius:30px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.94),rgba(255,255,255,.78)),
    radial-gradient(360px 220px at 70% 18%, rgba(37,99,235,.18), transparent 66%),
    radial-gradient(280px 170px at 12% 86%, rgba(15,118,110,.16), transparent 68%);
  box-shadow:0 24px 70px rgba(15,23,42,.12);
  transform:translateZ(0);
}
.info-visual-card::after {
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(37,99,235,.12);
  border-radius:24px;
  pointer-events:none;
}
.info-visual-card img {
  position:absolute;
  top:28px;
  right:24px;
  width:min(64%, 360px);
  max-height:250px;
  object-fit:contain;
  filter:drop-shadow(0 24px 34px rgba(15,23,42,.18));
  animation:infoFloat 7s ease-in-out infinite;
}
.info-visual-caption {
  position:relative;
  z-index:1;
  max-width:78%;
  padding:17px;
  border-radius:20px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(37,99,235,.14);
  backdrop-filter:blur(8px);
}
.info-visual-caption strong { display:block; font-family:var(--fd); font-size:22px; color:#071225; margin-bottom:6px; }
.info-visual-caption p { margin:0; font-size:13px; line-height:1.6; color:var(--text2); }
.info-visual-card .info-actions { position:relative; z-index:1; }
.info-visual-orbit span {
  position:absolute;
  border-radius:999px;
  opacity:.92;
  box-shadow:0 16px 32px rgba(15,23,42,.12);
  animation:infoBob 6s ease-in-out infinite;
}
.info-visual-orbit span:nth-child(1) { width:58px; height:58px; left:26px; top:42px; background:var(--blue); }
.info-visual-orbit span:nth-child(2) { width:34px; height:34px; right:36px; bottom:138px; background:var(--orange); animation-delay:-1.5s; }
.info-visual-orbit span:nth-child(3) { width:44px; height:44px; left:34%; bottom:40px; background:var(--green); animation-delay:-3s; }
.info-feature-card,
.info-content-card,
.info-step,
.contact-card,
.contact-form,
.contact-help-card {
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.info-feature-card:hover,
.info-content-card:hover,
.info-step:hover,
.contact-card:hover,
.contact-help-card:hover {
  transform:translateY(-5px);
  border-color:var(--blue-mid);
  box-shadow:0 22px 52px rgba(15,23,42,.11);
}
.info-feature-card:nth-child(2n) .info-feature-icon { background:rgba(234,88,12,.13); color:var(--orange); }
.info-feature-card:nth-child(3n) .info-feature-icon { background:rgba(15,118,110,.13); color:var(--green); }
.info-feature-icon { color:var(--blue); }
.info-content-layout {
  display:grid;
  grid-template-columns:minmax(280px, .42fr) minmax(0,1fr);
  gap:22px;
  align-items:start;
}
.info-content-aside {
  position:sticky;
  top:calc(var(--site-hh, var(--hh)) + 24px);
  padding:26px;
  border-radius:24px;
  color:#fff;
  background:
    radial-gradient(320px 140px at 100% 0%, rgba(255,255,255,.16), transparent 60%),
    linear-gradient(135deg,var(--blue),var(--green));
  box-shadow:0 18px 48px rgba(37,99,235,.16);
}
.info-content-aside .sec-ey { color:#fff; background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.24); }
.info-content-aside h2 { margin:12px 0 10px; font-family:var(--fd); font-size:clamp(25px,2.8vw,38px); line-height:1.1; }
.info-content-aside p { margin:0; color:rgba(255,255,255,.86); line-height:1.7; }
.info-content-card { position:relative; padding-left:30px; }
.info-content-card::before {
  content:"";
  position:absolute;
  left:0;
  top:24px;
  bottom:24px;
  width:5px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--blue),var(--orange),var(--green));
}
.info-steps { position:relative; }
.info-step { overflow:hidden; }
.info-step::after {
  content:"";
  position:absolute;
  width:130px;
  height:130px;
  right:-70px;
  top:-70px;
  border-radius:50%;
  background:rgba(37,99,235,.08);
}
.info-cta-card { background:linear-gradient(135deg,var(--blue) 0%,var(--green) 70%,var(--orange) 140%); }
.contact-visual-card img { width:min(68%, 390px); }
.contact-card:nth-child(2) i { background:linear-gradient(135deg,var(--green),var(--blue)); }
.contact-card:nth-child(3) i { background:linear-gradient(135deg,var(--orange),var(--blue)); }
.contact-card:nth-child(4) i { background:linear-gradient(135deg,var(--green),var(--orange)); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 4px var(--blue-bg);
}
.contact-faqs details { transition:border-color .2s ease, box-shadow .2s ease; }
.contact-faqs details[open] { border-color:var(--blue-mid); box-shadow:0 16px 34px rgba(37,99,235,.08); }
@keyframes infoFloat { 0%,100% { transform:translateY(0) rotate(0deg); } 50% { transform:translateY(-12px) rotate(1.2deg); } }
@keyframes infoBob { 0%,100% { transform:translate3d(0,0,0); } 50% { transform:translate3d(8px,-10px,0); } }
@media (prefers-reduced-motion: reduce) {
  .info-visual-card img,
  .info-visual-orbit span,
  .info-feature-card,
  .info-content-card,
  .info-step,
  .contact-card,
  .contact-help-card { animation:none !important; transition:none !important; }
}
@media (max-width:980px) {
  .info-container { width:min(100%, calc(100vw - 36px)); }
  .info-hero-grid { min-height:auto; grid-template-columns:1fr; }
  .info-visual-card { min-height:340px; }
  .info-content-layout { grid-template-columns:1fr; }
  .info-content-aside { position:relative; top:auto; }
}
@media (max-width:640px) {
  .info-container { width:min(100%, calc(100vw - 22px)); }
  .info-visual-card { min-height:330px; padding:18px; border-radius:22px; }
  .info-visual-card img { width:72%; right:8px; top:22px; }
  .info-visual-caption { max-width:100%; margin-top:150px; }
  .info-content-card { padding:20px 20px 20px 24px; }
  .info-content-aside { padding:22px; }
}

/* Square, solid-color correction for static info/contact pages */
.info-page {
  overflow:hidden;
  background:var(--bg);
}
.info-page .btn,
.info-page .info-badges span,
.info-page .sec-ey,
.info-hero-card,
.info-visual-card,
.info-visual-card::after,
.info-visual-caption,
.info-feature-card,
.info-feature-icon,
.info-content-aside,
.info-content-card,
.info-content-card::before,
.info-content-list li,
.info-step,
.info-step span,
.info-cta-card,
.contact-card,
.contact-card i,
.contact-form,
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-help-card,
.contact-hours,
.contact-faqs details {
  border-radius:0;
}
.info-hero::before,
.info-section-wide::before,
.info-visual-orbit,
.info-step::after {
  display:none;
}
.info-hero {
  padding:34px 0 30px;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.info-hero-grid {
  min-height:430px;
  grid-template-columns:minmax(0, 1.04fr) minmax(360px, .72fr);
  gap:28px;
}
.info-hero h1 {
  color:var(--ink);
  font-size:clamp(36px, 4.6vw, 72px);
  letter-spacing:-.045em;
}
.info-hero p {
  color:var(--text2);
  font-size:clamp(16px, 1.28vw, 19px);
  line-height:1.78;
}
.info-badges span {
  background:var(--blue-bg);
  color:var(--blue);
  border-color:var(--blue-mid);
}
.info-badges span:nth-child(2) {
  background:var(--orange-bg);
  color:var(--orange);
  border-color:var(--orange-mid);
}
.info-badges span:nth-child(3) {
  background:var(--green-bg);
  color:var(--green);
  border-color:var(--green-mid);
}
.info-visual-card {
  min-height:390px;
  padding:24px;
  border:2px solid var(--blue-mid);
  background:#fff;
  box-shadow:14px 14px 0 var(--blue-bg);
}
.info-print-stack {
  position:absolute;
  inset:24px 24px 128px 24px;
  z-index:0;
}
.info-mockup {
  position:absolute;
  width:min(62%, 330px);
  max-height:230px;
  object-fit:contain;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 16px 34px rgba(15,23,42,.14);
  animation:infoFloat 7s ease-in-out infinite;
}
.info-mockup-1 {
  right:0;
  top:0;
  z-index:3;
}
.info-mockup-2 {
  left:3%;
  top:42px;
  z-index:2;
  transform:rotate(-3deg);
  animation-delay:-1.8s;
}
.info-mockup-3 {
  right:17%;
  bottom:0;
  z-index:1;
  transform:rotate(2deg);
  animation-delay:-3.1s;
}
.info-visual-caption {
  margin-top:auto;
  max-width:82%;
  background:#fff;
  border:2px solid var(--green-mid);
  box-shadow:8px 8px 0 var(--green-bg);
}
.info-card-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  border:1.5px solid var(--border);
  background:#fff;
}
.info-feature-card {
  display:grid;
  grid-template-columns:58px minmax(180px, .34fr) minmax(0, 1fr);
  gap:18px;
  align-items:center;
  padding:24px;
  border:0;
  border-bottom:1px solid var(--border);
  box-shadow:none;
}
.info-feature-card:last-child {
  border-bottom:0;
}
.info-feature-card:hover,
.info-content-card:hover,
.info-step:hover,
.contact-card:hover,
.contact-help-card:hover {
  transform:translateY(-3px);
  border-color:var(--blue-mid);
  box-shadow:10px 10px 0 var(--blue-bg);
}
.info-feature-icon,
.contact-card i {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  background:var(--blue-bg);
  color:var(--blue);
}
.info-feature-card:nth-child(2n) .info-feature-icon,
.contact-card:nth-child(2) i {
  background:var(--orange-bg);
  color:var(--orange);
}
.info-feature-card:nth-child(3n) .info-feature-icon,
.contact-card:nth-child(3) i {
  background:var(--green-bg);
  color:var(--green);
}
.contact-card:nth-child(4) i {
  background:var(--blue-bg);
  color:var(--blue);
}
.info-content-layout {
  grid-template-columns:minmax(300px, .34fr) minmax(0, 1fr);
  gap:24px;
}
.info-content-aside {
  background:var(--blue);
  color:#fff;
  box-shadow:10px 10px 0 var(--blue-bg);
}
.info-content-aside .sec-ey {
  background:#fff;
  color:var(--blue);
  border-color:#fff;
}
.info-content-aside p {
  color:#fff;
}
.info-content-card,
.contact-card,
.contact-form,
.contact-help-card,
.contact-faqs details {
  background:#fff;
  border:1.5px solid var(--border);
  box-shadow:none;
}
.info-content-card {
  padding:30px 32px;
}
.info-content-card::before {
  top:0;
  bottom:0;
  width:7px;
  background:var(--orange);
}
.info-content-card:nth-child(2n)::before {
  background:var(--green);
}
.info-content-list {
  display:grid;
  gap:10px;
  margin-top:18px;
  padding:0;
}
.info-content-list li {
  position:relative;
  padding:12px 14px 12px 42px;
  background:var(--bg);
  border:1px solid var(--border);
  color:var(--ink2);
  font-weight:700;
  line-height:1.55;
}
.info-content-list li::before {
  content:"";
  position:absolute;
  left:16px;
  top:18px;
  width:9px;
  height:9px;
  background:var(--green);
}
.info-steps {
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}
.info-step {
  padding:26px;
  border:1.5px solid var(--border);
  background:#fff;
}
.info-step span {
  background:var(--blue);
  color:#fff;
}
.info-step:nth-child(2n) span {
  background:var(--orange);
}
.info-step:nth-child(3n) span {
  background:var(--green);
}
.info-cta-card {
  background:var(--blue);
  color:#fff;
  box-shadow:12px 12px 0 var(--blue-bg);
}
.info-cta-card p,
.info-cta-card h2 {
  color:#fff;
}
.info-cta-card .btn-blue {
  background:#fff;
  color:var(--blue);
}
.info-cta-card .btn-outline {
  border-color:#fff;
  color:#fff;
  background:transparent;
}
.contact-grid {
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}
.contact-card {
  min-height:180px;
  padding:26px;
}
.contact-layout {
  grid-template-columns:minmax(0, 1fr) minmax(320px, 420px);
}
.contact-form,
.contact-help-card {
  padding:30px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color:var(--blue);
  box-shadow:0 0 0 3px var(--blue-bg);
}
.contact-hours {
  background:var(--green-bg);
  border-color:var(--green-mid);
  color:var(--green);
}
@media (max-width:980px) {
  .info-hero-grid,
  .info-content-layout,
  .contact-layout {
    grid-template-columns:1fr;
  }
  .info-card-grid,
  .contact-grid,
  .info-steps {
    grid-template-columns:1fr;
  }
  .info-content-aside {
    position:relative;
    top:auto;
  }
}
@media (max-width:640px) {
  .info-hero {
    padding:24px 0;
  }
  .info-visual-card {
    min-height:340px;
    padding:18px;
    box-shadow:7px 7px 0 var(--blue-bg);
  }
  .info-print-stack {
    inset:18px 18px 142px 18px;
  }
  .info-mockup {
    width:70%;
    max-height:170px;
  }
  .info-visual-caption {
    max-width:100%;
    padding:14px;
    box-shadow:6px 6px 0 var(--green-bg);
  }
  .info-feature-card {
    grid-template-columns:46px 1fr;
    padding:18px;
  }
  .info-feature-card p {
    grid-column:1 / -1;
  }
  .info-content-card,
  .info-step,
  .contact-card,
  .contact-form,
  .contact-help-card {
    padding:20px;
  }
}

/* Compact blog cards: 5-up desktop layout for home + blogs pages */
.blog-grid {
  grid-auto-columns:calc((100% - 64px) / 5);
  gap:16px;
}
.blog-card {
  border-radius:14px;
  box-shadow:0 8px 18px rgba(15,23,42,.07);
}
.blog-card:hover {
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(15,23,42,.10);
}
.blog-card-link {
  min-height:318px;
}
.blog-image {
  aspect-ratio:4 / 3;
}
.blog-badge {
  left:12px;
  bottom:11px;
  min-height:24px;
  padding:0 10px;
  font-size:9.5px;
  box-shadow:0 6px 12px rgba(15,23,42,.14);
}
.blog-content {
  padding:15px 15px 14px;
}
.blog-meta {
  gap:6px;
  font-size:10.5px;
  margin-bottom:8px;
}
.blog-content h3,
.all-blogs-grid .blog-content h2 {
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:15.5px;
  line-height:1.25;
  margin-bottom:7px;
}
.blog-content p {
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:11.5px;
  line-height:1.45;
  margin-bottom:11px;
}
.blog-read-more {
  gap:6px;
  font-size:10.5px;
}
.all-blogs-grid {
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:16px;
}
@media (max-width:1200px) {
  .blog-grid { grid-auto-columns:calc((100% - 54px) / 4); gap:18px; }
  .all-blogs-grid { grid-template-columns:repeat(4, minmax(0, 1fr)); gap:18px; }
}
@media (max-width:1100px) {
  .blog-grid { grid-auto-columns:calc((100% - 36px) / 3); gap:18px; }
  .blog-card-link { min-height:312px; }
  .blog-content { padding:14px; }
  .blog-content h3,
  .all-blogs-grid .blog-content h2 { font-size:15px; }
  .all-blogs-grid { grid-template-columns:repeat(3, minmax(0, 1fr)); }
}
@media (max-width:900px) {
  .blog-card { flex:0 0 min(72vw, 320px); }
  .blog-card-link { min-height:306px; }
  .all-blogs-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); gap:16px; }
}
@media (max-width:560px) {
  .all-blogs-grid { grid-template-columns:1fr; }
  .blog-card { flex-basis:calc(100vw - 42px); }
  .blog-card-link { min-height:318px; }
  .blog-image { aspect-ratio:16 / 10; }
  .blog-badge { left:12px; bottom:10px; min-height:24px; padding:0 10px; font-size:9.5px; }
  .blog-content { padding:14px 14px 13px; }
  .blog-meta { font-size:10.5px; margin-bottom:8px; }
  .blog-content h3,
  .all-blogs-grid .blog-content h2 { font-size:16px; margin-bottom:7px; }
  .blog-content p { font-size:11.8px; line-height:1.45; margin-bottom:11px; }
}

/* Product detail cleanup: no sticky purchase bar; keep two design-choice boxes */
.pd-design-grid {
  grid-template-columns:1fr auto 1fr;
}
.sticky-price {
  display:none !important;
}
@media (max-width:560px) {
  .pd-page-wrap {
    padding-bottom:32px;
  }
  .pd-design-grid {
    grid-template-columns:1fr;
  }
}

/* Product detail visual match: reference-style two-column purchase layout without Free Design CTA button */
.pd-page-wrap {
  background:#fff;
  padding:16px 0 52px;
}
.pd-page-wrap > .container {
  width:min(var(--page-max, 1180px), calc(100vw - var(--page-gutter, 48px)));
  max-width:var(--page-max, 1180px);
  margin-inline:auto;
}
.pd-page-wrap .breadcrumb {
  margin:0 0 18px;
  font-size:14px;
  line-height:1.4;
}
.pd-grid {
  display:grid;
  grid-template-columns:minmax(360px, .9fr) minmax(520px, 1.1fr);
  gap:38px;
  align-items:start;
}
.pd-gallery {
  position:sticky;
  top:calc(var(--site-hh, var(--hh, 80px)) + 18px);
}
.pd-main {
  min-height:0;
  aspect-ratio:1 / .9;
  border:1px solid #e7ebf0;
  border-radius:10px;
  background:#fbfbfc;
  box-shadow:none;
}
.pd-main img {
  width:100%;
  height:100%;
  padding:38px;
  object-fit:contain;
}
.pd-badge {
  top:16px;
  left:16px;
  padding:9px 13px;
  border-radius:4px;
  background:#ff7900;
  color:#fff;
  font-size:12px;
  font-weight:700;
  box-shadow:0 6px 14px rgba(255,121,0,.18);
}
.pd-zoom-btn,
.pd-wishlist-btn {
  top:20px;
  right:20px;
  width:40px;
  height:40px;
  border:1px solid #e7ebf0;
  background:#fff;
  color:#111827;
  font-size:18px;
  box-shadow:0 6px 14px rgba(15,23,42,.08);
}
.pd-thumbs-shell {
  grid-template-columns:24px minmax(0,1fr) 24px;
  gap:10px;
  margin-top:14px;
}
.pd-thumbs {
  justify-content:center;
  gap:16px;
}
.pd-th {
  min-width:84px;
  flex:0 0 84px;
  height:84px;
  border:1px solid #e7ebf0;
  border-radius:6px;
  background:#fff;
  box-shadow:0 4px 12px rgba(15,23,42,.05);
}
.pd-th.act {
  border:2px solid #4f46e5;
  box-shadow:0 6px 14px rgba(79,70,229,.12);
}
.pd-gallery-nav {
  width:24px;
  height:54px;
  border:0;
  color:#111827;
  font-size:30px;
  background:transparent;
  box-shadow:none;
}
.pd-gallery-actions {
  justify-content:center;
  gap:12px;
  margin-top:18px;
}
.pd-gallery-actions button {
  min-width:152px;
  height:42px;
  border:1px solid #e7ebf0;
  border-radius:6px;
  background:#fff;
  color:#111827;
  font-size:14px;
  font-weight:700;
  box-shadow:0 4px 12px rgba(15,23,42,.05);
}
.pd-info-col {
  padding:0;
  border:0;
  background:transparent;
  box-shadow:none;
}
.pd-name {
  margin:0 0 10px;
  color:#0f172a;
  font-size:clamp(34px, 3vw, 44px);
  line-height:1.08;
  font-weight:650;
  letter-spacing:-.04em;
}
.pd-rating-row {
  gap:9px;
  margin-bottom:15px;
  color:#334155;
  font-size:13px;
  font-weight:700;
}
.pd-stars {
  color:#ff7900;
  font-size:15px;
  letter-spacing:2px;
}
.pd-viewing-dot {
  color:#16a34a;
  font-size:18px;
  line-height:1;
}
.pd-price-strip {
  margin:0 0 18px;
  gap:14px;
}
.pd-price-now {
  color:#ff7900;
  font-size:36px;
  line-height:1;
  font-weight:950;
}
.pd-price-label {
  color:#111827;
  font-size:14px;
  font-weight:700;
}
.pd-price-old {
  color:#6b7280;
  font-size:20px;
  font-weight:700;
  text-decoration:line-through;
}
.pd-discount {
  min-height:28px;
  padding:0 11px;
  border-radius:5px;
  background:#dcfce7;
  color:#15803d;
  font-size:12px;
  font-weight:700;
}
.pd-spec-table {
  margin:0 0 14px;
  border:1px solid #e7ebf0;
  border-radius:6px;
  overflow:hidden;
  background:#fff;
}
.pd-spec-row {
  min-height:34px;
  grid-template-columns:132px minmax(0,1fr);
  border-bottom:1px solid #e7ebf0;
}
.pd-spec-label,
.pd-spec-value {
  padding:8px 12px;
  font-size:13px;
  line-height:1.25;
}
.pd-spec-label {
  border-right:1px solid #e7ebf0;
  background:#fff;
  color:#334155;
  font-weight:700;
}
.pd-spec-value {
  color:#111827;
  font-weight:700;
}
.pd-qty-row {
  grid-template-columns:132px minmax(0,1fr);
  min-height:38px;
  margin-bottom:12px;
  border:1px solid #e7ebf0;
  border-radius:6px;
  background:#fff;
}
.pd-qty-label {
  background:#ff7900;
  font-size:13px;
}
.pd-qty-control {
  padding:6px 10px;
}
.pd-qty-control .fi.fi-sel {
  height:28px;
  min-height:28px;
  width:170px;
  min-width:150px;
  color:#111827;
  font-size:13px !important;
  font-weight:700;
}
.pd-qty-control span {
  font-size:12px;
  font-weight:700;
}
.pd-design-section {
  margin:0 0 14px;
}
.pd-design-heading {
  margin-bottom:8px;
  color:#111827;
  font-size:14px;
  font-weight:700;
}
.pd-design-grid {
  grid-template-columns:minmax(0,1fr) 42px minmax(0,1fr) !important;
  gap:13px;
}
.pd-design-or {
  color:#111827;
  font-size:14px;
  font-weight:700;
}
.design-opt {
  min-height:94px;
  border:1.5px dashed #e7c98f;
  border-radius:6px;
  background:#fffdf8;
}
.design-opt:hover,
.design-opt.sel {
  border-color:#ff7900;
  background:#fffaf2;
}
.upload-zone,
#dopt-rcs {
  min-height:94px;
  padding:13px 12px;
}
.design-opt-icon {
  margin-bottom:6px;
  color:#4f46e5;
  font-size:26px;
}
.design-opt-title {
  font-size:14px;
  font-weight:950;
}
.design-opt-copy,
.design-opt-note {
  font-size:11px;
  font-weight:700;
}
.price-panel {
  margin:0 0 13px;
  padding:11px 13px;
  border:1px solid #e7ebf0;
  border-radius:7px;
  background:#fff;
}
.pp-row {
  font-size:13px;
}
.pp-tv {
  color:#ff7900 !important;
  font-size:24px;
}
.pd-action-row {
  grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important;
  gap:12px !important;
}
.pd-action-row .btn {
  min-height:46px;
  border-radius:6px !important;
  font-size:13px !important;
  font-weight:950;
  letter-spacing:.01em;
}
.pd-action-row .btn.btn-blue {
  background:#ff7900;
  border-color:#ff7900;
  color:#fff;
}
.pd-action-row .btn.btn-outline {
  background:#21a947;
  border-color:#21a947;
  color:#fff;
}
.pd-checkout-note.pd-delivery-row {
  grid-template-columns:1fr 1fr;
  gap:10px 16px;
  padding:13px 0 0;
}
.pd-checkout-note.pd-delivery-row span,
.pd-checkout-note.pd-delivery-row small {
  justify-content:center;
  font-size:13px;
}
.sticky-price {
  display:none !important;
}
@media (max-width:1120px) {
  .pd-grid {
    grid-template-columns:minmax(330px, .86fr) minmax(470px, 1.14fr);
    gap:24px;
  }
  .pd-name { font-size:clamp(31px, 3.4vw, 40px); }
  .pd-main img { padding:28px; }
  .pd-th { min-width:74px; flex-basis:74px; height:74px; }
}
@media (max-width:940px) {
  .pd-page-wrap {
    padding:14px 0 42px;
  }
  .pd-page-wrap > .container {
    width:min(var(--page-max, 1180px), calc(100vw - 36px));
  }
  .pd-grid {
    grid-template-columns:minmax(0,1fr);
    gap:22px;
  }
  .pd-gallery {
    position:static;
  }
  .pd-main {
    aspect-ratio:4 / 3;
  }
  .pd-main img {
    padding:24px;
  }
  .pd-action-row {
    grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important;
  }
}
@media (max-width:640px) {
  .pd-page-wrap > .container {
    width:min(100%, calc(100vw - 24px));
  }
  .pd-page-wrap .breadcrumb {
    font-size:12px;
    gap:7px;
  }
  .pd-name {
    font-size:clamp(28px, 9vw, 34px);
    line-height:1.12;
  }
  .pd-main {
    aspect-ratio:1 / 1;
  }
  .pd-main img {
    padding:18px;
  }
  .pd-badge {
    top:10px;
    left:10px;
    padding:7px 10px;
    font-size:11px;
  }
  .pd-zoom-btn,
  .pd-wishlist-btn {
    top:10px;
    right:10px;
    width:36px;
    height:36px;
  }
  .pd-thumbs-shell {
    grid-template-columns:22px minmax(0,1fr) 22px;
  }
  .pd-thumbs {
    gap:8px;
    justify-content:flex-start;
  }
  .pd-th {
    min-width:66px;
    flex-basis:66px;
    height:66px;
  }
  .pd-gallery-actions {
    grid-template-columns:1fr 1fr;
  }
  .pd-gallery-actions button {
    min-width:0;
    width:100%;
    font-size:12px;
  }
  .pd-rating-row,
  .pd-price-strip {
    flex-wrap:wrap;
  }
  .pd-price-now {
    font-size:32px;
  }
  .pd-spec-row,
  .pd-qty-row {
    grid-template-columns:104px minmax(0,1fr);
  }
  .pd-spec-label,
  .pd-spec-value,
  .pd-qty-control {
    padding-inline:9px;
  }
  .pd-qty-control {
    flex-wrap:wrap;
  }
  .pd-qty-control .fi.fi-sel,
  .pd-qty-control span {
    width:100%;
  }
  .pd-design-grid {
    grid-template-columns:1fr !important;
    gap:8px;
  }
  .pd-design-or {
    min-height:20px;
  }
  .pd-action-row,
  .pd-checkout-note.pd-delivery-row {
    grid-template-columns:1fr !important;
  }
}

/* My Account dashboard layout */
.account-page {
  margin-top:calc(var(--site-hh, var(--hh, 126px)) + var(--post-header-gap, 50px));
  background:#fff;
  color:#0f172a;
  min-height:calc(100vh - var(--site-hh, var(--hh, 126px)) - var(--post-header-gap, 50px));
  padding-bottom:22px;
}
.account-page .container {
  width:min(var(--page-max, 1180px), calc(100vw - var(--page-gutter, 48px)));
  max-width:var(--page-max, 1180px);
  margin-inline:auto;
}
.account-hero {
  padding:34px 0 30px;
  border-bottom:1px solid #eef2f7;
  background:#fff;
}
.account-hero-grid {
  display:grid;
  grid-template-columns:minmax(0, 1fr);
  gap:22px;
  align-items:center;
}
.account-breadcrumb {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:24px;
  color:#475569;
  font-size:13px;
  font-weight:700;
}
.account-breadcrumb a {
  color:#0f172a;
  text-decoration:none;
}
.account-title-block h1 {
  margin:0 0 14px;
  color:#0f172a;
  font-size:clamp(42px, 4.8vw, 64px);
  line-height:1;
  font-weight:950;
  letter-spacing:-.055em;
}
.account-title-block p {
  max-width:420px;
  margin:0;
  color:#1f2937;
  font-size:19px;
  line-height:1.55;
  font-weight:600;
}
.account-promo-card {
  position:relative;
  display:grid;
  grid-template-columns:minmax(190px, .72fr) minmax(210px, 1fr);
  min-height:190px;
  padding:28px 30px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#fff;
  text-decoration:none;
  box-shadow:0 18px 45px rgba(15,23,42,.06);
}
.account-promo-card strong {
  display:block;
  margin-bottom:12px;
  color:#111827;
  font-size:27px;
  line-height:1.12;
  font-weight:950;
  letter-spacing:-.035em;
}
.account-promo-card span {
  display:block;
  max-width:250px;
  margin-bottom:22px;
  color:#111827;
  font-size:15px;
  line-height:1.5;
  font-weight:600;
}
.account-promo-card em {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 26px;
  border-radius:7px;
  background:#4f1db7;
  color:#fff;
  font-size:13px;
  font-style:normal;
  font-weight:950;
  text-transform:uppercase;
  box-shadow:0 8px 18px rgba(79,29,183,.22);
}
.account-promo-visual {
  position:relative;
  min-height:150px;
}
.promo-sheet,
.promo-box {
  position:absolute;
  display:block;
  border:1px solid #e5e7eb;
  background:#fff;
  box-shadow:0 16px 28px rgba(15,23,42,.12);
}
.promo-sheet::before,
.promo-sheet::after,
.promo-box::before,
.promo-box::after {
  content:"";
  position:absolute;
  display:block;
}
.promo-sheet-one {
  width:118px;
  height:154px;
  right:96px;
  top:12px;
  transform:rotate(9deg);
  background:#111827;
}
.promo-sheet-one::before {
  left:15px;
  top:16px;
  width:36px;
  height:5px;
  background:#ff7900;
}
.promo-sheet-one::after {
  left:16px;
  bottom:22px;
  width:76px;
  height:38px;
  border-radius:4px;
  background:#4f1db7;
}
.promo-sheet-two {
  width:120px;
  height:160px;
  right:14px;
  top:20px;
  transform:rotate(6deg);
  background:#4f1db7;
}
.promo-sheet-two::before {
  left:15px;
  top:18px;
  width:70px;
  height:5px;
  background:#fff;
}
.promo-sheet-two::after {
  right:0;
  bottom:0;
  border-left:52px solid transparent;
  border-bottom:52px solid #ff7900;
}
.promo-box {
  left:16px;
  bottom:10px;
  width:112px;
  height:72px;
  transform:skewY(-8deg) rotate(-7deg);
  background:#fff;
}
.promo-box::before {
  inset:14px 14px auto;
  height:12px;
  background:#4f1db7;
}
.promo-box::after {
  left:14px;
  bottom:16px;
  width:62px;
  height:10px;
  background:#ff7900;
}
.account-dashboard {
  display:grid;
  grid-template-columns:230px minmax(0, 1fr);
  gap:28px;
  align-items:start;
  padding-top:28px;
}
.account-sidebar,
.account-card,
.account-benefits,
.account-contact-strip {
  border:1px solid #e7ebf0;
  border-radius:12px;
  background:#fff;
  box-shadow:0 12px 32px rgba(15,23,42,.045);
}
.account-sidebar {
  position:sticky;
  top:calc(var(--site-hh, var(--hh, 126px)) + 18px);
  overflow:hidden;
  padding:0 0 16px;
}
.account-nav-item {
  display:flex;
  align-items:center;
  gap:16px;
  min-height:58px;
  padding:0 22px;
  color:#111827;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  border-bottom:1px solid transparent;
}
.account-nav-item i {
  width:20px;
  color:#111827;
  font-size:18px;
  text-align:center;
}
.account-nav-item:hover {
  background:#faf7ff;
  color:#4f1db7;
}
.account-nav-item:hover i {
  color:#4f1db7;
}
.account-nav-item.is-active {
  min-height:64px;
  background:#4f1db7;
  color:#fff;
  font-weight:700;
}
.account-nav-item.is-active i {
  color:#fff;
}
.account-main {
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.account-stats-grid {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}
.account-stat-card {
  display:grid;
  grid-template-columns:58px minmax(0, 1fr);
  gap:14px;
  align-items:center;
  min-height:112px;
  padding:20px;
  border:1px solid #e7ebf0;
  border-radius:12px;
  background:#fff;
  box-shadow:0 12px 28px rgba(15,23,42,.045);
}
.account-stat-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  border-radius:50%;
  color:#fff;
  font-size:23px;
}
.stat-purple .account-stat-icon,
.stat-wallet .account-stat-icon { background:#4f1db7; }
.stat-orange .account-stat-icon { background:#ff7900; }
.stat-green .account-stat-icon { background:#23a33d; }
.account-stat-card small {
  display:block;
  margin-bottom:4px;
  color:#111827;
  font-size:12px;
  font-weight:700;
}
.account-stat-card strong {
  display:block;
  color:#111827;
  font-size:25px;
  line-height:1;
  font-weight:950;
}
.account-stat-card a {
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:10px;
  color:#4f1db7;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}
.account-card {
  padding:24px;
}
.account-profile-card {
  display:grid;
  grid-template-columns:120px minmax(0, 1fr) auto;
  gap:24px;
  align-items:center;
}
.account-avatar-wrap {
  position:relative;
  width:116px;
  height:116px;
}
.account-avatar {
  display:flex;
  align-items:center;
  justify-content:center;
  width:116px;
  height:116px;
  border-radius:50%;
  background:#f3f4f6;
  color:#4f1db7;
  font-size:44px;
  font-weight:950;
  box-shadow:inset 0 0 0 1px #e7ebf0;
}
.account-avatar-wrap button {
  position:absolute;
  right:0;
  bottom:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border:1px solid #e7ebf0;
  border-radius:50%;
  background:#fff;
  color:#111827;
  box-shadow:0 8px 20px rgba(15,23,42,.1);
}
.account-profile-copy h2,
.account-section-head h2,
.account-actions-card h2,
.account-form-card h2 {
  margin:0;
  color:#111827;
  font-size:22px;
  line-height:1.2;
  font-weight:950;
  letter-spacing:-.025em;
}
.account-profile-copy p {
  display:flex;
  align-items:center;
  gap:12px;
  margin:9px 0 0;
  color:#111827;
  font-size:14px;
  font-weight:600;
}
.account-profile-copy p i {
  width:16px;
  color:#111827;
}
.account-edit-btn,
.account-section-head a,
.account-mini-btn {
  color:#4f1db7;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
}
.account-edit-btn {
  align-self:start;
  padding:12px 20px;
  border:1px solid #ff7900;
  border-radius:7px;
  color:#ff7900;
}
.account-section-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.account-section-head p {
  margin:6px 0 0;
  color:#64748b;
  font-size:13px;
  font-weight:600;
}
.account-empty-state {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:190px;
  gap:9px;
  color:#64748b;
  text-align:center;
}
.account-empty-state i {
  color:#4f1db7;
  font-size:42px;
}
.account-empty-state strong {
  color:#111827;
  font-size:18px;
}
.account-order-table {
  display:block;
  overflow-x:auto;
}
.account-order-row {
  display:grid;
  grid-template-columns:1.05fr 1fr 1.15fr .8fr .95fr 1fr;
  gap:16px;
  align-items:center;
  min-width:760px;
  padding:14px 0;
  border-bottom:1px solid #eef2f7;
  color:#111827;
  font-size:13px;
  font-weight:700;
}
.account-order-row:last-child {
  border-bottom:0;
}
.account-order-head {
  padding-top:0;
  color:#111827;
  font-size:12px;
  font-weight:700;
}
.account-product-mini {
  display:flex;
  align-items:center;
  min-height:42px;
}
.account-product-mini i,
.account-product-mini em {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:38px;
  margin-right:-7px;
  border:1px solid #e7ebf0;
  border-radius:4px;
  background:#fff7ed;
  color:#ff7900;
  font-style:normal;
  font-weight:950;
  box-shadow:0 5px 12px rgba(15,23,42,.08);
}
.account-product-mini i:nth-child(2) { background:#111827; color:#fff; }
.account-product-mini i:nth-child(3) { background:#4f1db7; color:#fff; }
.account-product-mini em { background:#f3f4f6; color:#111827; }
.account-status {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  min-width:86px;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  background:#ede9fe;
  color:#4f1db7;
  font-size:12px;
  font-weight:700;
}
.status-delivered { background:#dcfce7; color:#15803d; }
.status-processing,
.status-whatsapp_pending { background:#ffedd5; color:#f97316; }
.status-printing { background:#fff7ed; color:#ff7900; }
.status-ready { background:#dbeafe; color:#2563eb; }
.status-cancelled { background:#fee2e2; color:#dc2626; }
.account-mini-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 14px;
  border-radius:999px;
  background:#f5f0ff;
}
.account-design-grid {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}
.account-wishlist-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
  gap:16px;
}
.account-wishlist-item {
  overflow:hidden;
  border:1px solid #eef2f7;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}
.account-wishlist-img {
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1/1;
  background:#f8fafc;
}
.account-wishlist-img img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.account-wishlist-img span { font-size:42px; }
.account-wishlist-copy {
  display:grid;
  gap:7px;
  padding:13px;
}
.account-wishlist-copy small {
  color:#64748b;
  font-size:11px;
  font-weight:700;
}
.account-wishlist-copy strong {
  color:#111827;
  font-size:14px;
  font-weight:950;
}
.account-wishlist-copy em {
  color:#4f1db7;
  font-size:12px;
  font-style:normal;
  font-weight:700;
}
.account-wishlist-actions {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:3px;
}
.account-uploaded-design-grid {
  grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
}
.account-design-file-card {
  overflow:hidden;
  border:1px solid #eef2f7;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}
.account-design-preview {
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:4/3;
  overflow:hidden;
  background:linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}
.account-design-preview img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.account-design-file-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:68px;
  height:68px;
  border-radius:20px;
  background:#fff;
  color:#4f1db7;
  font-size:32px;
  box-shadow:0 14px 28px rgba(79,29,183,.14);
}
.account-design-copy {
  display:grid;
  gap:8px;
  padding:14px;
}
.account-design-copy strong {
  margin-top:0;
}
.account-design-filename {
  color:#334155;
  font-size:12px;
  font-weight:700;
  word-break:break-word;
}
.account-design-meta {
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.account-design-meta span {
  border-radius:999px;
  background:#f1f5f9;
  color:#64748b;
  font-size:11px;
  font-weight:700;
  padding:5px 8px;
}
.account-design-actions {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:4px;
}

.account-design-card strong,
.account-design-card small {
  display:block;
}
.account-design-card strong {
  margin-top:10px;
  color:#111827;
  font-size:13px;
  font-weight:700;
}
.account-design-card small {
  margin-top:4px;
  color:#64748b;
  font-size:11.5px;
  font-weight:600;
}
.account-design-thumb {
  position:relative;
  min-height:126px;
  overflow:hidden;
  border:1px solid #e7ebf0;
  border-radius:8px;
  background:#f8fafc;
}
.account-design-thumb span,
.account-design-thumb b,
.account-design-thumb em {
  position:absolute;
  display:block;
  border-radius:3px;
  box-shadow:0 10px 18px rgba(15,23,42,.12);
}
.account-design-thumb span {
  left:22px;
  bottom:20px;
  width:80px;
  height:54px;
  background:#111827;
  transform:rotate(-10deg);
}
.account-design-thumb b {
  right:22px;
  top:20px;
  width:70px;
  height:92px;
  background:#fff;
  border:1px solid #e7ebf0;
  transform:rotate(7deg);
}
.account-design-thumb em {
  right:34px;
  bottom:22px;
  width:74px;
  height:22px;
  background:#ff7900;
}
.design-thumb-2 span { background:#ff7900; }
.design-thumb-2 em { background:#4f1db7; }
.design-thumb-3 span { background:#4f1db7; }
.design-thumb-3 em { background:#111827; }
.design-thumb-4 span { background:#111827; }
.design-thumb-4 b { background:#4f1db7; }
.account-design-thumb button {
  position:absolute;
  right:8px;
  top:8px;
  border:0;
  background:#fff;
  color:#111827;
  border-radius:999px;
  width:28px;
  height:28px;
}
.account-action-grid {
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:12px;
  margin-top:16px;
}
.account-action-grid a {
  display:grid;
  grid-template-columns:38px minmax(0, 1fr);
  grid-template-rows:auto auto;
  align-items:center;
  min-height:74px;
  padding:14px;
  border:1px solid #e7ebf0;
  border-radius:9px;
  background:#fff;
  color:#111827;
  text-decoration:none;
}
.account-action-grid a:hover {
  border-color:#4f1db7;
  box-shadow:0 10px 24px rgba(79,29,183,.08);
}
.account-action-grid i {
  grid-row:1 / 3;
  color:#ff7900;
  font-size:24px;
}
.account-action-grid strong {
  font-size:12px;
  font-weight:950;
}
.account-action-grid span {
  color:#64748b;
  font-size:11px;
  font-weight:700;
}
.account-form-card {
  scroll-margin-top:calc(var(--site-hh, var(--hh, 126px)) + 20px);
}
.account-form-block {
  padding:18px;
  margin-bottom:16px;
  border:1px solid #e7ebf0;
  border-radius:10px;
  background:#fbfcfe;
}
.account-form-block h3 {
  display:flex;
  align-items:center;
  gap:9px;
  margin:0 0 14px;
  color:#111827;
  font-size:14px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.account-warning,
.account-alert {
  margin-bottom:12px;
  padding:11px 13px;
  border-radius:8px;
  font-size:12px;
  font-weight:700;
}
.account-warning { background:#fff7ed; color:#f97316; border:1px solid #fed7aa; }
.account-alert.is-error { background:#fee2e2; color:#dc2626; border:1px solid #fecaca; }
.account-alert.is-ok { background:#dcfce7; color:#15803d; border:1px solid #bbf7d0; }
.account-form-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.account-form-actions .btn {
  min-height:46px;
  padding:0 18px;
  border-radius:9px;
}
.account-benefits {
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:8px;
  margin-top:28px;
  padding:22px;
}
.account-benefits div {
  display:grid;
  grid-template-columns:56px minmax(0, 1fr);
  grid-template-rows:auto auto;
  align-items:center;
  gap:4px 14px;
}
.account-benefits i {
  grid-row:1 / 3;
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:50%;
  background:#4f1db7;
  color:#fff;
  font-size:20px;
}
.account-benefits div:nth-child(2) i,
.account-benefits div:nth-child(5) i { background:#23a33d; }
.account-benefits div:nth-child(3) i { background:#ff7900; }
.account-benefits strong {
  color:#111827;
  font-size:13px;
  font-weight:950;
}
.account-benefits span {
  color:#111827;
  font-size:12px;
  line-height:1.35;
  font-weight:600;
}
.account-contact-strip {
  display:grid;
  grid-template-columns:1fr 1.65fr 1.75fr 1.65fr;
  overflow:hidden;
  margin-top:20px;
  padding:0;
}
.account-contact-strip > div,
.account-contact-strip > a {
  display:grid;
  grid-template-columns:54px minmax(0, 1fr);
  grid-template-rows:auto auto;
  align-items:center;
  gap:3px 12px;
  min-height:80px;
  padding:14px 24px;
  border-right:1px solid #dfe5ee;
  color:#111827;
  text-decoration:none;
}
.account-contact-strip > *:last-child { border-right:0; }
.account-contact-strip i {
  grid-row:1 / 3;
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:2px solid #4f1db7;
  border-radius:50%;
  color:#4f1db7;
  font-size:22px;
}
.account-contact-strip strong {
  font-size:14px;
  font-weight:950;
}
.account-contact-strip span {
  color:#111827;
  font-size:12px;
  font-weight:600;
}
.account-contact-strip a:nth-child(3) i {
  border-color:#23a33d;
  color:#23a33d;
}
.account-contact-strip .account-download {
  background:#ff7900;
  color:#fff;
}
.account-contact-strip .account-download i {
  border-color:#fff;
  color:#fff;
}
.account-contact-strip .account-download span,
.account-contact-strip .account-download strong {
  color:#fff;
}
@media (max-width:1180px) {
  .account-stats-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .account-action-grid { grid-template-columns:repeat(3, minmax(0, 1fr)); }
  .account-benefits { grid-template-columns:repeat(3, minmax(0, 1fr)); }
  .account-contact-strip { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:980px) {
  .account-page .container { width:min(100%, calc(100vw - 32px)); }
  .account-dashboard { grid-template-columns:1fr; }
  .account-sidebar { position:static; display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); padding:12px; gap:8px; }
  .account-nav-item,
  .account-nav-item.is-active { min-height:48px; border-radius:8px; padding:0 14px; }
  .account-profile-card { grid-template-columns:96px minmax(0, 1fr); }
  .account-edit-btn { grid-column:1 / -1; width:max-content; }
  .account-design-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:640px) {
  .account-page { margin-top:calc(var(--site-hh, var(--hh, 126px)) + 24px); }
  .account-hero { padding:24px 0; }
  .account-title-block h1 { font-size:42px; }
  .account-title-block p { font-size:16px; }
  .account-promo-card { grid-template-columns:1fr; min-height:0; padding:22px; }
  .account-promo-visual { min-height:150px; margin-top:10px; }
  .account-dashboard { padding-top:18px; }
  .account-sidebar { grid-template-columns:1fr; }
  .account-stats-grid,
  .account-design-grid,
  .account-action-grid,
  .account-benefits,
  .account-contact-strip { grid-template-columns:1fr; }
  .account-card { padding:18px; }
  .account-profile-card { grid-template-columns:1fr; text-align:left; }
  .account-avatar-wrap { width:96px; height:96px; }
  .account-avatar { width:96px; height:96px; font-size:34px; }
  .account-section-head { align-items:flex-start; flex-direction:column; }
  .account-order-row { min-width:680px; grid-template-columns:1fr .9fr 1.05fr .75fr .9fr .9fr; gap:12px; }
  .account-benefits div { grid-template-columns:50px minmax(0,1fr); }
  .account-contact-strip > div,
  .account-contact-strip > a { border-right:0; border-bottom:1px solid #e7ebf0; }
}

/* My Account tabbed single-page behavior */
.account-tab-panel {
  display:none;
  flex-direction:column;
  gap:22px;
}
.account-tab-panel.is-active {
  display:flex;
}
.account-nav-item {
  width:100%;
  border:0;
  background:transparent;
  font-family:inherit;
  cursor:pointer;
  text-align:left;
}
.account-stat-card button,
.account-section-head button {
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:10px;
  padding:0;
  border:0;
  background:transparent;
  color:#4f1db7;
  font-family:inherit;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
}
.account-section-head button {
  margin-top:0;
  font-size:13px;
}
.account-edit-btn {
  border:1px solid #ff7900;
  background:#fff;
  font-family:inherit;
  cursor:pointer;
}
.account-action-grid button {
  display:grid;
  grid-template-columns:38px minmax(0, 1fr);
  grid-template-rows:auto auto;
  align-items:center;
  min-height:74px;
  padding:14px;
  border:1px solid #e7ebf0;
  border-radius:9px;
  background:#fff;
  color:#111827;
  font-family:inherit;
  text-align:left;
  cursor:pointer;
}
.account-action-grid button:hover {
  border-color:#4f1db7;
  box-shadow:0 10px 24px rgba(79,29,183,.08);
}
.account-action-grid button i {
  grid-row:1 / 3;
  color:#ff7900;
  font-size:24px;
}
.account-action-grid button strong {
  font-size:12px;
  font-weight:950;
}
.account-action-grid button span {
  color:#64748b;
  font-size:11px;
  font-weight:700;
}
.account-order-detail {
  border-bottom:1px solid #eef2f7;
}
.account-order-detail:last-child {
  border-bottom:0;
}
.account-order-detail summary {
  list-style:none;
  cursor:pointer;
}
.account-order-detail summary::-webkit-details-marker {
  display:none;
}
.account-order-detail .account-order-row {
  border-bottom:0;
}
.account-order-expanded {
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:18px;
  min-width:760px;
  padding:0 0 16px;
  color:#475569;
  font-size:13px;
}
.account-order-expanded strong {
  display:block;
  margin-bottom:7px;
  color:#111827;
  font-size:13px;
  font-weight:950;
}
.account-order-expanded p,
.account-order-expanded ul {
  margin:0;
}
.account-order-expanded ul {
  padding-left:18px;
}
.account-order-expanded li {
  margin-bottom:5px;
}
.account-order-expanded li.account-design-issue {
  list-style:none;
  margin-left:-18px;
  padding:10px 12px;
  border:1px solid #fecaca;
  border-radius:12px;
  background:#fff1f2;
  color:#9f1239;
  font-weight:700;
}
.account-placeholder-card {
  display:flex;
  min-height:360px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
}
.account-placeholder-card > i {
  display:flex;
  align-items:center;
  justify-content:center;
  width:70px;
  height:70px;
  border-radius:50%;
  background:#f5f0ff;
  color:#4f1db7;
  font-size:30px;
}
.account-placeholder-card h2 {
  margin:0;
  color:#111827;
  font-size:24px;
  font-weight:950;
}
.account-placeholder-card p {
  max-width:520px;
  margin:0 0 6px;
  color:#64748b;
  font-size:14px;
  line-height:1.6;
  font-weight:650;
}
.account-placeholder-card p strong {
  color:#111827;
}
.account-muted {
  margin:0 0 14px;
  color:#64748b;
  font-size:13px;
  line-height:1.55;
  font-weight:650;
}
.account-pass-wrap {
  position:relative;
}
.account-pass-wrap .fi {
  padding-right:48px;
}
.account-pass-wrap button {
  position:absolute;
  right:8px;
  top:50%;
  transform:translateY(-50%);
  border:0;
  background:transparent;
  color:#64748b;
  cursor:pointer;
}
@media (max-width:640px) {
  .account-order-expanded {
    min-width:680px;
    grid-template-columns:1fr;
  }
}

/* My Account bottom sections now reuse Home-page Why RCS + Quick Help strips */
.account-why-section {
  padding-top:32px;
  padding-bottom:26px;
}
.account-why-section .why-print-container,
.account-quick-help-section .quick-help-container {
  width:min(var(--page-max, 1180px), calc(100vw - var(--page-gutter, 48px)));
}
.account-quick-help-section {
  padding-top:0;
  padding-bottom:46px;
}
@media (max-width:640px) {
  .account-why-section .why-print-container,
  .account-quick-help-section .quick-help-container {
    width:min(100%, calc(100vw - 24px));
  }
}

/* My Account order action menu cleanup */
.account-order-expanded {
  grid-template-columns:1.35fr .9fr .9fr;
}
.account-mini-btn i {
  margin-left:6px;
  font-size:10px;
}
.account-order-actions-list {
  display:flex;
  flex-direction:column;
  gap:8px;
}
.account-order-actions-list a,
.account-order-actions-list button,
.account-order-action-disabled {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:34px;
  width:max-content;
  max-width:100%;
  padding:0 13px;
  border:1px solid #e7ebf0;
  border-radius:999px;
  background:#fff;
  color:#4f1db7;
  font-family:inherit;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}
.account-order-actions-list button {
  cursor:pointer;
}
.account-order-actions-list a:hover,
.account-order-actions-list button:hover {
  border-color:#4f1db7;
  background:#f5f0ff;
}
.account-order-action-disabled {
  color:#94a3b8;
  background:#f8fafc;
}
@media (max-width:640px) {
  .account-order-expanded {
    grid-template-columns:1fr;
  }
}

/* My Account order tracking timeline */
.account-order-tracking {
  grid-column:1 / -1;
  padding:14px 16px 16px;
  border:1px solid #e7ebf0;
  border-radius:12px;
  background:#fbfcfe;
  transition:box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.account-order-tracking.is-highlighted {
  border-color:#ff7900;
  background:#fffaf2;
  box-shadow:0 0 0 4px rgba(255,121,0,.12);
}
.account-track-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.account-track-head strong {
  margin:0;
  color:#111827;
  font-size:14px;
  font-weight:950;
}
.account-track-head span {
  display:inline-flex;
  min-height:26px;
  align-items:center;
  padding:0 11px;
  border-radius:999px;
  background:#f5f0ff;
  color:#4f1db7;
  font-size:12px;
  font-weight:700;
}
.account-track-steps {
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:8px;
}
.account-track-step {
  position:relative;
  display:flex;
  min-width:0;
  flex-direction:column;
  align-items:center;
  gap:7px;
  padding:11px 7px;
  border:1px solid #e7ebf0;
  border-radius:10px;
  background:#fff;
  color:#94a3b8;
  text-align:center;
}
.account-track-step span {
  display:flex;
  width:32px;
  height:32px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#e2e8f0;
  color:#64748b;
  font-size:12px;
  font-weight:950;
}
.account-track-step strong {
  color:inherit;
  font-size:11.5px;
  font-weight:700;
  line-height:1.2;
}
.account-track-step.is-done {
  border-color:#bbf7d0;
  background:#f0fdf4;
  color:#15803d;
}
.account-track-step.is-done span {
  background:#23a33d;
  color:#fff;
}
.account-track-step.is-active {
  border-color:#fed7aa;
  background:#fff7ed;
  color:#ff7900;
}
.account-track-step.is-active span {
  background:#ff7900;
  color:#fff;
}
.account-track-alert {
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
}
.account-track-alert.is-cancelled {
  background:#fee2e2;
  color:#dc2626;
}
.account-track-alert.is-pending {
  background:#f0fdf4;
  color:#15803d;
}
@media (max-width:720px) {
  .account-track-steps {
    grid-template-columns:1fr;
  }
  .account-track-step {
    align-items:flex-start;
    flex-direction:row;
    justify-content:flex-start;
    text-align:left;
  }
  .account-track-head {
    align-items:flex-start;
    flex-direction:column;
  }
}

/* Dynamic reviews */
.customer-initials {
  width:72px;
  height:72px;
  flex:0 0 72px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#4f1db7;
  color:#fff;
  font-size:20px;
  font-weight:950;
  box-shadow:0 0 0 3px rgba(79,29,183,.12);
}
.customer-profile a { color:#4f1db7; font-weight:700; text-decoration:none; }
.customer-card-empty { background:#f8fafc; }
.pd-review-summary-box {
  display:grid;
  grid-template-columns:minmax(160px,.35fr) 1fr;
  gap:18px;
  align-items:center;
  margin:18px 0;
  padding:18px;
  border:1px solid #e7ebf0;
  border-radius:16px;
  background:#fbfcfe;
}
.pd-review-score {
  display:flex;
  flex-direction:column;
  gap:5px;
  align-items:flex-start;
}
.pd-review-score strong { color:#071225; font-size:42px; font-weight:950; line-height:1; }
.pd-review-score span,.pd-review-stars,.account-review-stars,.admin-review-stars { color:#ff8a00; letter-spacing:.08em; font-weight:700; }
.pd-review-score small { color:#64748b; font-size:12px; font-weight:700; }
.pd-review-breakdown { display:flex; flex-direction:column; gap:8px; }
.pd-review-breakdown div { display:grid; grid-template-columns:34px 1fr 34px; align-items:center; gap:10px; color:#475569; font-size:12px; font-weight:700; }
.pd-review-breakdown b { height:8px; overflow:hidden; border-radius:999px; background:#e7ebf0; }
.pd-review-breakdown i { display:block; height:100%; border-radius:inherit; background:#ff7900; }
.pd-review-list { display:grid; gap:12px; margin-top:18px; }
.pd-review-list-card,.pd-review-empty {
  padding:16px;
  border:1px solid #e7ebf0;
  border-radius:14px;
  background:#fff;
}
.pd-review-list-card p { margin:10px 0 0; color:#475569; line-height:1.55; }
.pd-review-empty { display:flex; flex-direction:column; gap:8px; align-items:flex-start; color:#64748b; }
.pd-review-empty i { color:#ff7900; font-size:24px; }
.pd-review-empty strong { color:#071225; font-size:18px; }
.pd-review-card-empty { border-style:dashed; }

.account-reviews-card { display:flex; flex-direction:column; gap:22px; }
.account-review-block { display:flex; flex-direction:column; gap:14px; }
.account-review-block h3 {
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  color:#071225;
  font-size:18px;
  font-weight:950;
}
.account-reviewable-list,.account-submitted-reviews { display:grid; gap:14px; }
.account-reviewable-card,.account-submitted-review {
  display:grid;
  grid-template-columns:minmax(220px,.85fr) 1fr;
  gap:18px;
  padding:16px;
  border:1px solid #e7ebf0;
  border-radius:16px;
  background:#fff;
}
.account-review-product { display:flex; gap:13px; align-items:flex-start; min-width:0; }
.account-review-thumb {
  width:74px;
  height:74px;
  flex:0 0 74px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#f8fafc;
  overflow:hidden;
  color:#4f1db7;
}
.account-review-thumb img { width:100%; height:100%; object-fit:cover; }
.account-review-product strong,.account-submitted-review strong { display:block; color:#071225; font-size:15px; font-weight:950; }
.account-review-product span { display:block; margin:5px 0; color:#64748b; font-size:12px; font-weight:700; }
.account-review-product a,.account-submitted-review a { color:#4f1db7; font-size:12px; font-weight:700; text-decoration:none; }
.account-review-form { display:grid; gap:8px; }
.account-review-form label { color:#475569; font-size:12px; font-weight:700; }
.account-review-form textarea.fi { resize:vertical; min-height:84px; }
.account-review-msg { min-height:18px; color:#64748b; font-size:12px; font-weight:700; }
.account-review-msg.is-ok { color:#15803d; }
.account-review-msg.is-error { color:#dc2626; }
.account-submitted-review { grid-template-columns:1fr auto; align-items:flex-start; }
.account-submitted-review p { margin:8px 0; color:#475569; line-height:1.55; }
.account-review-status {
  display:inline-flex;
  min-height:28px;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  background:#f5f0ff;
  color:#4f1db7;
  font-size:12px;
  font-weight:950;
}
.account-review-status.is-approved { background:#dcfce7; color:#15803d; }
.account-review-status.is-rejected { background:#fee2e2; color:#dc2626; }
.account-empty-state.compact { padding:26px 18px; }

.admin-review-toolbar {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
  padding:18px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
}
.admin-review-toolbar strong { display:block; color:var(--text); font-size:18px; font-weight:700; }
.admin-review-toolbar p { margin:4px 0 0; color:var(--text2); font-size:13px; }
.admin-review-filters { display:flex; gap:10px; min-width:min(520px, 100%); }
.admin-review-list { display:grid; gap:14px; }
.admin-review-card {
  padding:18px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--sh-sm);
}
.admin-review-top,.admin-review-meta,.admin-review-actions,.admin-review-badges {
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.admin-review-top { justify-content:space-between; align-items:flex-start; }
.admin-review-top strong { display:block; color:var(--text); font-size:16px; font-weight:700; }
.admin-review-top span { color:var(--text2); font-size:12px; }
.admin-review-card p { margin:14px 0; color:var(--text2); line-height:1.55; }
.admin-review-meta { color:var(--text3); font-size:12px; font-weight:700; }
.admin-review-meta a { color:var(--blue); font-weight:700; text-decoration:none; }
.admin-review-actions { margin-top:14px; }
.admin-review-status,.admin-review-featured {
  display:inline-flex;
  min-height:26px;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  background:#f5f0ff;
  color:#4f1db7;
  font-size:11px;
  font-weight:950;
}
.admin-review-status.is-approved { background:#dcfce7; color:#15803d; }
.admin-review-status.is-rejected { background:#fee2e2; color:#dc2626; }
.admin-review-featured { background:#fff7ed; color:#ff7900; }
.admin-review-empty {
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
  padding:44px;
  border:1px dashed var(--border);
  border-radius:16px;
  background:#fff;
  color:var(--text2);
}
.admin-review-empty strong { color:var(--text); font-size:18px; }
.admin-review-empty.is-error { color:var(--red); }
@media (max-width:800px) {
  .pd-review-summary-box,.account-reviewable-card,.account-submitted-review { grid-template-columns:1fr; }
  .admin-review-toolbar,.admin-review-filters { flex-direction:column; }
  .admin-review-filters { min-width:0; }
}
.btn-danger {
  background:#dc2626;
  border-color:#dc2626;
  color:#fff;
}
.btn-danger:hover {
  background:#b91c1c;
  border-color:#b91c1c;
  color:#fff;
}

/* Checkout showcase layout */
.checkout-showcase-page {
  --checkout-purple:#4b148c;
  --checkout-orange:#ff5b08;
  --checkout-green:#15803d;
  margin-top:calc(var(--site-hh, var(--hh)) + var(--post-header-gap,50px));
  min-height:calc(100vh - var(--site-hh, var(--hh)) - var(--post-header-gap,50px));
  padding:34px 0 72px;
  background:#fbfbfd;
  color:#111322;
  font-family:var(--fn);
}
.checkout-showcase-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  max-width:var(--page-max);
  margin:0 auto;
}
.checkout-page-head h1 {
  margin:0 0 10px;
  color:#081126;
  font-size:clamp(42px, 5vw, 68px);
  font-weight:700;
  line-height:1;
  letter-spacing:-.055em;
}
.checkout-page-head nav { display:flex; align-items:center; gap:9px; color:#4b148c; font-size:13px; font-weight:700; }
.checkout-page-head nav span:last-child { color:#111322; }
.checkout-steps {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:38px;
  margin:42px 0 36px;
  padding:0;
  list-style:none;
  counter-reset:none;
}
.checkout-steps li { position:relative; display:grid; justify-items:center; gap:12px; color:#6b7280; font-size:13px; font-weight:700; }
.checkout-steps li:not(:last-child)::after {
  content:"";
  position:absolute;
  left:calc(50% + 38px);
  right:calc(-50% + 38px);
  top:21px;
  height:2px;
  background:#d1d5db;
}
.checkout-steps span {
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border:2px solid #d1d5db;
  border-radius:50%;
  color:#111322;
  background:#fff;
  font-size:18px;
  font-weight:700;
  z-index:1;
}
.checkout-steps .is-active { color:#4b148c; }
.checkout-steps .is-active span { color:#fff; background:#4b148c; border-color:#4b148c; box-shadow:0 12px 24px rgba(75,20,140,.2); }
.checkout-layout-grid { display:grid; grid-template-columns:minmax(0, 1.55fr) minmax(390px, .85fr); gap:34px; align-items:start; }
.checkout-main-col, .checkout-side-col { display:grid; gap:18px; }
.checkout-side-col { position:sticky; top:calc(var(--site-hh, var(--hh)) + 20px); }
.checkout-card {
  border:1px solid #e7e8ef;
  border-radius:12px;
  background:#fff;
  box-shadow:0 14px 34px rgba(15,23,42,.045);
}
.checkout-main-col .checkout-card { padding:28px 32px; }
.checkout-card-title { display:flex; align-items:center; gap:14px; margin-bottom:22px; }
.checkout-card-title > i {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:9px;
  color:#4b148c;
  background:#f4efff;
  font-size:16px;
}
.checkout-card-title h2 { margin:0; color:#151827; font-size:24px; font-weight:700; letter-spacing:-.025em; }
.checkout-card-title small { display:block; margin-top:3px; color:#6b7280; font-size:12px; font-weight:600; letter-spacing:0; }
.checkout-form-grid { display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:18px 24px; }
.checkout-form-grid-3 { grid-template-columns:repeat(3, minmax(0, 1fr)); }
.checkout-billing-grid { margin-top:18px; }
.checkout-full-field { grid-column:1 / -1; }
.checkout-form-grid label { display:grid; gap:9px; color:#151827; font-size:13px; font-weight:700; }
.checkout-form-grid label b { color:#ef4444; }
.checkout-form-grid label span { color:#6b7280; font-weight:600; }
.checkout-input {
  width:100%;
  min-height:48px;
  border:1.5px solid #dfe3eb;
  border-radius:7px;
  padding:0 15px;
  color:#111322;
  background:#fff;
  font:500 14px/1.4 var(--fn);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.checkout-input:focus { border-color:#4b148c; box-shadow:0 0 0 4px rgba(75,20,140,.1); }
.checkout-checkline, .checkout-consent {
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:16px;
  color:#374151;
  font-size:13px;
  font-weight:600;
  line-height:1.55;
}
.checkout-checkline input, .checkout-consent input { width:17px; height:17px; flex:0 0 auto; margin-top:2px; accent-color:#4b148c; }
.checkout-login-note { margin:12px 0 0; color:#6b7280; font-size:13px; font-weight:600; }
.checkout-login-note a, .checkout-consent a { color:#4b148c; font-weight:700; text-decoration:underline; }
.checkout-error { margin-top:9px; color:#dc2626; font-size:12px; font-weight:700; }
.checkout-payment-options { display:grid; border:1px solid #e7e8ef; border-radius:9px; overflow:hidden; }
.checkout-payment-options label {
  display:grid;
  grid-template-columns:24px 1fr auto;
  gap:12px;
  align-items:center;
  min-height:62px;
  padding:10px 16px;
  border-bottom:1px solid #eceef3;
  cursor:pointer;
}
.checkout-payment-options label:last-child { border-bottom:0; }
.checkout-payment-options label.is-selected { outline:2px solid #4b148c; outline-offset:-2px; background:#fcfaff; }
.checkout-payment-options input { accent-color:#4b148c; }
.checkout-payment-options span { display:grid; gap:2px; }
.checkout-payment-options strong { font-size:14px; font-weight:700; }
.checkout-payment-options small { color:#6b7280; font-size:12px; font-weight:600; }
.checkout-payment-options em { color:#4b148c; font-style:normal; font-size:15px; font-weight:700; }
.checkout-secure-note { display:flex; align-items:center; gap:10px; margin-top:18px; padding:12px 16px; border:1px solid #bbf7d0; border-radius:7px; color:#15803d; background:#f0fdf4; font-size:13px; font-weight:700; }
.checkout-consent-actions { display:grid; gap:8px; }
.checkout-action-buttons { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:12px; }
.checkout-pay-btn, .checkout-whatsapp-btn {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  border-radius:10px;
  font-size:15px;
  font-weight:700;
}
.checkout-pay-btn { color:#fff; background:linear-gradient(135deg,#5d22b6,#3b0d86); box-shadow:0 16px 28px rgba(75,20,140,.22); }
.checkout-whatsapp-btn { color:#4b148c; border:1.5px solid #d9c8ff; background:#fff; }
.checkout-pay-warning { grid-column:1 / -1; padding:12px 14px; border:1px solid #fde68a; border-radius:10px; color:#92400e; background:#fffbeb; font-size:13px; font-weight:700; }
.checkout-summary-card { padding:26px; }
.checkout-summary-head { display:flex; align-items:flex-start; justify-content:space-between; gap:14px; margin-bottom:10px; }
.checkout-summary-head .checkout-card-title { margin-bottom:0; }
.checkout-summary-head > span { color:#4b148c; font-size:13px; font-weight:700; text-decoration:underline; }
.checkout-items-list { display:grid; gap:16px; padding:8px 0 18px; border-bottom:1px solid #eceef3; }
.checkout-item { display:grid; grid-template-columns:72px 1fr auto; gap:14px; align-items:center; }
.checkout-item-img { width:72px; height:72px; overflow:hidden; border-radius:8px; background:#f3f4f6; }
.checkout-item-img img { width:100%; height:100%; object-fit:cover; }
.checkout-item-copy h3 { margin:0 0 5px; color:#151827; font-size:14px; font-weight:700; }
.checkout-item-copy p { margin:0 0 6px; color:#6b7280; font-size:12px; font-weight:600; }
.checkout-item-copy strong { color:#111322; font-size:14px; font-weight:700; }
.checkout-item-side { display:grid; justify-items:end; gap:8px; }
.checkout-item-side span { display:grid; place-items:center; min-width:34px; min-height:34px; border:1px solid #dfe3eb; border-radius:5px; font-weight:700; }
.checkout-item-side button { color:#ef4444; font-size:18px; line-height:1; }
.checkout-coupon-mini { display:grid; gap:10px; padding:17px 0; border-bottom:1px solid #eceef3; }
.checkout-coupon-mini > div:first-child { display:flex; align-items:center; gap:10px; color:#111322; font-size:13px; font-weight:700; }
.checkout-coupon-mini > div:first-child i { color:#4b148c; }
.checkout-coupon-mini .coupon-row { display:grid; grid-template-columns:1fr auto; gap:8px; }
.checkout-coupon-mini input { min-width:0; border:1.5px solid #dfe3eb; border-radius:7px; padding:9px 11px; }
.checkout-totals { display:grid; gap:13px; padding-top:18px; }
.checkout-totals > div { display:flex; align-items:center; justify-content:space-between; gap:16px; color:#111322; font-size:15px; }
.checkout-totals span { color:#111322; }
.checkout-totals strong { color:#111322; font-weight:700; }
.checkout-totals .is-discount, .checkout-totals .is-discount strong, .checkout-totals .is-free { color:#15803d; }
.checkout-totals .is-manual { color:#ea580c; font-size:13px; }
.checkout-total-row { margin-top:8px; padding-top:18px; border-top:2px dashed #c9cdd5; font-size:18px !important; font-weight:700; }
.checkout-total-row strong { color:#4b148c; font-size:28px; letter-spacing:-.04em; }
.checkout-why-card { padding:28px; }
.checkout-why-list { display:grid; gap:22px; }
.checkout-why-list > div { display:grid; grid-template-columns:54px 1fr; gap:14px; align-items:center; }
.checkout-why-list i { display:grid; place-items:center; width:54px; height:54px; border-radius:50%; color:#fff; background:#4b148c; font-size:20px; }
.checkout-why-list > div:nth-child(2) i { background:#ff5b08; }
.checkout-why-list > div:nth-child(3) i { background:#2ca343; }
.checkout-why-list strong { display:block; color:#151827; font-size:14px; font-weight:700; }
.checkout-why-list small { color:#6b7280; font-size:12px; font-weight:600; line-height:1.45; }
@media (max-width:1180px) {
  .checkout-layout-grid { grid-template-columns:1fr; }
  .checkout-side-col { position:static; }
  .checkout-form-grid-3 { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:760px) {
  .checkout-showcase-page { margin-top:calc(var(--site-hh, var(--hh)) + 28px); padding:26px 0 46px; }
  .checkout-page-head h1 { font-size:44px; }
  .checkout-steps { grid-template-columns:repeat(4, minmax(58px, 1fr)); gap:8px; margin:28px -2px 24px; overflow:hidden; }
  .checkout-steps li { font-size:10px; gap:8px; }
  .checkout-steps li:not(:last-child)::after { left:calc(50% + 24px); right:calc(-50% + 24px); top:17px; }
  .checkout-steps span { width:34px; height:34px; font-size:14px; }
  .checkout-main-col .checkout-card, .checkout-summary-card, .checkout-why-card { padding:20px 16px; border-radius:10px; }
  .checkout-form-grid, .checkout-form-grid-3, .checkout-action-buttons { grid-template-columns:1fr; }
  .checkout-card-title h2 { font-size:21px; }
  .checkout-payment-options label { grid-template-columns:22px 1fr; }
  .checkout-payment-options em { grid-column:2; }
  .checkout-summary-head { flex-direction:column; }
  .checkout-item { grid-template-columns:60px 1fr; }
  .checkout-item-img { width:60px; height:60px; }
  .checkout-item-side { grid-column:1 / -1; display:flex; justify-content:space-between; }
  .checkout-total-row strong { font-size:24px; }
}

/* Contact showcase page matching the branded About-page system */
.contact-showcase-page {
  --contact-purple:#4b148c;
  --contact-purple-dark:#310875;
  --contact-orange:#ff5b08;
  --contact-green:#2ca343;
  --contact-ink:#111322;
  --contact-muted:#4b5563;
  margin-top:var(--site-hh, var(--hh));
  background:#fff;
  color:var(--contact-ink);
  font-family:var(--fn);
  overflow:hidden;
}
.contact-showcase-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  max-width:var(--page-max);
  margin:0 auto;
}
.contact-showcase-page .rcs-word {
  display:inline-flex;
  align-items:baseline;
  gap:.03em;
  font-weight:700;
  letter-spacing:-.055em;
}
.contact-showcase-page .rcs-word span:nth-child(1) { color:#2ca343; }
.contact-showcase-page .rcs-word span:nth-child(2) { color:#ff5b08; }
.contact-showcase-page .rcs-word span:nth-child(3) { color:#4b33c8; }
.contact-showcase-hero {
  position:relative;
  padding:62px 0 44px;
  background:
    linear-gradient(135deg, rgba(15,23,42,.03), transparent 42%),
    #fff;
  border-bottom:1px solid #f0f1f5;
}
.contact-hero-grid {
  display:grid;
  grid-template-columns:minmax(430px, .92fr) minmax(520px, 1.08fr);
  gap:42px;
  align-items:center;
}
.contact-hero-copy h1 {
  margin:0 0 8px;
  color:#111322;
  font-size:clamp(48px, 5.4vw, 76px);
  font-weight:700;
  line-height:1.03;
  letter-spacing:-.055em;
}
.contact-hero-copy h2 {
  margin:0 0 14px;
  color:var(--contact-orange);
  font-size:clamp(25px, 2.7vw, 38px);
  font-weight:700;
  line-height:1.18;
  letter-spacing:-.025em;
}
.contact-hero-copy p {
  max-width:540px;
  margin:0;
  color:#111827;
  font-size:17px;
  font-weight:500;
  line-height:1.72;
}
.contact-hero-features {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
  max-width:680px;
  margin-top:34px;
}
.contact-hero-features div {
  display:flex;
  align-items:center;
  gap:13px;
}
.contact-hero-features i {
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  flex:0 0 auto;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#6c31d6,#371086);
  box-shadow:0 14px 28px rgba(75,20,140,.22);
  font-size:22px;
}
.contact-hero-features div:nth-child(2) i { background:linear-gradient(135deg,#34b84d,#1f8f35); box-shadow:0 14px 28px rgba(44,163,67,.22); }
.contact-hero-features div:nth-child(3) i { background:linear-gradient(135deg,#ff7a18,#ff4b00); box-shadow:0 14px 28px rgba(255,91,8,.24); }
.contact-hero-features span { display:grid; gap:4px; color:#161827; }
.contact-hero-features strong { font-size:14px; font-weight:700; }
.contact-hero-features small { color:#343b49; font-size:12px; font-weight:600; }
.contact-hero-visual {
  position:relative;
  min-height:345px;
  isolation:isolate;
}
.contact-hero-visual::before {
  content:"";
  position:absolute;
  inset:-30px -70px -26px 24px;
  z-index:-1;
  background:linear-gradient(135deg, rgba(15,23,42,.06), rgba(75,20,140,.08));
  clip-path:polygon(18% 0, 100% 0, 92% 82%, 46% 100%, 0 74%);
  opacity:.78;
}
.contact-hero-paper {
  position:absolute;
  right:245px;
  top:34px;
  width:210px;
  height:280px;
  display:grid;
  align-content:start;
  justify-items:center;
  padding:38px 24px;
  border-radius:9px;
  background:
    linear-gradient(135deg, transparent 0 68%, #ff6b00 68% 78%, #4b148c 78% 100%),
    #fff;
  box-shadow:0 28px 55px rgba(15,23,42,.18);
  transform:rotate(12deg);
}
.contact-hero-paper strong { font-size:42px; line-height:.82; }
.contact-hero-paper small { margin-top:4px; color:#101827; font-size:11px; font-weight:700; letter-spacing:.42em; }
.contact-hero-paper em {
  margin-top:48px;
  color:#111827;
  font-style:normal;
  font-size:14px;
  font-weight:700;
  line-height:1.35;
  text-transform:uppercase;
}
.contact-hero-plant {
  position:absolute;
  right:72px;
  top:0;
  width:172px;
  height:172px;
  z-index:2;
  border-radius:50%;
  background:linear-gradient(180deg,#fff,#e7e7e7);
  box-shadow:0 24px 48px rgba(15,23,42,.16);
}
.contact-hero-plant::before {
  content:"";
  position:absolute;
  left:48px;
  top:28px;
  width:76px;
  height:76px;
  border-radius:80% 0 80% 0;
  background:#2ca343;
  box-shadow:-34px 22px 0 #1e8b35, 34px 20px 0 #3dbb55, 2px -18px 0 #228f35;
  transform:rotate(45deg);
}
.contact-hero-plant span {
  position:absolute;
  left:36px;
  right:36px;
  bottom:16px;
  height:62px;
  border-radius:0 0 42px 42px;
  background:repeating-linear-gradient(90deg,#fff 0 9px,#e6e6e6 9px 12px);
}
.contact-main-section { padding:28px 0 24px; }
.contact-main-grid {
  display:grid;
  grid-template-columns:minmax(0, 1.35fr) minmax(360px, .75fr);
  gap:34px;
  align-items:stretch;
}
.contact-message-card,
.contact-touch-card,
.contact-map-info,
.contact-showcase-faqs details,
.contact-design-offer {
  border:1px solid #e8e8ef;
  border-radius:18px;
  background:#fff;
  box-shadow:0 16px 34px rgba(15,23,42,.06);
}
.contact-message-card { padding:30px 38px; }
.contact-message-card h2,
.contact-touch-card h2,
.contact-section-title h2 {
  margin:0;
  color:#151827;
  font-size:26px;
  font-weight:700;
  letter-spacing:-.025em;
}
.contact-form-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px 24px;
  margin-top:24px;
}
.contact-form-grid label {
  display:grid;
  gap:9px;
  color:#151827;
  font-size:13px;
  font-weight:700;
}
.contact-form-grid b { color:#ff4b00; }
.contact-form-grid input,
.contact-form-grid textarea {
  width:100%;
  border:1.5px solid #e2e5ec;
  border-radius:8px;
  padding:14px 16px;
  color:#151827;
  background:#fff;
  font:500 14px/1.4 var(--fn);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.contact-form-grid textarea { min-height:118px; resize:vertical; }
.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  border-color:#4b148c;
  box-shadow:0 0 0 4px rgba(75,20,140,.1);
}
.contact-full-field { grid-column:1 / -1; }
.contact-send-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-width:230px;
  min-height:54px;
  margin-top:26px;
  border-radius:9px;
  color:#fff;
  background:linear-gradient(135deg,#5d22b6,#3b0d86);
  box-shadow:0 16px 28px rgba(75,20,140,.24);
  font-weight:700;
  text-transform:uppercase;
}
.contact-touch-card { padding:30px 36px; }
.contact-touch-card > p { margin:8px 0 24px; color:#4b5563; font-size:13px; font-weight:500; }
.contact-touch-list { display:grid; gap:26px; }
.contact-touch-list a {
  display:grid;
  grid-template-columns:54px 1fr;
  gap:16px;
  align-items:start;
  color:#151827;
}
.contact-touch-list i {
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#6c31d6,#371086);
  font-size:20px;
}
.contact-touch-list a:nth-child(2) i { background:linear-gradient(135deg,#34b84d,#1f8f35); }
.contact-touch-list a:nth-child(3) i { background:linear-gradient(135deg,#ff7a18,#ff4b00); }
.contact-touch-list span { display:grid; gap:3px; }
.contact-touch-list strong { font-size:15px; font-weight:700; }
.contact-touch-list b { font-size:16px; font-weight:700; }
.contact-touch-list small { color:#3f4754; font-size:12px; font-weight:600; line-height:1.5; }
.contact-benefits-section { padding:8px 0 26px; }
.contact-benefits-bar {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  min-height:112px;
  overflow:hidden;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(135deg,#54169d,#32107c);
  box-shadow:0 18px 36px rgba(75,20,140,.22);
}
.contact-benefits-bar div {
  position:relative;
  display:grid;
  grid-template-columns:60px 1fr;
  gap:16px;
  align-items:center;
  padding:24px 28px;
}
.contact-benefits-bar div:not(:last-child)::after {
  content:"";
  position:absolute;
  top:22px;
  right:0;
  bottom:22px;
  width:1px;
  background:rgba(255,255,255,.24);
}
.contact-benefits-bar i { font-size:42px; color:#fff; opacity:.94; }
.contact-benefits-bar span { display:grid; gap:5px; }
.contact-benefits-bar strong { font-size:16px; font-weight:700; }
.contact-benefits-bar small { color:rgba(255,255,255,.88); font-size:12px; font-weight:600; line-height:1.45; }
.contact-location-section { padding:4px 0 24px; }
.contact-section-title {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}
.contact-section-title a {
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  color:#311077;
  background:#fff;
  box-shadow:0 8px 18px rgba(15,23,42,.08);
  font-size:12px;
  font-weight:700;
}
.contact-map-card {
  position:relative;
  min-height:300px;
  overflow:hidden;
  border-radius:8px;
  border:1px solid #e6e8ef;
  background:#eef1f4;
}
.contact-map-embed {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  filter:saturate(.96) contrast(.98);
}
.contact-map-card::after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.42) 38%, rgba(255,255,255,.06) 72%);
}
.contact-map-info {
  position:absolute;
  z-index:2;
  left:34px;
  top:28px;
  width:min(300px, calc(100% - 68px));
  padding:22px;
  border-radius:10px;
}
.contact-map-info h3 { margin:0 0 10px; color:#ff5b08; font-size:20px; font-weight:700; }
.contact-map-info p { margin:0 0 12px; color:#151827; font-size:13px; font-weight:700; line-height:1.5; }
.contact-map-info ul { display:grid; gap:7px; margin:0 0 16px; padding:0; color:#151827; font-size:12px; font-weight:700; }
.contact-map-info li { display:flex; gap:8px; line-height:1.45; }
.contact-map-info i { color:#4b148c; width:14px; margin-top:2px; }
.contact-map-info a {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  border-radius:6px;
  color:#fff;
  background:#ff5b08;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
}
.contact-faq-section { padding:4px 0 96px; }
.contact-faq-grid {
  display:grid;
  grid-template-columns:minmax(0, 1.6fr) minmax(360px, .75fr);
  gap:34px;
  align-items:end;
}
.contact-section-title-compact { margin-bottom:12px; }
.contact-showcase-faqs { display:grid; gap:10px; }
.contact-showcase-faqs details {
  border-radius:8px;
  box-shadow:none;
}
.contact-showcase-faqs summary {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:50px;
  padding:0 18px;
  color:#151827;
  cursor:pointer;
  font-size:14px;
  font-weight:700;
  list-style:none;
}
.contact-showcase-faqs summary::-webkit-details-marker { display:none; }
.contact-showcase-faqs summary::after { content:"⌄"; font-size:18px; }
.contact-showcase-faqs details[open] summary::after { transform:rotate(180deg); }
.contact-showcase-faqs p { margin:0; padding:0 18px 18px; color:#4b5563; font-size:13px; line-height:1.65; }
.contact-design-offer {
  position:relative;
  min-height:190px;
  overflow:hidden;
  padding:32px;
  color:#fff;
  background:
    radial-gradient(160px 100px at 84% 82%, rgba(255,91,8,.6), transparent 62%),
    linear-gradient(135deg,#4b148c,#2e0a71);
  box-shadow:0 18px 36px rgba(75,20,140,.22);
}
.contact-design-offer h2 { margin:0 0 24px; font-size:27px; font-weight:700; line-height:1.24; letter-spacing:-.025em; }
.contact-design-offer h2 span { color:#ff8b2b; }
.contact-design-offer a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 22px;
  border-radius:7px;
  color:#fff;
  background:#ff5b08;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
}
.contact-design-offer > i {
  position:absolute;
  right:28px;
  bottom:8px;
  color:#ff8b2b;
  font-size:104px;
  filter:drop-shadow(0 14px 20px rgba(0,0,0,.22));
}
@media (max-width:1180px) {
  .contact-hero-grid,
  .contact-main-grid,
  .contact-faq-grid { grid-template-columns:1fr; }
  .contact-hero-visual { min-height:360px; }
  .contact-benefits-bar { grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .contact-benefits-bar div:nth-child(2)::after { display:none; }
}
@media (max-width:760px) {
  .contact-showcase-page { margin-top:var(--site-hh, var(--hh)); }
  .contact-showcase-hero { padding:36px 0 30px; }
  .contact-hero-copy h1 { font-size:46px; }
  .contact-hero-features,
  .contact-form-grid,
  .contact-benefits-bar { grid-template-columns:1fr; }
  .contact-hero-visual { min-height:310px; transform:scale(.84); transform-origin:top center; margin-bottom:-48px; }
  .contact-hero-paper { right:150px; }
  .contact-hero-plant { right:12px; }
  .contact-message-card,
  .contact-touch-card { padding:22px 18px; border-radius:14px; }
  .contact-send-btn { width:100%; }
  .contact-benefits-bar { border-radius:12px; }
  .contact-benefits-bar div { padding:22px 18px; }
  .contact-benefits-bar div::after { display:none; }
  .contact-section-title { align-items:flex-start; flex-direction:column; }
  .contact-map-card { min-height:430px; }
  .contact-map-info { left:16px; top:16px; width:calc(100% - 32px); }
  .contact-faq-section { padding-bottom:58px; }
  .contact-design-offer { padding:26px 22px; }
}

/* About showcase page inspired by uploaded RCS PRINT layout */
.about-showcase-page {
  --about-purple:#4b148c;
  --about-purple-2:#2f086f;
  --about-orange:#ff5b08;
  --about-green:#2ca343;
  --about-ink:#111322;
  --about-muted:#4b5563;
  margin-top:var(--site-hh, var(--hh));
  background:
    radial-gradient(520px 260px at 88% 8%, rgba(75,20,140,.08), transparent 68%),
    radial-gradient(520px 260px at 5% 42%, rgba(255,91,8,.07), transparent 68%),
    #fff;
  color:var(--about-ink);
  font-family:var(--fn);
  overflow:hidden;
}
.about-showcase-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  max-width:var(--page-max);
  margin:0 auto;
}
.about-kicker {
  margin:0 0 8px;
  color:#441399;
  font-size:14px;
  font-weight:700;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.about-showcase-page .rcs-word {
  display:inline-flex;
  align-items:baseline;
  gap:.03em;
  font-weight:700;
  letter-spacing:-.055em;
  white-space:nowrap;
}
.about-showcase-page .rcs-word span:nth-child(1) { color:#2ca343; }
.about-showcase-page .rcs-word span:nth-child(2) { color:#ff5b08; }
.about-showcase-page .rcs-word span:nth-child(3) { color:#4b33c8; }
.about-showcase-hero { padding:58px 0 34px; position:relative; }
.about-hero-grid {
  display:grid;
  grid-template-columns:minmax(390px, .82fr) minmax(560px, 1.18fr);
  gap:36px;
  align-items:center;
}
.about-hero-copy h1 {
  margin:0 0 6px;
  color:#111322;
  font-size:clamp(42px, 5.1vw, 70px);
  font-weight:700;
  line-height:1.02;
  letter-spacing:-.055em;
}
.about-hero-copy h2 {
  position:relative;
  display:inline-block;
  margin:0 0 20px;
  color:#111322;
  font-size:clamp(20px, 2vw, 30px);
  font-weight:700;
  line-height:1.22;
}
.about-hero-copy h2::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:72px;
  height:3px;
  border-radius:99px;
  background:var(--about-orange);
}
.about-hero-copy h2 span,
.about-section-head h2 span { color:var(--about-orange); }
.about-lead {
  max-width:560px;
  margin:0;
  color:#111827;
  font-size:17px;
  font-weight:500;
  line-height:1.75;
}
.about-hero-features {
  display:grid;
  grid-template-columns:repeat(4, minmax(94px, 1fr));
  gap:28px;
  max-width:590px;
  margin-top:32px;
}
.about-hero-features div,
.about-story-pills div {
  display:grid;
  gap:10px;
  color:#22115f;
  font-size:14px;
  font-weight:700;
  line-height:1.15;
}
.about-hero-features i,
.about-story-pills i,
.about-choose-grid i,
.about-process-row i {
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(135deg, #6c31d6, #37107f);
  box-shadow:0 12px 26px rgba(75,20,140,.22);
  font-size:23px;
}
.about-hero-features div:nth-child(2) i,
.about-process-row article:nth-child(2) i { background:linear-gradient(135deg, #ff7a18, #f04405); box-shadow:0 12px 26px rgba(255,91,8,.24); }
.about-hero-features div:nth-child(3) i,
.about-choose-grid article:nth-child(3n) i,
.about-process-row article:nth-child(3) i { background:linear-gradient(135deg, #34b84d, #1f8f35); box-shadow:0 12px 26px rgba(44,163,67,.24); }
.about-hero-visual {
  position:relative;
  min-height:460px;
  transform:translateX(8px);
}
.about-hero-visual::before {
  content:"";
  position:absolute;
  inset:0 0 14% 4%;
  background:linear-gradient(135deg, rgba(15,23,42,.06), rgba(75,20,140,.08));
  clip-path:polygon(28% 0, 100% 0, 92% 70%, 56% 100%, 0 77%, 10% 22%);
  opacity:.5;
}
.about-dots {
  position:absolute;
  width:120px;
  height:120px;
  opacity:.62;
  background-image:radial-gradient(#4b148c 2px, transparent 2.5px);
  background-size:18px 18px;
}
.about-dots-right { right:0; bottom:22px; }
.about-dots-left { left:-78px; top:90px; }
.about-plant {
  position:absolute;
  left:82px;
  top:74px;
  width:116px;
  height:116px;
  z-index:3;
  border-radius:50%;
  background:linear-gradient(180deg,#fff,#e7e7e7);
  box-shadow:0 20px 42px rgba(15,23,42,.16);
}
.about-plant::before {
  content:"";
  position:absolute;
  left:31px;
  top:20px;
  width:54px;
  height:54px;
  border-radius:80% 0 80% 0;
  background:#2ca343;
  box-shadow:-24px 16px 0 #1e8b35, 24px 15px 0 #3dbb55, 2px -12px 0 #228f35;
  transform:rotate(45deg);
}
.about-plant span {
  position:absolute;
  left:24px;
  right:24px;
  bottom:10px;
  height:42px;
  border-radius:0 0 30px 30px;
  background:repeating-linear-gradient(90deg,#fff 0 8px,#e6e6e6 8px 10px);
}
.about-box-card {
  position:absolute;
  left:58px;
  bottom:95px;
  width:245px;
  height:92px;
  z-index:5;
  display:grid;
  place-items:center;
  color:#fff;
  border-radius:7px;
  background:linear-gradient(145deg,#1d1d23 0%,#050509 70%);
  box-shadow:0 24px 42px rgba(15,23,42,.26);
  transform:skewY(-8deg) rotate(-1deg);
}
.about-brand-card strong { font-size:42px; line-height:.8; }
.about-brand-card small { color:#fff; letter-spacing:.48em; font-weight:700; margin-top:-18px; margin-left:12px; }
.about-brochure,
.about-shopping-bag,
.about-business-card {
  position:absolute;
  z-index:4;
  overflow:hidden;
  border-radius:8px;
  background:#fff;
  box-shadow:0 26px 54px rgba(15,23,42,.18);
}
.about-brochure-main {
  left:240px;
  top:34px;
  width:246px;
  height:350px;
  padding:28px 22px;
  transform:rotate(10deg);
}
.about-brochure-main span {
  position:relative;
  z-index:2;
  display:block;
  max-width:150px;
  color:#111827;
  font-size:17px;
  font-weight:700;
  line-height:1.22;
  text-transform:uppercase;
}
.about-brochure-main img { position:absolute; left:0; right:0; bottom:0; width:100%; height:72%; object-fit:cover; }
.about-shopping-bag {
  right:22px;
  top:14px;
  width:285px;
  height:330px;
  display:grid;
  place-items:center;
  color:#101827;
  background:
    linear-gradient(135deg, transparent 0 67%, #ff6b00 67% 75%, #4b148c 75% 100%),
    #f8fafc;
  transform:rotate(4deg);
}
.about-shopping-bag::before,
.about-shopping-bag::after {
  content:"";
  position:absolute;
  top:0;
  width:6px;
  height:56px;
  border-radius:99px;
  background:#ff5b08;
}
.about-shopping-bag::before { left:74px; }
.about-shopping-bag::after { right:74px; }
.about-shopping-bag .bag-handle {
  position:absolute;
  top:-10px;
  left:76px;
  right:76px;
  height:78px;
  border:6px solid #ff5b08;
  border-bottom:0;
  border-radius:80px 80px 0 0;
}
.about-shopping-bag strong { font-size:60px; line-height:.8; margin-top:28px; }
.about-shopping-bag small { margin-top:-98px; letter-spacing:.44em; font-weight:700; color:#111827; }
.about-business-card { left:260px; bottom:54px; width:190px; transform:rotate(-8deg); }
.about-brochure-small { right:112px; bottom:40px; width:250px; transform:rotate(5deg); }
.about-story-section { padding:34px 0 36px; }
.about-story-grid {
  display:grid;
  grid-template-columns:minmax(480px, .94fr) minmax(450px, 1.06fr);
  gap:76px;
  align-items:center;
}
.about-story-clean-grid {
  grid-template-columns:minmax(0, .9fr) minmax(520px, 1.1fr);
  gap:42px;
  align-items:stretch;
}
.about-story-clean-copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:210px;
}
.about-story-mark {
  width:34px;
  height:4px;
  border-radius:999px;
  background:var(--about-purple);
  margin-bottom:14px;
}
.about-story-clean-copy h2 {
  margin:0 0 18px;
  color:#111322;
  font-size:clamp(26px, 2.6vw, 34px);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-.03em;
}
.about-story-clean-copy p {
  max-width:610px;
  margin:0 0 13px;
  color:#252b37;
  font-size:14.5px;
  font-weight:500;
  line-height:1.72;
}
.about-story-cards {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}
.about-story-info-card {
  min-height:220px;
  display:grid;
  grid-template-columns:56px 1fr;
  gap:18px;
  align-items:flex-start;
  padding:34px 30px;
  border:1px solid #ececf3;
  border-radius:18px;
  background:#f8f8f9;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
}
.about-story-info-card i {
  width:54px;
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:23px;
  background:linear-gradient(135deg,#6c31d6,#3d0f8b);
  box-shadow:0 12px 28px rgba(75,20,140,.18);
}
.about-story-vision i {
  background:linear-gradient(135deg,#35b84e,#1d8f33);
  box-shadow:0 12px 28px rgba(44,163,67,.18);
}
.about-story-info-card h3 {
  margin:4px 0 18px;
  color:#121322;
  font-size:20px;
  font-weight:700;
  line-height:1.2;
}
.about-story-info-card p {
  margin:0;
  color:#222b3a;
  font-size:13.5px;
  font-weight:500;
  line-height:1.7;
}
.about-story-media { position:relative; min-height:390px; }
.about-triangle {
  position:absolute;
  left:-8px;
  bottom:12px;
  width:175px;
  height:175px;
  background:linear-gradient(135deg, #ff6b00 0 48%, #4b148c 48% 100%);
  clip-path:polygon(50% 0, 0 100%, 100% 100%);
  transform:rotate(12deg);
  opacity:.92;
}
.about-story-photo {
  position:absolute;
  overflow:hidden;
  margin:0;
  border:8px solid #fff;
  border-radius:18px;
  background:#fff;
  box-shadow:0 22px 44px rgba(15,23,42,.18);
}
.about-story-photo img { width:100%; height:100%; object-fit:cover; }
.about-story-photo-large { left:60px; top:0; width:405px; height:310px; }
.about-story-photo-small { right:10px; bottom:0; width:310px; height:232px; }
.about-story-copy h2,
.about-section-head h2 {
  margin:0 0 18px;
  color:#111322;
  font-size:clamp(30px, 3vw, 45px);
  font-weight:700;
  line-height:1.12;
  letter-spacing:-.04em;
}
.about-story-copy p {
  max-width:650px;
  margin:0 0 14px;
  color:#252b37;
  font-size:15.5px;
  font-weight:500;
  line-height:1.75;
}
.about-story-pills {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
  margin-top:26px;
}
.about-story-pills div { grid-template-columns:54px 1fr; align-items:center; gap:14px; }
.about-story-pills i { color:#4b148c; background:#f1e9ff; box-shadow:none; border-radius:16px; }
.about-choose-section,
.about-process-section,
.about-testimonials-section { padding:10px 0 34px; }
.about-section-head { text-align:center; margin-bottom:24px; }
.about-section-head h2 { margin-bottom:0; }
.about-choose-grid {
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:18px;
}
.about-choose-grid article {
  min-height:205px;
  padding:25px 18px;
  text-align:center;
  border:1px solid #e7e7ef;
  border-radius:18px;
  background:#fff;
  box-shadow:0 14px 30px rgba(15,23,42,.06);
}
.about-choose-grid i { margin:0 auto 16px; border-radius:50%; background:linear-gradient(135deg,#6c31d6,#391086); }
.about-choose-grid article:nth-child(2) i,
.about-choose-grid article:nth-child(5) i { background:linear-gradient(135deg,#ff7a18,#ff4b00); }
.about-choose-grid h3 { margin:0 0 10px; color:#171427; font-size:16px; font-weight:700; }
.about-choose-grid p { margin:0; color:#222b3a; font-size:13px; font-weight:500; line-height:1.65; }
.about-process-row {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:58px;
  align-items:center;
  padding:0 44px;
}
.about-process-row article {
  position:relative;
  display:grid;
  grid-template-columns:64px 1fr;
  gap:14px;
  align-items:center;
  min-height:126px;
  padding:20px;
  border:1px solid #e7e7ef;
  border-radius:16px;
  background:#fff;
  box-shadow:0 14px 28px rgba(15,23,42,.06);
}
.about-process-row article:not(:last-child)::after {
  content:"→";
  position:absolute;
  right:-43px;
  top:50%;
  transform:translateY(-50%);
  color:#4b148c;
  font-size:36px;
  font-weight:500;
}
.about-process-row i { width:64px; height:64px; border-radius:50%; font-size:25px; }
.about-process-row span { display:block; color:#4b148c; font-size:15px; font-weight:700; }
.about-process-row article:nth-child(2) span { color:#ff5b08; }
.about-process-row article:nth-child(3) span { color:#2ca343; }
.about-process-row h3 { margin:1px 0 5px; color:#141322; font-size:15px; font-weight:700; line-height:1.15; }
.about-process-row p { margin:0; color:#222b3a; font-size:12px; font-weight:500; line-height:1.45; }
.about-section-head-compact { margin-bottom:14px; }
.about-testimonial-wrap { position:relative; padding:0 48px; }
.about-testimonial-grid { display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:20px; }
.about-testimonial-grid article {
  min-height:168px;
  padding:22px 28px;
  border:1px solid #e7e7ef;
  border-radius:14px;
  background:#fff;
  box-shadow:0 14px 30px rgba(15,23,42,.06);
}
.about-testimonial-grid article > i { color:#4b148c; font-size:34px; margin-bottom:8px; }
.about-testimonial-grid p { margin:0 0 8px; color:#222b3a; font-size:14px; line-height:1.55; }
.about-stars { color:#ff7a00; letter-spacing:2px; font-size:17px; font-weight:700; }
.about-stars i { letter-spacing:0; margin-right:2px; }
.about-customer { display:flex; align-items:center; gap:12px; margin-top:8px; }
.about-customer span {
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#4b148c,#2ca343);
  font-weight:700;
}
.about-customer strong { display:grid; gap:2px; color:#141322; font-size:15px; }
.about-customer small { color:#222b3a; font-size:12px; font-weight:500; }
.about-customer small a { color:#4b148c; text-decoration:none; font-weight:700; }
.about-customer small a:hover { text-decoration:underline; }
.about-testimonial-empty { grid-column:1 / -1; max-width:520px; margin:0 auto; }
.about-slider-btn {
  position:absolute;
  top:50%;
  z-index:2;
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border:1px solid #e8e8ef;
  border-radius:50%;
  color:#111827;
  background:#fff;
  box-shadow:0 10px 26px rgba(15,23,42,.1);
  transform:translateY(-50%);
}
.about-slider-prev { left:0; }
.about-slider-next { right:0; }
.about-slider-dots { display:flex; justify-content:center; gap:12px; margin-top:18px; }
.about-slider-dots span { width:12px; height:12px; border-radius:50%; background:#4b148c; }
.about-slider-dots span:nth-child(2) { background:#2ca343; }
.about-slider-dots span:nth-child(3) { background:#ff5b08; }
.about-contact-strip { padding:16px 0 0; }
.about-contact-grid {
  display:grid;
  grid-template-columns:1fr 1.1fr 1fr;
  border-radius:14px 14px 0 0;
  overflow:hidden;
  box-shadow:0 -8px 26px rgba(15,23,42,.08);
}
.about-contact-card {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  min-height:72px;
  color:#111827;
  background:#fff;
  font-size:15px;
  font-weight:700;
}
.about-contact-card i { font-size:34px; }
.about-contact-card span { display:grid; line-height:1.15; }
.about-contact-card strong { margin-top:3px; font-size:15px; }
.about-contact-phone i { color:#4b148c; }
.about-contact-whatsapp { color:#fff; background:#2ca343; }
.about-contact-download { color:#fff; background:#ff5b08; }
.about-quick-help-section { padding:14px 0 56px; }
@media (max-width:1180px) {
  .about-hero-grid,
  .about-story-grid { grid-template-columns:1fr; gap:34px; }
  .about-story-clean-grid { gap:22px; }
  .about-hero-visual { min-height:480px; transform:none; }
  .about-story-media { max-width:660px; width:100%; margin:0 auto; }
  .about-choose-grid { grid-template-columns:repeat(3, minmax(0, 1fr)); }
  .about-process-row { grid-template-columns:repeat(2, minmax(0, 1fr)); padding:0; gap:20px; }
  .about-process-row article::after { display:none; }
}
@media (max-width:760px) {
  .about-showcase-page { margin-top:var(--site-hh, var(--hh)); }
  .about-showcase-hero { padding:34px 0 22px; }
  .about-hero-copy h1 { font-size:42px; }
  .about-hero-features { grid-template-columns:repeat(2, minmax(0, 1fr)); gap:18px; }
  .about-hero-visual { min-height:390px; transform:scale(.78); transform-origin:top center; margin-bottom:-80px; }
  .about-story-grid { gap:20px; }
  .about-story-cards { grid-template-columns:1fr; }
  .about-story-info-card { min-height:auto; padding:26px 22px; }
  .about-story-media { min-height:320px; transform:scale(.82); transform-origin:top center; margin-bottom:-52px; }
  .about-story-pills { grid-template-columns:1fr; gap:16px; }
  .about-choose-grid,
  .about-process-row,
  .about-testimonial-grid,
  .about-contact-grid { grid-template-columns:1fr; }
  .about-testimonial-wrap { padding:0; }
  .about-slider-btn { display:none; }
  .about-contact-grid { border-radius:14px 14px 0 0; }
}

/* Policy/info pages: simple document layout for legal and service text pages */
.info-page-simple {
  background:#fff;
}
.info-page-simple .info-breadcrumb {
  margin-bottom:22px;
}
.info-simple-wrap {
  max-width:880px;
}
.info-simple-hero {
  padding:32px 0 24px;
  border-bottom:1px solid #edf2f7;
  background:#fff;
}
.info-simple-hero-copy {
  max-width:820px;
}
.info-simple-hero-copy h1 {
  margin:8px 0 12px;
  color:#0f172a;
  font-family:var(--fd);
  font-size:clamp(30px, 4vw, 48px);
  font-weight:700;
  letter-spacing:-.035em;
  line-height:1.08;
}
.info-simple-hero-copy p {
  max-width:760px;
  margin:0;
  color:#475569;
  font-size:clamp(15px, 1.25vw, 17px);
  line-height:1.75;
}
.info-simple-section {
  padding:34px 0 56px;
}
.info-simple-document {
  color:#334155;
}
.info-simple-block {
  padding:0 0 28px;
  margin:0 0 28px;
  border-bottom:1px solid #eef2f7;
}
.info-simple-block:last-child {
  margin-bottom:0;
}
.info-simple-block h2 {
  display:flex;
  align-items:baseline;
  gap:12px;
  margin:0 0 14px;
  color:#111827;
  font-family:var(--fd);
  font-size:clamp(20px, 2vw, 26px);
  font-weight:700;
  letter-spacing:-.02em;
  line-height:1.25;
}
.info-simple-block h2 span {
  flex:0 0 auto;
  color:#94a3b8;
  font-family:var(--fb);
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
}
.info-simple-block p {
  margin:0 0 12px;
  color:#334155;
  font-size:15.5px;
  line-height:1.85;
}
.info-simple-block p:last-child {
  margin-bottom:0;
}
.info-simple-block ul {
  margin:14px 0 0;
  padding-left:22px;
  color:#334155;
}
.info-simple-block li {
  margin:8px 0;
  padding-left:4px;
  line-height:1.75;
}
.info-simple-help {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:22px;
  margin-top:34px;
  padding-top:24px;
  border-top:2px solid #e2e8f0;
}
.info-simple-help h2 {
  margin:0 0 7px;
  color:#111827;
  font-family:var(--fd);
  font-size:22px;
  font-weight:700;
  letter-spacing:-.02em;
}
.info-simple-help p {
  max-width:560px;
  margin:0;
  color:#475569;
  line-height:1.7;
}
.info-simple-actions {
  display:flex;
  flex:0 0 auto;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
@media (max-width:900px) {
  .info-simple-help { flex-direction:column; }
  .info-simple-actions { justify-content:flex-start; }
}
@media (max-width:640px) {
  .info-simple-hero { padding:24px 0 20px; }
  .info-simple-section { padding:28px 0 42px; }
  .info-simple-block { margin-bottom:24px; padding-bottom:24px; }
  .info-simple-block h2 { gap:9px; }
  .info-simple-actions { width:100%; }
  .info-simple-actions .btn { width:100%; justify-content:center; }
}
.pd-page-wrap .ym-section {
  width:100%;
  margin-left:0;
  margin-right:0;
}
.pd-page-wrap .ym-grid {
  grid-template-columns:repeat(5, minmax(0, 1fr));
}
@media (max-width:1180px) {
  .pd-page-wrap .ym-grid { grid-template-columns:repeat(4, minmax(0, 1fr)); }
}
@media (max-width:900px) {
  .pd-page-wrap .ym-grid { grid-template-columns:repeat(3, minmax(0, 1fr)); }
}
@media (max-width:640px) {
  .pd-page-wrap .ym-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
.pd-page-wrap .ym-name {
  margin:0 0 10px;
  color:#111827;
  font-size:13px;
  font-weight:700;
  line-height:1.25;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.pd-page-wrap .ym-cat {
  margin-bottom:6px;
  color:#64748b;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

/* Product detail related categories */
.pd-page-wrap .ym-category-grid {
  align-items:stretch;
}
.pd-page-wrap .ym-category-card {
  height:100%;
}
.pd-page-wrap .ym-category-img {
  display:grid;
  place-items:center;
  aspect-ratio:1.35 / 1;
  padding:18px;
  background:linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
}
.pd-page-wrap .ym-category-img img {
  width:100%;
  height:100%;
  object-fit:contain;
}
.pd-page-wrap .ym-category-fallback {
  display:grid;
  place-items:center;
  width:74px;
  height:74px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
  font-size:34px;
}
.pd-page-wrap .ym-category-card .ym-body {
  display:flex;
  flex-direction:column;
  min-height:142px;
}
.pd-page-wrap .ym-category-card .ym-foot {
  justify-content:flex-start;
  margin-top:auto;
}
.pd-page-wrap .ym-category-card .ym-order {
  min-width:100px;
}


/* Product detail random product recommendations */
.pd-page-wrap .ym-product-card {
  height:100%;
}
.pd-page-wrap .ym-product-img {
  display:grid;
  place-items:center;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:#f8fafc;
}
.pd-page-wrap .ym-product-img img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.pd-page-wrap .ym-product-fallback {
  display:grid;
  place-items:center;
  width:74px;
  height:74px;
  border-radius:22px;
  color:#4f1db7;
  background:#fff;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
  font-size:30px;
}
.pd-page-wrap .ym-product-card .ym-body {
  display:flex;
  flex-direction:column;
  min-height:154px;
}
.pd-page-wrap .ym-product-card .ym-foot {
  margin-top:auto;
}
.pd-page-wrap .ym-product-card .ym-order {
  width:auto;
  min-width:82px;
}

/* Keep related category thumbnails uniform and square, matching the old product-card rhythm */
.pd-page-wrap .ym-category-img {
  aspect-ratio:1 / 1;
  padding:0;
  overflow:hidden;
  background:#f8fafc;
}
.pd-page-wrap .ym-category-img img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.pd-page-wrap .ym-category-fallback {
  width:100%;
  height:100%;
  border-radius:0;
  box-shadow:none;
  background:linear-gradient(135deg, #f8fafc 0%, #eef4ff 100%);
}

/* Register page revamp */
.register-page {
  background:#fff;
  color:#0f172a;
}
.register-container {
  width:min(100% - 36px, 1120px);
  margin:0 auto;
}
.register-hero {
  padding:42px 0 18px;
  background:linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}
.register-hero-grid {
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(300px, 470px);
  gap:44px;
  align-items:center;
}
.register-hero-copy h1 {
  margin:0 0 12px;
  font-family:var(--fd);
  font-size:clamp(38px, 5vw, 58px);
  font-weight:700;
  letter-spacing:-.045em;
  line-height:1.03;
}
.register-hero-copy p {
  margin:0;
  color:#1f2937;
  font-size:18px;
  line-height:1.7;
}
.register-hero-copy strong { color:#ff5b00; }
.register-hero-art {
  position:relative;
  min-height:280px;
}
.register-hero-art::before {
  content:"";
  position:absolute;
  inset:34px 18px 12px 34px;
  border-radius:34px;
  background:radial-gradient(circle at 30% 20%, rgba(255,107,0,.14), transparent 35%), radial-gradient(circle at 80% 45%, rgba(79,29,183,.14), transparent 40%);
  filter:blur(2px);
}
.reg-art {
  position:absolute;
  display:block;
  filter:drop-shadow(0 20px 24px rgba(15,23,42,.16));
}
.reg-art-main { width:52%; left:0; top:58px; transform:rotate(-7deg); }
.reg-art-bag { width:55%; right:0; top:34px; transform:rotate(7deg); }
.reg-art-card { width:42%; left:26%; bottom:10px; transform:rotate(2deg); }
.reg-art-dot {
  position:absolute;
  border-radius:50%;
  background:linear-gradient(135deg, #2aa83a, #84cc16);
  box-shadow:0 12px 28px rgba(42,168,58,.22);
}
.reg-art-dot-one { width:64px; height:64px; right:0; top:0; }
.reg-art-dot-two { width:22px; height:22px; left:42px; bottom:30px; background:#ff6b00; }
.register-main-section { padding:18px 0 34px; }
.register-layout {
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(320px, .82fr);
  gap:48px;
  align-items:start;
}
.register-form-card,
.register-why-card,
.register-help-card,
.register-trust-grid {
  border:1px solid #e7eaf0;
  background:#fff;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}
.register-form-card {
  overflow:hidden;
  border-radius:18px;
  padding:36px 38px 0;
}
.register-form-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:28px;
}
.register-form-head h2 {
  margin:0;
  color:#4f1db7;
  font-family:var(--fd);
  font-size:40px;
  font-weight:700;
  letter-spacing:-.04em;
}
.register-form-head p {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:5px;
  margin:0;
  padding:9px 12px;
  border:1px solid rgba(79,29,183,.14);
  border-radius:999px;
  background:linear-gradient(135deg, rgba(79,29,183,.08), rgba(255,122,0,.08));
  color:#334155;
  font-size:15px;
  font-weight:700;
  line-height:1.2;
}
.register-form-head a,
.register-agree a { color:#4f1db7; font-weight:700; text-decoration:none; }
.register-form-head p a {
  font-size:15.5px;
  text-decoration:underline;
  text-underline-offset:3px;
}
.register-form-grid { display:grid; grid-template-columns:1fr; gap:16px; }
.register-name-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
.register-field {
  display:block;
  margin-bottom:18px;
  color:#111827;
  font-size:14px;
  font-weight:700;
}
.register-input-wrap,
.register-phone-wrap {
  display:flex;
  align-items:center;
  min-height:54px;
  margin-top:8px;
  border:1.5px solid #dfe5ee;
  border-radius:9px;
  background:#fff;
  color:#6b7280;
  transition:border-color .18s ease, box-shadow .18s ease;
}
.register-input-wrap:focus-within,
.register-phone-wrap:focus-within {
  border-color:#7c3aed;
  box-shadow:0 0 0 4px rgba(124,58,237,.10);
}
.register-input-wrap i {
  flex:0 0 48px;
  text-align:center;
  color:#6b7280;
  font-size:17px;
}
.register-input-wrap input {
  width:100%;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:#111827;
  font-size:15px;
  font-weight:600;
}
.register-input-wrap input::placeholder { color:#9ca3af; font-weight:500; }
.register-input-wrap button {
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  flex:0 0 44px;
  border:0;
  background:transparent;
  color:#6b7280;
  cursor:pointer;
  font-size:17px;
}
.register-phone-wrap { overflow:hidden; }
.register-phone-wrap .register-input-wrap {
  flex:1;
  min-height:52px;
  margin:0;
  border:0;
  border-radius:0;
  box-shadow:none;
}
.register-country {
  display:flex;
  align-items:center;
  gap:8px;
  align-self:stretch;
  padding:0 14px;
  border-right:1px solid #e5e7eb;
  color:#111827;
  font-size:14px;
}
.register-field small {
  display:block;
  margin-top:7px;
  color:#64748b;
  font-size:12px;
  font-weight:600;
}
.register-agree {
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:4px 0 18px;
  color:#1f2937;
  font-size:14px;
  font-weight:600;
  line-height:1.5;
}
.register-agree input {
  width:18px;
  height:18px;
  margin-top:1px;
  accent-color:#4f1db7;
}
.register-error {
  display:none;
  margin:0 0 12px;
  padding:10px 12px;
  border-radius:10px;
  background:#fff1f2;
  color:#b91c1c;
  font-size:13px;
  font-weight:700;
  text-align:center;
}
.register-submit {
  width:100%;
  min-height:56px;
  border:0;
  border-radius:9px;
  background:linear-gradient(90deg, #ff6b00 0%, #ff5a00 100%);
  color:#fff;
  font-size:16px;
  font-weight:700;
  box-shadow:0 14px 28px rgba(255,91,0,.22);
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.register-submit:hover { transform:translateY(-1px); box-shadow:0 18px 34px rgba(255,91,0,.28); }
.register-submit:disabled { opacity:.68; cursor:not-allowed; transform:none; }
.register-benefit-strip {
  display:flex;
  gap:18px;
  margin:32px -38px 0;
  padding:24px 38px;
  background:linear-gradient(90deg, rgba(79,29,183,.08), rgba(255,107,0,.035));
}
.register-benefit-icon {
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:50%;
  color:#4f1db7;
  background:#fff;
  box-shadow:0 8px 20px rgba(79,29,183,.12);
  font-size:20px;
}
.register-benefit-strip strong { display:block; margin-bottom:10px; color:#111827; font-size:13px; }
.register-benefit-strip ul {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px 22px;
  margin:0;
  padding:0;
  list-style:none;
  color:#475569;
  font-size:13px;
  font-weight:700;
}
.register-benefit-strip li { display:flex; align-items:center; gap:8px; }
.register-benefit-strip li i { color:#22c55e; }
.register-side-panel { display:grid; gap:18px; }
.register-why-card,
.register-help-card { border-radius:17px; }
.register-why-card { padding:32px 34px 20px; }
.register-why-card h2 {
  margin:0 0 20px;
  font-family:var(--fd);
  font-size:26px;
  font-weight:700;
  letter-spacing:-.03em;
}
.register-why-card h2 span { color:#ff5b00; }
.register-why-list { display:grid; }
.register-why-item {
  display:grid;
  grid-template-columns:74px 1fr;
  gap:16px;
  align-items:center;
  padding:22px 0;
  border-top:1px solid #edf0f4;
}
.register-why-item:first-child { border-top:0; padding-top:4px; }
.register-why-icon {
  display:grid;
  place-items:center;
  width:66px;
  height:66px;
  border-radius:50%;
  color:#fff;
  font-size:26px;
}
.register-why-icon.purple,
.register-trust-item .purple { background:linear-gradient(135deg, #6d28d9, #3b0b87); }
.register-why-icon.orange,
.register-trust-item .orange { background:linear-gradient(135deg, #ff7a00, #ff4d00); }
.register-why-icon.green,
.register-trust-item .green { background:linear-gradient(135deg, #33b54a, #16832a); }
.register-why-item h3 { margin:0 0 7px; color:#4f1db7; font-size:16px; font-weight:700; }
.register-why-item:nth-child(2n) h3 { color:#ff5b00; }
.register-why-item:nth-child(3n) h3 { color:#2aa83a; }
.register-why-item p { margin:0; color:#475569; font-size:14px; line-height:1.55; }
.register-help-card {
  display:grid;
  grid-template-columns:52px 1fr;
  gap:14px;
  align-items:center;
  padding:20px 28px;
}
.register-help-card > span {
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:50%;
  color:#4f1db7;
  background:#f5f0ff;
  font-size:24px;
}
.register-help-card h3 { margin:0 0 4px; font-size:17px; font-weight:700; }
.register-help-card p { margin:0 0 5px; color:#64748b; font-size:13px; font-weight:700; }
.register-help-card a { display:block; color:#111827; font-size:14px; font-weight:700; text-decoration:none; }
.register-help-card small { display:block; margin-top:4px; color:#64748b; font-size:12px; font-weight:700; }
.register-trust-section { padding:0 0 36px; }
.register-trust-grid {
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:0;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(15,23,42,.06);
}
.register-trust-item {
  display:flex;
  align-items:center;
  gap:16px;
  min-height:86px;
  padding:18px 24px;
  background:#fff;
}
.register-trust-item + .register-trust-item { border-left:1px solid #edf0f4; }
.register-trust-item span {
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  flex:0 0 50px;
  border-radius:50%;
  color:#fff;
  font-size:22px;
}
.register-trust-item strong { display:block; margin-bottom:4px; color:#111827; font-size:14px; font-weight:700; }
.register-trust-item p { margin:0; color:#475569; font-size:12.5px; line-height:1.35; }
@media (max-width:1040px) {
  .register-hero-grid,
  .register-layout { grid-template-columns:1fr; }
  .register-hero-art { min-height:240px; max-width:520px; margin:0 auto; width:100%; }
  .register-trust-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .register-trust-item:nth-child(3) { border-left:0; border-top:1px solid #edf0f4; }
  .register-trust-item:nth-child(4) { border-top:1px solid #edf0f4; }
  .register-trust-item:nth-child(5) { grid-column:1 / -1; border-left:0; border-top:1px solid #edf0f4; }
}
@media (max-width:720px) {
  .register-container { width:min(100% - 24px, 1120px); }
  .register-hero { padding:28px 0 10px; }
  .register-hero-grid { gap:16px; }
  .register-hero-art { min-height:180px; }
  .register-layout { gap:24px; }
  .register-form-card { padding:26px 18px 0; border-radius:16px; }
  .register-form-head { align-items:flex-start; flex-direction:column; gap:8px; margin-bottom:20px; }
  .register-form-head h2 { font-size:34px; }
  .register-form-head p { width:100%; padding:10px 12px; font-size:14.5px; }
  .register-name-grid { grid-template-columns:1fr; gap:0; }
  .register-input-wrap,
  .register-phone-wrap { min-height:50px; }
  .register-benefit-strip { margin:26px -18px 0; padding:20px 18px; }
  .register-benefit-strip ul { grid-template-columns:1fr; }
  .register-why-card { padding:24px 20px 12px; }
  .register-why-item { grid-template-columns:58px 1fr; gap:12px; padding:18px 0; }
  .register-why-icon { width:52px; height:52px; font-size:21px; }
  .register-help-card { padding:18px 20px; }
  .register-trust-grid { grid-template-columns:1fr; }
  .register-trust-item + .register-trust-item,
  .register-trust-item:nth-child(3),
  .register-trust-item:nth-child(4) { border-left:0; border-top:1px solid #edf0f4; }
}
@media (max-width:460px) {
  .register-hero-copy h1 { font-size:34px; }
  .register-hero-copy p { font-size:15px; }
  .register-hero-art { min-height:140px; }
  .register-country { padding:0 10px; }
  .register-input-wrap i { flex-basis:40px; }
  .register-input-wrap input { font-size:14px; }
  .register-benefit-strip { gap:12px; }
}

/* Registration page spacing refinements */
.register-container {
  width:min(100% - 48px, 1440px);
}
.register-hero {
  padding-top:56px;
  padding-bottom:24px;
}
.register-hero-grid {
  grid-template-columns:minmax(0, 1.08fr) minmax(360px, 540px);
  gap:60px;
}
.register-layout {
  grid-template-columns:minmax(0, 1.42fr) minmax(360px, .88fr);
  gap:56px;
}
.register-form-card {
  padding-left:44px;
  padding-right:44px;
}
.register-benefit-strip {
  margin-left:-44px;
  margin-right:-44px;
  padding-left:44px;
  padding-right:44px;
}
.register-why-card {
  padding-left:38px;
  padding-right:38px;
}
@media (max-width:1240px) {
  .register-container { width:min(100% - 40px, 1180px); }
  .register-hero-grid { gap:42px; }
  .register-layout { grid-template-columns:minmax(0, 1.25fr) minmax(330px, .9fr); gap:36px; }
}
@media (max-width:1040px) {
  .register-container { width:min(100% - 32px, 860px); }
  .register-layout,
  .register-hero-grid { grid-template-columns:1fr; }
}
@media (max-width:720px) {
  .register-container { width:min(100% - 24px, 1120px); }
  .register-hero { padding-top:34px; }
  .register-form-card { padding-left:18px; padding-right:18px; }
  .register-benefit-strip { margin-left:-18px; margin-right:-18px; padding-left:18px; padding-right:18px; }
}

/* Align registration content with the global header/homepage container */
.register-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  max-width:none;
}
.register-hero-grid,
.register-layout,
.register-trust-grid {
  margin-left:0;
  margin-right:0;
}
@media (max-width:1240px) {
  .register-container { width:min(var(--page-max), calc(100vw - var(--page-gutter))); }
}
@media (max-width:1040px) {
  .register-container { width:min(var(--page-max), calc(100vw - var(--page-gutter))); }
}
@media (max-width:720px) {
  .register-container { width:min(100%, calc(100vw - 24px)); }
}

/* Registration page: use the exact header/homepage container gutter, so content aligns with the logo column */
.register-container {
  width:min(var(--page-max), calc(100vw - var(--page-gutter)));
  max-width:none;
  margin-left:auto;
  margin-right:auto;
}
@media (max-width:720px) {
  .register-container { width:min(100%, calc(100vw - 24px)); }
}

/* Login page uses the registration visual system with login-specific balance */
.login-layout {
  grid-template-columns:minmax(420px, .92fr) minmax(420px, 1.08fr);
  align-items:start;
}
.login-form-card {
  padding-bottom:0;
}
.login-form-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:2px 0 18px;
  color:#64748b;
  font-size:13px;
  font-weight:700;
}
.login-form-row a {
  color:#4f1db7;
  font-weight:700;
  text-decoration:none;
}
.login-remember {
  display:flex;
  align-items:center;
  gap:8px;
}
.login-remember input {
  width:16px;
  height:16px;
  accent-color:#4f1db7;
}
.login-side-panel .register-why-card {
  min-height:auto;
}
.login-why-card .register-why-item {
  padding:20px 0;
}
.login-benefit-strip {
  margin-top:28px;
}
.login-hero .register-hero-copy p {
  max-width:620px;
}
@media (max-width:1040px) {
  .login-layout { grid-template-columns:1fr; }
}
@media (max-width:720px) {
  .login-form-row { align-items:flex-start; flex-direction:column; }
}

/* Product detail gallery: force the main product image to fill the square box. */
.pd-page-wrap .pd-main {
  aspect-ratio:1 / 1;
}
.pd-page-wrap .pd-main img#pdMainImg {
  display:block;
  width:100% !important;
  height:100% !important;
  max-width:none;
  max-height:none;
  padding:0 !important;
  object-fit:cover !important;
  object-position:center;
}

/* Admin order attention states */
.adm-orders-stats {
  display:grid;
  grid-template-columns:repeat(5,minmax(150px,1fr));
  gap:10px;
  margin-bottom:12px;
}
.adm-order-stat {
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:13px 14px;
  border:1.5px solid var(--border);
  border-radius:14px;
  background:var(--white);
  color:var(--text);
  text-decoration:none;
  box-shadow:0 8px 22px rgba(16,24,40,.05);
}
.adm-order-stat-v { font-family:var(--fd); font-size:24px; font-weight:700; line-height:1; }
.adm-order-stat-l { font-size:11px; color:var(--text2); font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.adm-order-stat--blue { border-color:#BFDBFE; background:#EFF6FF; }
.adm-order-stat--amber { border-color:#FDE68A; background:#FFFBEB; }
.adm-order-stat--orange { border-color:#FDBA74; background:#FFF7ED; }
.adm-order-stat--green { border-color:#BBF7D0; background:#F0FDF4; }
.adm-order-stat--red { border-color:#FECACA; background:#FEF2F2; }
.adm-orders-tabs {
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.adm-orders-tab {
  display:inline-flex;
  align-items:center;
  gap:7px;
  border:1.5px solid var(--border);
  background:var(--white);
  color:var(--text2);
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}
.adm-orders-tab b {
  min-width:22px;
  text-align:center;
  color:var(--blue);
  background:var(--blue-bg);
  border-radius:999px;
  padding:2px 6px;
  font-size:11px;
}
.adm-orders-tab.act { color:var(--blue); border-color:var(--blue-mid); background:var(--blue-bg); }
.adm-orders-table tbody tr.order-row--received td,
.adm-orders-table tbody tr.order-row--whatsapp_pending td { background:#F8FBFF; }
.adm-orders-table tbody tr.order-row--processing td { background:#FFFBEB; }
.adm-orders-table tbody tr.order-row--printing td { background:#FFF7ED; }
.adm-orders-table tbody tr.order-row--ready td { background:#F0FDF4; }
.adm-orders-table tbody tr.order-row--delayed td { background:#FEF2F2; }
.adm-orders-table tbody tr.order-row--new td:first-child { box-shadow:inset 4px 0 0 var(--blue); }
.adm-orders-table tbody tr.order-row--delayed td:first-child { box-shadow:inset 4px 0 0 var(--red); }
.ord-alerts { display:flex; gap:5px; flex-wrap:wrap; margin-top:5px; }
.ord-mini-badge {
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:2px 7px;
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.ord-mini-badge--new { color:var(--blue); background:#DBEAFE; }
.ord-mini-badge--delay { color:var(--red); background:#FEE2E2; }
@media (max-width:900px) {
  .adm-orders-stats { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

/* Premium admin orders command-center refresh */
.adm-main--orders {
  background:
    radial-gradient(circle at 12% 0%, rgba(37,99,235,.10), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(16,185,129,.10), transparent 28%),
    #f5f7fb;
}
.adm-orders-command {
  position:relative;
  overflow:hidden;
  border:1px solid rgba(37,99,235,.16);
  border-radius:24px;
  padding:22px;
  margin-bottom:14px;
  background:linear-gradient(135deg,#ffffff 0%,#f7fbff 50%,#fff7ed 100%);
  box-shadow:0 18px 50px rgba(15,23,42,.09);
}
.adm-orders-command-bg {
  position:absolute;
  width:260px;
  height:260px;
  right:-90px;
  top:-120px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,.20), rgba(37,99,235,0) 68%);
  pointer-events:none;
}
.adm-orders-kicker {
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-bottom:7px;
  padding:5px 10px;
  border-radius:999px;
  color:var(--blue);
  background:rgba(37,99,235,.09);
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.adm-orders-kicker::before { content:'●'; font-size:9px; color:var(--green); }
.adm-orders-command .adm-orders-head { position:relative; z-index:1; margin-bottom:18px; }
.adm-orders-command .adm-pt { font-size:28px; font-weight:700; letter-spacing:-.035em; }
.adm-orders-command .adm-orders-sub { max-width:620px; font-size:13px; color:#526173; }
.adm-orders-export { background:rgba(255,255,255,.82); backdrop-filter:blur(10px); }
.adm-orders-command .adm-orders-stats { position:relative; z-index:1; margin-bottom:0; }
.adm-orders-command .adm-order-stat {
  position:relative;
  min-height:132px;
  padding:16px;
  border:1px solid rgba(15,23,42,.08);
  background:rgba(255,255,255,.76);
  backdrop-filter:blur(12px);
  box-shadow:0 12px 28px rgba(15,23,42,.08);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.adm-orders-command .adm-order-stat:hover {
  transform:translateY(-3px);
  box-shadow:0 18px 34px rgba(15,23,42,.12);
  border-color:rgba(37,99,235,.25);
}
.adm-order-stat-i {
  width:36px;
  height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#fff;
  box-shadow:0 8px 18px rgba(15,23,42,.08);
  font-size:17px;
  margin-bottom:4px;
}
.adm-orders-command .adm-order-stat-v { font-size:31px; letter-spacing:-.04em; color:#0f172a; }
.adm-order-stat-cta { margin-top:auto; font-size:11px; font-weight:700; color:var(--blue); }
.adm-orders-command .adm-order-stat--blue { background:linear-gradient(150deg,rgba(239,246,255,.90),rgba(255,255,255,.80)); }
.adm-orders-command .adm-order-stat--amber { background:linear-gradient(150deg,rgba(255,251,235,.92),rgba(255,255,255,.80)); }
.adm-orders-command .adm-order-stat--orange { background:linear-gradient(150deg,rgba(255,247,237,.94),rgba(255,255,255,.80)); }
.adm-orders-command .adm-order-stat--green { background:linear-gradient(150deg,rgba(240,253,244,.94),rgba(255,255,255,.80)); }
.adm-orders-command .adm-order-stat--red { background:linear-gradient(150deg,rgba(254,242,242,.96),rgba(255,255,255,.80)); }
.adm-orders-control-panel {
  display:grid;
  gap:12px;
  margin-bottom:14px;
  padding:14px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  background:rgba(255,255,255,.90);
  box-shadow:0 12px 30px rgba(15,23,42,.06);
}
.adm-orders-control-panel .adm-orders-tabs,
.adm-orders-control-panel .adm-orders-filters { margin-bottom:0; }
.adm-orders-control-panel .adm-orders-filters {
  padding-top:12px;
  border-top:1px solid rgba(15,23,42,.07);
}
.adm-orders-tab {
  min-height:38px;
  padding:8px 12px;
  border-color:rgba(15,23,42,.10);
  background:#fff;
  box-shadow:0 5px 14px rgba(15,23,42,.04);
}
.adm-orders-tab.act {
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg,var(--blue),#5b7cfa);
  box-shadow:0 10px 22px rgba(37,99,235,.24);
}
.adm-orders-tab.act b { color:var(--blue); background:#fff; }
.adm-orders-wrap {
  border:none;
  border-radius:22px;
  background:transparent;
  box-shadow:none;
}
.adm-orders-table {
  border-collapse:separate;
  border-spacing:0 12px;
}
.adm-orders-table thead th {
  background:transparent;
  border-bottom:none;
  padding:6px 14px;
  color:#64748b;
}
.adm-orders-table td {
  border-top:1px solid rgba(15,23,42,.08);
  border-bottom:1px solid rgba(15,23,42,.08);
  background:#fff;
  padding:15px 14px;
}
.adm-orders-table tbody tr + tr td { border-top:1px solid rgba(15,23,42,.08); }
.adm-orders-table tbody tr td:first-child {
  position:relative;
  border-left:1px solid rgba(15,23,42,.08);
  border-top-left-radius:18px;
  border-bottom-left-radius:18px;
}
.adm-orders-table tbody tr td:last-child {
  border-right:1px solid rgba(15,23,42,.08);
  border-top-right-radius:18px;
  border-bottom-right-radius:18px;
}
.adm-orders-table tbody tr:hover td { background:#fff; box-shadow:0 16px 32px rgba(15,23,42,.08); }
.adm-orders-table tbody tr.order-row--received td,
.adm-orders-table tbody tr.order-row--whatsapp_pending td { background:linear-gradient(90deg,#f8fbff,#fff); }
.adm-orders-table tbody tr.order-row--processing td { background:linear-gradient(90deg,#fffbeb,#fff); }
.adm-orders-table tbody tr.order-row--printing td { background:linear-gradient(90deg,#fff7ed,#fff); }
.adm-orders-table tbody tr.order-row--ready td { background:linear-gradient(90deg,#f0fdf4,#fff); }
.adm-orders-table tbody tr.order-row--delayed td { background:linear-gradient(90deg,#fff1f2,#fff); }
.adm-orders-table tbody tr.order-row--new td:first-child,
.adm-orders-table tbody tr.order-row--delayed td:first-child { box-shadow:none; }
.adm-orders-table tbody tr.order-row--new td:first-child::before,
.adm-orders-table tbody tr.order-row--delayed td:first-child::before,
.adm-orders-table tbody tr.order-row--processing td:first-child::before,
.adm-orders-table tbody tr.order-row--ready td:first-child::before {
  content:'';
  position:absolute;
  left:0;
  top:12px;
  bottom:12px;
  width:5px;
  border-radius:0 999px 999px 0;
  background:var(--blue);
}
.adm-orders-table tbody tr.order-row--delayed td:first-child::before { background:var(--red); }
.adm-orders-table tbody tr.order-row--processing td:first-child::before { background:#f59e0b; }
.adm-orders-table tbody tr.order-row--ready td:first-child::before { background:var(--green); }
.ord-id { font-size:13px; font-weight:700; letter-spacing:.02em; }
.ord-age {
  display:inline-flex;
  align-items:center;
  gap:4px;
  margin-top:4px;
  padding:2px 7px;
  border-radius:999px;
  background:rgba(15,23,42,.05);
  color:#64748b;
  font-size:10px;
  font-weight:700;
}
.ord-customer { font-size:14px; font-weight:700; }
.ord-item-row {
  padding:9px 10px;
  border:1px solid rgba(15,23,42,.07);
  border-radius:12px;
  background:rgba(248,250,252,.78);
}
.ord-item-row + .ord-item-row { border-top:1px solid rgba(15,23,42,.07); }
.ord-status-stack { display:flex; flex-direction:column; gap:7px; align-items:flex-start; }
.ord-actions .aoc-btn,
.ord-cust-actions .aoc-btn,
.ord-status-row .btn,
.ord-ship .btn {
  border-radius:999px;
  background:#fff;
  box-shadow:0 5px 12px rgba(15,23,42,.05);
}
.ord-actions .aoc-btn:hover,
.ord-cust-actions .aoc-btn:hover { transform:translateY(-1px); }
.ord-status-row {
  padding:8px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  background:rgba(248,250,252,.72);
}
.ord-ship {
  border-radius:14px;
  background:rgba(248,250,252,.78);
}
@media (max-width:1100px) {
  .adm-orders-command .adm-orders-stats { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:760px) {
  .adm-orders-command { padding:16px; border-radius:18px; }
  .adm-orders-command .adm-pt { font-size:24px; }
  .adm-orders-command .adm-orders-stats { grid-template-columns:1fr; }
  .adm-orders-control-panel .adm-orders-filters { grid-template-columns:1fr; }
  .adm-orders-table,
  .adm-orders-table tbody,
  .adm-orders-table tr,
  .adm-orders-table td { display:block; width:100%; min-width:0; }
  .adm-orders-table thead { display:none; }
  .adm-orders-table { min-width:0; border-spacing:0 14px; }
  .adm-orders-table td { border-left:1px solid rgba(15,23,42,.08); border-right:1px solid rgba(15,23,42,.08); border-bottom:none; }
  .adm-orders-table tbody tr td:first-child { border-radius:18px 18px 0 0; }
  .adm-orders-table tbody tr td:last-child { border-bottom:1px solid rgba(15,23,42,.08); border-radius:0 0 18px 18px; }
  .ord-status-row { flex-direction:column; align-items:stretch; }
  .ord-status-row .fi { min-width:0; }
}

/* Premium SaaS admin dashboard and notification polish */
.adm-dash-page { display:grid; gap:16px; }
.adm-dash-hero {
  display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap;
  padding:22px; border-radius:24px; border:1px solid rgba(37,99,235,.14);
  background:linear-gradient(135deg,#fff,#f7fbff 52%,#f0fdf4);
  box-shadow:0 18px 50px rgba(15,23,42,.08);
}
.adm-dash-actions { display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.adm-kpi-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
.adm-kpi-card {
  position:relative; overflow:hidden; min-height:118px; padding:16px; border-radius:18px;
  border:1px solid rgba(15,23,42,.08); background:#fff; box-shadow:0 12px 28px rgba(15,23,42,.06);
}
.adm-kpi-card::after { content:''; position:absolute; right:-34px; top:-34px; width:110px; height:110px; border-radius:50%; background:rgba(37,99,235,.10); }
.adm-kpi-card span { display:inline-flex; width:36px; height:36px; align-items:center; justify-content:center; border-radius:13px; background:#fff; box-shadow:0 8px 18px rgba(15,23,42,.08); }
.adm-kpi-card b { display:block; margin-top:12px; font-family:var(--fd); font-size:24px; line-height:1; color:#0f172a; }
.adm-kpi-card small { display:block; margin-top:5px; color:#64748b; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.adm-kpi-card.is-blue { background:linear-gradient(145deg,#eff6ff,#fff); }
.adm-kpi-card.is-amber { background:linear-gradient(145deg,#fffbeb,#fff); }
.adm-kpi-card.is-orange { background:linear-gradient(145deg,#fff7ed,#fff); }
.adm-kpi-card.is-green { background:linear-gradient(145deg,#f0fdf4,#fff); }
.adm-kpi-card.is-red { background:linear-gradient(145deg,#fef2f2,#fff); }
.adm-kpi-card.is-slate { background:linear-gradient(145deg,#f8fafc,#fff); }
.adm-dash-grid-main { display:grid; grid-template-columns:minmax(0,1.45fr) minmax(280px,.8fr); gap:14px; }
.adm-panel-card {
  border:1px solid rgba(15,23,42,.08); border-radius:20px; padding:16px; background:rgba(255,255,255,.94);
  box-shadow:0 14px 34px rgba(15,23,42,.06);
}
.adm-panel-head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:12px; }
.adm-panel-head strong { display:block; color:#0f172a; font-size:15px; }
.adm-panel-head small { display:block; color:#64748b; font-size:12px; margin-top:2px; }
.adm-new-orders-list, .adm-queue-list { display:grid; gap:9px; }
.adm-order-mini {
  display:grid; grid-template-columns:minmax(0,1fr) auto auto; align-items:center; gap:12px;
  padding:11px; border:1px solid rgba(15,23,42,.08); border-radius:14px; background:#fff;
}
.adm-order-mini.is-new { background:linear-gradient(90deg,#fff7ed,#fff); border-color:#fed7aa; }
.adm-order-mini strong { font-family:var(--fn); color:var(--blue); }
.adm-order-mini span { margin-left:7px; padding:2px 7px; border-radius:999px; background:#dbeafe; color:var(--blue); font-size:10px; font-weight:700; }
.adm-order-mini small { display:block; color:#64748b; margin-top:3px; font-size:11px; }
.adm-order-mini b { display:block; color:#0f172a; margin-bottom:4px; }
.adm-queue-row { display:grid; grid-template-columns:34px minmax(0,1fr) auto; gap:10px; align-items:center; padding:10px; border-radius:14px; background:#f8fafc; }
.adm-queue-row > span { width:34px; height:34px; border-radius:12px; background:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 6px 14px rgba(15,23,42,.06); }
.adm-queue-row strong { display:block; font-size:12px; color:#0f172a; margin-bottom:6px; }
.adm-queue-row em { display:block; height:6px; border-radius:999px; background:linear-gradient(90deg,var(--blue),#22c55e); }
.adm-queue-row b { color:var(--blue); }
.adm-product-progress { padding:9px 0; border-bottom:1px solid rgba(15,23,42,.08); }
.adm-product-progress:last-child { border-bottom:none; }
.adm-product-progress div { display:flex; justify-content:space-between; gap:10px; font-size:12px; margin-bottom:6px; }
.adm-product-progress span { font-weight:700; color:#0f172a; }
.adm-product-progress b { color:var(--blue); }
.adm-product-progress em { display:block; height:7px; border-radius:999px; background:#e2e8f0; overflow:hidden; }
.adm-product-progress i { display:block; height:100%; border-radius:inherit; background:linear-gradient(90deg,var(--blue),#22c55e); }
.adm-empty-state { padding:24px; text-align:center; color:#64748b; border:1px dashed rgba(15,23,42,.14); border-radius:16px; background:#f8fafc; }
.adm-notify { position:relative; }
.adm-notify-btn { position:relative; border:1px solid rgba(15,23,42,.12); background:#fff; border-radius:999px; height:36px; min-width:42px; cursor:pointer; box-shadow:0 6px 16px rgba(15,23,42,.07); }
.adm-notify-count { position:absolute; top:-7px; right:-7px; min-width:19px; height:19px; padding:0 5px; border-radius:999px; background:var(--red); color:#fff; font-size:10px; font-weight:700; line-height:19px; }
.adm-notify-panel { display:none; position:absolute; right:0; top:44px; width:310px; z-index:1000; border:1px solid rgba(15,23,42,.10); border-radius:16px; background:#fff; box-shadow:0 22px 60px rgba(15,23,42,.18); overflow:hidden; }
.adm-notify.open .adm-notify-panel { display:block; }
.adm-notify-head { display:flex; justify-content:space-between; gap:10px; padding:12px 13px; border-bottom:1px solid rgba(15,23,42,.08); }
.adm-notify-head a { color:var(--blue); font-size:12px; font-weight:700; text-decoration:none; }
.adm-notify-item { display:block; padding:11px 13px; text-decoration:none; border-bottom:1px solid rgba(15,23,42,.06); }
.adm-notify-item:hover { background:#f8fafc; }
.adm-notify-item span { display:block; font-family:var(--fn); color:var(--blue); font-weight:700; }
.adm-notify-item small, .adm-notify-empty { display:block; color:#64748b; font-size:12px; padding:12px 13px; }
.adm-orders-control-panel .adm-orders-filters { grid-template-columns:minmax(180px,1fr) 150px 150px 140px 140px 155px auto auto; }
@media (max-width:1100px) {
  .adm-kpi-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .adm-dash-grid-main, .adm-dash-charts--premium { grid-template-columns:1fr; }
  .adm-orders-control-panel .adm-orders-filters { grid-template-columns:1fr 1fr; }
}
@media (max-width:760px) {
  .adm-kpi-grid { grid-template-columns:1fr; }
  .adm-dash-hero { padding:16px; border-radius:18px; }
  .adm-order-mini { grid-template-columns:1fr; }
  .adm-notify-panel { right:-80px; width:min(320px, calc(100vw - 24px)); }
  .adm-orders-control-panel .adm-orders-filters { grid-template-columns:1fr; }
}

/* Screenshot-matched premium admin dashboard refresh */
:root {
  --adm-navy:#0b1628;
  --adm-navy-2:#101f35;
  --adm-page:#f7f9fc;
  --adm-line:#e6ebf2;
  --adm-muted:#64748b;
  --adm-blue:#2563eb;
  --adm-radius:16px;
  --adm-shadow:0 10px 28px rgba(15,23,42,.06);
}
body:has(.adm-dash-pro) { background:var(--adm-page) !important; }
.adm-header-pro {
  height:72px;
  left:250px;
  width:calc(100% - 250px);
  padding:0 28px 0 24px;
  border-bottom:1px solid var(--adm-line);
  background:rgba(255,255,255,.92) !important;
  backdrop-filter:blur(16px);
  box-shadow:0 6px 24px rgba(15,23,42,.04);
}
.adm-header-pro .adm-hdr-left { flex:0 0 auto; }
.adm-header-pro .adm-hdr-center { flex:1; justify-content:flex-start; }
.adm-global-search {
  width:min(420px, 100%);
  height:42px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 10px 0 18px;
  border:1px solid var(--adm-line);
  border-radius:12px;
  background:#fff;
  box-shadow:0 5px 16px rgba(15,23,42,.03);
}
.adm-global-search input { flex:1; border:0; outline:0; background:transparent; color:#0f172a; font-size:13px; font-weight:700; }
.adm-global-search input::placeholder { color:#7b8798; }
.adm-global-search button,
.adm-icon-btn,
.adm-notify-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border:1px solid var(--adm-line);
  border-radius:12px;
  background:#fff;
  color:#172033;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 4px 14px rgba(15,23,42,.04);
}
.adm-header-pro .adm-notify-btn { min-width:40px; border-radius:12px; }
.adm-new-orders-link { color:#0f172a; font-size:13px; font-weight:700; text-decoration:none; white-space:nowrap; }
.adm-hdr-divider { width:1px; height:40px; background:var(--adm-line); margin:0 8px; }
.adm-admin-chip { display:flex; align-items:center; gap:12px; }
.adm-admin-chip span { display:grid; text-align:right; line-height:1.1; }
.adm-admin-chip strong { font-size:13px; color:#0f172a; }
.adm-admin-chip small { margin-top:4px; font-size:11px; color:var(--adm-muted); }
.adm-admin-chip em { width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#fed7aa,#60a5fa); color:#082f49; font-style:normal; font-weight:700; box-shadow:0 5px 14px rgba(15,23,42,.14); }
.adm-sb {
  width:250px;
  background:radial-gradient(circle at 15% 0, rgba(37,99,235,.24), transparent 24%), linear-gradient(180deg,#111d33 0%,#071224 100%) !important;
  border-right:0;
  box-shadow:18px 0 44px rgba(2,6,23,.16);
}
.adm-sb-logo { min-height:88px; padding:22px 22px 18px; border-bottom:1px solid rgba(255,255,255,.08); }
.adm-sb-t { font-size:24px; letter-spacing:-.04em; color:#fff; }
.adm-sb-t::first-letter { color:#ec4899; }
.adm-sb-s { color:#aab7ca; }
.adm-nl { color:#7f8da3; font-size:12px; letter-spacing:.12em; margin:22px 22px 8px; }
.adm-ni { margin:3px 18px; min-height:40px; border-radius:9px; color:#d5deeb; font-weight:700; }
.adm-ni svg { opacity:.84; }
.adm-ni:hover { background:rgba(255,255,255,.07); color:#fff; }
.adm-ni.act { background:linear-gradient(135deg,#2563eb,#1d4ed8); color:#fff; box-shadow:0 12px 26px rgba(37,99,235,.28); }
.adm-main:has(.adm-dash-pro) { padding:26px 28px 32px; background:var(--adm-page); }
.adm-dash-pro { display:grid; gap:16px; max-width:1680px; margin:0 auto; color:#0f172a; }
.dash-pro-head { display:flex; align-items:center; justify-content:space-between; gap:18px; margin-bottom:2px; }
.dash-pro-head h1 { margin:0; font-size:29px; line-height:1.1; letter-spacing:-.045em; color:#0f172a; }
.dash-pro-head p { margin:8px 0 0; color:#475569; font-size:14px; font-weight:600; }
.dash-date-pill { min-height:46px; display:inline-flex; align-items:center; gap:10px; padding:0 16px; border:1px solid var(--adm-line); border-radius:11px; background:#fff; color:#0f172a; font-weight:700; box-shadow:var(--adm-shadow); }
.dash-kpi-grid { display:grid; gap:14px; }
.dash-kpi-grid--top { grid-template-columns:repeat(6,minmax(0,1fr)); }
.dash-kpi-grid--sub { grid-template-columns:repeat(5,minmax(0,1fr)); }
.dash-kpi-card {
  min-height:126px;
  display:flex;
  align-items:center;
  gap:18px;
  padding:20px;
  border:1px solid var(--adm-line);
  border-radius:var(--adm-radius);
  background:#fff;
  box-shadow:var(--adm-shadow);
}
.dash-kpi-card .kpi-icon { width:62px; height:62px; flex:0 0 62px; display:flex; align-items:center; justify-content:center; border-radius:14px; font-size:28px; }
.dash-kpi-card strong { display:block; margin:0 0 8px; font-size:28px; line-height:1; font-weight:700; letter-spacing:-.04em; color:#111827; }
.dash-kpi-card span { display:block; color:#1f2937; font-weight:700; font-size:13px; }
.dash-kpi-card small { display:block; margin-top:15px; color:#334155; font-size:12px; font-weight:700; }
.dash-kpi-card small.up { color:#059669; }
.dash-kpi-card small.down { color:#dc2626; }
.kpi-blue .kpi-icon { background:linear-gradient(135deg,#dbeafe,#93c5fd); color:#2563eb; }
.kpi-amber .kpi-icon { background:linear-gradient(135deg,#ffedd5,#fdba74); color:#ea580c; }
.kpi-purple .kpi-icon { background:linear-gradient(135deg,#f3e8ff,#c084fc); color:#7e22ce; }
.kpi-green .kpi-icon { background:linear-gradient(135deg,#dcfce7,#86efac); color:#16a34a; }
.kpi-mint .kpi-icon { background:linear-gradient(135deg,#ccfbf1,#99f6e4); color:#0f766e; }
.kpi-pink .kpi-icon { background:linear-gradient(135deg,#fce7f3,#f9a8d4); color:#be123c; }
.kpi-lime .kpi-icon { background:linear-gradient(135deg,#ecfccb,#d9f99d); color:#65a30d; }
.kpi-teal .kpi-icon { background:linear-gradient(135deg,#ccfbf1,#a7f3d0); color:#0d9488; }
.kpi-orange .kpi-icon { background:linear-gradient(135deg,#ffedd5,#fed7aa); color:#f97316; }
.kpi-indigo .kpi-icon { background:linear-gradient(135deg,#e0e7ff,#bfdbfe); color:#4f46e5; }
.kpi-violet .kpi-icon { background:linear-gradient(135deg,#f3e8ff,#e9d5ff); color:#9333ea; }
.dash-mid-grid { display:grid; grid-template-columns:minmax(0,1.55fr) minmax(300px,.72fr) minmax(320px,.72fr); gap:16px; align-items:stretch; }
.dash-bottom-grid { display:grid; grid-template-columns:minmax(0,1.55fr) minmax(420px,.95fr); gap:16px; }
.dash-card { border:1px solid var(--adm-line); border-radius:16px; background:#fff; box-shadow:var(--adm-shadow); padding:18px; overflow:hidden; }
.dash-card-head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:18px; }
.dash-card-head h2 { margin:0; font-size:18px; letter-spacing:-.03em; color:#111827; }
.dash-card-head p { margin:5px 0 0; color:#64748b; font-size:12px; font-weight:600; }
.dash-mini-select,
.dash-view-link { min-height:34px; display:inline-flex; align-items:center; padding:0 13px; border:1px solid var(--adm-line); border-radius:9px; background:#fff; color:#111827; font-size:12px; font-weight:700; text-decoration:none; box-shadow:0 4px 12px rgba(15,23,42,.03); white-space:nowrap; }
.dash-line-chart { height:310px; }
.dash-line-chart svg { width:100%; height:100%; display:block; }
.dash-line-chart line { stroke:#e5e7eb; stroke-width:1; }
.dash-line-chart text { fill:#64748b; font-size:12px; font-weight:700; }
.dash-line-chart text.x { font-size:11px; }
.dash-line-chart circle { fill:#2563eb; stroke:#fff; stroke-width:3; }
.dash-queue-list { display:grid; border:1px solid var(--adm-line); border-radius:14px; overflow:hidden; }
.dash-queue-row { min-height:62px; display:grid; grid-template-columns:42px minmax(0,1fr) 38px; gap:12px; align-items:center; padding:10px 12px; border-bottom:1px solid var(--adm-line); background:#fff; }
.dash-queue-row:last-child { border-bottom:0; }
.dash-queue-row > span { width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-weight:700; }
.dash-queue-row strong { display:block; color:#111827; font-size:13px; }
.dash-queue-row small { display:block; margin-top:3px; color:#64748b; font-size:12px; }
.dash-queue-row b { width:32px; height:32px; display:flex; align-items:center; justify-content:center; border-radius:50%; font-size:16px; }
.dash-queue-row .purple { background:#f3e8ff; color:#9333ea; }
.dash-queue-row .orange { background:#ffedd5; color:#f97316; }
.dash-queue-row .blue { background:#dbeafe; color:#2563eb; }
.dash-queue-row .cyan { background:#cffafe; color:#0891b2; }
.dash-queue-row .green { background:#dcfce7; color:#16a34a; }
.dash-products-list { display:grid; gap:13px; }
.dash-product-row { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(90px,1fr) 42px; gap:10px; align-items:center; }
.dash-product-row strong { display:block; color:#111827; font-size:13px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dash-product-row small { display:block; color:#64748b; font-size:11px; margin-top:3px; }
.dash-product-row em { height:5px; border-radius:999px; background:#edf1f7; overflow:hidden; }
.dash-product-row i { display:block; height:100%; border-radius:inherit; background:#2563eb; }
.dash-product-row b { text-align:right; font-size:12px; color:#111827; }
.dash-orders-table-wrap { overflow:auto; border-radius:12px; }
.dash-orders-table { width:100%; border-collapse:collapse; min-width:720px; }
.dash-orders-table th { text-align:left; padding:12px 14px; background:#f8fafc; color:#475569; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.dash-orders-table td { padding:13px 14px; border-bottom:1px solid #f0f3f8; font-size:13px; font-weight:700; color:#111827; background:#fff8e8; }
.dash-orders-table tr:last-child td { border-bottom:0; }
.dash-orders-table a { color:#2563eb; font-weight:700; text-decoration:none; }
.dash-status { display:inline-flex; align-items:center; padding:4px 9px; border-radius:999px; font-size:11px; font-weight:700; }
.dash-new-badge { display:inline-flex; padding:4px 8px; border-radius:7px; background:#facc15; color:#92400e; font-size:11px; font-weight:700; }
.dash-actions-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.dash-actions-grid a { min-height:100px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; border:1px solid var(--adm-line); border-radius:13px; background:#fff; color:#111827; text-align:center; text-decoration:none; box-shadow:0 8px 20px rgba(15,23,42,.04); transition:.18s ease; }
.dash-actions-grid a:hover { transform:translateY(-3px); box-shadow:0 14px 26px rgba(15,23,42,.09); }
.dash-actions-grid span { font-size:32px; line-height:1; }
.dash-actions-grid b { font-size:13px; }
.qa-blue { color:#2563eb; } .qa-green { color:#16a34a; } .qa-purple { color:#9333ea; } .qa-orange { color:#f97316; } .qa-pink { color:#ec4899; } .qa-cyan { color:#06b6d4; } .qa-indigo { color:#4f46e5; } .qa-slate { color:#64748b; }
@media (max-width:1400px) {
  .dash-kpi-grid--top { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .dash-kpi-grid--sub { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .dash-mid-grid { grid-template-columns:1fr 1fr; }
  .dash-revenue-card { grid-column:1 / -1; }
  .dash-bottom-grid { grid-template-columns:1fr; }
}
@media (max-width:980px) {
  .adm-header-pro { left:0; width:100%; padding:0 14px; }
  .adm-global-search { display:none; }
  .adm-new-orders-link,.adm-hdr-divider,.adm-admin-chip span { display:none; }
  .dash-kpi-grid--top,.dash-kpi-grid--sub,.dash-mid-grid { grid-template-columns:1fr 1fr; }
  .dash-actions-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:680px) {
  .adm-main:has(.adm-dash-pro) { padding:18px 14px 24px; }
  .dash-pro-head { align-items:flex-start; flex-direction:column; }
  .dash-kpi-grid--top,.dash-kpi-grid--sub,.dash-mid-grid { grid-template-columns:1fr; }
  .dash-kpi-card { min-height:108px; padding:16px; }
  .dash-kpi-card .kpi-icon { width:52px; height:52px; flex-basis:52px; }
  .dash-actions-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .dash-actions-grid a { min-height:86px; }
}
.adm-help-card {
  display:flex;
  align-items:center;
  gap:12px;
  margin:28px 18px 18px;
  padding:14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  box-shadow:0 12px 24px rgba(2,6,23,.18);
}
.adm-help-card span { width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.10); }
.adm-help-card strong { display:block; font-size:13px; }
.adm-help-card small { display:block; margin-top:3px; color:#d5deeb; font-size:12px; }

/* Dashboard reference-layout correction: keep right-side cards aligned like the supplied mockup */
.adm-main:has(.adm-dash-pro) {
  overflow-x:hidden;
}
.adm-dash-pro,
.dash-card,
.dash-mid-grid > *,
.dash-bottom-grid > *,
.dash-kpi-card {
  min-width:0;
}
.dash-mid-grid {
  grid-template-columns:minmax(0,1.62fr) minmax(0,.76fr) minmax(0,.76fr) !important;
  gap:16px;
}
.dash-bottom-grid {
  grid-template-columns:minmax(0,1.55fr) minmax(360px,.95fr) !important;
  gap:16px;
}
.dash-revenue-card { grid-column:auto !important; }
.dash-products-card,
.dash-queue-card { height:100%; }
.dash-products-list { gap:11px; }
.dash-product-row {
  grid-template-columns:minmax(0,1fr) minmax(78px,.82fr) 38px;
}
.dash-product-row strong,
.dash-queue-row strong,
.dash-queue-row small {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.dash-queue-row {
  grid-template-columns:42px minmax(0,1fr) 34px;
  padding:10px;
}
.dash-actions-grid {
  grid-template-columns:repeat(4,minmax(0,1fr));
}
@media (max-width:1400px) {
  .dash-kpi-grid--top { grid-template-columns:repeat(6,minmax(0,1fr)); }
  .dash-kpi-grid--sub { grid-template-columns:repeat(5,minmax(0,1fr)); }
  .dash-mid-grid { grid-template-columns:minmax(0,1.62fr) minmax(0,.76fr) minmax(0,.76fr) !important; }
  .dash-bottom-grid { grid-template-columns:minmax(0,1.55fr) minmax(360px,.95fr) !important; }
  .dash-revenue-card { grid-column:auto !important; }
  .dash-kpi-card { padding:16px; gap:12px; min-height:112px; }
  .dash-kpi-card .kpi-icon { width:52px; height:52px; flex-basis:52px; font-size:23px; }
  .dash-kpi-card strong { font-size:23px; }
  .dash-kpi-card small { margin-top:10px; font-size:11px; }
  .dash-actions-grid { gap:12px; }
  .dash-actions-grid a { min-height:92px; }
}
@media (max-width:1180px) {
  .dash-kpi-grid--top { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .dash-kpi-grid--sub { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .dash-mid-grid { grid-template-columns:1fr 1fr !important; }
  .dash-revenue-card { grid-column:1 / -1 !important; }
  .dash-bottom-grid { grid-template-columns:1fr !important; }
}
@media (max-width:760px) {
  .dash-kpi-grid--top,
  .dash-kpi-grid--sub,
  .dash-mid-grid,
  .dash-bottom-grid { grid-template-columns:1fr !important; }
}

/* Final isolated admin dashboard reference UI (matches supplied mockup, avoids older dashboard class conflicts) */
body:has(.dash-ref-page) { background:#f7f9fc !important; }
.adm-main:has(.dash-ref-page) { padding:28px 28px 34px; background:#f7f9fc; overflow-x:hidden; }
.dash-ref-page { --line:#e5eaf2; --muted:#64748b; --ink:#0f172a; --blue:#2563eb; display:grid; gap:16px; max-width:1680px; margin:0 auto; color:var(--ink); }
.dash-ref-titlebar { display:flex; justify-content:space-between; align-items:flex-start; gap:18px; margin-bottom:2px; }
.dash-ref-titlebar h1 { margin:0; font-size:30px; line-height:1.08; font-weight:700; letter-spacing:-.045em; }
.dash-ref-titlebar p { margin:8px 0 0; font-size:14px; font-weight:600; color:#475569; }
.dash-ref-date { min-height:46px; display:flex; align-items:center; gap:10px; padding:0 16px; border:1px solid var(--line); border-radius:11px; background:#fff; color:var(--ink); font-weight:700; box-shadow:0 8px 24px rgba(15,23,42,.04); white-space:nowrap; }
.dash-ref-kpis { display:grid; gap:14px; min-width:0; }
.dash-ref-kpis-top { grid-template-columns:repeat(6,minmax(0,1fr)); }
.dash-ref-kpis-sub { grid-template-columns:repeat(5,minmax(0,1fr)); }
.dash-ref-kpi { min-width:0; min-height:126px; display:flex; align-items:center; gap:18px; padding:20px; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:0 10px 28px rgba(15,23,42,.055); }
.dash-ref-kpi span { width:62px; height:62px; flex:0 0 62px; display:flex; align-items:center; justify-content:center; border-radius:15px; font-size:28px; }
.dash-ref-kpi b { display:block; margin-bottom:8px; font-size:29px; line-height:1; font-weight:700; letter-spacing:-.04em; }
.dash-ref-kpi strong { display:block; font-size:13px; color:#1f2937; }
.dash-ref-kpi small { display:block; margin-top:15px; color:#334155; font-size:12px; font-weight:700; }
.dash-ref-kpi small.pos { color:#059669; } .dash-ref-kpi small.neg { color:#dc2626; }
.kpi-bag span { background:linear-gradient(135deg,#dbeafe,#93c5fd); color:#2563eb; } .kpi-hour span { background:linear-gradient(135deg,#ffedd5,#fdba74); color:#ea580c; } .kpi-print span { background:linear-gradient(135deg,#f3e8ff,#c084fc); color:#7e22ce; } .kpi-box span { background:linear-gradient(135deg,#dcfce7,#86efac); color:#16a34a; } .kpi-truck span { background:linear-gradient(135deg,#ccfbf1,#99f6e4); color:#0f766e; } .kpi-rupee span { background:linear-gradient(135deg,#fce7f3,#f9a8d4); color:#be123c; } .kpi-shield span { background:linear-gradient(135deg,#ecfccb,#d9f99d); color:#65a30d; } .kpi-chart span { background:linear-gradient(135deg,#ccfbf1,#a7f3d0); color:#0d9488; } .kpi-wallet span { background:linear-gradient(135deg,#ffedd5,#fed7aa); color:#f97316; } .kpi-aov span { background:linear-gradient(135deg,#e0e7ff,#bfdbfe); color:#4f46e5; } .kpi-users span { background:linear-gradient(135deg,#f3e8ff,#e9d5ff); color:#9333ea; }
.dash-ref-main-row { display:grid; grid-template-columns:minmax(0,1.62fr) minmax(0,.76fr) minmax(0,.76fr); gap:16px; align-items:stretch; min-width:0; }
.dash-ref-bottom-row { display:grid; grid-template-columns:minmax(0,1.55fr) minmax(360px,.95fr); gap:16px; min-width:0; }
.dash-ref-card { min-width:0; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:0 10px 28px rgba(15,23,42,.055); padding:18px; overflow:hidden; }
.dash-ref-card-head { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; margin-bottom:18px; }
.dash-ref-card-head h2 { margin:0; color:var(--ink); font-size:18px; font-weight:700; letter-spacing:-.035em; }
.dash-ref-card-head a,
.dash-ref-select { min-height:34px; display:inline-flex; align-items:center; padding:0 13px; border:1px solid var(--line); border-radius:9px; background:#fff; color:var(--ink); text-decoration:none; font-size:12px; font-weight:700; white-space:nowrap; box-shadow:0 4px 12px rgba(15,23,42,.03); }
.dash-ref-chart { height:318px; }
.dash-ref-chart svg { width:100%; height:100%; display:block; }
.dash-ref-chart line { stroke:#e5e7eb; stroke-width:1; } .dash-ref-chart text { fill:#64748b; font-size:12px; font-weight:700; } .dash-ref-chart text.month { font-size:11px; } .dash-ref-chart circle { fill:#2563eb; stroke:#fff; stroke-width:3; }
.dash-ref-queue-list { display:grid; border:1px solid var(--line); border-radius:14px; overflow:hidden; }
.dash-ref-queue-row { min-height:62px; display:grid; grid-template-columns:42px minmax(0,1fr) 34px; align-items:center; gap:12px; padding:10px 12px; border-bottom:1px solid var(--line); background:#fff; }
.dash-ref-queue-row:last-child { border-bottom:0; }
.dash-ref-queue-row > span { width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:10px; font-weight:700; }
.dash-ref-queue-row strong,.dash-ref-queue-row small { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.dash-ref-queue-row strong { color:#111827; font-size:13px; } .dash-ref-queue-row small { margin-top:3px; color:#64748b; font-size:12px; }
.dash-ref-queue-row b { width:32px; height:32px; display:flex; align-items:center; justify-content:center; border-radius:50%; font-size:16px; }
.dash-ref-queue-row .purple { background:#f3e8ff; color:#9333ea; } .dash-ref-queue-row .orange { background:#ffedd5; color:#f97316; } .dash-ref-queue-row .blue { background:#dbeafe; color:#2563eb; } .dash-ref-queue-row .cyan { background:#cffafe; color:#0891b2; } .dash-ref-queue-row .green { background:#dcfce7; color:#16a34a; }
.dash-ref-product-list { display:grid; gap:11px; }
.dash-ref-product-row { display:grid; grid-template-columns:minmax(0,1fr) minmax(78px,.82fr) 38px; align-items:center; gap:10px; }
.dash-ref-product-row strong { display:block; color:#111827; font-size:13px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; } .dash-ref-product-row small { display:block; color:#64748b; font-size:11px; margin-top:3px; }
.dash-ref-product-row em { height:5px; border-radius:999px; background:#edf1f7; overflow:hidden; } .dash-ref-product-row i { display:block; height:100%; border-radius:inherit; background:#2563eb; } .dash-ref-product-row b { text-align:right; color:#111827; font-size:12px; }
.dash-ref-table-wrap { overflow:auto; border-radius:12px; } .dash-ref-table { width:100%; min-width:720px; border-collapse:collapse; }
.dash-ref-table th { padding:12px 14px; text-align:left; background:#f8fafc; color:#475569; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; } .dash-ref-table td { padding:13px 14px; border-bottom:1px solid #f0f3f8; background:#fff8e8; color:#111827; font-size:13px; font-weight:700; } .dash-ref-table tr:last-child td { border-bottom:0; } .dash-ref-table a { color:#2563eb; font-weight:700; text-decoration:none; }
.dash-ref-status { display:inline-flex; padding:4px 9px; border-radius:999px; font-size:11px; font-weight:700; } .st-blue { background:#dbeafe; color:#1d4ed8; } .st-amber { background:#fef3c7; color:#b45309; } .st-orange { background:#ffedd5; color:#c2410c; } .st-green { background:#dcfce7; color:#15803d; } .st-ink { background:#e2e8f0; color:#334155; } .st-red { background:#fee2e2; color:#b91c1c; } .dash-ref-new { display:inline-flex; padding:4px 8px; border-radius:7px; background:#facc15; color:#92400e; font-size:11px; font-weight:700; }
.dash-ref-actions-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.dash-ref-actions-grid a { min-height:100px; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:12px; border:1px solid var(--line); border-radius:13px; background:#fff; box-shadow:0 8px 20px rgba(15,23,42,.04); text-align:center; color:#111827; text-decoration:none; transition:.18s ease; } .dash-ref-actions-grid a:hover { transform:translateY(-3px); box-shadow:0 14px 26px rgba(15,23,42,.09); } .dash-ref-actions-grid span { font-size:32px; line-height:1; } .dash-ref-actions-grid b { font-size:13px; }
.c-blue{color:#2563eb}.c-green{color:#16a34a}.c-purple{color:#9333ea}.c-orange{color:#f97316}.c-pink{color:#ec4899}.c-cyan{color:#06b6d4}.c-indigo{color:#4f46e5}.c-slate{color:#64748b}.dash-ref-empty { padding:24px; text-align:center; color:#64748b; border:1px dashed #d7dde7; border-radius:14px; background:#f8fafc; }
@media (max-width:1400px) { .dash-ref-kpis-top{grid-template-columns:repeat(6,minmax(0,1fr));}.dash-ref-kpis-sub{grid-template-columns:repeat(5,minmax(0,1fr));}.dash-ref-kpi{padding:16px;gap:12px;min-height:112px}.dash-ref-kpi span{width:52px;height:52px;flex-basis:52px;font-size:23px}.dash-ref-kpi b{font-size:23px}.dash-ref-kpi small{margin-top:10px;font-size:11px}.dash-ref-main-row{grid-template-columns:minmax(0,1.62fr) minmax(0,.76fr) minmax(0,.76fr)}.dash-ref-bottom-row{grid-template-columns:minmax(0,1.55fr) minmax(360px,.95fr)}.dash-ref-actions-grid{gap:12px}.dash-ref-actions-grid a{min-height:92px} }
@media (max-width:1180px) { .dash-ref-kpis-top,.dash-ref-kpis-sub{grid-template-columns:repeat(3,minmax(0,1fr));}.dash-ref-main-row{grid-template-columns:1fr 1fr}.dash-ref-revenue{grid-column:1/-1}.dash-ref-bottom-row{grid-template-columns:1fr} }
@media (max-width:760px) { .adm-main:has(.dash-ref-page){padding:18px 14px 24px}.dash-ref-titlebar{flex-direction:column}.dash-ref-kpis-top,.dash-ref-kpis-sub,.dash-ref-main-row,.dash-ref-bottom-row{grid-template-columns:1fr}.dash-ref-actions-grid{grid-template-columns:1fr 1fr;gap:10px}.dash-ref-actions-grid a{min-height:86px} }

/* Enhanced functional admin dashboard polish */
.dash-ref-title-actions { display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.dash-ref-refresh { min-height:46px; display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:0 15px; border:1px solid var(--line); border-radius:11px; background:#fff; color:#2563eb; font-weight:700; box-shadow:0 8px 24px rgba(15,23,42,.04); cursor:pointer; transition:.18s ease; }
.dash-ref-refresh:hover { transform:translateY(-1px); box-shadow:0 12px 28px rgba(37,99,235,.12); }
.dash-ref-refresh.loading { opacity:.72; pointer-events:none; }
.dash-ref-refresh.loading::first-letter { animation:dashSpin .8s linear infinite; }
.dash-ref-mini-icon { width:18px; height:18px; display:inline-flex; align-items:center; justify-content:center; color:#2563eb; }
.dash-ref-kpi { color:inherit; text-decoration:none; position:relative; isolation:isolate; transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.dash-ref-kpi::after { content:'View'; position:absolute; right:14px; top:12px; color:#94a3b8; font-size:10px; font-weight:700; letter-spacing:.05em; opacity:0; transform:translateY(-4px); transition:.18s ease; }
.dash-ref-kpi:hover { transform:translateY(-3px); box-shadow:0 18px 38px rgba(15,23,42,.095); border-color:#cbd5e1; }
.dash-ref-kpi:hover::after { opacity:1; transform:translateY(0); }
.dash-ref-kpi span { font-family:'Poppins',system-ui,sans-serif; font-weight:700; }
.dash-ref-card-head small { display:block; margin-top:5px; color:#64748b; font-size:12px; font-weight:700; }
.dash-ref-table tbody tr { transition:background .16s ease, transform .16s ease; }
.dash-ref-table tbody tr:hover td { background:#fff3d2; }
.dash-ref-actions-grid a:focus-visible,
.dash-ref-kpi:focus-visible,
.dash-ref-refresh:focus-visible,
.dash-ref-date:focus-visible { outline:3px solid rgba(37,99,235,.28); outline-offset:3px; }
@keyframes dashSpin { to { transform:rotate(360deg); } }
@media (max-width:760px) { .dash-ref-title-actions { justify-content:flex-start; width:100%; } .dash-ref-refresh,.dash-ref-date { flex:1; justify-content:center; } }

/* Pixel-match pass for uploaded admin dashboard reference */
body:has(.dash-ref-page) { --hh:76px; background:#f7f9fc !important; }
body:has(.dash-ref-page) .adm-lay { min-height:calc(100vh - 76px); }
body:has(.dash-ref-page) .adm-header-pro { height:76px; left:242px; width:calc(100% - 242px); padding:0 32px 0 28px; border-bottom:1px solid #e6ebf3; background:rgba(255,255,255,.96) !important; box-shadow:0 8px 28px rgba(15,23,42,.045); }
body:has(.dash-ref-page) .adm-sb { width:242px; top:76px; height:calc(100vh - 76px); padding:0 0 18px; background:linear-gradient(180deg,#101b31 0%,#071225 100%) !important; box-shadow:18px 0 48px rgba(2,6,23,.16); }
body:has(.dash-ref-page) .adm-sb-logo { min-height:90px; padding:22px 20px 18px; }
body:has(.dash-ref-page) .adm-sb-t { font-family:'Poppins',system-ui,sans-serif; font-size:24px; font-weight:700; letter-spacing:-.055em; }
body:has(.dash-ref-page) .adm-sb-t span { color:#ec4899; }
body:has(.dash-ref-page) .adm-sb-t::first-letter { color:inherit; }
body:has(.dash-ref-page) .adm-sb-s { margin-top:5px; font-size:12px; color:#93a4bc; }
body:has(.dash-ref-page) .adm-nl { margin:22px 22px 9px; color:#8ca0ba; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.12em; }
body:has(.dash-ref-page) .adm-ni { min-height:39px; margin:4px 20px; padding:0 12px; border-radius:8px; color:#d4deee; font-size:14px; font-weight:700; }
body:has(.dash-ref-page) .adm-ni svg { width:17px; height:17px; }
body:has(.dash-ref-page) .adm-ni.act { background:linear-gradient(135deg,#2563eb 0%,#1d4ed8 100%); box-shadow:0 10px 24px rgba(37,99,235,.28); }
body:has(.dash-ref-page) .adm-help-card { margin:26px 20px 0; border-radius:10px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.08); }
body:has(.dash-ref-page) .adm-global-search { width:382px; height:42px; border-radius:12px; }
body:has(.dash-ref-page) .adm-main:has(.dash-ref-page) { padding:28px 28px 34px; background:#f7f9fc; }
.dash-ref-page { max-width:none; gap:16px; }
.dash-ref-titlebar { align-items:center; margin-bottom:4px; }
.dash-ref-titlebar h1 { font-size:29px; letter-spacing:-.05em; }
.dash-ref-titlebar p { margin-top:8px; font-size:14px; color:#475569; }
.dash-ref-title-actions { justify-content:flex-end; }
.dash-ref-date { min-width:260px; justify-content:space-between; min-height:44px; padding:0 15px; border-radius:10px; }
.dash-ref-kpis { gap:14px; }
.dash-ref-kpis-top { grid-template-columns:repeat(6,minmax(174px,1fr)); }
.dash-ref-kpis-sub { grid-template-columns:repeat(5,minmax(214px,1fr)); }
.dash-ref-kpi { min-height:116px; padding:18px 20px; gap:18px; border-color:#e3e9f2; border-radius:12px; box-shadow:0 9px 25px rgba(15,23,42,.052); }
.dash-ref-kpi span { width:58px; height:58px; flex-basis:58px; border-radius:12px; font-size:26px; }
.dash-ref-kpi span svg { width:28px; height:28px; fill:currentColor; }
.dash-ref-kpi b { margin-bottom:8px; font-size:28px; }
.dash-ref-kpi strong { font-size:13px; font-weight:600; }
.dash-ref-kpi small { margin-top:14px; font-size:12px; }
.dash-ref-main-row { grid-template-columns:minmax(520px,1.5fr) minmax(320px,.98fr) minmax(300px,.86fr); gap:16px; }
.dash-ref-bottom-row { grid-template-columns:minmax(640px,1.46fr) minmax(420px,1fr); gap:16px; }
.dash-ref-card { border-color:#e3e9f2; border-radius:13px; padding:18px; box-shadow:0 9px 25px rgba(15,23,42,.052); }
.dash-ref-card-head { margin-bottom:16px; }
.dash-ref-card-head h2 { font-size:18px; letter-spacing:-.04em; }
.dash-ref-chart { height:318px; }
.dash-ref-queue-row { min-height:62px; padding:10px 12px; }
.dash-ref-product-list { gap:10px; }
.dash-ref-product-row { min-height:30px; }
.dash-ref-table th { padding:11px 14px; background:#f8fafc; }
.dash-ref-table td { padding:12px 14px; background:#fff8e8; }
.dash-ref-actions-grid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.dash-ref-actions-grid a { min-height:96px; border-radius:10px; }
.dash-ref-actions-grid span { font-family:'Poppins',system-ui,sans-serif; font-size:34px; font-weight:700; }
@media (max-width:1500px) {
  .dash-ref-kpis-top { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .dash-ref-kpis-sub { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .dash-ref-main-row { grid-template-columns:1fr 1fr; }
  .dash-ref-revenue { grid-column:1/-1; }
  .dash-ref-bottom-row { grid-template-columns:1fr; }
}
@media (max-width:900px) {
  body:has(.dash-ref-page) .adm-header-pro { left:0; width:100%; padding:0 14px; }
  body:has(.dash-ref-page) .adm-sb { top:0; height:100vh; }
}

/* Final reference lock: admin dashboard shell starts at viewport top like supplied mockup */
body:has(.dash-ref-page) { --adm-ref-sidebar:242px; --adm-ref-header:76px; }
body:has(.dash-ref-page) .adm-header-pro { position:fixed; top:0; right:0; left:var(--adm-ref-sidebar); width:auto; height:var(--adm-ref-header); }
body:has(.dash-ref-page) .adm-sb { position:fixed; inset:0 auto 0 0; top:0; width:var(--adm-ref-sidebar); height:100vh; z-index:960; overflow-y:auto; }
body:has(.dash-ref-page) .adm-lay { display:block; min-height:100vh; }
body:has(.dash-ref-page) .adm-main { margin-left:var(--adm-ref-sidebar); min-height:calc(100vh - var(--adm-ref-header)); }
body:has(.dash-ref-page) .adm-main:has(.dash-ref-page) { padding-top:28px; }
body:has(.dash-ref-page) .adm-mob-toggle { display:inline-flex; }
body:has(.dash-ref-page) .adm-header-pro .adm-hdr-center { position:static; transform:none; justify-content:flex-start; }
body:has(.dash-ref-page) .adm-header-pro .adm-hdr-left { width:42px; }
body:has(.dash-ref-page) .adm-header-pro .adm-hdr-right { margin-left:auto; }
body:has(.dash-ref-page) .adm-icon-btn,
body:has(.dash-ref-page) .adm-notify-btn { width:40px; height:40px; border-radius:11px; }
body:has(.dash-ref-page) .adm-notify-count { top:-7px; right:-5px; min-width:18px; height:18px; font-size:10px; border:2px solid #fff; }
body:has(.dash-ref-page) .adm-new-orders-link { margin-left:-4px; }
body:has(.dash-ref-page) .adm-admin-chip em { position:relative; }
body:has(.dash-ref-page) .adm-admin-chip em::after { content:''; position:absolute; right:-1px; bottom:1px; width:9px; height:9px; border-radius:50%; background:#10b981; border:2px solid #fff; }
.dash-ref-date .dash-ref-mini-icon { font-size:14px; }
.dash-ref-kpi::after { display:none; }
.dash-ref-kpi:hover { transform:none; box-shadow:0 9px 25px rgba(15,23,42,.052); }
.dash-ref-kpi small { white-space:nowrap; }
.dash-ref-card-head a:hover,
.dash-ref-select:hover { border-color:#cbd5e1; box-shadow:0 8px 18px rgba(15,23,42,.06); }
@media (min-width:1501px) {
  .dash-ref-page { grid-template-rows:auto auto auto minmax(390px,auto) auto; }
  .dash-ref-revenue { min-height:416px; }
  .dash-ref-queue,
  .dash-ref-products { min-height:416px; }
  .dash-ref-orders,
  .dash-ref-actions { min-height:330px; }
}
@media (max-width:900px) {
  body:has(.dash-ref-page) .adm-sb { position:fixed; transform:translateX(-100%); }
  body.adm-sb-open:has(.dash-ref-page) .adm-sb { transform:translateX(0); }
  body:has(.dash-ref-page) .adm-main { margin-left:0; }
  body:has(.dash-ref-page) .adm-header-pro { left:0; }
}

/* Non-:has fallback + cache-busted admin dashboard class hook */
.admin-dashboard-shell { --adm-ref-sidebar:242px; --adm-ref-header:76px; background:#f7f9fc !important; }
.admin-dashboard-shell .adm-header-pro { position:fixed; top:0; right:0; left:var(--adm-ref-sidebar); width:auto; height:var(--adm-ref-header); padding:0 32px 0 28px; }
.admin-dashboard-shell .adm-sb { position:fixed; inset:0 auto 0 0; top:0; width:var(--adm-ref-sidebar); height:100vh; z-index:960; overflow-y:auto; padding:0 0 18px; }
.admin-dashboard-shell .adm-lay { display:block; min-height:100vh; }
.admin-dashboard-shell .adm-main { margin-left:var(--adm-ref-sidebar); min-height:calc(100vh - var(--adm-ref-header)); }
.admin-dashboard-shell .adm-main:has(.dash-ref-page),
.admin-dashboard-shell .adm-main { padding-top:28px; background:#f7f9fc; }
.admin-dashboard-shell .adm-mob-toggle { display:inline-flex; }
.admin-dashboard-shell .adm-header-pro .adm-hdr-center { position:static; transform:none; justify-content:flex-start; }
.admin-dashboard-shell .adm-header-pro .adm-hdr-left { width:42px; }
.admin-dashboard-shell .adm-header-pro .adm-hdr-right { margin-left:auto; }
.admin-dashboard-shell .adm-global-search { width:382px; height:42px; border-radius:12px; }
.admin-dashboard-shell .adm-sb-logo { min-height:90px; padding:22px 20px 18px; }
.admin-dashboard-shell .adm-sb-t { font-family:'Poppins',system-ui,sans-serif; font-size:24px; font-weight:700; letter-spacing:-.055em; }
.admin-dashboard-shell .adm-sb-t span { color:#ec4899; }
.admin-dashboard-shell .adm-sb-t::first-letter { color:inherit; }
.admin-dashboard-shell .adm-sb-s { margin-top:5px; font-size:12px; color:#93a4bc; }
.admin-dashboard-shell .adm-nl { margin:22px 22px 9px; color:#8ca0ba; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.12em; }
.admin-dashboard-shell .adm-ni { min-height:39px; margin:4px 20px; padding:0 12px; border-radius:8px; color:#d4deee; font-size:14px; font-weight:700; }
.admin-dashboard-shell .adm-ni svg { width:17px; height:17px; }
.admin-dashboard-shell .adm-ni.act { background:linear-gradient(135deg,#2563eb 0%,#1d4ed8 100%); box-shadow:0 10px 24px rgba(37,99,235,.28); }
.admin-dashboard-shell .adm-help-card { margin:26px 20px 0; border-radius:10px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.08); }
.admin-dashboard-shell .adm-icon-btn,
.admin-dashboard-shell .adm-notify-btn { width:40px; height:40px; border-radius:11px; }
.admin-dashboard-shell .adm-notify-count { top:-7px; right:-5px; min-width:18px; height:18px; font-size:10px; border:2px solid #fff; }
.admin-dashboard-shell .adm-admin-chip em { position:relative; }
.admin-dashboard-shell .adm-admin-chip em::after { content:''; position:absolute; right:-1px; bottom:1px; width:9px; height:9px; border-radius:50%; background:#10b981; border:2px solid #fff; }
@media (max-width:900px) {
  .admin-dashboard-shell .adm-header-pro { left:0; width:100%; padding:0 14px; }
  .admin-dashboard-shell .adm-sb { position:fixed; transform:translateX(-100%); }
  body.admin-dashboard-shell.adm-sb-open .adm-sb { transform:translateX(0); }
  .admin-dashboard-shell .adm-main { margin-left:0; }
}
.account-design-approval-item { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.account-design-approval-main { display:grid; gap:4px; min-width:0; }
.account-design-proof-preview { width:72px; height:54px; flex:0 0 72px; border:1px solid #dbe4f0; border-radius:12px; overflow:hidden; background:#f8fafc; display:block; }
.account-design-proof-preview img { width:100%; height:100%; object-fit:cover; display:block; }
.account-order-expanded li.account-design-issue.account-design-approval-item { display:flex; }
.account-design-review-actions { display:flex; flex-wrap:wrap; gap:8px; margin-top:6px; }
.account-design-review-actions button,
.account-design-revision-form button { border:0; border-radius:999px; padding:8px 12px; font-weight:700; cursor:pointer; }
.account-design-approve-btn { background:#16a34a; color:#fff; }
.account-design-revision-btn { background:#fff7ed; color:#c2410c; border:1px solid #fed7aa !important; }
.account-design-revision-form { display:grid; gap:8px; margin-top:8px; max-width:420px; }
.account-design-revision-form textarea { width:100%; border:1px solid #dbe4f0; border-radius:12px; padding:10px 12px; resize:vertical; font:inherit; }
.account-design-revision-form button { justify-self:start; background:#2563eb; color:#fff; }
.account-design-customer-note { color:#9f1239; font-weight:850; }
.account-design-file-actions { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.account-design-file-actions a { display:inline-flex; align-items:center; justify-content:center; min-height:30px; padding:6px 10px; border-radius:999px; background:#eef6ff; color:#1d4ed8; font-weight:700; text-decoration:none; }
.account-design-file-actions a:last-child { background:#f8fafc; color:#334155; border:1px solid #dbe4f0; }
.account-order-expanded { grid-template-columns:1fr; align-items:start; padding:0 10px 18px; min-width:0; }
.account-order-items-panel { grid-column:1/-1; min-width:0; display:grid; gap:12px; padding:12px; border:1px solid #e2e8f0; border-radius:18px; background:#fff; box-shadow:0 14px 34px rgba(15,23,42,.06); }
.account-order-block-title { display:flex; justify-content:space-between; align-items:flex-start; gap:10px; margin-bottom:10px; }
.account-order-block-title strong { margin:0; }
.account-order-block-title span { color:#64748b; font-size:12px; font-weight:700; }
.account-order-item-cards { display:grid; gap:10px; }
.account-order-item-card { display:grid; grid-template-columns:72px minmax(150px,.85fr) minmax(240px,1fr) minmax(142px,.45fr); gap:12px; align-items:center; padding:12px; border:1px solid #e2e8f0; border-radius:16px; background:linear-gradient(180deg,#fff,#f8fafc); box-shadow:0 10px 22px rgba(15,23,42,.04); }
.account-order-item-card.account-design-issue { border-color:#fecaca; background:#fff7f7; }
.account-order-item-thumb { width:72px; height:72px; display:flex; align-items:center; justify-content:center; overflow:hidden; border:1px solid #dbe4f0; border-radius:14px; background:#fff; color:#64748b; }
.account-order-item-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.account-order-item-main { min-width:0; display:grid; gap:7px; }
.account-order-item-title { display:flex; align-items:flex-start; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.account-order-item-title strong { margin:0; font-size:14px; }
.account-order-item-title span { display:inline-flex; align-items:center; min-height:26px; padding:4px 9px; border-radius:999px; background:#eff6ff; color:#1d4ed8; font-size:11px; font-weight:950; }
.account-order-item-main p { color:#64748b; font-size:12px; font-weight:700; }
.account-order-file-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; min-width:0; }
.account-order-file { min-width:0; display:grid; gap:6px; padding:9px; border:1px dashed #dbe4f0; border-radius:13px; background:#fff; }
.account-order-file b { margin:0; color:#0f172a; font-size:11px; font-weight:950; text-transform:uppercase; letter-spacing:.04em; }
.account-order-file > a,
.account-order-file [data-artwork-preview] > a,
.account-artwork-file-preview { min-width:0; display:flex; align-items:center; gap:8px; color:#334155; text-decoration:none; }
.account-order-file > a:hover em,
.account-order-file [data-artwork-preview] > a:hover em { color:#1d4ed8; text-decoration:underline; }
.account-order-file > a span,
.account-order-file [data-artwork-preview] > a span,
.account-artwork-file-preview > span { width:44px; height:44px; flex:0 0 44px; display:flex; align-items:center; justify-content:center; overflow:hidden; border:1px solid #e2e8f0; border-radius:10px; background:#f8fafc; color:#64748b; }
.account-order-file > a span img,
.account-order-file [data-artwork-preview] > a span img,
.account-artwork-file-preview > span img { width:100%; height:100%; object-fit:cover; display:block; }
.account-order-file [data-artwork-preview] { display:grid; gap:7px; min-width:0; }
.account-order-file [data-artwork-preview] > a span,
.account-artwork-file-preview > span { width:58px; height:58px; flex-basis:58px; border-radius:12px; }
.account-order-file em { min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; color:#334155; font-size:12px; font-style:normal; font-weight:700; }
.account-order-file small { color:#94a3b8; font-size:12px; font-weight:700; }
.account-artwork-file-actions { display:flex; align-items:center; flex-wrap:wrap; gap:7px; }
.account-artwork-file-actions a { display:inline-flex; align-items:center; justify-content:center; min-height:28px; padding:6px 10px; border:1px solid #bfdbfe; border-radius:999px; background:#eff6ff; color:#1d4ed8; font-size:11px; font-weight:950; line-height:1; text-decoration:none; }
.account-artwork-file-actions a:hover { background:#dbeafe; color:#1e40af; }
.account-artwork-upload-state { display:inline-flex; align-items:center; gap:7px; width:max-content; max-width:100%; padding:6px 9px; border:1px solid #bfdbfe; border-radius:999px; background:#eff6ff; color:#1d4ed8; }
.account-order-item-actions { min-width:0; display:grid; justify-items:start; gap:8px; }
.account-order-item-actions > span { display:inline-flex; align-items:center; min-height:30px; padding:6px 10px; border-radius:999px; background:#f8fafc; color:#64748b; border:1px solid #e2e8f0; font-size:11px; font-weight:950; }
.account-order-live-msg { grid-column:1/-1; padding:9px 11px; border-radius:12px; font-size:12px; font-weight:850; line-height:1.4; }
.account-order-live-msg.is-success { border:1px solid #bbf7d0; background:#ecfdf5; color:#047857; }
.account-order-live-msg.is-info { border:1px solid #bfdbfe; background:#eff6ff; color:#1d4ed8; }
.account-order-live-msg.is-error { border:1px solid #fecaca; background:#fff1f2; color:#be123c; }
.account-order-item-actions .account-design-review-actions { margin:0; flex-direction:column; align-items:stretch; width:100%; }
.account-order-item-actions .account-design-review-actions button { width:100%; justify-content:center; }
.account-order-item-actions .account-design-revision-form { max-width:100%; width:100%; }
.account-product-count { display:inline-flex; align-items:center; justify-content:center; min-height:30px; padding:6px 10px; border-radius:999px; background:#f8fafc; color:#334155; border:1px solid #e2e8f0; font-size:12px; font-weight:950; white-space:nowrap; }
.account-design-revision-form--inline { display:grid; gap:7px; margin:0; }
.account-design-revision-form--inline textarea { min-height:52px; }
.account-artwork-reupload-form { display:grid; gap:6px; margin-top:7px; }
.account-artwork-reupload-form input { position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }
.account-artwork-reupload-form button { min-height:30px; border:1px solid #bfdbfe; border-radius:999px; background:#eff6ff; color:#1d4ed8; font-size:11px; font-weight:950; cursor:pointer; }
.account-artwork-reupload-form button:disabled,
.account-artwork-reupload-form input:disabled { opacity:.55; cursor:not-allowed; }
.account-artwork-reupload-form small { color:#64748b; font-size:10px; font-weight:700; }
.account-order-bottom-bar { display:grid; grid-template-columns:minmax(220px,.38fr) minmax(0,1fr); gap:10px; }
.account-order-info-card,
.account-order-actions-list,
.account-order-tracking { min-width:0; padding:12px; border:1px solid #e2e8f0; border-radius:16px; background:#fff; box-shadow:0 12px 28px rgba(15,23,42,.05); }
.account-order-actions-list { flex-direction:row; align-items:center; flex-wrap:wrap; }
.account-order-actions-list strong { flex:0 0 auto; margin:0 8px 0 0; }
.account-order-tracking { display:grid; gap:10px; }
.account-order-tracking .account-track-steps { grid-template-columns:repeat(5,minmax(0,1fr)); }
@media (max-width:760px) {
  .account-order-expanded { min-width:0; grid-template-columns:1fr; padding:0 0 16px; }
  .account-order-block-title { flex-direction:column; gap:3px; }
  .account-order-items-panel { grid-column:1/-1; }
  .account-order-bottom-bar { grid-template-columns:1fr; }
  .account-order-item-card { grid-template-columns:58px minmax(0,1fr); padding:10px; align-items:start; }
  .account-order-item-thumb { width:58px; height:58px; border-radius:12px; }
  .account-order-file-grid,
  .account-order-item-actions { grid-column:1/-1; }
  .account-order-file-grid { grid-template-columns:1fr; }
  .account-order-file > a span { width:38px; height:38px; flex-basis:38px; }
  .account-order-tracking .account-track-steps { grid-template-columns:1fr; }
}
@media (max-width:520px) {
  .account-order-item-card { grid-template-columns:1fr; }
  .account-order-item-thumb { width:100%; height:132px; }
}
.contact-form-message { margin-top:12px; min-height:20px; color:#64748b; font-size:13px; font-weight:700; }
.contact-form-message.ok { color:#047857; }
.contact-form-message.bad { color:#b91c1c; }
.contact-send-btn:disabled { opacity:.65; cursor:not-allowed; }

/* Advanced blog composer + rich article blocks */
.blog-composer-shell { border:1px solid var(--border); border-radius:16px; background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%); overflow:hidden; box-shadow:0 16px 42px rgba(15,23,42,.06); }
.blog-composer-head { display:flex; justify-content:space-between; gap:14px; align-items:flex-start; padding:14px 16px; border-bottom:1px solid var(--border); background:#fff; }
.blog-composer-head label { margin:0; }
.blog-composer-head p { margin:4px 0 0; color:var(--text2); font-size:12px; font-weight:700; }
.blog-live-stats { display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.blog-live-stats span { border:1px solid #dbeafe; color:#1d4ed8; background:#eff6ff; border-radius:999px; padding:6px 10px; font-size:11px; font-weight:700; }
.blog-editor-toolbar-pro { display:flex; flex-wrap:wrap; align-items:center; gap:8px; border:0; border-bottom:1px solid var(--border); border-radius:0; padding:10px 12px; background:#f8fafc; position:sticky; top:var(--hh); z-index:5; }
.blog-editor-toolbar-pro button { min-height:34px; border-radius:10px; cursor:pointer; transition:.16s ease; }
.blog-editor-toolbar-pro button:hover { transform:translateY(-1px); border-color:#93c5fd; color:#1d4ed8; box-shadow:0 8px 18px rgba(37,99,235,.10); }
.blog-editor-control { min-height:34px; display:inline-flex; align-items:center; gap:7px; padding:0 8px; border:1px solid #dbe4f0; border-radius:10px; background:#fff; color:#334155; font-size:11px; font-weight:950; }
.blog-editor-control select { min-height:28px; border:0; outline:0; background:transparent; color:#0f172a; font:inherit; cursor:pointer; }
.blog-rich-editor-pro { min-height:440px; border:0; border-radius:0; padding:24px; font-size:16px; line-height:1.65; background:#fff; }
.blog-rich-editor-pro p { margin:0 0 14px; line-height:1.65; }
.blog-rich-editor-pro h1 { margin:22px 0 10px; color:#0f172a; font-size:34px; line-height:1.12; letter-spacing:-.04em; }
.blog-rich-editor-pro h2 { margin:20px 0 8px; color:#172554; font-size:26px; line-height:1.18; letter-spacing:-.03em; }
.blog-rich-editor-pro h3 { margin:18px 0 8px; color:#1e3a8a; font-size:21px; line-height:1.22; }
.blog-rich-editor-pro h4 { margin:16px 0 8px; color:#334155; font-size:18px; line-height:1.28; }
.blog-rich-editor-pro ul,
.blog-rich-editor-pro ol { margin:0 0 16px 22px; padding:0; line-height:1.65; }
.blog-rich-editor-pro li { margin:0 0 7px; }
.blog-rich-editor-pro p:empty,
.blog-rich-editor-pro p:has(> br:only-child) { min-height:10px; margin-bottom:8px; }
.blog-rich-editor-pro figure, .blog-detail-content figure { margin:24px 0; }
.blog-rich-editor-pro img, .blog-detail-content img { max-width:100%; height:auto; border-radius:18px; box-shadow:0 16px 42px rgba(15,23,42,.10); }
.blog-rich-editor-pro figcaption, .blog-detail-content figcaption { margin-top:9px; color:#64748b; font-size:13px; font-weight:700; text-align:center; }
.blog-video-figure iframe, .blog-detail-content iframe { width:100%; aspect-ratio:16/9; border:0; border-radius:18px; background:#0f172a; box-shadow:0 16px 42px rgba(15,23,42,.14); }
.blog-video-figure video, .blog-detail-content video { width:100%; max-height:520px; border-radius:18px; background:#0f172a; box-shadow:0 16px 42px rgba(15,23,42,.14); }
.blog-cta-block, .blog-tip-block { margin:24px 0; padding:18px; border-radius:18px; border:1px solid #dbeafe; background:linear-gradient(135deg,#eff6ff,#f5f3ff); display:flex; justify-content:space-between; gap:14px; align-items:center; }
.blog-cta-block strong, .blog-tip-block strong { color:#0f172a; font-size:18px; }
.blog-cta-block p, .blog-tip-block p { margin:6px 0 0; color:#475569; }
.blog-cta-block a { flex:0 0 auto; min-height:42px; padding:0 16px; border-radius:13px; background:linear-gradient(135deg,#2563eb,#7c3aed); color:#fff !important; display:inline-flex; align-items:center; justify-content:center; text-decoration:none !important; font-weight:950; box-shadow:0 12px 26px rgba(37,99,235,.22); }
.blog-tip-block { display:block; border-color:#fed7aa; background:linear-gradient(135deg,#fff7ed,#fffbeb); }
.blog-tip-block strong { color:#c2410c; }
.blog-divider { border:0; height:1px; margin:30px 0; background:linear-gradient(90deg,transparent,#cbd5e1,transparent); }
.blog-savebar { position:sticky; bottom:0; z-index:20; display:flex; justify-content:space-between; gap:10px; align-items:center; padding:12px 0 0; background:linear-gradient(180deg,rgba(248,250,252,0),var(--bg) 38%); }
.blog-savebar-left { display:flex; gap:8px; flex-wrap:wrap; }
.blog-preview-modal { position:fixed; inset:0; background:rgba(15,23,42,.55); display:none; align-items:flex-start; justify-content:center; overflow:auto; padding:42px 16px; z-index:1800; }
.blog-preview-modal.open { display:flex; }
.blog-preview-card { position:relative; width:min(900px,100%); background:#fff; border-radius:24px; padding:34px; box-shadow:0 30px 90px rgba(15,23,42,.28); }
.blog-preview-close { position:absolute; right:18px; top:16px; width:38px; height:38px; border:0; border-radius:13px; background:#f1f5f9; font-size:24px; cursor:pointer; }
.blog-preview-meta { color:#2563eb; font-size:12px; font-weight:950; text-transform:uppercase; letter-spacing:.06em; margin-bottom:8px; }
.blog-preview-card h1 { margin:0 42px 10px 0; color:#0f172a; font-size:clamp(28px,4vw,44px); line-height:1.08; letter-spacing:-.04em; }
.blog-preview-card > p { color:#64748b; font-weight:700; line-height:1.7; }
@media (max-width:760px){ .blog-composer-head,.blog-savebar,.blog-cta-block{align-items:flex-start;flex-direction:column}.blog-editor-toolbar-pro{top:0}.blog-rich-editor-pro{min-height:320px;padding:16px}.blog-preview-card{padding:24px 18px}.blog-cta-block a{width:100%} }

/* Final consistency pass: equal public section rhythm + site-wide typography. */
body:not(.admin-shell) {
  font-family:var(--fn);
}
body:not(.admin-shell) :is(h1,h2,h3,h4,.sec-t,.shop-cat-title,.why-title,.deals-title,.how-title,.customer-title,.blog-title,.auth-t,.register-hero-copy h1,.register-form-head h2,.register-why-card h2) {
  font-family:var(--fd);
}
body:not(.admin-shell) :is(
  .shop-cat-section,
  .why-print-section,
  .best-deals-section,
  .how-works-section,
  .customer-say-section,
  .blog-section,
  .quick-help-section,
  .blog-detail-body-section,
  .info-section,
  .contact-main-section,
  .contact-benefits-section,
  .contact-location-section,
  .about-story-section,
  .about-choose-section,
  .about-process-section,
  .about-testimonials-section,
  .register-main-section,
  .register-trust-section,
  .pd-tabs-section,
  .pd-design-section
) {
  padding-top:var(--site-section-gap);
  padding-bottom:var(--site-section-gap);
}
body:not(.admin-shell) :is(.contact-faq-section,.info-cta-section) {
  padding-top:var(--site-section-gap);
  padding-bottom:calc(var(--site-section-gap) + 20px);
}
@media (max-width:768px) {
  .banner-slider {
    height:clamp(220px, 72vw, 360px);
    background:#fff;
  }
  .bs-slide > img,
  .bs-image-link img {
    object-fit:contain;
    object-position:center center;
  }
  .bs-content {
    max-width:min(76%, 360px);
  }
}
@media (max-width:480px) {
  .banner-slider {
    height:clamp(210px, 78vw, 330px);
  }
  .bs-slide > img,
  .bs-image-link img {
    object-fit:contain;
  }
  .bs-content {
    max-width:76%;
  }
}

/* Blog detail final layout fix: full-bleed featured image inside article + fixed desktop sidebar */
.blog-detail-article > .blog-detail-image {
  display:block;
  width:100% !important;
  max-width:none !important;
  margin:0 0 24px !important;
  padding:0 !important;
  line-height:0;
  font-size:0;
  background:#eef2f7;
}
.blog-detail-article > .blog-detail-image > img {
  display:block !important;
  width:100% !important;
  max-width:none !important;
  min-width:100% !important;
  height:clamp(340px, 44vw, 520px) !important;
  object-fit:cover !important;
  object-position:center center !important;
}
@media (min-width:901px) {
  .blog-detail-layout {
    grid-template-columns:minmax(0, 1fr) 340px;
    overflow:visible;
  }
  .blog-detail-sidebar {
    position:fixed;
    top:calc(var(--site-hh, var(--hh)) + 18px);
    right:max(calc(var(--page-gutter) / 2), calc((100vw - 1180px) / 2));
    width:340px;
    max-height:calc(100vh - var(--site-hh, var(--hh)) - 36px);
    overflow-y:auto;
    z-index:50;
  }
}
@media (max-width:900px) {
  .blog-detail-sidebar {
    position:static;
    width:auto;
    max-height:none;
    overflow:visible;
    padding-right:0;
  }
}
@media (max-width:768px) {
  .blog-detail-article > .blog-detail-image > img {
    height:auto !important;
    min-height:0 !important;
    aspect-ratio:16/10;
  }
}

/* Sitewide typography guard: keep every public/admin text surface on Poppins without breaking icon fonts. */
:where(body, body *):not(.fa):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands):not([class^="fa-"]):not([class*=" fa-"]) {
  font-family:'Poppins', var(--fn), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
:where(input, select, textarea, button) {
  font-family:'Poppins', var(--fn), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* Header menu order + category dropdown polish */
.nav-menu { gap:24px; }
.dd-panel {
  width:min(760px, calc(100vw - 32px));
  padding:16px;
}
.dd-category-list {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:8px;
}
.dd-cat-link {
  min-height:48px;
  padding:10px 11px;
  border:1px solid rgba(15,23,42,.06);
  background:#fff;
}
.dd-cat-group:hover > .dd-cat-link,
.dd-cat-group:focus-within > .dd-cat-link,
.dd-cat-group.is-open > .dd-cat-link {
  transform:translateY(-1px);
}
.dd-item-all {
  justify-content:center;
  margin-top:2px;
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.06);
}
@media (max-width:900px) {
  .dd-panel { width:min(94vw, 620px); }
  .dd-category-list { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:560px) {
  .dd-category-list { grid-template-columns:1fr; }
}

/* Blog listing magazine layout inspired by the launch mockup */
.blog-list-page {
  --blog-purple:#4b148c;
  --blog-purple-dark:#2a0b67;
  --blog-orange:#ff6b00;
  --blog-ink:#111322;
  --blog-muted:#5d6472;
  --blog-line:#e7e8ef;
  --blog-soft:#f7f7fb;
  margin-top:var(--site-hh, var(--hh));
  background:#fff;
  color:var(--blog-ink);
}
.blog-list-container { width:min(1440px, calc(100vw - 96px)); margin:0 auto; }
.blog-list-hero {
  position:relative;
  overflow:hidden;
  min-height:300px;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(255,255,255,.15), transparent 26%),
    radial-gradient(circle at 38% 70%, rgba(255,107,0,.10), transparent 24%),
    linear-gradient(135deg, #3a0b83 0%, #24105b 52%, #4b148c 100%);
}
.blog-list-hero::before,
.blog-list-hero::after { content:""; position:absolute; pointer-events:none; }
.blog-list-hero::before { inset:0; background:radial-gradient(circle at 58% 28%, rgba(255,255,255,.10) 0 1px, transparent 2px); background-size:24px 24px; opacity:.35; }
.blog-list-hero::after { width:270px; height:270px; right:28%; top:-120px; border:34px solid rgba(255,255,255,.04); transform:rotate(45deg); }
.blog-list-hero-grid { position:relative; z-index:1; display:grid; grid-template-columns:minmax(0, .9fr) minmax(420px, 1.1fr); gap:42px; align-items:center; }
.blog-list-hero-copy h1 { margin:0 0 16px; font-size:clamp(44px, 5vw, 72px); line-height:.95; font-weight:700; letter-spacing:-.045em; }
.blog-list-hero-copy p { max-width:520px; margin:0 0 28px; color:rgba(255,255,255,.92); font-size:20px; line-height:1.55; font-weight:500; }
.blog-list-breadcrumb { display:flex; gap:14px; align-items:center; color:rgba(255,255,255,.86); font-weight:700; }
.blog-list-breadcrumb a { color:#fff; text-decoration:none; }
.blog-list-breadcrumb strong { color:var(--blog-orange); }
.blog-list-hero-art { min-height:260px; position:relative; }
.blog-art-book { position:absolute; right:90px; top:40px; width:430px; height:170px; border-radius:10px 18px 18px 10px; background:linear-gradient(135deg,#fff 0 46%,#efe7ff 47% 50%,#38107c 51%); box-shadow:0 28px 65px rgba(0,0,0,.28); transform:rotate(-5deg); }
.blog-art-book::before { content:""; position:absolute; left:34px; top:32px; width:150px; height:90px; border-radius:10px; background:linear-gradient(135deg,#ff7a18,#38107c); box-shadow:170px 0 0 rgba(255,255,255,.2); }
.blog-art-book span { position:absolute; right:54px; top:58px; color:#fff; font-size:34px; font-weight:700; letter-spacing:-.05em; }
.blog-art-cup { position:absolute; right:12px; bottom:8px; display:grid; place-items:center; width:92px; height:92px; border-radius:50% 50% 46% 46%; color:#4b148c; background:#fff; box-shadow:0 20px 42px rgba(0,0,0,.22); font-size:18px; font-weight:700; }
.blog-art-plant { position:absolute; right:0; top:8px; width:120px; height:120px; border-radius:50%; background:#fff; box-shadow:0 18px 42px rgba(0,0,0,.18); }
.blog-art-plant i, .blog-art-plant::before, .blog-art-plant::after { content:""; position:absolute; border-radius:80% 0 80% 0; background:#2aa84a; transform:rotate(45deg); }
.blog-art-plant i { width:48px; height:48px; left:36px; top:22px; }
.blog-art-plant::before { width:42px; height:42px; left:22px; top:44px; background:#187a36; }
.blog-art-plant::after { width:42px; height:42px; right:20px; top:42px; background:#3cbd58; }
.blog-list-main-section { padding:42px 0 26px; background:#fff; }
.blog-list-layout { display:grid; grid-template-columns:minmax(0, 1fr) 360px; gap:42px; align-items:start; }
.blog-feature-card { display:grid; grid-template-columns:minmax(360px, .92fr) minmax(360px, .88fr); overflow:hidden; border:1px solid var(--blog-line); border-radius:14px; background:#fff; box-shadow:0 18px 48px rgba(15,23,42,.06); }
.blog-feature-image { position:relative; min-height:330px; overflow:hidden; background:#f1f2f6; }
.blog-feature-image img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.blog-feature-card:hover .blog-feature-image img { transform:scale(1.035); }
.blog-feature-image span { position:absolute; left:16px; top:16px; padding:8px 13px; border-radius:999px; color:#fff; background:#5520a8; font-size:12px; font-weight:700; text-transform:uppercase; }
.blog-feature-copy { padding:34px 36px; display:flex; flex-direction:column; justify-content:center; }
.blog-card-meta { color:#5c6370; font-size:13px; font-weight:600; }
.blog-card-meta span { color:#c3c7d1; margin:0 8px; }
.blog-feature-copy h2 { margin:14px 0 14px; font-size:clamp(28px, 3.1vw, 42px); line-height:1.08; font-weight:700; letter-spacing:-.04em; }
.blog-feature-copy h2 a, .blog-list-card h3 a { color:inherit; text-decoration:none; }
.blog-feature-copy p { margin:0 0 28px; color:#3d4655; font-size:16px; line-height:1.65; }
.blog-author-row, .blog-card-foot { display:flex; align-items:center; gap:12px; }
.blog-author-avatar { flex:0 0 auto; display:grid; place-items:center; width:44px; height:44px; border-radius:50%; color:#fff; background:linear-gradient(135deg,#ff7a18,#4b148c); font-size:13px; font-weight:700; }
.blog-author-avatar.small { width:36px; height:36px; font-size:11px; }
.blog-author-row span:not(.blog-author-avatar), .blog-card-foot span:not(.blog-author-avatar) { display:grid; gap:2px; min-width:0; }
.blog-author-row strong, .blog-card-foot strong { color:#111322; font-size:12px; font-weight:700; }
.blog-author-row small, .blog-card-foot small { color:#5c6370; font-size:11px; font-weight:600; }
.blog-read-btn { margin-left:auto; min-height:42px; display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:0 20px; border-radius:8px; color:#fff; background:#4b148c; font-size:13px; font-weight:700; text-decoration:none; }
.blog-list-head-row { display:flex; justify-content:space-between; gap:18px; align-items:center; margin:34px 0 18px; }
.blog-list-head-row h2 { margin:0; font-size:28px; line-height:1; font-weight:700; letter-spacing:-.03em; }
.blog-list-head-row h2 span { color:var(--blog-orange); }
.blog-filter-chips { display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.blog-filter-chips a { min-height:40px; padding:0 17px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--blog-line); border-radius:7px; color:#111322; background:#fff; font-size:13px; font-weight:600; text-decoration:none; }
.blog-filter-chips a.active, .blog-pagination a.active { color:#fff; background:#4b148c; border-color:#4b148c; box-shadow:0 12px 24px rgba(75,20,140,.18); }
.blog-list-grid { display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:24px; }
.blog-list-card { overflow:hidden; border:1px solid var(--blog-line); border-radius:12px; background:#fff; box-shadow:0 14px 34px rgba(15,23,42,.045); }
.blog-list-card-img { display:block; height:210px; overflow:hidden; background:#f1f2f6; }
.blog-list-card-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s ease; }
.blog-list-card:hover .blog-list-card-img img { transform:scale(1.035); }
.blog-list-card-body { padding:18px 18px 16px; }
.blog-list-card h3 { margin:10px 0 10px; color:#111322; font-size:20px; line-height:1.22; font-weight:700; letter-spacing:-.025em; }
.blog-list-card p { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; min-height:62px; margin:0 0 18px; color:#3f4652; font-size:14px; line-height:1.5; }
.blog-card-foot { gap:9px; }
.blog-card-foot a { margin-left:auto; color:#4b148c; font-size:12px; font-weight:700; text-decoration:none; white-space:nowrap; }
.blog-list-sidebar { position:sticky; top:calc(var(--site-hh, var(--hh, 92px)) + 24px); display:grid; gap:22px; align-self:start; max-height:calc(100vh - var(--site-hh, var(--hh, 92px)) - 32px); overflow:auto; padding-right:4px; scrollbar-width:thin; }
.blog-search-card { display:grid; grid-template-columns:1fr 56px; gap:0; padding:10px; border:1px solid var(--blog-line); border-radius:12px; background:#fff; box-shadow:0 12px 30px rgba(15,23,42,.045); }
.blog-search-card input { min-width:0; border:0; outline:0; padding:0 12px; color:#111322; font-size:14px; font-weight:600; }
.blog-search-card button { display:grid; place-items:center; min-height:52px; border-radius:8px; color:#fff; background:#4b148c; font-size:20px; }
.blog-side-box { padding:24px; border:1px solid var(--blog-line); border-radius:12px; background:#fff; box-shadow:0 12px 30px rgba(15,23,42,.045); }
.blog-side-box h2 { margin:0 0 18px; color:#111322; font-size:22px; font-weight:700; letter-spacing:-.025em; }
.blog-side-cats { display:grid; gap:12px; }
.blog-side-cats a { display:flex; align-items:center; justify-content:space-between; gap:12px; color:#111322; text-decoration:none; font-size:14px; font-weight:600; }
.blog-side-cats a span { display:flex; align-items:center; gap:12px; }
.blog-side-cats i { color:#4b148c; font-size:11px; }
.blog-side-cats b { color:#4b148c; font-size:13px; }
.blog-side-cats a.active span, .blog-side-cats a.active b { color:#ff6b00; }
.blog-popular-list { display:grid; gap:16px; }
.blog-popular-item { display:grid; grid-template-columns:96px 1fr; gap:14px; align-items:center; color:#111322; text-decoration:none; }
.blog-popular-item img { width:96px; height:76px; object-fit:cover; border-radius:8px; background:#f1f2f6; }
.blog-popular-item span { display:grid; gap:6px; }
.blog-popular-item strong { font-size:14px; line-height:1.3; font-weight:700; }
.blog-popular-item small { color:#6b7280; font-size:12px; font-weight:600; }
.blog-free-design-banner { position:relative; min-height:170px; display:flex; flex-direction:column; justify-content:center; overflow:hidden; padding:24px; border-radius:12px; color:#fff; background:linear-gradient(135deg,#4b148c,#2b0d69); text-decoration:none; box-shadow:0 18px 40px rgba(75,20,140,.22); }
.blog-free-design-banner span { position:relative; z-index:1; font-size:27px; line-height:1.16; font-weight:700; letter-spacing:-.04em; }
.blog-free-design-banner b { color:#ff9b21; }
.blog-free-design-banner em { position:relative; z-index:1; width:max-content; margin-top:18px; padding:12px 18px; border-radius:8px; background:#ff6b00; font-size:12px; font-style:normal; font-weight:700; text-transform:uppercase; }
.blog-free-design-banner i { position:absolute; right:18px; bottom:-8px; color:#ff9b21; font-size:82px; transform:rotate(-8deg); }
.blog-free-design-banner.has-image { min-height:auto; padding:0; background:#fff; }
.blog-free-design-banner.has-image img { width:100%; display:block; border-radius:12px; }
.blog-pagination { display:flex; justify-content:center; gap:12px; margin:32px 0 0; }
.blog-pagination a, .blog-pagination span { min-width:42px; height:42px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--blog-line); border-radius:8px; color:#111322; background:#fff; text-decoration:none; font-weight:700; }
.blog-empty-state { display:grid; place-items:center; gap:8px; min-height:230px; border:1px dashed #d8dbe5; border-radius:14px; background:#fbfbfd; color:#5d6472; }
.blog-empty-state strong { color:#111322; font-size:20px; }
.blog-empty-state a { color:#4b148c; font-weight:700; }
.blog-newsletter-section { padding:20px 0 22px; }
.blog-newsletter-card { display:grid; grid-template-columns:170px minmax(0, 1fr) minmax(360px, .7fr); gap:26px; align-items:center; padding:28px 36px; border-radius:12px; color:#fff; background:linear-gradient(135deg,#4b148c,#2d0b6f); box-shadow:0 18px 40px rgba(75,20,140,.20); }
.blog-newsletter-icon { position:relative; display:grid; place-items:center; width:124px; height:86px; border-radius:18px; background:#fff; color:#4b148c; font-size:48px; transform:rotate(-5deg); }
.blog-newsletter-card h2 { margin:0 0 8px; font-size:28px; line-height:1.15; font-weight:700; letter-spacing:-.035em; }
.blog-newsletter-card h2 span { color:#ff8a00; }
.blog-newsletter-card p { margin:0; color:rgba(255,255,255,.9); font-size:14px; line-height:1.55; }
.blog-newsletter-card form { display:grid; grid-template-columns:1fr 150px; gap:0; }
.blog-newsletter-card input { min-height:54px; border:0; border-radius:8px 0 0 8px; padding:0 18px; font-weight:600; }
.blog-newsletter-card button { border-radius:0 8px 8px 0; color:#fff; background:#22a93a; font-weight:700; text-transform:uppercase; }
.blog-quick-help { padding:0 0 16px; }
.blog-quick-help-grid { display:grid; grid-template-columns:repeat(3, 1fr); overflow:hidden; border-radius:8px; background:#fff; box-shadow:0 12px 30px rgba(15,23,42,.08); }
.blog-quick-help-grid a { display:grid; grid-template-columns:52px 1fr; gap:12px; align-items:center; min-height:58px; padding:0 22px; color:#111322; text-decoration:none; }
.blog-quick-help-grid a.wa { color:#fff; background:#22a93a; }
.blog-quick-help-grid a.download { color:#fff; background:#ff6b00; }
.blog-quick-help-grid i { font-size:25px; }
.blog-quick-help-grid span { display:grid; gap:2px; }
.blog-quick-help-grid strong { font-size:13px; font-weight:700; }
.blog-quick-help-grid b { font-size:16px; font-weight:700; }
@media (max-width:1180px) {
  .blog-list-container { width:min(100%, calc(100vw - 40px)); }
  .blog-list-hero-grid, .blog-list-layout, .blog-feature-card, .blog-newsletter-card { grid-template-columns:1fr; }
  .blog-list-sidebar { position:static; max-height:none; overflow:visible; padding-right:0; }
  .blog-list-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .blog-list-hero-art { display:none; }
}
@media (max-width:760px) {
  .blog-list-page { margin-top:var(--site-hh, var(--hh)); }
  .blog-list-container { width:min(100%, calc(100vw - 28px)); }
  .blog-list-hero { min-height:250px; }
  .blog-list-hero-copy h1 { font-size:46px; }
  .blog-list-hero-copy p { font-size:16px; }
  .blog-feature-image { min-height:230px; }
  .blog-feature-copy { padding:24px 18px; }
  .blog-list-head-row { align-items:flex-start; flex-direction:column; }
  .blog-filter-chips { justify-content:flex-start; }
  .blog-list-grid, .blog-quick-help-grid, .blog-newsletter-card form { grid-template-columns:1fr; }
  .blog-newsletter-card { padding:24px 18px; }
  .blog-newsletter-card input, .blog-newsletter-card button { border-radius:8px; }
  .blog-popular-item { grid-template-columns:84px 1fr; }
  .blog-popular-item img { width:84px; height:68px; }
}

/* Blog listing width + sticky sidebar refinement */
.blog-list-container {
  width:min(var(--page-max, 1680px), calc(100vw - var(--page-gutter, 40px)));
}
.blog-list-layout {
  grid-template-columns:minmax(0, 1fr) minmax(360px, 400px);
  gap:36px;
}
.blog-list-main-section {
  padding-bottom:44px;
}
.blog-list-sidebar {
  top:calc(var(--site-hh, var(--hh, 92px)) + 18px);
  max-height:min(620px, calc(100vh - var(--site-hh, var(--hh, 92px)) - 52px));
  overflow-y:auto;
  overflow-x:hidden;
  padding-right:8px;
  overscroll-behavior:contain;
  scrollbar-color:rgba(75,20,140,.58) rgba(75,20,140,.08);
  scrollbar-width:thin;
}
.blog-list-sidebar::-webkit-scrollbar { width:7px; }
.blog-list-sidebar::-webkit-scrollbar-track {
  border-radius:999px;
  background:rgba(75,20,140,.08);
}
.blog-list-sidebar::-webkit-scrollbar-thumb {
  border-radius:999px;
  background:linear-gradient(180deg,#6b2bc4,#ff7a18);
}
.blog-list-sidebar::-webkit-scrollbar-thumb:hover { background:linear-gradient(180deg,#4b148c,#e86100); }
.blog-list-content { min-width:0; }
.blog-list-grid { grid-template-columns:repeat(3, minmax(260px, 1fr)); }
.blog-newsletter-section { padding-top:10px; }
@media (min-width:1500px) {
  .blog-list-layout { grid-template-columns:minmax(0, 1fr) minmax(380px, 420px); gap:44px; }
  .blog-list-grid { gap:28px; }
}
@media (max-width:1180px) {
  .blog-list-container { width:min(100%, calc(100vw - 40px)); }
  .blog-list-layout { grid-template-columns:1fr; }
  .blog-list-sidebar {
    max-height:none;
    overflow:visible;
    padding-right:0;
    scrollbar-width:auto;
  }
}
@media (max-width:760px) {
  .blog-list-container { width:min(100%, calc(100vw - 28px)); }
  .blog-list-grid { grid-template-columns:1fr; }
}

/* Blog page final tweaks: non-sticky sidebar + shared quick-help strip */
.blog-list-sidebar {
  position:static;
  top:auto;
  max-height:none;
  overflow:visible;
  padding-right:0;
  scrollbar-width:auto;
}
.blog-list-sidebar::-webkit-scrollbar { width:auto; }
.blog-list-sidebar::-webkit-scrollbar-track,
.blog-list-sidebar::-webkit-scrollbar-thumb { background:initial; }
.blog-quick-help-section {
  padding:0 0 28px;
}
.blog-quick-help-section .quick-help-container {
  width:min(var(--page-max, 1680px), calc(100vw - var(--page-gutter, 40px)));
}
@media (max-width:760px) {
  .blog-quick-help-section .quick-help-container { width:min(100%, calc(100vw - 24px)); }
}

/* Blog detail professional layout matching the updated blog listing system */
.blog-detail-pro-page {
  --bd-purple:#4b148c;
  --bd-orange:#ff6b00;
  --bd-ink:#111322;
  --bd-muted:#596170;
  --bd-line:#e7e8ef;
  padding-top:calc(var(--site-hh, var(--hh)) + var(--post-header-gap, 50px));
  background:#fff;
}
.blog-detail-pro-container {
  width:min(var(--page-max, 1680px), calc(100vw - var(--page-gutter, 40px)));
  margin:0 auto;
}
.blog-detail-pro-hero {
  position:relative;
  overflow:hidden;
  min-height:170px;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    radial-gradient(circle at 78% 40%, rgba(255,255,255,.14), transparent 18%),
    radial-gradient(circle at 55% 0%, rgba(255,107,0,.10), transparent 22%),
    linear-gradient(135deg,#3a0b83 0%,#25105c 54%,#4b148c 100%);
}
.blog-detail-pro-hero::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 60% 55%, rgba(255,255,255,.13) 0 1px, transparent 2px); background-size:24px 24px; opacity:.28; }
.blog-detail-pro-hero::after { content:""; position:absolute; width:210px; height:210px; left:38%; top:-116px; border:28px solid rgba(255,255,255,.05); transform:rotate(45deg); }
.blog-detail-pro-hero .blog-detail-pro-container { position:relative; z-index:1; }
.blog-detail-pro-hero h1 { margin:0 0 14px; font-size:clamp(36px,4vw,54px); line-height:1; font-weight:700; letter-spacing:-.04em; }
.blog-detail-pro-crumb { display:flex; align-items:center; gap:13px; color:rgba(255,255,255,.86); font-size:14px; font-weight:700; }
.blog-detail-pro-crumb a { color:#fff; text-decoration:none; }
.blog-detail-pro-crumb strong { max-width:min(520px, 54vw); overflow:hidden; color:var(--bd-orange); text-overflow:ellipsis; white-space:nowrap; }
.blog-detail-pro-body { padding:46px 0 20px; }
.blog-detail-pro-layout { display:grid; grid-template-columns:minmax(0, 1fr) minmax(360px, 400px); gap:48px; align-items:start; }
.blog-detail-pro-article { min-width:0; }
.blog-detail-pro-meta { margin-bottom:18px; color:#5f6674; font-size:14px; font-weight:600; }
.blog-detail-pro-meta span { margin:0 9px; color:#c2c6d0; }
.blog-detail-pro-title-row { display:grid; grid-template-columns:minmax(0, 1fr) auto; gap:28px; align-items:end; margin-bottom:24px; }
.blog-detail-pro-title-row h2 { max-width:880px; margin:0 0 20px; color:var(--bd-ink); font-size:clamp(34px,4.2vw,58px); line-height:1.15; font-weight:700; letter-spacing:-.055em; }
.blog-detail-pro-author { display:flex; align-items:center; gap:12px; }
.blog-detail-pro-author span:not(.blog-author-avatar) { display:grid; gap:3px; }
.blog-detail-pro-author strong { color:#111322; font-size:14px; font-weight:700; }
.blog-detail-pro-author small { color:#4b5563; font-size:12px; font-weight:600; }
.blog-detail-share { display:flex; align-items:center; gap:10px; padding-bottom:10px; }
.blog-detail-share span { color:#111322; font-size:13px; font-weight:700; }
.blog-detail-share a { display:grid; place-items:center; width:40px; height:40px; border-radius:50%; color:#fff; background:var(--bd-purple); text-decoration:none; box-shadow:0 10px 20px rgba(75,20,140,.18); }
.blog-detail-pro-image { overflow:hidden; margin:0 0 28px; border-radius:12px; background:#eef2f7; }
.blog-detail-pro-image img { width:100%; height:min(560px, 42vw); min-height:380px; display:block; object-fit:cover; }
.blog-detail-pro-intro { margin:0 0 20px; color:#273140; font-size:18px; line-height:1.65; font-weight:500; }
.blog-detail-pro-content { color:#1f2937; font-size:17px; line-height:1.72; }
.blog-detail-pro-content :is(h2,h3,h4) { margin:24px 0 8px; color:#38107c; line-height:1.25; font-weight:700; letter-spacing:-.03em; }
.blog-detail-pro-content h2 { font-size:26px; }
.blog-detail-pro-content h3 { font-size:21px; }
.blog-detail-pro-content p { margin:0 0 16px; }
.blog-detail-pro-content ul,.blog-detail-pro-content ol { margin:0 0 18px 22px; }
.blog-detail-pro-content li { margin-bottom:7px; }
.blog-detail-pro-content blockquote { margin:26px 0; padding:18px 22px; border-left:5px solid var(--bd-orange); border-radius:12px; background:#fff7ed; color:#7c2d12; font-weight:700; }
.blog-detail-pro-content :is(img,video,iframe) { max-width:100%; border-radius:14px; }
.blog-detail-tags { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin:30px 0 20px; padding:16px 18px; border-radius:10px; background:#f8f6fd; }
.blog-detail-tags strong { color:#111322; font-size:13px; }
.blog-detail-tags a { min-height:28px; display:inline-flex; align-items:center; padding:0 13px; border:1px solid #e5ddfb; border-radius:7px; color:#38107c; background:#fff; font-size:12px; font-weight:700; text-decoration:none; }
.blog-post-nav { display:grid; grid-template-columns:1fr 1fr; margin-top:18px; border:1px solid var(--bd-line); border-radius:12px; background:#fff; overflow:hidden; }
.blog-post-nav a,.blog-post-nav > span { min-height:84px; display:grid; align-content:center; gap:5px; padding:16px 24px; color:#111322; text-decoration:none; }
.blog-post-nav a + a,.blog-post-nav > span + a { border-left:1px solid var(--bd-line); }
.blog-post-nav a span { color:#4b148c; font-size:12px; font-weight:700; }
.blog-post-nav a strong { font-size:15px; line-height:1.25; }
.blog-post-nav .next { text-align:right; justify-items:end; }
.blog-post-nav i { color:#4b148c; }
.blog-detail-pro-sidebar { display:grid; gap:22px; align-self:start; }
.blog-detail-related-strip { padding:10px 0 26px; }
.blog-detail-related-strip .blog-list-head-row { margin:0 0 18px; }
.blog-detail-related-strip .blog-list-grid { grid-template-columns:repeat(4, minmax(0, 1fr)); gap:22px; }
.blog-detail-related-strip .blog-list-card-img { height:auto; aspect-ratio:1 / 1; display:grid; place-items:center; background:#f1f2f6; }
.blog-detail-related-strip .blog-list-card-img img { width:100%; height:100%; object-fit:contain; object-position:center; }
.blog-detail-pro-page .blog-side-box,
.blog-detail-pro-page .blog-free-design-banner,
.blog-detail-pro-page .blog-search-card { box-shadow:0 12px 30px rgba(15,23,42,.045); }
@media (max-width:1180px) {
  .blog-detail-pro-layout,.blog-detail-pro-title-row { grid-template-columns:1fr; }
  .blog-detail-share { padding-bottom:0; }
  .blog-detail-pro-sidebar { display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .blog-detail-pro-sidebar .blog-free-design-banner { grid-column:1 / -1; }
  .blog-detail-related-strip .blog-list-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:760px) {
  .blog-detail-pro-page { padding-top:calc(var(--site-hh, var(--hh)) + 24px); }
  .blog-detail-pro-container { width:min(100%, calc(100vw - 28px)); }
  .blog-detail-pro-hero { min-height:150px; }
  .blog-detail-pro-crumb { flex-wrap:wrap; gap:9px; font-size:12px; }
  .blog-detail-pro-crumb strong { max-width:100%; white-space:normal; }
  .blog-detail-pro-body { padding:30px 0 14px; }
  .blog-detail-pro-title-row h2 { font-size:32px; }
  .blog-detail-share { flex-wrap:wrap; }
  .blog-detail-pro-image img { height:auto; min-height:0; aspect-ratio:16/10; }
  .blog-detail-pro-content { font-size:15px; line-height:1.65; }
  .blog-post-nav,.blog-detail-pro-sidebar { grid-template-columns:1fr; }
  .blog-detail-related-strip .blog-list-grid { grid-template-columns:1fr; }
  .blog-post-nav a + a,.blog-post-nav > span + a { border-left:0; border-top:1px solid var(--bd-line); }
  .blog-post-nav .next { text-align:left; justify-items:start; }
}

/* Final home-page rhythm: keep every homepage block visually consistent. */
body:not(.admin-shell) .banner-slider ~ :is(.shop-cat-section,.why-print-section,.best-deals-section,.how-works-section,.customer-say-section,.blog-section,.quick-help-section) {
  padding-top:30px;
  padding-bottom:0;
}
body:not(.admin-shell) .banner-slider ~ .quick-help-section {
  padding-bottom:30px;
}
body:not(.admin-shell) .banner-slider ~ .footer {
  padding-top:30px;
}
body:not(.admin-shell) .shop-cat-head,
body:not(.admin-shell) .blog-head {
  position:relative;
  justify-content:center;
  text-align:center;
}
body:not(.admin-shell) .shop-cat-title,
body:not(.admin-shell) .why-print-heading,
body:not(.admin-shell) .best-deals-heading,
body:not(.admin-shell) .how-works-title,
body:not(.admin-shell) .customer-say-title,
body:not(.admin-shell) .blog-title {
  width:100%;
  text-align:center;
}
body:not(.admin-shell) .shop-cat-all,
body:not(.admin-shell) .blog-view-all {
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
}
@media (max-width:760px) {
  body:not(.admin-shell) .banner-slider ~ :is(.shop-cat-section,.why-print-section,.best-deals-section,.how-works-section,.customer-say-section,.blog-section,.quick-help-section) {
    padding-top:30px;
    padding-bottom:0;
  }
  body:not(.admin-shell) .banner-slider ~ .quick-help-section {
    padding-bottom:30px;
  }
  body:not(.admin-shell) .shop-cat-head,
  body:not(.admin-shell) .blog-head {
    display:grid;
    justify-items:center;
    gap:10px;
  }
  body:not(.admin-shell) .shop-cat-all,
  body:not(.admin-shell) .blog-view-all {
    position:static;
    transform:none;
  }
}

/* Hardcoded portfolio showcase page matching the supplied layout reference. */
.portfolio-page {
  --pf-purple:#4b148c;
  --pf-orange:#ff6b00;
  --pf-green:#27a844;
  --pf-ink:#111322;
  --pf-muted:#5d6675;
  --pf-line:#e8e9ef;
  padding-top:var(--site-hh, var(--hh, 116px));
  background:#fff;
  color:var(--pf-ink);
  font-family:var(--fn);
}
.portfolio-container { width:min(var(--page-max, 1680px), calc(100vw - var(--page-gutter, 40px))); margin:0 auto; }
.portfolio-hero { --portfolio-hero-bg-image:radial-gradient(circle at 52% 20%, rgba(75,20,140,.06), transparent 25%), linear-gradient(135deg,#fff 0%,#f9fafc 48%,#f5f3f8 100%); min-height:415px; display:flex; align-items:center; overflow:hidden; border-bottom:1px solid #e5e7eb; background-image:linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.68) 45%, rgba(255,255,255,.2) 100%), var(--portfolio-hero-bg-image); background-size:cover, cover; background-position:center, center; background-repeat:no-repeat; }
.portfolio-hero-grid { display:grid; grid-template-columns:minmax(430px,.86fr) minmax(0,1.14fr); gap:42px; align-items:center; }
.portfolio-hero-copy h1 { margin:0 0 18px; color:#101424; font-size:clamp(56px,6vw,86px); line-height:.96; font-weight:700; letter-spacing:-.065em; }
.portfolio-hero-copy h1 span { color:var(--pf-orange); }
.portfolio-hero-copy p { max-width:520px; margin:0 0 34px; color:#141827; font-size:25px; line-height:1.42; font-weight:500; }
.portfolio-hero-points { display:flex; gap:28px; flex-wrap:wrap; align-items:center; }
.portfolio-hero-points div { display:flex; align-items:center; gap:11px; min-width:132px; }
.portfolio-hero-points i { width:43px; height:43px; display:grid; place-items:center; border-radius:15px; color:#fff; background:linear-gradient(135deg,var(--pf-purple),#36106f); font-size:19px; box-shadow:0 12px 28px rgba(75,20,140,.15); }
.portfolio-hero-points div:nth-child(2) i { background:linear-gradient(135deg,var(--pf-orange),#f97316); }
.portfolio-hero-points div:nth-child(3) i { background:linear-gradient(135deg,#5b21b6,var(--pf-purple)); }
.portfolio-hero-points div:nth-child(4) i { background:linear-gradient(135deg,var(--pf-green),#15803d); }
.portfolio-hero-points strong { color:#121827; font-size:14px; line-height:1.18; font-weight:700; }
.portfolio-hero-art { position:relative; min-height:360px; }
.portfolio-art-card { position:absolute; border-radius:24px; filter:drop-shadow(0 24px 34px rgba(15,23,42,.16)); }
.portfolio-art-card img { width:100%; height:100%; object-fit:contain; display:block; }
.portfolio-art-box { left:2%; top:92px; width:205px; height:160px; transform:rotate(-7deg); }
.portfolio-art-book { left:24%; top:22px; width:360px; height:265px; z-index:2; }
.portfolio-art-purple { right:5%; top:64px; width:350px; height:250px; transform:rotate(5deg); z-index:1; }
.portfolio-art-plant { position:absolute; right:0; top:4px; width:142px; height:142px; border-radius:50%; background:linear-gradient(135deg,#fff,#f3f4f6); box-shadow:0 20px 46px rgba(15,23,42,.12); }
.portfolio-art-plant span { position:absolute; inset:24px; border-radius:50% 50% 45% 45%; background:radial-gradient(circle at 50% 12%,#82c85e 0 10%,transparent 11%), conic-gradient(from 10deg,#3f8f3e,#74c359,#256d30,#5bb947,#2d7f36,#3f8f3e); }
.portfolio-work { padding:34px 0 16px; background:#fff; }
.portfolio-section-head { text-align:center; margin-bottom:26px; }
.portfolio-section-head h2 { margin:0 0 12px; color:#111322; font-size:36px; line-height:1.1; font-weight:700; letter-spacing:-.035em; }
.portfolio-section-head h2 span { color:var(--pf-orange); }
.portfolio-dots { display:flex; justify-content:center; gap:17px; }
.portfolio-dots span { width:12px; height:12px; border-radius:50%; background:var(--pf-purple); }
.portfolio-dots span:nth-child(2) { background:var(--pf-orange); }
.portfolio-dots span:nth-child(3) { background:var(--pf-green); }
.portfolio-filter-row { display:grid; grid-template-columns:repeat(8, minmax(0, 1fr)); gap:28px; margin-bottom:34px; }
.portfolio-filter { min-height:105px; display:grid; place-items:center; align-content:center; gap:12px; border:1px solid var(--pf-line); border-radius:11px; background:#fff; color:#111827; box-shadow:0 10px 26px rgba(15,23,42,.035); font:inherit; font-weight:700; cursor:pointer; }
.portfolio-filter i { font-size:30px; color:#1f2937; }
.portfolio-filter span { font-size:13px; }
.portfolio-filter.active { color:#fff; border-color:transparent; background:linear-gradient(135deg,var(--pf-purple),#35106f); box-shadow:0 18px 34px rgba(75,20,140,.24); }
.portfolio-filter.active i { color:#fff; }
.portfolio-grid { display:grid; grid-template-columns:repeat(5, minmax(0, 1fr)); gap:20px; }
.portfolio-card { overflow:hidden; border:1px solid var(--pf-line); border-radius:12px; background:#fff; box-shadow:0 10px 26px rgba(15,23,42,.035); }
.portfolio-card-img { aspect-ratio:1/1; height:auto; background:linear-gradient(135deg,#f8fafc,#f3f4f6); }
.portfolio-card-img img { width:100%; height:100%; display:block; object-fit:cover; }
.portfolio-card-body { padding:12px 10px 14px; text-align:center; }
.portfolio-card-body h3 { margin:0; color:#111322; font-size:14px; line-height:1.25; font-weight:800; letter-spacing:-.01em; }
.portfolio-card-body p { display:flex; align-items:center; gap:8px; margin:0; color:#6b7280; font-size:13px; font-weight:500; }
.portfolio-load-wrap { display:flex; justify-content:center; padding:18px 0 4px; }
.portfolio-load-btn { min-width:250px; min-height:54px; border:0; border-radius:10px; color:#fff; background:linear-gradient(135deg,var(--pf-purple),#36106f); font-weight:700; font-family:var(--fn); box-shadow:0 12px 28px rgba(75,20,140,.22); cursor:pointer; }
.portfolio-load-btn i { margin-left:15px; }
.portfolio-cta { padding:18px 0 0; }
.portfolio-project-card { min-height:130px; display:grid; grid-template-columns:1fr auto 155px; align-items:center; gap:32px; padding:22px 34px 22px 72px; border-radius:14px; color:#fff; background:radial-gradient(circle at 94% 25%, rgba(255,122,24,.35), transparent 14%), linear-gradient(135deg,#35106f 0%,#511599 55%,#35106f 100%); box-shadow:0 18px 34px rgba(75,20,140,.18); position:relative; overflow:hidden; }
.portfolio-project-card::before,.portfolio-project-card::after { content:""; position:absolute; width:14px; height:36px; border-radius:4px; background:#7c3aed; transform:rotate(38deg); opacity:.85; }
.portfolio-project-card::before { left:34px; top:26px; }
.portfolio-project-card::after { right:36px; top:24px; background:#ff7a18; }
.portfolio-project-card h2 { margin:0 0 6px; font-size:33px; line-height:1; font-weight:700; letter-spacing:-.03em; }
.portfolio-project-card p { margin:0; font-size:22px; font-weight:600; }
.portfolio-project-actions { display:flex; gap:26px; align-items:center; }
.portfolio-project-actions a { min-width:180px; min-height:48px; display:inline-flex; align-items:center; justify-content:center; border-radius:8px; color:#fff; background:var(--pf-orange); font-size:14px; font-weight:700; text-decoration:none; }
.portfolio-project-actions a.outline { background:transparent; border:1px solid rgba(255,255,255,.72); }
.portfolio-gift { width:118px; height:118px; display:grid; place-items:center; border-radius:26px; color:#ff7a18; font-size:88px; filter:drop-shadow(0 18px 26px rgba(15,23,42,.2)); }
.portfolio-usp { padding:20px 0; }
.portfolio-usp-bar { display:grid; grid-template-columns:repeat(5, minmax(0, 1fr)); gap:0; border-radius:17px; border:1px solid var(--pf-line); background:#fff; box-shadow:0 12px 28px rgba(15,23,42,.045); overflow:hidden; }
.portfolio-usp-bar article { min-height:86px; display:flex; align-items:center; gap:16px; padding:14px 20px; border-right:1px solid var(--pf-line); }
.portfolio-usp-bar article:last-child { border-right:0; }
.portfolio-usp-bar i { width:54px; height:54px; flex:0 0 54px; display:grid; place-items:center; border-radius:50%; color:#fff; background:linear-gradient(135deg,var(--pf-purple),#36106f); font-size:22px; }
.portfolio-usp-bar article:nth-child(2) i,.portfolio-usp-bar article:nth-child(5) i { background:linear-gradient(135deg,var(--pf-orange),#f97316); }
.portfolio-usp-bar article:nth-child(3) i { background:linear-gradient(135deg,var(--pf-green),#15803d); }
.portfolio-usp-bar h3 { margin:0 0 4px; color:#111322; font-size:14px; line-height:1.1; font-weight:700; }
.portfolio-usp-bar p { margin:0; color:#4b5563; font-size:12px; line-height:1.35; font-weight:500; }
.portfolio-quick-help { padding:0 0 24px; }
.portfolio-quick-help .quick-help-container { width:min(var(--page-max, 1680px), calc(100vw - var(--page-gutter, 40px))); }
@media (max-width:1180px) {
  .portfolio-hero-grid { grid-template-columns:1fr; padding:36px 0; }
  .portfolio-hero-art { min-height:300px; }
  .portfolio-filter-row { grid-template-columns:repeat(4, 1fr); gap:16px; }
  .portfolio-grid { grid-template-columns:repeat(4, 1fr); }
  .portfolio-project-card { grid-template-columns:1fr; padding:28px; text-align:center; justify-items:center; }
  .portfolio-usp-bar { grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:760px) {
  .portfolio-container,.portfolio-quick-help .quick-help-container { width:min(100%, calc(100vw - 24px)); }
  .portfolio-hero-copy h1 { font-size:48px; }
  .portfolio-hero-copy p { font-size:18px; }
  .portfolio-hero-art { display:none; }
  .portfolio-filter-row { grid-template-columns:repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns:repeat(2, 1fr); }
  .portfolio-usp-bar { grid-template-columns:1fr; }
  .portfolio-usp-bar article { border-right:0; border-bottom:1px solid var(--pf-line); }
}
.portfolio-filter { text-decoration:none; }
.portfolio-empty-state { margin:8px 0 24px; padding:34px; border:1px dashed var(--pf-line); border-radius:18px; background:#fff; color:#4b5563; font-weight:600; text-align:center; }

.portfolio-filter-more { position:relative; }
.portfolio-filter-more > .portfolio-filter { width:100%; height:100%; }
.portfolio-filter-more.active > .portfolio-filter { color:#fff; border-color:transparent; background:linear-gradient(135deg,var(--pf-purple),#35106f); box-shadow:0 18px 34px rgba(75,20,140,.24); }
.portfolio-filter-menu { position:absolute; left:0; right:0; top:100%; z-index:20; display:none; min-width:240px; max-height:360px; overflow:auto; padding:10px; border:1px solid var(--pf-line); border-radius:0 0 14px 14px; background:#fff; box-shadow:0 22px 48px rgba(15,23,42,.16); }
.portfolio-filter-more:hover .portfolio-filter-menu,.portfolio-filter-more:focus-within .portfolio-filter-menu { display:grid; gap:6px; }
.portfolio-filter-menu a { padding:10px 12px; border-radius:10px; color:#111827; font-size:13px; font-weight:800; text-decoration:none; }
.portfolio-filter-menu a:hover,.portfolio-filter-menu a.active { background:#f4f1ff; color:#4c1d95; }
.portfolio-gallery-card .portfolio-card-img { position:relative; width:100%; border:0; padding:0; cursor:pointer; overflow:hidden; }
.portfolio-gallery-card .portfolio-card-img span { position:absolute; inset:auto 14px 14px; display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:38px; border-radius:999px; background:rgba(17,19,34,.82); color:#fff; font-size:12px; font-weight:800; opacity:0; transform:translateY(8px); transition:.18s ease; }
.portfolio-gallery-card .portfolio-card-img:hover span { opacity:1; transform:translateY(0); }
.portfolio-lightbox { position:fixed; inset:0; z-index:5000; display:none; place-items:center; padding:28px 84px; background:rgba(9,12,24,.88); backdrop-filter:blur(4px); }
.portfolio-lightbox.open { display:grid; }
body.portfolio-lightbox-open { overflow:hidden; }
.portfolio-lightbox > img { display:block; width:auto; max-width:min(1180px, 92vw); height:auto; max-height:88vh; object-fit:contain; border-radius:10px; box-shadow:0 30px 90px rgba(0,0,0,.38); }
.portfolio-lightbox-close,.portfolio-lightbox-nav { position:fixed; border:0; border-radius:50%; display:grid; place-items:center; background:rgba(255,255,255,.94); color:#111827; cursor:pointer; box-shadow:0 14px 36px rgba(0,0,0,.25); transition:transform .18s ease, background .18s ease; }
.portfolio-lightbox-close:hover,.portfolio-lightbox-nav:hover { transform:scale(1.06); background:#fff; }
.portfolio-lightbox-close { top:22px; right:24px; width:48px; height:48px; font-size:22px; }
.portfolio-lightbox-nav { top:50%; width:54px; height:54px; font-size:22px; transform:translateY(-50%); }
.portfolio-lightbox-nav:hover { transform:translateY(-50%) scale(1.06); }
.portfolio-lightbox-prev { left:24px; }
.portfolio-lightbox-next { right:24px; }
@media(max-width:760px){.portfolio-filter-menu{position:static; margin-top:0; border-radius:0 0 14px 14px}.portfolio-lightbox{padding:70px 14px 28px}.portfolio-lightbox > img{max-width:96vw;max-height:82vh}.portfolio-lightbox-close{top:12px;right:12px}.portfolio-lightbox-nav{width:42px;height:42px;font-size:17px}.portfolio-lightbox-prev{left:10px}.portfolio-lightbox-next{right:10px}}

/* Common page hero / breadcrumb banner */
.page-hero-banner { min-height:365px; position:relative; display:flex; align-items:center; overflow:hidden; border-bottom:1px solid #e5e7eb; background:#f8fafc; }
.page-hero-bg { position:absolute; inset:0; background-position:center; background-repeat:no-repeat; background-size:cover; opacity:1; filter:none; transform:none; }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.58) 42%, rgba(255,255,255,.16) 100%); }
.page-hero-inner { width:min(var(--page-max, 1680px), calc(100vw - var(--page-gutter, 40px))); margin:0 auto; position:relative; z-index:1; padding:64px 0; }
.page-hero-breadcrumb { display:flex; align-items:center; flex-wrap:wrap; gap:9px; padding:0; margin:0 0 18px; border:0; border-radius:0; background:transparent; box-shadow:none; color:#374151; font-size:14px; font-weight:800; }
.page-hero-breadcrumb a { color:#4b148c; text-decoration:none; }
.page-hero-breadcrumb a:hover { color:#ff6a00; text-decoration:underline; text-underline-offset:4px; }
.page-hero-separator { color:#ff6a00; font-weight:900; }
.page-hero-current { color:#111827; }
.page-hero-eyebrow { display:inline-flex; margin:0 0 10px; color:#ff6a00; font-size:13px; line-height:1; font-weight:900; letter-spacing:.18em; text-transform:uppercase; }
.page-hero-banner h1 { max-width:900px; margin:0 0 16px; color:#101424; font-family:var(--fd, inherit); font-size:clamp(50px,5.8vw,86px); line-height:.96; font-weight:800; letter-spacing:-.06em; text-shadow:0 1px 0 rgba(255,255,255,.35); }
.page-hero-subtitle { max-width:760px; margin:0; color:#1f2937; font-size:clamp(18px,1.6vw,26px); line-height:1.5; font-weight:600; }
@media (max-width:760px) {
  .page-hero-banner { min-height:280px; }
  .page-hero-overlay { background:linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.68) 100%); }
  .page-hero-inner { width:min(100%, calc(100vw - 24px)); padding:42px 0; }
  .page-hero-breadcrumb { font-size:12px; gap:8px; }
  .page-hero-banner h1 { font-size:clamp(38px,12vw,54px); }
}

.design-later-check {
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
  padding:10px 12px;
  border:1px solid #bfdbfe;
  border-radius:14px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
}
.design-later-check input { width:16px; height:16px; accent-color:#2563eb; }
.design-later-note {
  margin-top:8px;
  padding:10px 12px;
  border-left:4px solid #2563eb;
  border-radius:12px;
  background:#f8fafc;
  color:#334155;
  font-size:12px;
  line-height:1.55;
}
.upload-zone.is-muted { opacity:.72; }
.account-same-address {
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin:6px 0 10px;
  padding:9px 12px;
  border:1px solid #bfdbfe;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
}
.account-same-address input { width:15px; height:15px; accent-color:#2563eb; }
.account-design-alert-note {
  display:block;
  margin-top:8px;
  padding:10px 12px;
  border:1px solid #fecaca;
  border-left:4px solid #ef4444;
  border-radius:12px;
  background:#fff1f2;
  color:#991b1b !important;
  font-size:13px !important;
  line-height:1.55;
  font-weight:950 !important;
}
.account-artwork-reupload-form.is-enabled button {
  border-color:#2563eb;
  background:#2563eb;
  color:#fff;
  box-shadow:0 8px 18px rgba(37,99,235,.18);
}

/* Blog detail image/share refinements */
.blog-detail-pro-image {
  overflow:visible;
  margin:0 0 28px;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.blog-detail-pro-image img {
  width:100%;
  height:auto;
  min-height:0;
  max-height:none;
  display:block;
  object-fit:contain;
  border-radius:0;
}
.blog-detail-share a,
.blog-detail-share button {
  border:0;
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:50%;
  color:#fff;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(75,20,140,.18);
}
.blog-detail-share .share-facebook { background:#1877f2; }
.blog-detail-share .share-x { background:#111827; }
.blog-detail-share .share-whatsapp { background:#22c55e; }
.blog-detail-share .share-linkedin { background:#0a66c2; }
.blog-detail-share .share-instagram { background:linear-gradient(135deg,#f97316,#db2777,#7c3aed); }
.blog-detail-share .share-native { background:#4b148c; }
.blog-detail-share button.copied { background:#16a34a; }
.blog-detail-share-block {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin:32px 0 20px;
  padding:18px 20px;
  border:1px solid #e7e8ef;
  border-radius:16px;
  background:linear-gradient(135deg,#fff,#f8f6fd);
}
.blog-detail-share-block strong { display:block; color:#111322; font-size:16px; font-weight:900; }
.blog-detail-share-block p { max-width:680px; margin:5px 0 0; color:#596170; font-size:13px; line-height:1.5; }
.blog-detail-related-strip .blog-list-card.blog-related-image-only {
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}
.blog-detail-related-strip .blog-list-card.blog-related-image-only .blog-list-card-img {
  width:100%;
  height:auto;
  aspect-ratio:auto;
  display:block;
  overflow:visible;
  border-radius:0;
  background:transparent;
}
.blog-detail-related-strip .blog-list-card.blog-related-image-only .blog-list-card-img img {
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  border-radius:0;
}
@media (min-width:1181px) {
  .blog-detail-pro-sidebar .blog-free-design-banner {
    position:sticky;
    top:calc(var(--site-hh, var(--hh, 92px)) + 18px);
    z-index:2;
  }
}
@media (max-width:760px) {
  .blog-detail-share-block { align-items:flex-start; flex-direction:column; }
  .blog-detail-share-block .blog-detail-share { padding-bottom:0; }
}

/* Account order readability polish: slightly larger text and tap targets for order details. */
.account-order-row { font-size:14px; line-height:1.35; }
.account-order-row strong { font-size:15px; line-height:1.25; }
.account-order-row b { font-size:15.5px; line-height:1.2; }
.account-status,
.account-mini-btn { min-height:30px; padding:7px 11px; font-size:12.5px; line-height:1.1; }
.account-order-expanded { font-size:14px; line-height:1.48; }
.account-order-expanded p,
.account-order-expanded ul { font-size:13.5px; line-height:1.5; }
.account-order-block-title strong { font-size:15.5px; line-height:1.3; }
.account-order-block-title span { font-size:13px; line-height:1.35; }
.account-order-item-title strong { font-size:15.5px; line-height:1.32; }
.account-order-item-title span,
.account-order-item-actions > span { min-height:30px; font-size:12px; line-height:1.1; }
.account-order-item-main p { font-size:13px; line-height:1.45; }
.account-order-file b { font-size:12px; line-height:1.2; }
.account-order-file em { font-size:13px; line-height:1.25; }
.account-order-file small { font-size:12.5px; line-height:1.35; }
.account-order-actions-list a,
.account-order-actions-list button,
.account-order-action-disabled,
.account-order-item-actions .account-design-review-actions button { min-height:42px; padding:9px 13px; font-size:13px; line-height:1.2; }
.account-order-expanded li.account-design-issue { font-size:13.5px; line-height:1.5; font-weight:850; }
@media (max-width:720px){
  .account-order-row { font-size:13.5px; }
  .account-order-row strong,
  .account-order-item-title strong { font-size:15px; }
  .account-order-expanded { font-size:13.5px; }
}

/* Mobile filter responsiveness: All Categories */
@media (max-width:820px) {
  .all-cat-content { padding-top:22px; }
  .all-cat-shop { gap:16px; }
  .all-cat-filter-panel {
    position:relative;
    border-radius:18px;
    background:#fff;
  }
  .all-cat-filter-panel > summary {
    min-height:56px;
    padding:0 18px;
    touch-action:manipulation;
  }
  .all-cat-filter-panel > summary span {
    display:flex;
    align-items:center;
    gap:8px;
  }
  .all-cat-filter-panel > summary span::before {
    content:'\f0b0';
    font-family:'Font Awesome 6 Free';
    font-weight:900;
    width:30px;
    height:30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#f4efff;
    color:var(--purple);
    font-size:13px;
  }
  .all-cat-filter-panel .all-cat-sidebar {
    gap:10px;
    padding:0 12px 14px;
  }
  .all-cat-side-box { border-radius:14px; }
  .all-cat-side-box h2 { padding:14px 14px 8px; font-size:15px; }
  .all-cat-side-list {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    padding:0 12px 12px;
  }
  .all-cat-side-list a {
    min-height:44px;
    padding:8px 12px;
    border:1px solid #eef2f7;
    border-radius:12px;
    background:#f8fafc;
    font-size:12px;
    line-height:1.25;
  }
  .all-cat-side-list a.is-active { margin:0; }
  .all-cat-toolbar {
    align-items:stretch;
    flex-direction:column;
    gap:10px;
    margin-bottom:16px;
  }
  .all-cat-toolbar p {
    font-size:14px;
    line-height:1.35;
  }
  .all-cat-toolbar label {
    width:100%;
    min-width:0;
    justify-content:space-between;
    padding:0 12px;
  }
  .all-cat-toolbar select {
    min-height:44px;
    flex:1;
    text-align:right;
  }
}
@media (max-width:520px) {
  .all-cat-side-list { grid-template-columns:1fr; }
  .all-cat-filter-panel > summary { min-height:54px; padding:0 14px; }
  .all-cat-toolbar label { min-height:46px; }
}

/* Business-needs homepage collections + recently viewed products */
.business-needs-section { background:linear-gradient(180deg,#fff 0%,#fff7ed 100%); }
.business-need-card .business-need-link { min-height:100%; }
.business-need-img::after { content:""; position:absolute; inset:auto 0 0; height:44%; background:linear-gradient(180deg,transparent,rgba(74,20,140,.42)); pointer-events:none; }
.business-need-body { align-items:flex-start; gap:6px; }
.business-need-body small { color:#64748b; font-size:12px; line-height:1.45; font-weight:600; }
.business-need-body em { color:#f26522; font-style:normal; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.04em; }
.recent-products-section[hidden] { display:none !important; }
.recent-products-section { padding-top:10px; }

/* Admin business-needs manager */
.business-needs-admin-head { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; margin-bottom:14px; }
.business-needs-admin-head h2 { margin:0; color:var(--text); font-size:18px; }
.business-needs-admin-head p { margin:4px 0 0; color:var(--text2); font-size:12px; line-height:1.5; }
.business-needs-admin-head.compact { margin-bottom:12px; }
.adm-inline-error { padding:10px 12px; border:1px solid var(--red-mid); background:var(--red-bg); color:var(--red); border-radius:10px; font-size:12px; margin-bottom:10px; }
.business-needs-list { display:grid; gap:10px; }
.business-need-row { display:grid; grid-template-columns:46px 1fr auto auto; align-items:center; gap:12px; padding:12px; border:1px solid var(--border); border-radius:14px; background:#fff; box-shadow:0 10px 24px rgba(15,23,42,.04); }
.business-need-icon { width:46px; height:46px; border-radius:14px; display:grid; place-items:center; background:linear-gradient(135deg,#fff7ed,#ede9fe); font-size:24px; }
.business-need-row strong { display:block; color:var(--text); font-size:14px; }
.business-need-row small { display:block; color:var(--text2); font-size:11px; line-height:1.45; margin-top:3px; }
.business-need-row > span { color:var(--text2); font-size:11px; font-weight:800; white-space:nowrap; }
.business-need-row > div:last-child { display:flex; gap:7px; justify-content:flex-end; flex-wrap:wrap; }
.business-product-picker { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:9px; max-height:360px; overflow:auto; padding:10px; border:1px solid var(--border); border-radius:14px; background:#f8fafc; }
.business-product-choice { display:flex; gap:9px; align-items:flex-start; padding:10px; border:1px solid #e2e8f0; border-radius:12px; background:#fff; cursor:pointer; }
.business-product-choice input { margin-top:3px; }
.business-product-choice b { display:block; color:var(--text); font-size:12px; line-height:1.25; }
.business-product-choice small { color:var(--text2); font-size:11px; }
@media (max-width:760px) {
  .business-needs-admin-head { flex-direction:column; }
  .business-need-row { grid-template-columns:42px 1fr; }
  .business-need-row > span, .business-need-row > div:last-child { grid-column:2; justify-content:flex-start; }
}
.business-need-products-page { padding-top:0; margin-bottom:28px; }
.business-need-page-desc { margin:-8px 0 18px; color:#64748b; font-size:14px; line-height:1.6; font-weight:600; }
.product-sector-picker { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:9px; padding:10px; border:1px solid var(--border); border-radius:14px; background:#f8fafc; }
.product-sector-choice { display:flex; gap:9px; align-items:flex-start; padding:10px; border:1px solid #e2e8f0; border-radius:12px; background:#fff; cursor:pointer; }
.product-sector-choice input { margin-top:3px; }
.product-sector-choice b { display:block; color:var(--text); font-size:12px; line-height:1.25; }
.product-sector-choice small { display:block; color:var(--text2); font-size:11px; line-height:1.35; margin-top:2px; }
.business-empty-state { display:grid; gap:10px; place-items:center; text-align:center; padding:46px 18px; border:1px dashed #d8b4fe; border-radius:20px; background:#fff; color:#64748b; }
.business-empty-state strong { color:#111827; font-size:18px; }

/* Business sector thumbnails and filters */
.business-need-body.compact { min-height:82px; justify-content:center; align-items:center; text-align:center; }
.business-need-body.compact .shop-cat-name { font-size:16px; line-height:1.25; }
.business-sector-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:18px; }
.all-business-section .shop-cat-card { min-width:0; }
.business-product-filter { display:grid; grid-template-columns:minmax(220px,1.5fr) repeat(auto-fit,minmax(160px,1fr)) auto auto; gap:10px; align-items:end; padding:14px; margin:0 0 18px; border:1px solid #e2e8f0; border-radius:18px; background:#fff; box-shadow:0 14px 32px rgba(15,23,42,.05); }
.business-product-filter label { display:grid; gap:6px; color:#64748b; font-size:12px; font-weight:800; }
.sector-thumb { overflow:hidden; }
.sector-thumb img { width:100%; height:100%; object-fit:cover; display:block; border-radius:inherit; }
.business-sector-preview { min-height:120px; border:1px dashed var(--border); border-radius:16px; background:#fff7ed; display:grid; place-items:center; color:var(--text2); font-size:12px; font-weight:700; overflow:hidden; }
.business-sector-preview img { width:100%; max-height:220px; object-fit:cover; display:block; }
@media (max-width:760px) { .business-product-filter { grid-template-columns:1fr; } }

/* Business sectors should visually match category cards while staying square and flat. */
.business-needs-section .shop-cat-track { grid-auto-columns:calc((100% - 88px) / 5); }
.business-needs-section .shop-cat-link,
.all-business-section .shop-cat-link {
  min-height:0;
  aspect-ratio:1 / 1;
  border-radius:20px;
  box-shadow:none;
  background:linear-gradient(180deg,#fff 0%,#fbfbfc 100%);
  border-color:#e8eaee;
}
.business-needs-section .shop-cat-link:hover,
.all-business-section .shop-cat-link:hover {
  transform:translateY(-3px);
  box-shadow:none;
  border-color:rgba(234,88,12,.35);
}
.business-needs-section .shop-cat-img,
.all-business-section .shop-cat-img { min-height:0; flex:1 1 auto; }
.business-needs-section .shop-cat-img img,
.all-business-section .shop-cat-img img { min-height:0; filter:none; }
.business-needs-section .shop-cat-body.compact,
.all-business-section .shop-cat-body.compact { min-height:72px; justify-content:flex-start; text-align:left; border-top:1px solid rgba(15,23,42,.06); }
.business-needs-section .business-need-img::after { display:none; }
.business-page .quick-help-call,
.business-page .quick-help-call .quick-help-copy span,
.business-page .quick-help-call .quick-help-copy strong { color:#111827; }
.business-page .quick-help-whatsapp,
.business-page .quick-help-whatsapp .quick-help-copy span,
.business-page .quick-help-whatsapp .quick-help-copy strong { color:#fff; }
@media (max-width:1100px) { .business-needs-section .shop-cat-track { grid-auto-columns:calc((100% - 40px) / 3); } }
@media (max-width:760px) {
  .business-needs-section .shop-cat-track { grid-auto-columns:minmax(180px, 72vw); }
}

/* Business sector listing/detail pages reuse the all-categories layout. */
.business-sector-shop .all-cat-side-list a.is-active {
  background:#fff7ed;
  color:#ea580c;
  border-color:#fed7aa;
}
.business-sector-shop .all-cat-grid.business-sector-grid {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}
.business-sector-card .all-cat-icon {
  font-family:'Poppins', var(--fn);
  font-size:15px;
}
@media (max-width:1100px) { .business-sector-shop .all-cat-grid.business-sector-grid { grid-template-columns:repeat(3, minmax(0, 1fr)); gap:18px; } }
@media (max-width:768px) { .business-sector-shop .all-cat-grid.business-sector-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); gap:16px; } }

/* Header CTA buttons + custom quote modal */
.header-cta-actions { gap:8px; min-width:0; }
.header-cta-btn { min-height:38px; display:inline-flex; align-items:center; justify-content:center; gap:7px; padding:0 13px; border:1px solid transparent; border-radius:999px; font-size:12px; font-weight:800; text-decoration:none; white-space:nowrap; cursor:pointer; transition:.18s ease; font-family:'Poppins', var(--fn); }
.header-quote-btn { background:linear-gradient(135deg,#ffd800,#ffb700); color:#070707; box-shadow:0 10px 20px rgba(255,190,0,.22); }
.header-fav-btn { background:#fff7ed; color:#c2410c; border-color:#fed7aa; }
.header-login-btn { background:#eef2ff; color:#4a148c; border-color:#ddd6fe; }
.header-cta-btn:hover { transform:translateY(-1px); filter:brightness(1.01); }
.custom-quote-modal { position:fixed; inset:0; z-index:2200; display:none; align-items:center; justify-content:center; padding:20px; }
.custom-quote-modal.open { display:flex; }
.quote-modal-open { overflow:hidden; }
.custom-quote-backdrop { position:absolute; inset:0; background:rgba(17,24,39,.58); backdrop-filter:blur(3px); }
.custom-quote-dialog { position:relative; width:min(545px,calc(100vw - 24px)); max-height:calc(100vh - 24px); overflow:auto; background:#f8fafc; box-shadow:0 30px 90px rgba(0,0,0,.35); }
.custom-quote-close { position:absolute; right:16px; top:12px; z-index:2; width:32px; height:32px; border:0; background:transparent; color:#9ca3af; font-size:30px; line-height:1; cursor:pointer; }
.custom-quote-head { padding:26px 32px 30px; background:#050505; color:#fff; }
.custom-quote-kicker { display:flex; align-items:center; gap:10px; color:#ffe100; font-size:10px; font-weight:950; text-transform:uppercase; letter-spacing:.28em; margin-bottom:12px; }
.custom-quote-kicker span { width:25px; height:25px; border-radius:8px; display:grid; place-items:center; background:#ffe100; color:#050505; letter-spacing:0; }
.custom-quote-head h2 { margin:0; color:#fff; text-transform:uppercase; font-size:31px; line-height:1.05; letter-spacing:-.04em; font-weight:950; }
.custom-quote-head h2 strong { color:#ffe100; }
.custom-quote-form { padding:36px 32px 30px; background:#f8fafc; display:grid; gap:22px; }
.custom-quote-grid { display:grid; grid-template-columns:1fr 1fr; gap:26px 20px; }
.custom-quote-form label { display:grid; gap:9px; color:#9aa3b2; font-size:10px; font-weight:950; text-transform:uppercase; letter-spacing:.12em; }
.custom-quote-form input,.custom-quote-form textarea { width:100%; min-height:42px; border:1px solid #cbd5e1; border-radius:8px; background:#f8fafc; padding:0 13px; color:#475569; font:500 14px/1.4 var(--fn); outline:none; }
.custom-quote-form textarea { min-height:78px; padding:12px 13px; resize:vertical; }
.custom-quote-form input:focus,.custom-quote-form textarea:focus { border-color:#ffcc00; box-shadow:0 0 0 3px rgba(255,216,0,.18); background:#fff; }
.custom-quote-submit { min-height:57px; border:0; border-radius:16px; background:#ffd900; color:#050505; font-size:14px; font-weight:950; letter-spacing:.28em; text-transform:uppercase; cursor:pointer; box-shadow:0 18px 35px rgba(255,217,0,.22); }
.custom-quote-submit:disabled { opacity:.72; cursor:wait; }
.custom-quote-form > p { margin:-5px 0 0; text-align:center; color:#9aa3a2; font-size:10px; font-weight:950; text-transform:uppercase; letter-spacing:.05em; }
.custom-quote-message { display:none; padding:11px 12px; border-radius:10px; font-size:12px; font-weight:800; }
.custom-quote-message.success,.custom-quote-message.error { display:block; }
.custom-quote-message.success { background:#dcfce7; color:#166534; border:1px solid #86efac; }
.custom-quote-message.error { background:#fee2e2; color:#991b1b; border:1px solid #fecaca; }
.custom-orders-list { display:grid; gap:10px; }
.custom-order-row { display:grid; grid-template-columns:130px minmax(170px,.8fr) minmax(260px,1.5fr) auto minmax(190px,.7fr); gap:12px; align-items:center; padding:13px; border:1px solid var(--border); border-radius:14px; background:#fff; box-shadow:0 10px 24px rgba(15,23,42,.04); }
.custom-order-row strong,.custom-order-row b { display:block; color:var(--text); font-size:13px; }
.custom-order-row small,.custom-order-row em { display:block; color:var(--text2); font-size:11px; line-height:1.45; margin-top:3px; font-style:normal; }
.custom-status { display:inline-flex; justify-content:center; padding:6px 10px; border-radius:999px; background:#eff6ff; color:#1d4ed8; font-size:11px; font-weight:900; white-space:nowrap; }
.custom-status-new { background:#fff7ed; color:#c2410c; }
.custom-status-converted_to_order,.custom-status-customer_approved { background:#dcfce7; color:#166534; }
.custom-status-rejected,.custom-status-closed { background:#fee2e2; color:#991b1b; }
.custom-order-actions { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.custom-order-actions select { min-height:34px; max-width:150px; }
@media (max-width:1280px) { .header-cta-btn span { display:none; } .header-cta-btn { width:38px; padding:0; } }
@media (max-width:768px) { .custom-quote-grid { grid-template-columns:1fr; gap:18px; } .custom-quote-head { padding:24px 32px 26px; } .custom-quote-head h2 { font-size:28px; } .custom-quote-form { padding:28px 20px 24px; } .custom-order-row { grid-template-columns:1fr; } }

/* Custom quote phase-2 theme refinements */
.custom-quote-head { background:linear-gradient(135deg,#4a148c 0%,#1a56e8 100%); }
.custom-quote-kicker { color:#ffd800; }
.custom-quote-kicker span { background:#ffd800; color:#4a148c; }
.custom-quote-head h2 strong { color:#ffd800; }
.custom-quote-submit { background:linear-gradient(135deg,#ffb700,#ff7a00); color:#111827; box-shadow:0 18px 35px rgba(255,122,0,.24); }
.custom-quote-account-note { margin-top:-6px; padding:10px 12px; border:1px solid #ddd6fe; border-radius:10px; background:#f5f3ff; color:#4c1d95; font-size:11px; line-height:1.45; font-weight:800; text-transform:none; letter-spacing:0; }

/* Custom orders admin expandable cards */
.custom-quote-card { margin-bottom:12px; }
.custom-quote-card .adm-order-card-summary { grid-template-columns:150px minmax(190px,1fr) minmax(230px,1.2fr) 140px 100px 40px; }
.custom-quote-card.open { border-color:#bfdbfe; box-shadow:0 18px 42px rgba(37,99,235,.10); }
.custom-quote-panel { padding:16px; border-top:1px solid #e5e7eb; background:#f8fafc; }
.custom-quote-edit { display:grid; gap:13px; }
.custom-quote-edit-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.custom-quote-edit label { display:grid; gap:6px; color:#64748b; font-size:11px; font-weight:900; text-transform:uppercase; letter-spacing:.05em; }
.custom-quote-edit textarea.fi { min-height:78px; resize:vertical; }
.custom-quote-actions { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }
@media (max-width:1180px) { .custom-quote-card .adm-order-card-summary { grid-template-columns:1fr 1fr; } .custom-quote-edit-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:720px) { .custom-quote-card .adm-order-card-summary,.custom-quote-edit-grid { grid-template-columns:1fr; } }
.cartp-img-custom { cursor:default; background:#f5f3ff; color:#4a148c; }
.cartp-img-custom::after { content:'CQ'; font-weight:950; letter-spacing:.08em; }
.cartp-fixed-qty { display:inline-flex; align-items:center; justify-content:center; min-height:40px; padding:0 14px; border:1px solid var(--border); border-radius:10px; background:#f8fafc; color:var(--text2); font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.04em; }
.cart-item-custom .ci-img { background:#f5f3ff; }
.cart-item-custom .ci-img::after { content:'CQ'; color:#4a148c; font-size:12px; font-weight:950; }
.cart-item-custom .ci-img img[src=''], .cart-item-custom .ci-img img:not([src]) { display:none; }
