/*
Theme Name: Zanzariere Shop
Theme URI: http://127.0.0.1:8080
Author: Codex
Version: 1.0.0
Description: Tema custom WooCommerce ispirato al layout originale Zanzariere.
Text Domain: zanzariere-shop
*/

:root {
  --zs-text-scale: 1;
  --background: #f6faf7;
  --foreground: #1f3b2f;
  --card: #ffffff;
  --muted: #e8efea;
  --muted-foreground: #5c7568;
  --primary: #2f7f5f;
  --primary-dark: #26664d;
  --border: #d4e2da;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(24, 50, 38, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container-custom {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: .2s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.14); }

.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 14px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
}
.brand-logo-footer {
  width: 220px;
  filter: brightness(1.05) contrast(1.02);
}
.brand-title {
  font-size: 1.2rem;
  font-weight: 800;
}
.brand-title span { color: var(--primary); }
.brand-sub {
  display: block;
  color: var(--muted-foreground);
  font-size: .68rem;
  margin-top: -2px;
}
.zs-search {
  flex: 1;
  max-width: 610px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.zs-search input {
  width: 100%;
  border: 2px solid #d6e1db;
  background: #f4f7f5;
  border-radius: 999px;
  height: 46px;
  padding: 0 18px;
  font-size: .95rem;
  color: #567568;
}
.zs-search button {
  border: 2px solid #d6e1db;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  font-weight: 600;
}
.zs-search button svg {
  width: 20px;
  height: 20px;
}
.zs-mobile-actions {
  display: none;
  align-items: center;
  gap: 10px;
}
.zs-mobile-search,
.zs-mobile-cart,
.zs-mobile-menu-toggle {
  color: #3f5f51;
}
.zs-mobile-search {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  display: inline-grid;
  place-items: center;
}
.zs-mobile-search svg {
  width: 19px;
  height: 19px;
}
.zs-mobile-search.is-open {
  background: #edf4f1;
  color: #2f8a66;
}
.zs-mobile-cart {
  width: 40px;
  height: 40px;
  border: 1px solid #d3dfd8;
  border-radius: 12px;
  background: #f8fbf9;
  display: inline-grid;
  place-items: center;
  position: relative;
}
.zs-mobile-cart svg {
  width: 19px;
  height: 19px;
}
.zs-mobile-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #2f8a66;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  padding: 0 4px;
}
.zs-mobile-menu-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid #d3dfd8;
  border-radius: 12px;
  background: #fff;
  display: inline-grid;
  place-items: center;
  padding: 0;
}
.zs-mobile-menu-toggle svg {
  width: 18px;
  height: 18px;
}
.zs-mobile-menu-toggle .icon-close {
  display: none;
}
.zs-mobile-menu-toggle.is-open {
  background: #2f8a66;
  color: #fff;
  border-color: #2f8a66;
}
.zs-mobile-menu-toggle.is-open .icon-burger {
  display: none;
}
.zs-mobile-menu-toggle.is-open .icon-close {
  display: inline-grid;
}
.zs-mobile-searchbar {
  display: none;
  border-top: 1px solid #d6e1db;
  background: #fff;
}
.zs-mobile-searchbar .container-custom {
  padding-top: 10px;
  padding-bottom: 10px;
}
.zs-mobile-search-form {
  width: 100%;
  border: 2px solid #d6e1db;
  background: #f4f7f5;
  border-radius: 999px;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  gap: 10px;
}
.zs-mobile-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  height: 100%;
  font-size: 1.02rem;
  color: #4f7162;
}
.zs-mobile-search-form input::placeholder {
  color: #5f7f72;
}
.zs-mobile-search-form input:focus {
  outline: none;
}
.zs-mobile-search-form button {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-right: 2px;
  border: 0;
  border-radius: 999px;
  background: #2f8a66;
  color: #fff;
  display: inline-grid;
  place-items: center;
}
.zs-mobile-search-form button svg {
  width: 20px;
  height: 20px;
}
.zs-cart-head {
  border: 0;
  border-radius: 14px;
  padding: 6px 4px 6px 6px;
  min-width: 138px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  background: transparent;
  box-shadow: none;
}
.zs-cart-copy > span {
  display: block;
  color: var(--muted-foreground);
  font-size: .8rem;
}
.zs-cart-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #d3dfd8;
  background: #f8fbf9;
  color: #3f5f51;
  display: grid;
  place-items: center;
}
.zs-cart-icon svg {
  width: 18px;
  height: 18px;
}
.zs-cart-copy strong {
  display: block;
  color: #1f3b2f;
  font-size: .9rem;
  font-weight: 500;
}
.zs-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #2f8a66;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
}

.menu-cats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.92);
}
.menu-cats ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.menu-cats a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  padding: 12px 8px;
  color: var(--muted-foreground);
  font-weight: 500;
  font-size: .95rem;
}
.menu-icon {
  width: 15px;
  height: 15px;
  color: #5f7d70;
  display: inline-grid;
  place-items: center;
}
.menu-icon svg {
  width: 15px;
  height: 15px;
}
.menu-cats a:hover { background: var(--muted); color: var(--foreground); }

.hero {
  position: relative;
  min-height: 540px;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: none;
}
.hero::after {
  content: none;
}
.hero-click-target {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 20, 17, .62) 0%, rgba(11, 20, 17, .48) 42%, rgba(11, 20, 17, .22) 74%, rgba(11, 20, 17, .08) 100%);
  pointer-events: none;
}
.hero .content {
  position: relative;
  z-index: 3;
  padding: 92px 0;
  max-width: 760px;
  min-height: 540px;
  display: grid;
  align-content: center;
  pointer-events: none;
}
.hero .content a { pointer-events: auto; }
.hero .content::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 48px;
  bottom: 48px;
  width: min(660px, calc(100% + 34px));
  background: linear-gradient(90deg, rgba(12, 24, 20, .66) 0%, rgba(14, 30, 24, .54) 46%, rgba(16, 32, 26, .34) 74%, rgba(16, 32, 26, 0) 100%);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  z-index: -1;
}
.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5.3vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  text-shadow: 0 4px 24px rgba(8, 14, 12, .44);
}
.hero p {
  margin: 0 0 30px;
  font-size: clamp(1.08rem, 1.9vw, 2rem);
  max-width: 760px;
  color: rgba(245, 250, 247, .95);
  text-shadow: 0 2px 16px rgba(8, 14, 12, .35);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn {
  min-width: 210px;
  height: 56px;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 600;
}
.hero-cta-main span {
  font-size: 1.3rem;
  line-height: 1;
}
.hero-cta-measure {
  border-color: rgba(235, 247, 240, .48);
  background: rgba(255, 255, 255, .09);
  color: #f4f9f6;
}
.hero-cta-measure:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(235, 247, 240, .68);
}
.hero-cta-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
}
.hero-cta-icon svg {
  width: 17px;
  height: 17px;
}

.features {
  border-bottom: 1px solid var(--border);
  background: #fbfdfc;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  padding: 26px 0;
}
.feature { display: flex; gap: 12px; align-items: center; }
.feature-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e5f2ec;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.section { padding: 64px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
  gap: 16px;
}
.section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin: 0 0 6px; }
.section p { margin: 0; color: var(--muted-foreground); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card .image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eff5f1;
}
.card .image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 18px; }
.card h3 { margin: 0 0 10px; font-size: 1.05rem; }
.card p { margin: 0 0 12px; color: var(--muted-foreground); font-size: .93rem; }
.price { color: var(--primary); font-weight: 800; font-size: 1.22rem; margin-bottom: 12px; }

