:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-deep: #115e59;
  --accent: #2dd4bf;
  --accent-soft: #99f6e4;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f6fbfa;
  --line: #e4edec;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(13, 56, 60, .06);
  --shadow: 0 14px 34px rgba(13, 56, 60, .10);
  --shadow-lg: 0 24px 60px rgba(13, 56, 60, .16);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--primary-dark); text-decoration: none; }
h1,h2,h3,h4 { line-height: 1.22; margin: 0 0 .5rem; font-weight: 800; letter-spacing: -.015em; }
p { margin: 0 0 1rem; }
.muted { color: var(--muted); }
small { color: var(--muted); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-tag, .section-head .section-tag {
  display: inline-block; font-weight: 700; font-size: .76rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary-dark); background: rgba(45,212,191,.14);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 10px;
}
.section-head h2 { font-size: 1.9rem; font-weight: 800; }
.link-more { font-weight: 700; color: var(--primary-dark); display: inline-flex; align-items: center; gap: 6px; }
.link-more i { transition: transform .2s; }
.link-more:hover { color: var(--primary-deep); }
.link-more:hover i { transform: translateX(4px); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-family: var(--font); font-weight: 700;
  border-radius: 12px; padding: 11px 22px; font-size: 1rem; transition: all .18s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: #fff;
  box-shadow: 0 8px 22px rgba(13,148,136,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(13,148,136,.4); color: #fff; }
.btn-ghost { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-dark); background: #fff; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1ebe5b; color: #fff; }
.btn-light { background: #fff; color: var(--ink); box-shadow: 0 6px 18px rgba(0,0,0,.12); }
.btn-light:hover { transform: translateY(-2px); color: var(--ink); }
.btn-sm { padding: 7px 14px; font-size: .88rem; border-radius: 10px; }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; border-radius: 14px; }
.btn-soft { background: rgba(45,212,191,.14); color: var(--primary-dark); }
.btn-soft:hover { background: rgba(45,212,191,.24); }
.btn-danger-soft { background: #fee2e2; color: #dc2626; }

/* header */
.topbar { background: var(--primary-deep); color: #d8f5ef; font-size: .8rem; padding: 8px 0; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar i { color: var(--accent); }
.mainbar {
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; max-width: 220px; object-fit: contain; }
.brand-badge {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff;
  font-size: 1.4rem; border-radius: 14px; box-shadow: 0 6px 16px rgba(13,148,136,.35);
}
.brand-text { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; }
.brand-text b { color: var(--primary-dark); }
.search { flex: 1; max-width: 460px; display: flex; }
.search input {
  flex: 1; border: 1.5px solid var(--line); border-radius: 12px 0 0 12px; padding: 10px 14px;
  font-family: var(--font); font-size: .95rem; outline: none; background: var(--bg-soft);
  transition: border-color .15s, box-shadow .15s;
}
.search input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(13,148,136,.1); }
.search button {
  border: 1.5px solid var(--line); border-left: 0; background: var(--bg-soft); color: var(--muted);
  border-radius: 0 12px 12px 0; padding: 0 18px; cursor: pointer; font-size: 1rem; transition: all .15s;
}
.search button:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.mainnav a { text-decoration: none; }
.navlink {
  color: var(--ink); font-weight: 600; font-size: .95rem; padding: 8px 13px; border-radius: 10px; transition: all .15s;
}
.navlink:hover { color: var(--primary-dark); background: rgba(45,212,191,.12); }
.navlink.active { color: var(--primary-dark); background: rgba(45,212,191,.14); }
.cartbtn {
  position: relative; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(45,212,191,.14); color: var(--primary-dark); border-radius: 14px; font-size: 1.3rem; transition: all .15s;
}
.cartbtn:hover { background: var(--primary); color: #fff; }
.cartbtn .badge {
  position: absolute; top: -6px; right: -6px; background: #ef4444; color: #fff; font-size: .7rem;
  font-weight: 700; min-width: 20px; height: 20px; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 5px;
  box-shadow: 0 2px 6px rgba(239,68,68,.4);
}
.cartbtn.active { background: var(--primary); color: #fff; }
.menu-btn {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 0;
  background: rgba(45,212,191,.14); color: var(--primary-dark); border-radius: 12px; font-size: 1.35rem; cursor: pointer; transition: all .15s;
}
.menu-btn:hover { background: var(--primary); color: #fff; }

/* flash */
.flash { padding: 12px 0; font-weight: 600; font-size: .95rem; }
.flash .container { display: flex; gap: 8px; align-items: center; }
.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }
.flash-info { background: #dbeafe; color: #1e40af; }

/* hero */
.hero { background: linear-gradient(160deg, #f0fdfb 0%, #d8f6f1 42%, #b4e9e4 100%); overflow: hidden; position: relative; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(800px 420px at 88% 18%, rgba(45,212,191,.28), transparent 60%),
              radial-gradient(700px 420px at 8% 88%, rgba(13,148,136,.16), transparent 60%);
}
.hero .container { padding-top: 64px; padding-bottom: 80px; position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--primary-dark); background: rgba(255,255,255,.75);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px; box-shadow: var(--shadow-sm);
}
.hero-eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(45,212,191,.25); }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); font-weight: 800; letter-spacing: -.025em; }
.hero h1 span {
  color: var(--primary-dark); position: relative; white-space: nowrap;
}
.hero h1 span::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px; z-index: -1;
  background: linear-gradient(90deg, rgba(45,212,191,.45), rgba(45,212,191,.1)); border-radius: 999px;
}
.hero p { font-size: 1.12rem; color: #42636b; max-width: 520px; }
.hero-cta { margin-top: 6px; }
.hero-ship { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: .82rem; font-weight: 600; color: var(--primary-dark); background: rgba(255,255,255,.55); border: 1px dashed rgba(13,148,136,.35); padding: 6px 12px; border-radius: 999px; }
.hero-ship i { color: var(--primary); }
.hero-stats { gap: 34px; }
.hero-stats div { display: flex; flex-direction: column; position: relative; }
.hero-stats div + div::before { content: ''; position: absolute; left: -17px; top: 8px; bottom: 8px; width: 1px; background: rgba(13,148,136,.2); }
.hero-stats b { font-size: 1.55rem; font-weight: 800; color: var(--primary-dark); letter-spacing: -.01em; }
.hero-stats span { color: var(--muted); font-size: .82rem; font-weight: 500; }

/* hero stage (product showcase) */
.hero-stage { position: relative; min-height: 440px; }
.hero-halo {
  position: absolute; inset: 6% 2% 4%; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, rgba(255,255,255,.55), transparent 72%);
}
.hero-blob {
  position: absolute; top: 6%; left: 8%; width: 72%; height: 78%; border-radius: 44% 56% 60% 40% / 52% 44% 56% 48%;
  background: linear-gradient(135deg, rgba(45,212,191,.35), rgba(13,148,136,.18));
  filter: blur(6px); animation: blob 12s ease-in-out infinite;
}
@keyframes blob {
  0%,100% { border-radius: 44% 56% 60% 40% / 52% 44% 56% 48%; transform: rotate(0deg); }
  50% { border-radius: 56% 44% 42% 58% / 44% 56% 46% 54%; transform: rotate(6deg); }
}
.hero-card { position: absolute; background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); overflow: hidden; }
.hero-card-main {
  left: 14%; top: 4%; width: 64%; z-index: 3; animation: floaty 6s ease-in-out infinite;
}
.hero-card-main .hc-img { aspect-ratio: 1/1; overflow: hidden; }
.hero-card-main .hc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hc-meta { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 2px; }
.hc-price { font-weight: 800; font-size: 1.05rem; color: var(--primary-dark); }
.hc-name { font-size: .84rem; color: var(--muted); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-card-mini { width: 27%; aspect-ratio: 1/1; z-index: 4; }
.hero-card-mini img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card-mini-a { right: 2%; top: 2%; animation: floaty 7s ease-in-out infinite .6s; border: 5px solid #fff; box-shadow: var(--shadow-lg); }
.hero-card-mini-b { left: 0; bottom: 0; animation: floaty 6.5s ease-in-out infinite 1.2s; border: 5px solid #fff; box-shadow: var(--shadow-lg); }
.hero-float {
  position: absolute; background: #fff; border-radius: 14px; padding: 10px 16px; font-weight: 700;
  font-size: .88rem; box-shadow: var(--shadow); display: flex; gap: 8px; align-items: center; z-index: 5;
}
.hero-float i { color: var(--primary); }
.hero-float-1 { top: 34%; left: 0; animation: floaty 4s ease-in-out infinite; }
.hero-float-2 { bottom: 12%; right: 4%; animation: floaty 5s ease-in-out infinite 1s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* usp */
.usp { padding: 26px 0; background: #fff; }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.usp-item {
  display: flex; gap: 14px; align-items: center; background: var(--bg-soft); border: 1px solid var(--line);
  padding: 18px 20px; border-radius: var(--radius); transition: all .18s;
}
.usp-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(13,148,136,.25); }
.usp-item i { font-size: 1.7rem; color: var(--primary); }
.usp-item b { display: block; font-size: .95rem; }
.usp-item span { font-size: .82rem; color: var(--muted); }

/* product cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(252px, 1fr)); gap: 22px; }
.pcard {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: all .22s; color: var(--ink);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pcard-img { position: relative; background: var(--bg-soft); aspect-ratio: 1/1; overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard-img .disc {
  position: absolute; top: 12px; left: 12px; background: linear-gradient(135deg, #ef4444, #f97316); color: #fff; font-weight: 800;
  font-size: .76rem; padding: 5px 12px; border-radius: 999px; box-shadow: 0 4px 12px rgba(239,68,68,.35);
}
.pcard-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard-body h3 { font-size: .93rem; font-weight: 600; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-rating { display: flex; align-items: center; gap: 6px; font-size: .8rem; }
.stars { color: #f59e0b; display: inline-flex; gap: 1px; font-size: .82rem; }
.pcard-rating .rval { font-weight: 700; }
.pcard-rating .sold { color: var(--muted); margin-left: auto; font-size: .78rem; }
.pcard-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 4px; }
.pcard-price b { font-size: 1.12rem; font-weight: 800; color: var(--ink); }
.pcard-price s { color: #94a3b8; font-size: .84rem; }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.bcard {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: all .22s; color: var(--ink);
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.bcard-img { position: relative; background: var(--bg-soft); aspect-ratio: 16/10; overflow: hidden; }
.bcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.bcard:hover .bcard-img img { transform: scale(1.06); }
.bcard-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bcard-body h3 { font-size: 1.02rem; font-weight: 800; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bcard-body p { font-size: .88rem; color: var(--muted); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bmeta { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .8rem; }
.bmeta i { color: var(--primary); margin-right: 4px; }
.bmore { margin-top: auto; padding-top: 4px; font-weight: 700; color: var(--primary-dark); display: inline-flex; align-items: center; gap: 6px; font-size: .88rem; }
.bmore i { transition: transform .2s; }
.bcard:hover .bmore i { transform: translateX(4px); }
.maxw-post { max-width: 860px; }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-sm); }
.post-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: 26px; }
.post-body { color: #334155; font-size: 1.02rem; line-height: 1.75; }
.post-body p { margin-bottom: 1rem; }
.post-cta {
  margin-top: 30px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.post-cta p { margin: 0; font-weight: 700; }
.recent { margin-top: 52px; }
.blog-side { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 22px; }
.side-cta {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary) 60%, var(--accent) 140%); color: #fff;
  border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 6px; box-shadow: var(--shadow);
}
.side-cta .sc-ico {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 6px;
}
.side-cta b { font-size: 1.05rem; }
.side-cta p { font-size: .86rem; opacity: .92; margin: 0 0 12px; }
.side-cta .btn-wa { color: #fff; }
.side-widget { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.side-widget h3 { font-size: 1rem; font-weight: 800; padding-bottom: 12px; margin-bottom: 6px; border-bottom: 2px solid var(--bg-soft); }
.side-widget ul { list-style: none; padding: 0; margin: 0; }
.side-postlist li, .side-prodlist li { border-bottom: 1px dashed var(--bg-soft); }
.side-postlist li:last-child, .side-prodlist li:last-child { border-bottom: 0; }
.side-postlist a, .side-prodlist a { display: flex; gap: 12px; align-items: center; padding: 10px 0; color: var(--ink); }
.side-postlist a:hover b, .side-prodlist a:hover b { color: var(--primary-dark); }
.side-postlist img, .side-prodlist img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; flex-shrink: 0; background: var(--bg-soft); }
.side-postlist span, .side-prodlist span { display: flex; flex-direction: column; min-width: 0; }
.side-postlist b, .side-prodlist b { font-size: .88rem; font-weight: 700; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.side-postlist small, .side-prodlist small { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-top: 3px; }
.side-postlist small i, .side-prodlist small i { color: var(--primary); }
.side-prodlist small { font-weight: 700; color: var(--primary-dark); }
.side-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: .88rem; color: var(--primary-dark); }
.side-more i { transition: transform .2s; }
.side-more:hover i { transform: translateX(4px); }


/* about + cta */
.section-about { background: var(--bg-soft); }
.about-visual { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 1/1; border-radius: 28px; object-fit: cover; box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
}
.about-logo {
  width: 100%; aspect-ratio: 1/1; border-radius: 28px; background: linear-gradient(150deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 6rem; box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; bottom: 20px; left: 20px; background: #fff; border-radius: 16px; padding: 14px 20px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; line-height: 1.3;
}
.about-badge b { font-size: 1.4rem; color: var(--primary-dark); }
.about-badge span { font-size: .82rem; color: var(--muted); }
.about-text { color: #334155; font-size: 1.02rem; }
.about-list { list-style: none; padding: 0; margin: 0 0 22px; }
.about-list li { padding: 7px 0; font-weight: 500; }
.about-list i { color: var(--primary); margin-right: 10px; }
.cta-box {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 55%, var(--accent) 130%); color: #fff;
  border-radius: var(--radius-lg); padding: 44px; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-box::after {
  content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-box h2 { font-weight: 800; font-size: 1.6rem; }
.cta-box p { margin: 0; opacity: .92; }

/* pagehead */
.pagehead { background: linear-gradient(160deg, #f0fdfb, #d8f6f1); border-bottom: 1px solid var(--line); padding: 44px 0; }
.pagehead h1 { font-size: 1.9rem; font-weight: 800; }
.pagehead p { color: var(--muted); margin: 0; }

/* toolbar + sort */
.toolbar .count { color: var(--muted); font-weight: 600; }
.sort-form select, .admin-main select {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 8px 12px; font-family: var(--font);
  background: #fff; font-size: .92rem; outline: none;
}
.sort-form select:focus { border-color: var(--primary); }

/* product detail */
.crumb { font-size: .85rem; color: var(--muted); display: flex; gap: 6px; align-items: center; flex-wrap: wrap; margin-bottom: 8px; }
.crumb a { color: var(--muted); }
.crumb span { color: var(--ink); font-weight: 600; }
.pdimg { position: relative; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--bg-soft); box-shadow: var(--shadow-sm); }
.pdimg img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.disc-lg { position: absolute; top: 16px; left: 16px; background: linear-gradient(135deg, #ef4444, #f97316); color: #fff; font-weight: 800; padding: 6px 16px; border-radius: 999px; box-shadow: 0 4px 12px rgba(239,68,68,.35); }
.pd-info h1 { font-size: 1.55rem; font-weight: 800; }
.pd-rating { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .92rem; margin-bottom: 14px; }
.pd-rating .divider { opacity: .5; }
.pd-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.pd-price b { font-size: 2rem; font-weight: 800; color: var(--primary-dark); }
.pd-price s { color: var(--muted); font-size: 1.05rem; }
.pd-price .save { background: rgba(45,212,191,.14); color: var(--primary-dark); font-weight: 700; font-size: .82rem; padding: 4px 12px; border-radius: 999px; }
.pd-perks { list-style: none; padding: 0; margin: 0 0 18px; }
.pd-perks li { padding: 5px 0; font-size: .92rem; color: #334155; }
.pd-perks i { color: var(--primary); margin-right: 8px; }
.pd-var { margin-bottom: 16px; }
.pd-var label { display: block; font-weight: 700; margin-bottom: 8px; font-size: .92rem; }
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1.5px solid var(--line); background: #fff; border-radius: 10px; padding: 8px 14px;
  font-family: var(--font); font-size: .88rem; cursor: pointer; transition: all .15s; color: var(--ink);
}
.chip:hover { border-color: var(--primary); }
.chip.sel { border-color: var(--primary); background: rgba(45,212,191,.14); color: var(--primary-dark); font-weight: 700; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; }
.qty button { border: 0; background: var(--bg-soft); width: 44px; height: 44px; cursor: pointer; font-size: 1.1rem; color: var(--ink); }
.qty button:hover { background: rgba(45,212,191,.18); color: var(--primary-dark); }
.qty input { width: 60px; border: 0; text-align: center; font-family: var(--font); font-size: 1rem; font-weight: 700; outline: none; }
.qty-sm button { width: 34px; height: 34px; font-size: .9rem; }
.qty-sm input { width: 46px; font-size: .9rem; }
.pd-desc h2 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; }
.pd-desc { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff; }
.desc-body { color: #334155; }

/* cart */
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.panel h3 { font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.panel label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.panel input[type=text], .panel input[type=tel], .panel input[type=email], .panel input[type=number],
.panel input[type=password], .panel select, .panel textarea, .admin-content input[type=text], .admin-content input[type=number], .admin-content input[type=password], .admin-content select, .admin-content textarea, .track-box input, .admin-login input {
  width: 100%; border: 1.5px solid var(--line); border-radius: 11px; padding: 11px 14px;
  font-family: var(--font); font-size: .95rem; outline: none; background: #fff; transition: border-color .15s, box-shadow .15s;
}
.panel input:focus, .admin-content input:focus, .admin-content select:focus, .admin-content textarea:focus, .track-box input:focus, .admin-login input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(13,148,136,.1); }
.panel textarea, .admin-content textarea { resize: vertical; }
.cart-list { display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 16px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; background: #fff; transition: box-shadow .18s; }
.cart-item:hover { box-shadow: var(--shadow-sm); }
.ci-img { width: 84px; height: 84px; border-radius: 12px; overflow: hidden; background: var(--bg-soft); flex-shrink: 0; }
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-main { flex: 1; min-width: 0; }
.ci-name { font-weight: 700; display: block; margin-bottom: 4px; color: var(--ink); }
.ci-variant { font-size: .82rem; color: var(--muted); }
.ci-price { font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.ci-bottom { margin-top: 10px; flex-wrap: wrap; }
.summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: 84px; box-shadow: var(--shadow-sm); }
.summary h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.s-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.s-row b { font-weight: 800; }
.s-row.total { font-size: 1.2rem; }
.s-row.total b { color: var(--primary-dark); }
.sticky-summary { position: sticky; top: 84px; }
.s-item { display: flex; gap: 12px; align-items: center; padding: 8px 0; }
.s-item-img { position: relative; width: 56px; height: 56px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: var(--bg-soft); }
.s-item-img img { width: 100%; height: 100%; object-fit: cover; }
.s-qty { position: absolute; bottom: 0; right: 0; background: var(--ink); color: #fff; font-size: .7rem; font-weight: 700; padding: 1px 7px; border-radius: 8px 0 8px 0; }
.s-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.s-item-name { font-size: .88rem; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.s-item-var { font-size: .78rem; color: var(--muted); }
.s-item-price { font-size: .95rem; font-weight: 800; white-space: nowrap; }
.manual-note { background: var(--bg-soft); border: 1px dashed var(--line); border-radius: 12px; padding: 12px 14px; font-size: .88rem; color: var(--muted); margin: 12px 0; display: flex; gap: 8px; }
.pay-bank { background: rgba(45,212,191,.1); border-radius: 12px; padding: 12px 14px; font-size: .85rem; display: flex; flex-direction: column; }
.pay-bank .acct { font-weight: 800; font-size: 1rem; color: var(--primary-dark); letter-spacing: .04em; }

/* shipping picker */
.shipping-pick { position: relative; }
.city-results {
  position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-lg); max-height: 260px; overflow-y: auto; z-index: 40; display: none;
}
.city-results.show { display: block; }
.city-item { padding: 10px 14px; cursor: pointer; font-size: .9rem; border-bottom: 1px solid var(--bg-soft); }
.city-item:hover { background: rgba(45,212,191,.1); }
.ship-status { margin-top: 8px; font-size: .88rem; color: var(--muted); }
.ship-opt {
  border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-top: 10px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all .15s;
}
.ship-opt:hover { border-color: var(--primary); }
.ship-opt.sel { border-color: var(--primary); background: rgba(45,212,191,.1); }
.ship-opt b { font-size: .95rem; }
.ship-opt .so-sub { font-size: .8rem; color: var(--muted); }
.ship-opt .so-price { font-weight: 800; color: var(--primary-dark); white-space: nowrap; margin-left: 12px; }

/* success page */
.success-hero { text-align: center; padding: 16px 0 8px; }
.success-icon {
  width: 84px; height: 84px; margin: 0 auto 18px; background: #dcfce7; color: #16a34a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2.6rem; animation: pop .5s ease; box-shadow: 0 10px 30px rgba(22,163,74,.25);
}
@keyframes pop { 0% { transform: scale(.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.order-code { display: inline-block; background: var(--ink); color: #fff; border-radius: 999px; padding: 8px 18px; font-size: .9rem; margin-top: 8px; }
.steps { display: flex; justify-content: space-between; margin-top: 22px; position: relative; }
.steps::before { content: ''; position: absolute; top: 14px; left: 10%; right: 10%; height: 2px; background: var(--line); }
.step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); font-weight: 600; width: 25%; text-align: center; }
.step i { background: #fff; border: 2px solid var(--line); border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: .95rem; }
.step.done i { background: var(--primary); border-color: var(--primary); color: #fff; }
.step.done { color: var(--primary-dark); }
.paid-badge { background: #dcfce7; color: #16a34a; font-weight: 700; border-radius: 12px; padding: 14px; display: flex; gap: 8px; align-items: center; }
.err-note { background: #fee2e2; color: #991b1b; border-radius: 12px; padding: 12px 14px; font-size: .88rem; display: flex; gap: 8px; align-items: center; margin-top: 10px; }

/* track */
.track-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; max-width: 720px; margin: 0 auto; box-shadow: var(--shadow-sm); }
.track-box label { font-weight: 600; font-size: .9rem; display: block; margin-bottom: 6px; }
.captcha-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; background: var(--bg-soft); border: 1px dashed var(--line); border-radius: 12px; padding: 10px 14px; margin: 14px 0; }
.captcha-q { font-weight: 600; font-size: .9rem; color: var(--primary-dark); display: inline-flex; align-items: center; gap: 6px; }
.captcha-q small { font-weight: 500; color: var(--muted); }
.captcha-input { width: 92px !important; text-align: center; }
.track-result { margin-top: 26px; border-top: 1px dashed var(--line); padding-top: 24px; }
.track-steps { display: flex; justify-content: space-between; margin: 26px 0; position: relative; }
.track-steps::before { content: ''; position: absolute; top: 16px; left: 5%; right: 5%; height: 2px; background: var(--line); }
.tstep { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; color: var(--muted); width: 25%; text-align: center; }
.tstep i { background: #fff; border: 2px solid var(--line); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.tstep.done i { background: var(--primary); border-color: var(--primary); color: #fff; }
.tstep.done { color: var(--primary-dark); }
.tstep small { color: var(--muted); }
.track-total { font-size: 1rem; }
.status-banner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; }
.status-banner b { font-size: 1.1rem; }
.status-banner span { color: var(--muted); font-size: .9rem; }

/* empty */
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty i { font-size: 3.4rem; color: var(--line); }
.empty h3 { color: var(--ink); font-weight: 800; margin-top: 12px; }
.empty p { margin-bottom: 18px; }

/* footer */
.site-footer { background: #0b2f33; color: #b9d9dc; margin-top: 40px; }
.site-footer .container { padding-top: 52px; padding-bottom: 24px; }
.f-brand { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.f-title { color: #fff; font-weight: 700; margin-bottom: 14px; font-size: .95rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 4px 0; }
.site-footer a { color: #b9d9dc; }
.site-footer a:hover { color: #fff; }
.f-rating { display: flex; gap: 10px; align-items: center; font-size: .9rem; color: #fff; }
.f-rating .stars { font-size: .9rem; }
.f-contact li { display: flex; gap: 8px; align-items: flex-start; font-size: .9rem; }
.f-contact i { color: var(--accent); margin-top: 4px; }
.fsocial { display: flex; gap: 10px; margin-top: 14px; }
.fsocial a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.fsocial a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.f-pay { display: flex; flex-wrap: wrap; gap: 8px; }
.f-pay span { background: rgba(255,255,255,.08); border-radius: 8px; padding: 6px 10px; font-size: .8rem; }
.f-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 18px; font-size: .84rem; text-align: center; color: #8fb3b6; }

/* wa float */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 8px 24px rgba(37,211,102,.5); animation: pulse 2.5s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ADMIN */
.admin-body { background: var(--bg-soft); }
.admin-shell { display: flex; min-height: 100vh; }
.admin-side {
  width: 250px; background: #0b2f33; color: #b9d9dc; padding: 20px 14px; display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; flex-shrink: 0;
}
.as-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 1.2rem; font-weight: 800; padding: 0 8px 20px; }
.as-logo {
  max-width: 210px; max-height: 44px; width: auto; object-fit: contain;
  background: #fff; border-radius: 10px; padding: 6px 12px; box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.as-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.as-nav a { color: #b9d9dc; padding: 11px 14px; border-radius: 10px; display: flex; gap: 10px; align-items: center; font-weight: 600; }
.as-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
.as-nav a.active { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; box-shadow: 0 6px 16px rgba(13,148,136,.3); }
.as-foot a { display: flex; gap: 10px; align-items: center; color: #b9d9dc; padding: 10px 14px; border-radius: 10px; font-size: .9rem; }
.as-foot a:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-main { flex: 1; min-width: 0; }
.admin-top { display: flex; justify-content: space-between; align-items: center; padding: 20px 28px; background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30; }
.admin-top h1 { font-size: 1.25rem; font-weight: 800; margin: 0; }
.admin-user { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.admin-toolbar-grp { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.admin-toolbar .admin-search { flex: 1; max-width: 320px; min-width: 0; }
.admin-toolbar .admin-search input { width: 100%; }
.admin-content { padding: 28px; }
.sidebar-toggle { border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 8px 12px; cursor: pointer; font-size: 1.1rem; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; gap: 14px; align-items: center; transition: transform .18s, box-shadow .18s; }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.stat-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; background: rgba(45,212,191,.14); color: var(--primary-dark); }
.stat-card span { display: block; color: var(--muted); font-size: .82rem; }
.stat-card b { font-size: 1.3rem; font-weight: 800; }
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.table-admin { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 640px; }
.table-admin th { text-align: left; padding: 13px 16px; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.table-admin td { padding: 12px 16px; border-bottom: 1px solid var(--bg-soft); vertical-align: middle; }
.table-admin tr:last-child td { border-bottom: 0; }
.table-admin tr:hover td { background: #f7fcfb; }
.timg { width: 46px; height: 46px; object-fit: cover; border-radius: 10px; }
.thumb-lg { width: 80px; height: 80px; }
.badge-status { display: inline-block; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; text-transform: capitalize; }
.st-paid, .st-dibayar, .st-selesai { background: #dcfce7; color: #15803d; }
.st-pending, .st-baru { background: #fef3c7; color: #b45309; }
.st-dikirim { background: #dbeafe; color: #1d4ed8; }
.st-batal, .st-failed, .st-expired, .st-cancelled { background: #fee2e2; color: #b91c1c; }
.row-actions { display: flex; gap: 10px; align-items: center; }
.row-actions form { display: inline; }
.row-actions a, .row-actions button { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 1rem; padding: 4px; }
.row-actions a:hover, .row-actions button:hover { color: var(--primary-dark); }
.row-actions button.danger:hover { color: #dc2626; }
.maxw { max-width: 860px; }
.check { display: flex; gap: 8px; align-items: center; font-weight: 600; font-size: .9rem; }
.check input { width: auto; }
.admin-login-wrap { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: linear-gradient(150deg, #f0fdfb, #b4e9e4); padding: 20px; }
.admin-login { background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); padding: 40px; width: 100%; max-width: 400px; }
.al-brand { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; }
.al-logo { max-width: 260px; max-height: 48px; width: auto; object-fit: contain; }
.admin-login h1 { font-size: 1.5rem; font-weight: 800; }
.admin-login p { color: var(--muted); margin-bottom: 20px; }
.admin-login input { margin-bottom: 6px; }
.back-store { display: inline-flex; gap: 6px; align-items: center; margin-top: 18px; color: var(--muted); font-size: .9rem; }
.detail-line { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: .9rem; border-bottom: 1px dashed var(--bg-soft); }
.detail-line span { color: var(--muted); flex-shrink: 0; }
.detail-line b { text-align: right; }
.admin-search { display: flex; max-width: 320px; }
.admin-search input { border: 1.5px solid var(--line); border-radius: 10px 0 0 10px; padding: 10px 14px; font-family: var(--font); font-size: .92rem; outline: none; flex: 1; background: #fff; }
.admin-search button { border: 1.5px solid var(--line); border-left: 0; border-radius: 0 10px 10px 0; background: #fff; padding: 0 14px; cursor: pointer; color: var(--muted); }
.admin-main .panel h3 { margin-bottom: 14px; }

/* utility helpers (Bootstrap fallback-safe) */
.text-primary { color: var(--primary-dark) !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .mainbar .container { flex-wrap: wrap; }
  .mainnav { width: 100%; order: 3; justify-content: center; gap: 4px !important; padding-top: 8px; margin-top: 4px; border-top: 1px solid var(--line); flex-wrap: wrap; }
  .mainnav .navlink { display: inline-flex; font-size: .8rem; padding: 5px 9px; }
  .cartbtn { margin-left: auto; }
  .search { display: none; }
  .admin-side { position: fixed; left: -260px; z-index: 80; transition: left .25s; }
  .admin-side.open { left: 0; }
  .hero-stage { min-height: 380px; }
  .hero-card-main { left: 10%; width: 62%; }
}
@media (max-width: 767.98px) {
  .container { padding: 0 16px; }
  .mainbar { padding: 10px 0; position: relative; }
  .mainbar .container { justify-content: center; }
  .menu-btn { display: inline-flex; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); z-index: 6; }
  .cartbtn { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); margin-left: 0; z-index: 6; width: 42px; height: 42px; font-size: 1.2rem; }
  .mainnav {
    display: none !important; position: absolute; top: 100%; left: 0; right: 0; width: 100%; order: 0;
    flex-direction: column; align-items: stretch !important; justify-content: flex-start; gap: 0 !important; margin-top: 0; padding: 6px 0;
    background: #fff; border-top: 1px solid var(--line); box-shadow: 0 14px 30px rgba(0,0,0,.1); z-index: 90;
  }
  .mainnav.open { display: flex !important; }
  .mainnav .navlink { display: flex; justify-content: flex-start; text-align: left; font-size: .86rem; padding: 8px 16px; border-radius: 8px; }
  .brand img { height: 34px; max-width: 170px; }
  .topbar { font-size: .72rem; }
  .btn-lg { padding: 10px 18px; font-size: .95rem; border-radius: 12px; }
  .hero .container { padding-top: 26px; padding-bottom: 34px; }
  .hero h1 { font-size: 1.48rem; }
  .hero p { font-size: .92rem; max-width: none; }
  .hero-eyebrow { font-size: .64rem; padding: 5px 10px; }
  .hero-cta .btn-lg { padding: 8px 15px; font-size: .85rem; border-radius: 11px; }
  .hero-stats { gap: 14px; margin-top: 16px !important; }
  .hero-stats div + div::before { left: -7px; }
  .hero-stats b { font-size: 1.02rem; }
  .hero-stats span { font-size: .7rem; }
  .section { padding: 44px 0; }
  .section-head h2 { font-size: 1.45rem; }
  .section-head { flex-wrap: wrap; gap: 8px; }
  .pagehead { padding: 28px 0; }
  .pagehead h1 { font-size: 1.45rem; }
  .cta-box { padding: 26px 20px; border-radius: 20px; flex-direction: column; align-items: flex-start !important; }
  .cta-box h2 { font-size: 1.25rem; }
  .panel { padding: 18px; }
  .summary { padding: 18px; }
  .sticky-summary { position: static; }
  .pd-info h1 { font-size: 1.3rem; }
  .pd-price b { font-size: 1.55rem; }
  .pd-desc { padding: 20px; }
  .about-badge { padding: 10px 14px; bottom: 12px; left: 12px; }
  .about-badge b { font-size: 1.1rem; }
  .cart-item { padding: 12px; gap: 12px; }
  .ci-img { width: 68px; height: 68px; }
  .track-box { padding: 20px; }
  .success-icon { width: 68px; height: 68px; font-size: 2.1rem; }
  .admin-login { padding: 28px 20px; }
  .admin-content { padding: 16px; }
  .admin-top { padding: 14px 16px; }
  .admin-top h1 { font-size: 1.08rem; }
  .admin-toolbar { flex-direction: column; align-items: stretch; }
  .admin-toolbar .admin-search { display: flex; max-width: none; width: 100%; }
  .stat-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
  .stat-card { padding: 13px 14px; gap: 10px; }
  .stat-ico { width: 42px; height: 42px; font-size: 1.1rem; border-radius: 12px; }
  .stat-card b { font-size: 1.08rem; }
  .stat-card span { font-size: .72rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pcard-body { padding: 10px 12px 14px; }
  .pcard-body h3 { font-size: .82rem; -webkit-line-clamp: 2; min-height: 2.9em; }
  .pcard-price { flex-wrap: wrap; gap: 5px; }
  .pcard-price b { font-size: .96rem; }
  .pcard-price s { font-size: .72rem; }
  .pcard-rating .sold { display: none; }
  .pcard-rating { font-size: .74rem; }
  .hero-stage { min-height: 255px; }
  .hero-card-main { left: 6%; width: 58%; }
  .hero-card-mini { width: 22%; border-width: 4px; }
  .hero-float { font-size: .72rem; padding: 6px 10px; }
  .hero-float-1 { top: 30%; }
  .hero-float-2 { bottom: 8%; }
  .wa-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 16px; right: 16px; }
  .cartbtn { width: 42px; height: 42px; font-size: 1.2rem; }
  .f-pay span { font-size: .72rem; padding: 5px 8px; }
  .steps { gap: 2px; }
  .step { font-size: .7rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bcard-body { padding: 12px 14px 16px; }
  .bcard-body h3 { font-size: .9rem; }
  .bcard-body p { font-size: .82rem; }
  .post { padding: 22px 18px; border-radius: 18px; }
  .post-body { font-size: .95rem; }
  .blog-side { position: static; margin-top: 8px; }
  .pagehead h1 { font-size: 1.45rem; }
}
@media (max-width: 575.98px) {
  html { font-size: 15px; }
  .topbar .container { justify-content: center !important; }
  .topbar { font-size: .68rem; }
  .btn-lg { padding: 9px 15px; font-size: .9rem; }
  .hero h1 { font-size: 1.28rem; }
  .hero p { font-size: .88rem; }
  .hero-eyebrow { font-size: .6rem; }
  .hero-cta { gap: 6px !important; }
  .hero-cta .btn-lg { padding: 7px 13px; font-size: .82rem; }
  .hero-ship { margin-top: 10px; font-size: .72rem; padding: 4px 10px; }
  .hero-stats { gap: 12px; margin-top: 14px !important; }
  .hero-stats b { font-size: .96rem; }
  .hero-stats span { font-size: .68rem; }
  .hero-stage { min-height: 215px; }
  .hero-card-mini, .hero-float { display: none; }
  .hero-card-main { left: 8%; width: 84%; border-radius: 16px; }
  .hero-card-main .hc-meta { padding: 10px 12px; }
  .hc-price { font-size: .95rem; }
  .hc-name { font-size: .74rem; }
  .section-head h2, .pagehead h1 { font-size: 1.3rem; }
  .section-about h2 { font-size: 1.35rem; }
  .about-badge b { font-size: 1.2rem; }
  .cta-box h2 { font-size: 1.15rem; }
  .btn { font-size: .9rem; padding: 10px 18px; }
  .empty h3 { font-size: 1.2rem; }
  .pd-price b { font-size: 1.35rem; }
  .pd-price s { font-size: .9rem; }
  .pd-desc h2 { font-size: 1.1rem; }
  .qty button { font-size: .95rem; }
  .f-brand { font-size: 1.15rem; }
  .pd-var label, .pd-perks li { font-size: .85rem; }
  .product-grid { gap: 10px; }
  .pcard-body h3 { font-size: .8rem; min-height: 2.9em; }
  .pcard-price { flex-wrap: nowrap; }
  .pcard-price b { font-size: .9rem; }
  .pcard-price s { font-size: .7rem; }
  .track-steps .tstep { font-size: .66rem; }
  .stat-card b { font-size: .98rem; }
  .stat-card span { font-size: .68rem; }
  .admin-toolbar-grp { width: 100%; }
  .admin-toolbar-grp .btn { flex: 1; font-size: .85rem; padding: 9px 12px; white-space: nowrap; }
  .admin-toolbar-grp #selCount { display: inline-block; min-width: 1.15em; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .bcard-img { aspect-ratio: 16/9; }
  .bcard-body h3 { font-size: 1rem; }
  .bcard-body p { font-size: .88rem; }
  .post { padding: 18px 14px; }
  .post-body { font-size: .92rem; }
  .post-cta { padding: 16px; flex-direction: column; align-items: flex-start !important; }
  .post-cta .btn { width: 100%; }
  .blog-side { gap: 16px; }
  .side-cta { padding: 20px 18px; }
}