.accessory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.zs-quality-section {
  padding: 72px 0 54px;
}
.zs-quality-block {
  border: 1px solid #d8e3dd;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: #fff;
}
.zs-quality-content {
  background: #f8fbf9;
  padding: 56px 56px 48px;
}
.zs-quality-content h2 {
  margin: 0;
  color: #1f3b2f;
  font-size: clamp(2.05rem, 3.1vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.015em;
}
.zs-quality-content h2 span {
  color: #2f8a66;
}
.zs-quality-content > p {
  margin: 20px 0 0;
  color: #5f7f72;
  font-size: 1.28rem;
  line-height: 1.58;
  max-width: 740px;
}
.zs-quality-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
}
.zs-quality-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.zs-quality-grid .icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #e4efea;
  color: #2f8a66;
  display: inline-grid;
  place-items: center;
}
.zs-quality-grid .icon svg {
  width: 19px;
  height: 19px;
}
.zs-quality-grid strong {
  display: block;
  margin: 0 0 6px;
  color: #1f3b2f;
  font-size: 1.85rem;
  line-height: 1.2;
}
.zs-quality-grid p {
  margin: 0;
  color: #627f73;
  font-size: 1.03rem;
  line-height: 1.6;
}
.zs-quality-media {
  position: relative;
  min-height: 620px;
  background: #dce4df;
}
.zs-quality-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-wrap {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }

.zs-shop-page.section {
  padding-top: 42px;
}
.zs-shop-head {
  margin: 0 0 14px;
}
.zs-shop-head h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -.015em;
  line-height: 1.08;
  color: #1f3b2f;
}
.zs-shop-head p {
  margin: 0;
  max-width: 860px;
  color: #5a7b6e;
  font-size: 1.08rem;
  line-height: 1.55;
}
.zs-shop-page .woocommerce-breadcrumb {
  margin: 0 0 10px;
  color: #5b7c70;
  font-size: .98rem;
}
.zs-shop-page .woocommerce-breadcrumb a {
  color: #3f6e5c;
}
.zs-shop-page .woocommerce-notices-wrapper {
  margin-bottom: 10px;
}
.zs-shop-toolbar {
  margin: 8px 0 22px;
  padding: 11px 13px;
  border: 1px solid #d4e2da;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.zs-shop-toolbar-left,
.zs-shop-toolbar-right {
  display: flex;
  align-items: center;
}
.zs-shop-page .woocommerce-result-count {
  margin: 0;
  color: #56786a;
  font-size: .96rem;
}
.zs-shop-page .woocommerce-ordering {
  margin: 0;
}
.zs-shop-page .woocommerce-ordering select {
  min-width: 222px;
  height: 42px;
  border: 1.5px solid #c8d9d0;
  border-radius: 12px;
  background: #f7fbf9;
  color: #2b4a3c;
  font-weight: 600;
  font-size: .92rem;
  padding: 0 38px 0 13px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #527569 50%),
    linear-gradient(135deg, #527569 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.zs-shop-page .woocommerce-ordering select:focus {
  outline: 0;
  border-color: #2f8a66;
  box-shadow: 0 0 0 4px rgba(47, 138, 102, 0.14);
}

.site-footer {
  margin-top: 64px;
  background: #1e342a;
  color: #fff;
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
}
.site-footer p,
.site-footer li,
.site-footer a { color: rgba(255,255,255,.76); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.single-product .product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.zs-product-card {
  list-style: none;
  border: 1px solid #dfe6e2;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(28, 45, 38, 0.06);
  display: flex;
  flex-direction: column;
}
.zs-card-visual {
  position: relative;
  margin: 10px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef1ef;
}
.zs-product-card .image-wrap {
  display: block;
  aspect-ratio: auto;
  min-height: 0;
}
.zs-product-card .image-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.zs-card-badges {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  display: grid;
  gap: 6px;
}
.zs-card-badges:empty {
  display: none;
}
.zs-badge {
  min-height: 26px;
  border-radius: 999px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
}
.zs-badge-discount {
  background: #ff3647;
  color: #fff;
}
.zs-badge-new {
  background: #2f8a66;
  color: #fff;
}
.zs-card-specs {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 68px;
  right: 10px;
  z-index: 3;
  width: min(48%, 182px);
  display: grid;
  gap: 8px;
}
.zs-card-specs li {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 8px;
  align-items: center;
}
.zs-card-spec-copy {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(219, 226, 222, 0.95);
  border-radius: 999px;
  padding: 5px 10px;
  min-height: 34px;
  display: grid;
  align-content: center;
}
.zs-card-spec-copy small {
  display: block;
  font-size: .61rem;
  color: #96a89e;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.1;
}
.zs-card-spec-copy strong {
  display: block;
  margin-top: 2px;
  font-size: .92rem;
  color: #1f2b33;
  line-height: 1.1;
  font-weight: 700;
}
.zs-card-spec-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #c6ddd3;
  background: #edf5f1;
  color: #2f8a66;
  display: inline-grid;
  place-items: center;
}
.zs-card-spec-icon svg {
  width: 16px;
  height: 16px;
}
.zs-product-card .body {
  padding: 4px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 304px;
}
.zs-motion-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid #e6ebe8;
  background: #f4f6f5;
  color: #6f837a;
  padding: 6px 11px;
  font-size: .86rem;
}
.zs-motion-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2f8a66;
  flex: 0 0 auto;
}
.zs-product-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.23;
  font-weight: 800;
  color: #1b2631;
  letter-spacing: .01em;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zs-product-card h3 a { color: inherit; }
.zs-product-card p {
  margin: 0;
  color: #63767e;
  font-size: .92rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zs-price-block {
  margin-top: 4px;
}
.zs-price-prefix {
  display: block;
  color: #96a3ad;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.zs-price-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.zs-price-main strong {
  margin: 0;
  color: #1b2631;
  font-size: 2rem;
  line-height: 1;
  font-weight: 850;
}
.zs-price-main del {
  color: #b7c0c6;
  font-size: .95rem;
  text-decoration-thickness: 1px;
  text-decoration-color: #d17883;
}
.zs-price-main span {
  color: #677781;
  font-size: 1rem;
  margin-left: 2px;
}
.zs-detail-btn {
  margin-top: auto;
  border-top: 1px solid #e7ece9;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  color: #2f8a66;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.zs-detail-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #c9ddd3;
  background: #ebf4ef;
  color: #2f8a66;
  display: inline-grid;
  place-items: center;
  font-size: 1.08rem;
}
.zs-product-card.product_cat-accessori .zs-card-specs {
  display: none;
}
.zs-product-card.product_cat-accessori .zs-motion-pill {
  color: #5f7684;
}
.zs-product-card.product_cat-accessori .zs-price-main strong {
  font-size: 1.82rem;
}

.zs-single-wrap .woocommerce-breadcrumb {
  color: var(--muted-foreground);
  font-size: .9rem;
  margin-bottom: 14px;
}
.zs-single-wrap.section {
  padding-top: 22px;
}
.zs-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

/* Shopify-like sticky gallery on desktop:
   left media stays fixed while right column scrolls, then releases
   at the end of the product hero block before long description section. */
@media (min-width: 1025px) {
  .single-product .zs-single-left {
    position: sticky;
    top: 122px;
    align-self: start;
  }
  body.admin-bar.single-product .zs-single-left {
    top: 154px;
  }
}
.zs-main-image {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #edf4f0;
}
.zs-main-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.zs-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
}
.zs-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 2px solid var(--border);
  overflow: hidden;
  padding: 0;
  background: #fff;
}
.zs-thumb img { width: 100%; height: 100%; object-fit: cover; }
.zs-chip {
  display: inline-block;
  border-radius: 999px;
  background: #e7f2ec;
  color: var(--primary);
  padding: 5px 11px;
  font-weight: 600;
  margin-bottom: 10px;
}
.zs-single-right .product_title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 10px; }
.zs-desc {
  color: var(--muted-foreground);
  margin-bottom: 34px;
}
.zs-price-box {
  border: 1px solid #cfe0d7;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
  box-shadow: 0 12px 24px rgba(24, 50, 38, 0.10);
  padding: 18px 18px 16px;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.zs-price-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.zs-price-box .label { color: var(--muted-foreground); font-size: .82rem; display: block; margin-bottom: 6px; }
.zs-price-col { text-align: right; }
.zs-live-total { font-size: 3rem; margin: 0; color: var(--primary); font-weight: 800; line-height: 1; }
.zs-tax-note {
  display: block;
  color: #5f7f72;
  margin-top: 4px;
  font-size: .95rem;
}
.zs-live-unit {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
  color: #5a7d6f;
  background: #eaf4ef;
  border: 1px solid #d2e3db;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .82rem;
}
.zs-live-unit span { color: #1f3b2f; font-weight: 700; }
.zs-qty-card {
  padding: 8px 0;
}
.zs-qty-wrap { display: flex; align-items: center; gap: 8px; }
.zs-qty-wrap input.qty {
  width: 68px !important;
  border: 1.5px solid #c8d8d1;
  border-radius: 12px;
  height: 44px;
  font-weight: 800;
  background: #fff;
  color: #1f3b2f;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  text-align: center;
  line-height: 44px;
  padding: 0 !important;
  appearance: textfield;
  -moz-appearance: textfield;
}
.zs-qty-wrap input.qty::-webkit-outer-spin-button,
.zs-qty-wrap input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.zs-qty-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid #c8d8d1;
  border-radius: 12px;
  background: #f8fcfa;
  color: #1f3b2f;
  display: grid;
  place-items: center;
  transition: all .16s ease;
}
.zs-qty-btn svg {
  width: 18px;
  height: 18px;
}
.zs-qty-btn:hover {
  border-color: #2f8a66;
  color: #2f8a66;
  background: #eef8f3;
}
.zs-add-btn {
  width: 100%;
  justify-content: center;
  border-radius: 14px;
  height: 52px;
  font-size: 1.06rem;
  letter-spacing: .01em;
  margin-top: 2px;
}
.zs-add-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  margin-right: 4px;
}
.zs-add-icon svg {
  width: 20px;
  height: 20px;
}
.zs-live-summary {
  margin: 10px 0 0;
  text-align: center;
  color: #5a7d6f;
  font-size: .95rem;
}
.zs-meta-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.zs-meta-row span {
  background: #eef5f1;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  color: #355546;
  font-size: .84rem;
}
.zs-tech-panel {
  margin-top: 16px;
  border: 1px solid #cfe0d7;
  border-radius: 14px;
  background: #f8fcfa;
  padding: 14px 14px 8px;
}
.zs-tech-panel h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  color: #1f3b2f;
  display: flex;
  align-items: center;
  gap: 8px;
}
.zs-tech-icon {
  width: 24px;
  height: 24px;
  color: #2f8a66;
  display: inline-grid;
  place-items: center;
}
.zs-tech-icon svg { width: 20px; height: 20px; }
.zs-tech-list { margin: 0; }
.zs-tech-list .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #cfe0d7;
}
.zs-tech-list .row:last-child { border-bottom: 0; }
.zs-tech-list dt {
  margin: 0;
  color: #5d7f71;
  font-weight: 500;
}
.zs-tech-list dd {
  margin: 0;
  color: #1f3b2f;
  font-weight: 500;
}
.zs-tech-mini {
  color: #2f8a66;
  margin-right: 6px;
  font-weight: 700;
}
.zs-features-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.zs-features-list li {
  position: relative;
  color: #5d7f71;
  padding-left: 24px;
  line-height: 1.35;
}
.zs-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f8a66;
  font-weight: 800;
}
.zs-long-section { padding: 8px 0 36px; }
.zs-long-content {
  color: #567f71;
  font-size: 1.05rem;
  line-height: 1.65;
}
.zs-long-title {
  margin: 0 0 14px;
  color: #1f3b2f;
  font-size: 2rem;
  line-height: 1.2;
}
.zs-long-content p { margin: 0 0 24px; }
.zs-feature-spec-section {
  padding: 0 0 20px;
}
.zs-feature-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.zs-feature-spec-grid .zs-tech-panel {
  margin-top: 0;
}
.zs-about-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 8px 0 44px;
}
.zs-about-reviews h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  color: #1f3b2f;
}
.zs-about-reviews p {
  color: #5b7d70;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 16px;
}
.zs-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.zs-about-stats article {
  background: #fff;
  border: 1px solid #dbe7e0;
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
}
.zs-about-stats .icon {
  font-size: 1.5rem;
  line-height: 1;
}
.zs-about-stats strong {
  display: block;
  margin-top: 8px;
  color: #1f3b2f;
  font-size: 1.9rem;
}
.zs-about-stats span {
  color: #5b7d70;
  font-size: .9rem;
}
.zs-reviews-col h2 span {
  color: #f0bf14;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.zs-review-card {
  background: #fff;
  border: 1px solid #dbe7e0;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.zs-review-card header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.zs-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #e8f2ed;
  color: #2f8a66;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.zs-review-card strong {
  display: block;
  color: #1f3b2f;
  font-size: 1.25rem;
}
.zs-review-card small {
  color: #6c8b7f;
  font-size: .84rem;
}
.zs-review-card .stars {
  margin-left: auto;
  color: #f0bf14;
  letter-spacing: 1px;
}
.zs-review-card p {
  margin: 10px 0 0;
  color: #5b7d70;
}
.zs-long-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 6px;
}
.zs-block {
  background: #f7fbf9;
  border: 1px solid #dce7e1;
  border-radius: 14px;
  padding: 20px;
}
.zs-block h3 {
  margin: 0 0 14px;
  color: #213d30;
  font-size: 2rem;
  line-height: 1.2;
}
.zs-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.zs-features li {
  position: relative;
  padding-left: 30px;
}
.zs-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f8a66;
  font-weight: 700;
}
.zs-specs { margin: 0; }
.zs-specs .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #cfe0d7;
}
.zs-specs .row:last-child { border-bottom: 0; }
.zs-specs dt { margin: 0; color: #567f71; }
.zs-specs dd { margin: 0; color: #223f31; font-weight: 600; }

.zs-details-section {
  padding: 8px 0 30px;
}
.zs-details {
  border: 1px solid #dbe7e0;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.zs-details-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid #dce8e2;
  background: #f4f8f6;
}
.zs-details-tab {
  border: 1px solid #cddcd4;
  background: #fff;
  color: #3f6657;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 16px;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
}
.zs-details-tab:hover {
  border-color: #99bcae;
}
.zs-details-tab.is-active {
  background: #2f8a66;
  border-color: #2f8a66;
  color: #fff;
}
.zs-details-panel {
  padding: 18px 20px;
}
.zs-details-title {
  margin: 0 0 12px;
  color: #213d30;
  font-size: 1.28rem;
}
.zs-details-panel .zs-long-content {
  font-size: 1rem;
  line-height: 1.62;
}
.zs-details-panel .zs-long-content p:last-child {
  margin-bottom: 0;
}
.zs-attachments {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.zs-attachments li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid #d5e2dc;
  border-radius: 12px;
  min-height: 48px;
  padding: 10px 12px;
  color: #284b3c;
  background: #f8fcfa;
}
.zs-attachments li a:hover {
  border-color: #8fb6a6;
  background: #eef6f2;
}
.zs-attachment-icon {
  width: 24px;
  height: 24px;
  color: #2f8a66;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.zs-attachment-icon svg {
  width: 21px;
  height: 21px;
}
.woocommerce div.product .price { color: var(--primary); }
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 999px !important;
  background: var(--primary) !important;
  color: #fff !important;
}
.woocommerce button.button:hover,
.woocommerce a.button:hover { background: var(--primary-dark) !important; }

/* Modern Cart */
.woocommerce-cart .woocommerce {
  display: grid;
  gap: 18px;
}
.woocommerce-cart table.shop_table {
  border: 1px solid #dce7e1 !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(24, 50, 38, 0.08);
}
.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  border-color: #e5efea !important;
  padding: 16px 12px !important;
}
.woocommerce-cart .product-thumbnail img {
  width: 84px;
  border-radius: 12px;
  border: 1px solid #dce7e1;
}
.woocommerce-cart .coupon input.input-text {
  border: 1.5px solid #c8d8d1 !important;
  border-radius: 12px !important;
  padding: 10px 12px !important;
  min-width: 220px;
}
.woocommerce-cart .coupon button,
.woocommerce-cart .actions button {
  border-radius: 12px !important;
  min-height: 44px;
  font-weight: 700 !important;
}
.woocommerce-cart .cart-collaterals {
  display: grid;
  grid-template-columns: 1fr;
}
.woocommerce-cart .cart_totals {
  width: 100% !important;
  border: 1px solid #dce7e1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(24, 50, 38, 0.08);
  padding: 14px 16px;
}
.woocommerce-cart .cart_totals h2 {
  margin: 4px 0 10px;
  font-size: 1.45rem;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  width: 100%;
  border-radius: 14px !important;
  min-height: 52px;
  font-size: 1.05rem !important;
}

/* Floating Widgets */
.zs-float-btn {
  position: fixed;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 0;
  z-index: 1200;
  color: #fff;
  box-shadow: 0 12px 22px rgba(24, 50, 38, 0.22);
  transition: transform .16s ease, box-shadow .16s ease;
}
.zs-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(24, 50, 38, 0.28);
}
.zs-float-btn svg { width: 26px; height: 26px; }
.zs-a11y-btn { left: 18px; bottom: 20px; background: #2f8a66; }
.zs-wa-btn {
  right: 18px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  background: #25d366;
  color: #fff;
  border: 4px solid #fff;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(15, 66, 44, 0.28), 0 0 0 1px rgba(27, 65, 48, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zs-wa-btn img {
  width: 30px;
  height: 30px;
  max-width: 30px;
  display: block;
  object-fit: contain;
  object-position: center center;
  margin: 0;
  transform: none;
}

.zs-a11y-panel {
  position: fixed;
  left: 18px;
  bottom: 86px;
  width: min(360px, calc(100vw - 36px));
  background: #f8fbfa;
  border: 1px solid #cfddd7;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(24, 50, 38, 0.22);
  z-index: 1201;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease;
  overflow: hidden;
}
.zs-a11y-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}
.zs-a11y-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #e6efea;
}
.zs-a11y-head strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: #203d31;
}
.zs-a11y-title-icon {
  width: 20px;
  height: 20px;
  color: #2f8a66;
  display: inline-grid;
  place-items: center;
}
.zs-a11y-title-icon svg { width: 19px; height: 19px; }
.zs-a11y-head button {
  border: 2px solid #2f8a66;
  background: #f1f6f3;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #2f8a66;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  padding: 0;
}
.zs-a11y-head button svg { width: 16px; height: 16px; }
.zs-a11y-body {
  padding: 12px;
}
.zs-a11y-textsize {
  background: #ecf2ef;
  border: 1px solid #dbe7e1;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.zs-a11y-textsize > span {
  color: #2a4a3b;
  font-size: 1.05rem;
  font-weight: 500;
}
.zs-a11y-stepper {
  display: grid;
  grid-template-columns: 36px 26px 36px;
  align-items: center;
  gap: 8px;
}
.zs-a11y-stepper button {
  border: 1px solid #d0ddd7;
  background: #e6eeea;
  border-radius: 12px;
  min-height: 36px;
  color: #28483a;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}
.zs-a11y-stepper output {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f3a2f;
}
.zs-a11y-row {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  min-height: 52px;
  padding: 8px 2px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  color: #2b4b3c;
  text-align: left;
  cursor: pointer;
}
.zs-a11y-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e6eeea;
  color: #456d5d;
  display: inline-grid;
  place-items: center;
}
.zs-a11y-row-icon svg {
  width: 18px;
  height: 18px;
}
.zs-a11y-row-label {
  font-size: 1.03rem;
  font-weight: 500;
}
.zs-a11y-switch {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #cad6d1;
  position: relative;
  transition: background-color .18s ease;
}
.zs-a11y-switch span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f4f7f6;
  border: 1px solid #c0cfc9;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: transform .18s ease;
}
.zs-a11y-row.is-active .zs-a11y-switch {
  background: #2f8a66;
}
.zs-a11y-row.is-active .zs-a11y-switch span {
  transform: translateX(18px);
  border-color: #e4f2ec;
}
.zs-a11y-foot {
  border-top: 1px solid #deebe5;
  padding: 12px;
}
.zs-a11y-reset {
  width: 100%;
  min-height: 42px;
  border: 1px solid #c8d8d1;
  border-radius: 11px;
  background: #eef4f1;
  color: #2c4f40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
}
.zs-a11y-reset svg { width: 16px; height: 16px; }
.zs-a11y-reset:hover {
  background: #e3ece8;
}
.zs-a11y-row:focus-visible,
.zs-a11y-stepper button:focus-visible,
.zs-a11y-reset:focus-visible,
.zs-a11y-head button:focus-visible {
  outline: 2px solid #2f8a66;
  outline-offset: 2px;
}

/* Accessibility utility classes */
.a11y-high-contrast {
  --a11y-bg: #000000;
  --a11y-surface: #0f0f0f;
  --a11y-text: #ffffff;
  --a11y-muted: #f3f3f3;
  --a11y-border: #8a8a8a;
  --a11y-link: #ffe36e;
  --a11y-accent: #0a8f5c;
  background: #000 !important;
  color: #fff !important;
}
.a11y-high-contrast .zs-float-btn,
.a11y-high-contrast .zs-float-btn svg,
.a11y-high-contrast .zs-wa-btn,
.a11y-high-contrast .zs-a11y-btn {
  color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
}
.a11y-high-contrast .zs-a11y-btn,
.a11y-high-contrast .zs-wa-btn {
  position: fixed !important;
  z-index: 1200 !important;
}
.a11y-high-contrast .zs-a11y-btn {
  background: var(--a11y-accent) !important;
  border: 2px solid #fff !important;
}
.a11y-high-contrast .zs-wa-btn {
  background: #16a34a !important;
  border: 2px solid #fff !important;
}

.a11y-dark-mode {
  --a11y-bg: #101614;
  --a11y-surface: #17201c;
  --a11y-text: #ecf3f0;
  --a11y-muted: #d4e3dc;
  --a11y-border: #33463d;
  --a11y-link: #9ed0ff;
  --a11y-accent: #2f8a66;
  background: var(--a11y-bg) !important;
  color: var(--a11y-text) !important;
}

.a11y-high-contrast,
.a11y-dark-mode {
  color-scheme: dark;
}
.a11y-high-contrast :where(
  body, .site-header, .site-footer, .menu-cats, .card, .zs-product-card, .zs-price-box, .zs-meta-row span,
  .zsqm-panel, .zsqm-panel-body, .zsqm-note, .zsqm-net-option, .zsqm-box, .zs-tech-panel,
  .zs-about-stats article, .zs-review-card, .zs-block, .cart_totals, .shop_table,
  .woocommerce-message, .woocommerce-info, .woocommerce-error, .zs-a11y-panel, .zs-cart-head
),
.a11y-dark-mode :where(
  body, .site-header, .site-footer, .menu-cats, .card, .zs-product-card, .zs-price-box, .zs-meta-row span,
  .zsqm-panel, .zsqm-panel-body, .zsqm-note, .zsqm-net-option, .zsqm-box, .zs-tech-panel,
  .zs-about-stats article, .zs-review-card, .zs-block, .cart_totals, .shop_table,
  .woocommerce-message, .woocommerce-info, .woocommerce-error, .zs-a11y-panel, .zs-cart-head
) {
  background: var(--a11y-surface) !important;
  border-color: var(--a11y-border) !important;
  color: var(--a11y-text) !important;
}

.a11y-high-contrast :where(
  h1,h2,h3,h4,h5,h6,p,li,span,strong,small,em,label,dt,dd,th,td,legend,.amount,.price,.woocommerce-Price-amount,bdi
),
.a11y-dark-mode :where(
  h1,h2,h3,h4,h5,h6,p,li,span,strong,small,em,label,dt,dd,th,td,legend,.amount,.price,.woocommerce-Price-amount,bdi
) {
  color: var(--a11y-text) !important;
}

.a11y-high-contrast :where(input,select,textarea,button:not(.zsqm-swatch),.button:not(.zsqm-swatch),.btn,.quantity input.qty,.zs-qty-btn,.zs-chip,.zs-category-pill),
.a11y-dark-mode :where(input,select,textarea,button:not(.zsqm-swatch),.button:not(.zsqm-swatch),.btn,.quantity input.qty,.zs-qty-btn,.zs-chip,.zs-category-pill) {
  background: var(--a11y-surface) !important;
  border-color: var(--a11y-border) !important;
  color: var(--a11y-text) !important;
}

.a11y-high-contrast :where(input::placeholder, textarea::placeholder, .zsqm-grid input::placeholder),
.a11y-dark-mode :where(input::placeholder, textarea::placeholder, .zsqm-grid input::placeholder) {
  color: var(--a11y-muted) !important;
}

.a11y-high-contrast a {
  color: var(--a11y-link) !important;
  text-decoration: underline !important;
}
.a11y-dark-mode a {
  color: var(--a11y-link) !important;
}

.a11y-high-contrast :where(.btn-primary, .single_add_to_cart_button, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button, .zs-a11y-row.is-active .zs-a11y-switch),
.a11y-dark-mode :where(.btn-primary, .single_add_to_cart_button, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button, .zs-a11y-row.is-active .zs-a11y-switch) {
  background: var(--a11y-accent) !important;
  border-color: var(--a11y-accent) !important;
  color: #fff !important;
}

.a11y-high-contrast :where(.zs-a11y-row-icon, .zs-a11y-switch span, .zs-a11y-reset, .zs-a11y-textsize, .zs-a11y-stepper button),
.a11y-dark-mode :where(.zs-a11y-row-icon, .zs-a11y-switch span, .zs-a11y-reset, .zs-a11y-textsize, .zs-a11y-stepper button) {
  background: var(--a11y-surface) !important;
  border-color: var(--a11y-border) !important;
  color: var(--a11y-text) !important;
}

.a11y-high-contrast .zsqm-swatch.is-active::after,
.a11y-dark-mode .zsqm-swatch.is-active::after {
  color: var(--a11y-text) !important;
}
.a11y-high-contrast .zsqm-swatch,
.a11y-dark-mode .zsqm-swatch {
  background: var(--zsqm-swatch-bg, #ccc) !important;
  border-color: var(--a11y-border) !important;
}
.a11y-high-contrast .zsqm-color-dot,
.a11y-dark-mode .zsqm-color-dot {
  background: var(--zsqm-color-dot-bg, #ccc) !important;
  border-color: var(--a11y-border) !important;
}
.a11y-high-contrast .zsqm-measure-help,
.a11y-dark-mode .zsqm-measure-help {
  background: var(--a11y-surface) !important;
  border-color: var(--a11y-border) !important;
  color: var(--a11y-text) !important;
}
.a11y-high-contrast .zsqm-measure-help *,
.a11y-dark-mode .zsqm-measure-help * {
  color: var(--a11y-text) !important;
  text-decoration: none !important;
}
.a11y-high-contrast .zsqm-measure-help-icon,
.a11y-dark-mode .zsqm-measure-help-icon {
  background: var(--a11y-bg) !important;
  border-color: var(--a11y-border) !important;
  color: var(--a11y-link) !important;
}
.a11y-high-contrast .zsqm-measure-help:hover,
.a11y-dark-mode .zsqm-measure-help:hover {
  background: var(--a11y-bg) !important;
}
.a11y-high-contrast .zs-details,
.a11y-dark-mode .zs-details,
.a11y-high-contrast .zs-details-tablist,
.a11y-dark-mode .zs-details-tablist,
.a11y-high-contrast .zs-details-panel,
.a11y-dark-mode .zs-details-panel {
  background: var(--a11y-surface) !important;
  border-color: var(--a11y-border) !important;
  color: var(--a11y-text) !important;
}
.a11y-high-contrast .zs-details-tab,
.a11y-dark-mode .zs-details-tab {
  background: var(--a11y-bg) !important;
  border-color: var(--a11y-border) !important;
  color: var(--a11y-text) !important;
}
.a11y-high-contrast .zs-details-tab.is-active,
.a11y-dark-mode .zs-details-tab.is-active {
  background: var(--a11y-accent) !important;
  border-color: var(--a11y-accent) !important;
  color: #ffffff !important;
}
.a11y-high-contrast .zs-details-title,
.a11y-dark-mode .zs-details-title,
.a11y-high-contrast .zs-details-panel .zs-long-content,
.a11y-dark-mode .zs-details-panel .zs-long-content,
.a11y-high-contrast .zs-details-panel .zs-long-content *,
.a11y-dark-mode .zs-details-panel .zs-long-content * {
  color: var(--a11y-text) !important;
}
.a11y-high-contrast .zs-attachments li a,
.a11y-dark-mode .zs-attachments li a {
  background: var(--a11y-surface) !important;
  border-color: var(--a11y-border) !important;
  color: var(--a11y-text) !important;
}
.a11y-high-contrast .zs-attachments li a:hover,
.a11y-dark-mode .zs-attachments li a:hover {
  background: var(--a11y-bg) !important;
}

.a11y-highlight-links a,
.a11y-highlight-links button {
  outline: 2px solid #2f8a66;
  outline-offset: 2px;
}

.a11y-dyslexia-font,
.a11y-dyslexia-font * {
  font-family: "Lexend", "Arial", sans-serif !important;
  letter-spacing: .02em;
  line-height: 1.65;
}

.a11y-reduce-motion *,
.a11y-reduce-motion *::before,
.a11y-reduce-motion *::after {
  transition: none !important;
  animation: none !important;
  scroll-behavior: auto !important;
}

.zsqm-box {
  border: 1px solid var(--border);
  background: #f6faf7;
  border-radius: 12px;
  padding: 16px;
  margin: 10px 0 18px;
}
.zsqm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.zsqm-box label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .92rem; }
.zsqm-box input,
.zsqm-box select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}
.zsqm-price-preview {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.zsqm-ui {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 14px;
}
.zs-extra-tabs {
  margin-top: 12px;
  margin-bottom: 0;
}
.zs-instruction-note {
  margin: 0 0 12px;
  color: #5a7c6f;
}
.zs-instruction-download {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  justify-content: center;
}
.zsqm-panel {
  border: 1px solid #c9d9d1;
  border-radius: 20px;
  background: #f8fcfa;
  overflow: hidden;
  position: relative;
}
.zsqm-panel-head {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  color: #203d31;
}
.zsqm-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.zsqm-head-left strong { display: block; font-size: 1.1rem; line-height: 1.1; }
.zsqm-head-left small { display: block; font-size: 1.05rem; color: #537768; margin-top: 3px; }
.zsqm-head-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #2f8a66;
  color: #fff;
  display: grid;
  place-items: center;
}
.zsqm-head-icon svg {
  width: 24px;
  height: 24px;
}
.zsqm-head-toggle {
  color: #254537;
  transition: transform .2s ease;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
}
.zsqm-head-toggle svg {
  width: 20px;
  height: 20px;
}
.zsqm-panel.is-open .zsqm-head-toggle { transform: rotate(180deg); }
.zsqm-panel-body {
  display: none;
  padding: 0 20px 18px;
}
.zsqm-panel.is-open .zsqm-panel-body { display: block; }
.zsqm-measure-help {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 15px;
  border: 1px solid #d9e7e1;
  background: #edf3f0;
  color: #5a7c6f;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 1.04rem;
  line-height: 1.4;
  font-weight: 500;
}
.zsqm-measure-help:hover {
  background: #e7f0ec;
  border-color: #c9dbd2;
  color: #52766a;
}
.zsqm-measure-help:focus-visible {
  outline: 2px solid #2f8a66;
  outline-offset: 2px;
}
.zsqm-measure-help-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e5efea;
  color: #2f8a66;
  font-size: 1rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  border: 1px solid #bfd5cb;
  box-shadow: none;
}
.zsqm-note {
  border-radius: 16px;
  background: #edf3f0;
  color: #5a7c6f;
  padding: 14px;
  margin-bottom: 14px;
}
.zsqm-hint { color: #5a7c6f; display: block; margin-top: 8px; }
.zsqm-color-dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 4px solid #c7d7d0;
  background: var(--zsqm-color-dot-bg, #f5f5f0);
}
.zsqm-panel h4 {
  margin: 14px 0 8px;
  color: #5c7f71;
  font-size: .95rem;
  letter-spacing: .02em;
}
.zsqm-panel h4 span { font-weight: 500; color: #718e82; }
.zsqm-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.zsqm-swatch {
  height: 58px;
  border-radius: 18px;
  border: 4px solid #c8d8d1;
  background: var(--zsqm-swatch-bg, #fff);
  cursor: pointer;
  position: relative;
}
.zsqm-swatch.is-active {
  border-color: #2f8a66;
  box-shadow: inset 0 0 0 2px #fff;
}
.zsqm-swatch.is-active::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #183528;
  font-size: 1.8rem;
  font-weight: 700;
}
.zsqm-grid input,
.zsqm-grid select {
  width: 100%;
  height: 52px;
  border: 1.5px solid #c8d8d1;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
  padding: 0 14px;
  font-size: 1rem;
  color: #29483a;
  font-weight: 600;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, transform .12s ease;
}
.zsqm-grid input::placeholder { color: #87a498; font-weight: 500; }
.zsqm-grid input:focus,
.zsqm-grid select:focus {
  border-color: #2f8a66;
  box-shadow: 0 0 0 4px rgba(47, 138, 102, 0.16);
}
.zsqm-grid input:hover,
.zsqm-grid select:hover {
  border-color: #8fb6a6;
}
.zsqm-grid label {
  display: block;
  margin-bottom: 7px;
  color: #4f7264;
  font-weight: 700;
  font-size: .9rem;
}
.zsqm-net-list {
  display: grid;
  gap: 10px;
}
.zsqm-net-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #c9d9d1;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
}
.zsqm-net-main { color: #355b4b; font-weight: 600; }

/* Guide page */
.zs-guide-page {
  padding: 52px 0 72px;
}
.zs-guide-inner {
  width: min(860px, 100%);
  margin: 0 auto;
}
.zs-guide-back-wrap {
  margin-bottom: 16px;
}
.zs-guide-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid #c8d9d0;
  border-radius: 999px;
  padding: 0 14px;
  color: #2d4f40;
  background: #f6fbf8;
  font-weight: 600;
  font-size: .9rem;
}
.zs-guide-back:hover {
  border-color: #2f8a66;
  color: #2f8a66;
  background: #ebf4f0;
}
.zs-guide-intro {
  text-align: center;
  margin-bottom: 36px;
}
.zs-guide-intro-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #e8f3ed;
  color: #2f8a66;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 14px;
}
.zs-guide-intro-icon svg {
  width: 30px;
  height: 30px;
}
.zs-guide-intro h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: #1f3b2f;
  letter-spacing: -.01em;
}
.zs-guide-intro p {
  margin: 0;
  color: #5e7c70;
  font-size: 1.1rem;
}
.zs-guide-steps {
  display: grid;
  gap: 0;
}
.zs-guide-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border: 1px solid #d9e5de;
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(25, 53, 40, 0.05);
}
.zs-guide-step-num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #2f8a66;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 2px;
}
.zs-guide-step-content h2 {
  margin: 0 0 8px;
  color: #1f3b2f;
  font-size: 1.35rem;
}
.zs-guide-step-content p {
  margin: 0;
  color: #5e7c70;
  font-size: 1.03rem;
  line-height: 1.6;
}
.zs-guide-note,
.zs-guide-alert {
  border-radius: 12px;
  margin-top: 12px;
  padding: 12px 14px;
}
.zs-guide-note {
  background: #f1f6f3;
  border: 1px solid #deebe4;
}
.zs-guide-alert {
  background: #edf5f1;
  border: 1px solid #d2e4da;
}
.zs-guide-note p,
.zs-guide-alert p {
  margin: 0;
  font-size: .96rem;
  color: #36564a;
}
.zs-guide-arrow {
  color: #7b948a;
  display: grid;
  place-items: center;
  padding: 10px 0;
}
.zs-guide-arrow svg {
  width: 22px;
  height: 22px;
}
.zs-guide-tips {
  margin-top: 32px;
  background: #eef4f1;
  border: 1px solid #d8e4dd;
  border-radius: 18px;
  padding: 24px 24px 20px;
}
.zs-guide-tips h2 {
  margin: 0 0 14px;
  font-size: 1.36rem;
  color: #1f3b2f;
}
.zs-guide-tips ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.zs-guide-tips li {
  position: relative;
  padding-left: 28px;
  color: #52766a;
  font-size: 1rem;
  line-height: 1.5;
}
.zs-guide-tips li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f8a66;
  font-weight: 800;
}

/* Product page typography tuning */
.single-product .zs-single-wrap {
  font-size: 15.5px;
}
.single-product .zs-category-pill {
  margin-bottom: 14px;
  font-size: .93rem;
  font-weight: 500;
  color: #60786e;
  border-color: #dce5e1;
  background: #eff4f1;
  padding: 7px 14px;
}
.single-product .zs-category-pill .dot {
  width: 8px;
  height: 8px;
  background: #2f8a66;
}
.single-product .zs-single-right .product_title {
  font-size: clamp(1.56rem, 2.5vw, 2.08rem);
  line-height: 1.18;
}
.single-product .zs-desc {
  font-size: 1rem;
  line-height: 1.56;
}
.single-product .zs-price-box .label {
  font-size: .76rem;
}
.single-product .zs-live-total {
  font-size: 2.46rem;
}
.single-product .zs-tax-note {
  font-size: .88rem;
}
.single-product .zs-live-summary {
  font-size: .89rem;
}
.single-product .zs-meta-row span {
  font-size: .8rem;
}
.single-product .zsqm-head-left strong {
  font-size: .98rem;
}
.single-product .zsqm-head-left small {
  font-size: .9rem;
}
.single-product .zsqm-panel h4 {
  font-size: .84rem;
}
.single-product .zsqm-grid label {
  font-size: .84rem;
}
.single-product .zsqm-grid input,
.single-product .zsqm-grid select {
  font-size: .94rem;
}
.single-product .zsqm-note,
.single-product .zsqm-hint,
.single-product .zsqm-net-main {
  font-size: .92rem;
}
.single-product .zs-tech-panel h3 {
  font-size: 1.46rem;
}
.single-product .zs-features-list li,
.single-product .zs-tech-list dt,
.single-product .zs-tech-list dd {
  font-size: .99rem;
}
.single-product .zs-long-content {
  font-size: 1rem;
}
.single-product .zs-long-title {
  font-size: 1.62rem;
}
.single-product .zs-about-reviews h2 {
  font-size: 1.68rem;
}
.single-product .zs-about-reviews p {
  font-size: .97rem;
}
.single-product .zs-about-stats strong {
  font-size: 1.52rem;
}
.single-product .zs-about-stats span {
  font-size: .84rem;
}
.single-product .zs-review-card strong {
  font-size: 1.02rem;
}
.single-product .zs-review-card small {
  font-size: .8rem;
}
.single-product .zs-review-card p {
  font-size: .95rem;
}

@media (max-width: 1024px) {
  .zs-search { display: none; }
  .zs-mobile-actions { display: inline-flex; margin-left: auto; }
  .zs-mobile-searchbar.is-open { display: block; }
  .zs-cart-head { display: none; }
  .site-header .main {
    min-height: 70px;
    gap: 10px;
  }
  .brand-logo { width: 220px; }
  .menu-cats {
    display: none;
    border-top: 1px solid #d6e1db;
    border-bottom: 1px solid #d6e1db;
    background: #fff;
  }
  .menu-cats.is-open {
    display: block;
  }
  .menu-cats ul {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }
  .menu-cats a {
    justify-content: flex-start;
    text-align: left;
    padding: 14px 18px;
    font-size: 1.02rem;
    gap: 12px;
  }
  .menu-icon {
    width: 18px;
    height: 18px;
  }
  .menu-icon svg {
    width: 18px;
    height: 18px;
  }
  .zs-shop-head h1 {
    font-size: clamp(1.72rem, 5vw, 2.3rem);
  }
  .zs-shop-head p {
    font-size: 1rem;
  }
  .zs-shop-toolbar {
    margin-bottom: 18px;
  }
  .zs-shop-page .woocommerce-ordering select {
    min-width: 206px;
  }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .accessory-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .zs-quality-content {
    padding: 40px 34px;
  }
  .zs-quality-content > p {
    font-size: 1.12rem;
    line-height: 1.55;
  }
  .zs-quality-grid {
    gap: 18px 20px;
  }
  .zs-quality-grid strong {
    font-size: 1.35rem;
  }
  .zs-quality-grid p {
    font-size: .96rem;
  }
  .zs-quality-media {
    min-height: 520px;
  }
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .zs-single { grid-template-columns: 1fr; }
  .zs-guide-step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px;
  }
  .zs-guide-step-content h2 {
    font-size: 1.2rem;
  }
  .zs-guide-step-content p {
    font-size: .98rem;
  }
  .zs-guide-tips {
    padding: 20px 18px 16px;
  }
  .zs-guide-tips h2 {
    font-size: 1.24rem;
  }
  .zs-details-panel {
    padding: 16px;
  }
  .zs-details-title {
    font-size: 1.18rem;
  }
}

@media (max-width: 720px) {
  .topbar { display: none; }
  .site-header .main {
    min-height: 66px;
  }
  .zs-shop-page.section {
    padding-top: 28px;
  }
  .zs-shop-head h1 {
    font-size: clamp(1.48rem, 9vw, 2.02rem);
    margin-bottom: 6px;
  }
  .zs-shop-head p {
    font-size: .96rem;
  }
  .zs-shop-page .woocommerce-breadcrumb {
    font-size: .9rem;
    margin-bottom: 8px;
  }
  .zs-shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
  }
  .zs-shop-toolbar-left,
  .zs-shop-toolbar-right {
    width: 100%;
  }
  .zs-shop-page .woocommerce-result-count {
    font-size: .9rem;
  }
  .zs-shop-page .woocommerce-ordering {
    width: 100%;
  }
  .zs-shop-page .woocommerce-ordering select {
    width: 100%;
    min-width: 0;
    height: 40px;
    font-size: .9rem;
  }
  .zs-details-section {
    padding: 6px 0 22px;
  }
  .zs-details-tablist {
    gap: 6px;
    padding: 10px;
  }
  .zs-details-tab {
    min-height: 36px;
    padding: 0 12px;
    font-size: .84rem;
  }
  .zs-details-panel {
    padding: 14px 12px;
  }
  .zs-details-title {
    font-size: 1.02rem;
    margin-bottom: 10px;
  }
  .zs-attachments li a {
    min-height: 44px;
    font-size: .92rem;
  }
  .section { padding: 44px 0; }
  .hero { min-height: 480px; }
  .hero .content {
    min-height: 480px;
    padding: 54px 0;
  }
  .hero .content::before {
    left: -10px;
    right: -10px;
    width: auto;
    top: 28px;
    bottom: 28px;
  }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .hero p { font-size: 1.05rem; margin-bottom: 22px; }
  .hero .btn {
    min-width: 0;
    width: 100%;
    height: 52px;
    font-size: 1.03rem;
  }
  .hero-actions { width: 100%; }
  .cards,
  .accessory-grid,
  .zsqm-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  ul.products {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 8px !important;
    margin: 0 -2px !important;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  ul.products li.product {
    flex: 0 0 min(86vw, 360px);
    width: min(86vw, 360px) !important;
    scroll-snap-align: start;
  }
  body.post-type-archive-product .woocommerce ul.products,
  body.post-type-archive-product .woocommerce-page ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat .woocommerce ul.products,
  body.tax-product_cat .woocommerce-page ul.products,
  body.tax-product_cat ul.products,
  body.tax-product_tag .woocommerce ul.products,
  body.tax-product_tag .woocommerce-page ul.products,
  body.tax-product_tag ul.products,
  body.search .woocommerce ul.products,
  body.search .woocommerce-page ul.products,
  body.search ul.products,
  body.search-results .woocommerce ul.products,
  body.search-results .woocommerce-page ul.products,
  body.search-results ul.products {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0 !important;
    margin: 0 !important;
  }
  body.post-type-archive-product .woocommerce ul.products li.product,
  body.post-type-archive-product .woocommerce-page ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat .woocommerce ul.products li.product,
  body.tax-product_cat .woocommerce-page ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag .woocommerce ul.products li.product,
  body.tax-product_tag .woocommerce-page ul.products li.product,
  body.tax-product_tag ul.products li.product,
  body.search .woocommerce ul.products li.product,
  body.search .woocommerce-page ul.products li.product,
  body.search ul.products li.product,
  body.search-results .woocommerce ul.products li.product,
  body.search-results .woocommerce-page ul.products li.product,
  body.search-results ul.products li.product {
    flex: 0 0 auto;
    width: auto !important;
  }
  .zs-guide-page {
    padding: 36px 0 48px;
  }
  .zs-guide-intro {
    margin-bottom: 24px;
  }
  .zs-guide-intro-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }
  .zs-guide-intro-icon svg {
    width: 25px;
    height: 25px;
  }
  .zs-guide-intro h1 {
    font-size: clamp(1.62rem, 8vw, 2rem);
  }
  .zs-guide-intro p {
    font-size: .98rem;
  }
  .zs-guide-step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }
  .zs-guide-step-num {
    width: 34px;
    height: 34px;
    font-size: .9rem;
    margin-top: 0;
  }
  .zs-guide-step-content h2 {
    font-size: 1.08rem;
  }
  .zs-guide-step-content p,
  .zs-guide-note p,
  .zs-guide-alert p,
  .zs-guide-tips li {
    font-size: .94rem;
  }
  .zs-guide-arrow {
    padding: 8px 0;
  }
  .zs-guide-tips {
    margin-top: 22px;
    border-radius: 14px;
    padding: 16px 14px 14px;
  }
  .zs-guide-tips h2 {
    font-size: 1.08rem;
  }
  .zs-quality-section {
    padding: 48px 0 36px;
  }
  .zs-quality-block {
    grid-template-columns: 1fr;
  }
  .zs-quality-content {
    padding: 28px 20px;
  }
  .zs-quality-content h2 {
    font-size: clamp(1.7rem, 7.8vw, 2.2rem);
  }
  .zs-quality-content > p {
    margin-top: 14px;
    font-size: 1rem;
  }
  .zs-quality-grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .zs-quality-grid article {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }
  .zs-quality-grid strong {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  .zs-quality-grid p {
    font-size: .95rem;
    line-height: 1.5;
  }
  .zs-quality-grid .icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .zs-quality-grid .icon svg {
    width: 17px;
    height: 17px;
  }
  .zs-quality-media {
    min-height: 320px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-logo { width: 170px; }
  .zs-mobile-actions { gap: 8px; }
  .zs-mobile-search {
    width: 32px;
    height: 32px;
  }
  .zs-mobile-cart,
  .zs-mobile-menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }
  .zs-meta-row { grid-template-columns: 1fr; }
  .zs-long-grid { grid-template-columns: 1fr; }
  .zs-feature-spec-grid { grid-template-columns: 1fr; }
  .zs-block h3 { font-size: 1.6rem; }
  .zs-about-reviews { grid-template-columns: 1fr; }
  .zs-about-stats { grid-template-columns: 1fr; }
  .zsqm-swatches { grid-template-columns: repeat(2, 1fr); }
  .zsqm-head-left strong { font-size: 1rem; }
  .zsqm-head-left small { font-size: .95rem; }
  .zsqm-measure-help {
    font-size: .95rem;
    padding: 12px 14px;
  }
  .zsqm-measure-help-icon {
    width: 28px;
    height: 28px;
    font-size: .95rem;
  }
  .zs-card-visual {
    margin: 8px;
  }
  .zs-card-specs {
    top: 62px;
    right: 8px;
    width: min(54%, 186px);
  }
  .zs-card-spec-copy strong {
    font-size: .86rem;
  }
  .zs-product-card .body {
    min-height: 292px;
    padding: 2px 13px 10px;
    gap: 6px;
  }
  .zs-motion-pill {
    font-size: .8rem;
    padding: 6px 10px;
  }
  .zs-product-card h3 {
    font-size: .95rem;
  }
  .zs-product-card p {
    font-size: .87rem;
  }
  .zs-price-main strong {
    font-size: 1.7rem;
  }
  .zs-price-main del {
    font-size: .84rem;
  }
  .zs-price-main span {
    font-size: .88rem;
  }
  .zs-detail-btn {
    font-size: .88rem;
  }
  .zs-detail-arrow {
    width: 30px;
    height: 30px;
  }
  .single-product .zs-single-wrap {
    font-size: 15px;
  }
  .single-product .zs-single-left {
    margin-left: -8px;
    margin-right: -8px;
  }
  .single-product .zs-thumbs {
    padding: 0 8px;
    gap: 8px;
    margin-top: 8px;
  }
  .single-product .zs-single-right {
    padding-top: 10px;
  }
  .single-product .zs-category-pill {
    margin-bottom: 18px;
  }
  .single-product .zs-single-right .product_title {
    font-size: clamp(1.42rem, 7vw, 1.82rem);
    margin-top: 4px;
  }
  .single-product .zs-live-total {
    font-size: 2.14rem;
  }
  .single-product .zsqm-head-left strong {
    font-size: .93rem;
  }
  .single-product .zsqm-head-left small {
    font-size: .85rem;
  }
  .single-product .zs-tech-panel h3 {
    font-size: 1.26rem;
  }
  .single-product .zs-long-title,
  .single-product .zs-about-reviews h2 {
    font-size: 1.42rem;
  }
  .zs-config-btn {
    min-width: 122px;
    height: 46px;
    border-radius: 12px;
  }
  .zs-float-btn { width: 66px; height: 66px; }
  .zs-float-btn svg { width: 30px; height: 30px; }
  .zs-a11y-btn { left: 12px; bottom: 14px; }
  .zs-wa-btn { right: 12px; bottom: 14px; width: 72px; height: 72px; }
  .zs-wa-btn img { width: 36px; height: 36px; max-width: 36px; }
  .zs-a11y-panel { left: 12px; bottom: 88px; width: calc(100vw - 24px); }
  .zs-single-wrap.section { padding-top: 14px; }
}
