/*
Theme Name: Vender Tus Cartuchos
Theme URI: https://example.com/
Author: Vender Tus Cartuchos
Description: Tema visual para landing page de compra de cartuchos e toners vazios.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: vender-tus-cartuchos
*/

:root {
  --vtc-green-950: #063b22;
  --vtc-green-900: #064225;
  --vtc-green-800: #07542f;
  --vtc-green-700: #08733d;
  --vtc-green-600: #0d8b48;
  --vtc-green-100: #e8f4e7;
  --vtc-green-50: #f5fbf4;
  --vtc-ink: #26352f;
  --vtc-muted: #5f6b66;
  --vtc-line: #dfe8e2;
  --vtc-shadow: 0 18px 42px rgba(10, 68, 39, 0.13);
  --vtc-soft-shadow: 0 8px 22px rgba(25, 63, 42, 0.1);
  --vtc-radius: 8px;
  --vtc-shell: 1360px;
  --vtc-page-gutter: 64px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--vtc-ink);
  font-family: Avenir, "Avenir Next", "Nunito Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-page {
  min-height: 100vh;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8eee9;
  box-shadow: 0 1px 0 rgba(6, 66, 37, 0.02);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(calc(100% - var(--vtc-page-gutter)), var(--vtc-shell));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 205px;
  height: auto;
  object-fit: contain;
}

.primary-nav {
  justify-self: center;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #4c5852;
  font-size: 13px;
  font-weight: 500;
}

.primary-menu a {
  position: relative;
  display: inline-flex;
  min-height: 82px;
  align-items: center;
  white-space: nowrap;
}

.primary-menu a[aria-current="page"] {
  color: var(--vtc-green-800);
}

.primary-menu a[aria-current="page"]::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--vtc-green-700);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-pill,
.header-cart {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.header-pill {
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(8, 115, 61, 0.24);
}

.header-login {
  background: #fff;
  color: var(--vtc-green-800);
  box-shadow: 0 6px 14px rgba(21, 80, 46, 0.06);
}

.header-register {
  border-color: rgba(4, 90, 45, 0.2);
  background: linear-gradient(180deg, #098840 0%, #087339 100%);
  box-shadow: 0 8px 16px rgba(5, 96, 47, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
}

.header-pill svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.header-cart {
  position: relative;
  width: 42px;
  padding: 0;
  border: 1px solid rgba(8, 115, 61, 0.24);
  background: var(--vtc-green-50);
  color: var(--vtc-green-800);
}

.header-cart svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.3;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--vtc-green-700);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.header-account {
  position: relative;
}

.header-account-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px 0 8px;
  border: 1px solid rgba(8, 115, 61, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(21, 80, 46, 0.06);
  color: var(--vtc-green-900);
  cursor: pointer;
}

.account-avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #15934c 0%, #08733d 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.account-name {
  max-width: 130px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-account-toggle svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  width: 220px;
  display: grid;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(8, 115, 61, 0.14);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(23, 71, 43, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.header-account.is-open .account-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.account-dropdown a {
  display: block;
  padding: 10px 11px;
  border-radius: 7px;
  color: #3c4a44;
  font-size: 13px;
  font-weight: 650;
}

.account-dropdown a:hover {
  background: var(--vtc-green-50);
  color: var(--vtc-green-800);
}

.account-dropdown .account-logout {
  color: #a33a30;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 38, 22, 0.42);
  backdrop-filter: blur(6px);
}

.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(5, 38, 22, 0.28);
}

.auth-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(8, 115, 61, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #2d3d36;
  cursor: pointer;
}

.auth-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.auth-copy {
  display: grid;
  align-content: center;
  padding: 44px 34px;
  background:
    radial-gradient(circle at 82% 20%, rgba(159, 215, 85, 0.28), transparent 34%),
    linear-gradient(145deg, #063b22, #08733d);
  color: #fff;
}

.auth-mark {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: #fff;
}

.auth-copy h2 {
  margin: 0 0 13px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.08;
}

.auth-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.auth-panel {
  padding: 42px 38px 34px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
  padding: 5px;
  border-radius: 10px;
  background: var(--vtc-green-50);
}

.auth-tabs button {
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #53615a;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.auth-tabs button.is-active {
  background: #fff;
  color: var(--vtc-green-800);
  box-shadow: 0 8px 16px rgba(23, 71, 43, 0.08);
}

.auth-pane {
  display: none;
}

.auth-pane.is-active {
  display: block;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #314239;
  font-size: 13px;
  font-weight: 750;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  height: 44px;
  width: 100%;
  padding: 0 13px;
  border: 1px solid #dce8e1;
  border-radius: 8px;
  background: #fff;
  color: #26352f;
  outline: 0;
}

.auth-form input:focus {
  border-color: rgba(8, 115, 61, 0.55);
  box-shadow: 0 0 0 3px rgba(8, 115, 61, 0.1);
}

.auth-remember {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 9px !important;
  color: #5b6862 !important;
  font-weight: 600 !important;
}

.auth-remember input {
  width: 16px;
  height: 16px;
}

.auth-submit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #119747 0%, #07813e 100%);
  box-shadow: 0 12px 22px rgba(7, 126, 62, 0.2);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.auth-link {
  justify-self: center;
  color: var(--vtc-green-800);
  font-size: 13px;
  font-weight: 700;
}

.auth-fallback {
  margin: 0 0 16px;
  color: #5b6862;
  font-size: 14px;
  line-height: 1.45;
}

body.auth-modal-open {
  overflow: hidden;
}

.cart-drawer[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
}

body.admin-bar .cart-drawer {
  top: 32px;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 38, 22, 0.28);
  backdrop-filter: blur(4px);
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 430px);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  box-shadow: -24px 0 60px rgba(5, 38, 22, 0.22);
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid #e6eee8;
}

.cart-drawer-header span {
  display: block;
  color: var(--vtc-green-700);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-drawer-header h2 {
  margin: 4px 0 0;
  color: var(--vtc-green-950);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.cart-drawer-header button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #dce8e1;
  border-radius: 999px;
  background: #fff;
  color: #2d3d36;
  cursor: pointer;
}

.cart-drawer-header svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.cart-drawer-items {
  min-height: 0;
  overflow-y: auto;
  padding: 16px 18px;
}

.cart-drawer-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cart-drawer-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid #edf2ee;
  border-radius: 9px;
  background: #fbfdfb;
}

.cart-drawer-thumb img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.cart-drawer-info strong,
.cart-drawer-info span {
  display: block;
}

.cart-drawer-info strong {
  color: #26352f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.cart-drawer-info span {
  margin-top: 4px;
  color: #68756f;
  font-size: 12px;
  font-weight: 650;
}

.cart-drawer-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.cart-drawer-line > span {
  margin-top: 0;
}

.cart-drawer-qty {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #60706a;
  font-size: 12px;
  font-weight: 750;
}

.cart-drawer-qty span {
  margin: 0;
}

.cart-drawer-qty input {
  width: 54px;
  height: 30px;
  padding: 0 5px;
  border: 1px solid #d7e4dc;
  border-radius: 7px;
  background: #fff;
  color: #26352f;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  outline: 0;
}

.cart-drawer-qty input:focus {
  border-color: rgba(8, 115, 61, 0.55);
  box-shadow: 0 0 0 3px rgba(8, 115, 61, 0.1);
}

.cart-drawer-qty input.has-error {
  border-color: #b83b32;
  color: #b83b32;
}

.cart-drawer-remove {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #9a3a32;
  font-size: 22px;
  line-height: 1;
}

.cart-drawer-remove.has-error {
  background: rgba(184, 59, 50, 0.08);
}

.cart-drawer-empty {
  margin: 22px 0;
  color: #64716b;
  text-align: center;
  font-size: 14px;
  font-weight: 650;
}

.cart-drawer-footer {
  display: grid;
  gap: 10px;
  padding: 18px 24px 24px;
  border-top: 1px solid #e6eee8;
  background: #fbfdfb;
}

.cart-drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 4px;
}

.cart-drawer-total span {
  color: #53615a;
  font-size: 13px;
  font-weight: 750;
}

.cart-drawer-total strong {
  color: var(--vtc-green-700);
  font-size: 22px;
  font-weight: 850;
}

.cart-drawer-button,
.cart-drawer-checkout {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.cart-drawer-button {
  border: 1px solid rgba(8, 115, 61, 0.3);
  background: #fff;
  color: var(--vtc-green-800);
}

.cart-drawer-checkout {
  background: linear-gradient(180deg, #119747 0%, #07813e 100%);
  color: #fff;
  box-shadow: 0 12px 22px rgba(7, 126, 62, 0.22);
}

body.cart-drawer-open {
  overflow: hidden;
}

.product-image-modal[hidden] {
  display: none;
}

.product-image-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 28px;
}

.product-image-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 38, 22, 0.5);
  backdrop-filter: blur(6px);
}

.product-image-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 740px);
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 30px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 34px 86px rgba(5, 38, 22, 0.3);
}

.product-image-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #dce8e1;
  border-radius: 999px;
  background: #fff;
  color: #2d3d36;
  cursor: pointer;
}

.product-image-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.product-image-zoom {
  width: min(100%, 560px);
  height: min(60vh, 500px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #edf2ee;
  border-radius: 10px;
  background:
    linear-gradient(45deg, #f7faf8 25%, transparent 25%),
    linear-gradient(-45deg, #f7faf8 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f7faf8 75%),
    linear-gradient(-45deg, transparent 75%, #f7faf8 75%);
  background-color: #fff;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
}

.product-image-zoom img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 220ms ease;
}

.product-image-zoom:hover img {
  transform: scale(1.35);
}

.product-image-dialog strong {
  max-width: 100%;
  color: #26352f;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

body.product-image-modal-open {
  overflow: hidden;
}

.hero {
  width: min(calc(100% - var(--vtc-page-gutter)), var(--vtc-shell));
  min-height: 610px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
  padding: 58px 0 24px;
}

.page-content {
  width: min(calc(100% - var(--vtc-page-gutter)), var(--vtc-shell));
  min-height: 56vh;
  margin: 0 auto;
  padding: 72px 0 64px;
}

.page-article {
  max-width: 1120px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: 28px;
}

.page-header h1 {
  margin: 0;
  color: var(--vtc-green-950);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 750;
  line-height: 1.1;
}

.page-body {
  color: #43504b;
}

.page-body > *:first-child {
  margin-top: 0;
}

.woocommerce .page-content,
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content {
  max-width: none;
}

.hero-copy {
  max-width: 520px;
  padding-top: 3px;
}

.hero-title {
  margin: 0;
  color: var(--vtc-green-950);
  font-size: clamp(48px, 5.35vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title-leaf {
  display: inline-block;
  width: 31px;
  height: 31px;
  margin-left: 7px;
  transform: translateY(2px) rotate(-18deg);
  border-radius: 90% 0 90% 0;
  background: linear-gradient(135deg, #9fd755 0%, #55ad3b 100%);
}

.hero-title-leaf::after {
  display: block;
  width: 72%;
  height: 2px;
  margin: 15px 0 0 6px;
  content: "";
  transform: rotate(-34deg);
  transform-origin: left center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-text {
  max-width: 520px;
  margin: 18px 0 18px;
  color: #52635b;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.48;
}

.hero-note {
  max-width: 456px;
  min-height: 86px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  padding: 15px 20px 15px 17px;
  border: 1px solid rgba(10, 115, 61, 0.18);
  border-radius: 7px;
  background: rgba(232, 244, 231, 0.78);
  box-shadow: 0 8px 18px rgba(10, 91, 48, 0.06);
}

.note-icon {
  width: 50px;
  height: 50px;
  color: var(--vtc-green-700);
}

.hero-note p {
  margin: 0;
  color: #43584e;
  font-size: 15.5px;
  font-weight: 480;
  line-height: 1.42;
}

.hero-note strong {
  color: var(--vtc-green-700);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 19px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-primary {
  min-width: 235px;
  border: 1px solid rgba(2, 83, 39, 0.26);
  background: linear-gradient(180deg, #119747 0%, #07813e 100%);
  box-shadow: 0 12px 22px rgba(7, 126, 62, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.21);
  color: #fff;
}

.button-secondary {
  min-width: 182px;
  border: 1px solid #0a6a3a;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 12px rgba(12, 86, 48, 0.1);
  color: #31594a;
}

.button-secondary .play-circle {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1.5px solid #a9cdb7;
  border-radius: 999px;
  color: var(--vtc-green-700);
  background: rgba(232, 244, 231, 0.9);
}

.button-secondary svg {
  width: 15px;
  height: 15px;
  margin-left: 2px;
  fill: currentColor;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding-top: 5px;
}

.hero-visual-shell {
  position: relative;
  width: min(100%, 570px);
  isolation: isolate;
}

.hero-art {
  width: 100%;
  height: auto;
}

.products-section {
  width: min(calc(100% - var(--vtc-page-gutter)), var(--vtc-shell));
  margin: 76px auto 56px;
}

.products-panel {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 7px 28px;
  padding: 34px 38px 18px;
  border: 1px solid rgba(220, 236, 226, 0.7);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(244, 250, 246, 0.98), rgba(250, 253, 250, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.products-heading h2 {
  margin: 0;
  color: var(--vtc-green-950);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.14;
}

.products-heading h2 span {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin-left: 8px;
  transform: translateY(4px) rotate(-18deg);
  border-radius: 90% 0 90% 0;
  background: linear-gradient(135deg, #9fd755 0%, #55ad3b 100%);
}

.products-content {
  min-width: 0;
  display: contents;
}

.products-search {
  grid-column: 2;
  width: min(100%, 760px);
  justify-self: end;
  height: 44px;
  display: grid;
  grid-template-columns: 34px 1fr 38px;
  align-items: center;
  border: 1px solid #dce6df;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(22, 67, 43, 0.04);
  color: #5c6862;
}

.products-search > svg {
  width: 21px;
  height: 21px;
  justify-self: end;
  color: #8d9892;
}

.products-search input[type="search"] {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #3f4d47;
  font-size: 14px;
}

.products-search input::placeholder {
  color: #8a948f;
}

.products-search button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #26352f;
  cursor: pointer;
}

.products-search button svg {
  width: 20px;
  height: 20px;
}

.products-filters {
  grid-column: 2;
  width: min(100%, 760px);
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 8px;
}

.products-filters a {
  min-width: 68px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid #dce6df;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(24, 70, 44, 0.05);
  color: #43504b;
  font-size: 12px;
  font-weight: 700;
}

.products-filters a.is-active {
  border-color: rgba(5, 113, 55, 0.24);
  background: linear-gradient(180deg, #15934c 0%, #08733d 100%);
  color: #fff;
  box-shadow: 0 10px 18px rgba(6, 119, 58, 0.22);
}

.products-table-wrap {
  grid-column: 1 / -1;
  max-height: 430px;
  overflow: auto;
  border: 1px solid #dfe7e2;
  border-radius: 8px;
  background: #fff;
  scrollbar-color: rgba(8, 115, 61, 0.48) rgba(232, 244, 231, 0.7);
  scrollbar-width: thin;
}

.products-table-wrap::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.products-table-wrap::-webkit-scrollbar-track {
  background: rgba(232, 244, 231, 0.7);
}

.products-table-wrap::-webkit-scrollbar-thumb {
  border: 2px solid rgba(232, 244, 231, 0.7);
  border-radius: 999px;
  background: rgba(8, 115, 61, 0.52);
}

.products-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  table-layout: fixed;
}

.products-table th,
.products-table td {
  border-right: 1px solid #e5ebe7;
  border-bottom: 1px solid #e5ebe7;
  text-align: left;
  vertical-align: middle;
}

.products-table th:last-child,
.products-table td:last-child {
  border-right: 0;
}

.products-table tr:last-child td {
  border-bottom: 0;
}

.products-table th {
  position: sticky;
  top: 0;
  z-index: 3;
  height: 38px;
  padding: 0 24px;
  background: #f7f8f7;
  color: #5d6862;
  font-size: 12px;
  font-weight: 760;
}

.products-table th:nth-child(1) {
  width: 28%;
}

.products-table th:nth-child(2) {
  width: 34%;
}

.products-table th:nth-child(3) {
  width: 17%;
  text-align: center;
}

.products-table th:nth-child(4) {
  width: 10%;
  text-align: center;
}

.products-table th:nth-child(5) {
  width: 11%;
  text-align: center;
}

.products-table td {
  height: 54px;
  padding: 7px 24px;
  color: #6d7773;
  font-size: 12.5px;
  font-weight: 520;
}

.product-reference {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  color: #2f3d37;
}

.product-image-button {
  width: 40px;
  height: 42px;
  display: grid;
  place-items: center;
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: zoom-in;
}

.product-image-button:hover,
.product-image-button:focus-visible {
  background: var(--vtc-green-50);
  box-shadow: 0 0 0 3px rgba(8, 115, 61, 0.09);
  outline: 0;
}

.product-reference img,
.product-thumb {
  width: 36px;
  height: 38px;
  display: block;
  justify-self: center;
  object-fit: contain;
}

.product-reference strong {
  color: #2e3834;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.product-price {
  color: var(--vtc-green-700) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  text-align: center;
  white-space: nowrap;
}

.products-table td:nth-child(4) {
  text-align: center;
}

.product-quantity {
  width: 58px;
  height: 30px;
  padding: 0 6px;
  border: 1px solid #d7e4dc;
  border-radius: 7px;
  background: #fff;
  color: #2f3d37;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  outline: 0;
}

.product-quantity:focus {
  border-color: rgba(8, 115, 61, 0.55);
  box-shadow: 0 0 0 3px rgba(8, 115, 61, 0.1);
}

.product-add-button {
  width: 100px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(8, 115, 61, 0.55);
  border-radius: 7px;
  background: #fff;
  color: var(--vtc-green-700);
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}

.products-table td:last-child {
  text-align: center;
}

.product-action-cell {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.product-cart-state {
  display: block;
  color: var(--vtc-green-700);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.product-cart-state[hidden] {
  display: none;
}

.products-table tr.is-in-cart td {
  background: rgba(245, 251, 244, 0.52);
}

.product-add-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-add-button.is-loading {
  pointer-events: none;
  opacity: 0.62;
}

.product-add-button.has-error {
  border-color: #b83b32;
  color: #b83b32;
}

.products-cart-summary {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #dfeae3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.products-cart-summary div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.products-cart-summary span {
  color: #64716b;
  font-size: 13px;
  font-weight: 650;
}

.products-cart-summary strong {
  color: var(--vtc-green-700);
  font-size: 20px;
  font-weight: 850;
}

.products-cart-summary button {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #119747 0%, #07813e 100%);
  box-shadow: 0 10px 18px rgba(7, 126, 62, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.products-loader {
  position: sticky;
  left: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 13px;
  color: #66756e;
  font-size: 12px;
  font-weight: 700;
}

.products-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(8, 115, 61, 0.16);
  border-top-color: var(--vtc-green-700);
  border-radius: 999px;
  animation: productSpin 850ms linear infinite;
}

.products-loader.is-complete .products-spinner {
  display: none;
}

@keyframes productSpin {
  to {
    transform: rotate(360deg);
  }
}

.product-thumb {
  position: relative;
  border-radius: 4px;
  background: linear-gradient(160deg, #313a38, #101514);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16), 0 4px 8px rgba(0, 0, 0, 0.13);
}

.product-thumb::before {
  position: absolute;
  left: 9px;
  right: 9px;
  top: 7px;
  height: 16px;
  content: "";
  border-radius: 2px;
  background: #eef2f1;
}

.product-thumb-cyan {
  background: linear-gradient(160deg, #27a3bd 0 42%, #202a2a 42% 100%);
}

.product-thumb-magenta {
  width: 44px;
  background: linear-gradient(160deg, #1d2425 0 48%, #d92383 48% 100%);
}

.product-thumb-color {
  background: linear-gradient(160deg, #1e2727 0 38%, #f4c531 38% 58%, #2ba8c8 58% 77%, #d92383 77% 100%);
}

.product-thumb-toner {
  width: 54px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(180deg, #202626, #050706);
}

.product-thumb-toner::before {
  left: 5px;
  right: 5px;
  top: 7px;
  height: 5px;
}

.product-thumb-black-tall {
  height: 44px;
}

.products-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 0;
  color: #7a8580;
  font-size: 12px;
  font-weight: 600;
}

.products-note svg {
  width: 18px;
  height: 18px;
  color: var(--vtc-green-700);
  flex: 0 0 auto;
}

.how-section {
  width: min(calc(100% - var(--vtc-page-gutter)), var(--vtc-shell));
  margin: 72px auto 64px;
}

.how-inner {
  padding: 0 24px;
}

.section-title {
  margin: 0 0 26px;
  color: var(--vtc-green-950);
  font-size: 38px;
  font-weight: 780;
  line-height: 1.1;
}

.section-title span {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 12px;
  transform: translateY(3px) rotate(-18deg);
  border-radius: 90% 0 90% 0;
  background: linear-gradient(135deg, #9fd755 0%, #55ad3b 100%);
}

.how-timeline {
  position: relative;
  min-height: 415px;
}

.how-path {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.how-path path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-path-dash {
  stroke: rgba(116, 191, 85, 0.78);
  stroke-width: 3;
  stroke-dasharray: 0.018 0.018;
}

.how-path-mask-line {
  fill: none;
  stroke: #fff;
  stroke-width: 12;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.how-steps {
  position: relative;
  z-index: 1;
  min-height: 415px;
  margin: 0;
  list-style: none;
}

.how-step {
  position: absolute;
  width: 250px;
  display: grid;
  justify-items: center;
  text-align: center;
  color: #2d3d36;
}

.how-step:nth-child(1) {
  left: 0;
  top: 121px;
}

.how-step:nth-child(2) {
  left: 27%;
  top: 201px;
}

.how-step:nth-child(3) {
  left: 52%;
  top: 30px;
}

.how-step:nth-child(4) {
  right: 0;
  top: 146px;
}

.how-number {
  position: absolute;
  top: 0;
  left: calc(50% + 28px);
  z-index: 4;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #15934c 0%, #08733d 100%);
  box-shadow: 0 6px 16px rgba(7, 115, 56, 0.22);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.how-icon {
  position: relative;
  z-index: 2;
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(11, 116, 61, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 46%, rgba(231, 244, 229, 0.88) 47% 100%);
  box-shadow: inset 0 0 0 8px rgba(241, 248, 240, 0.88), 0 12px 26px rgba(24, 73, 42, 0.08);
  color: var(--vtc-green-800);
}

.how-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-step strong {
  display: block;
  margin-bottom: 9px;
  color: #1b2d25;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
}

.how-step p {
  max-width: 248px;
  margin: 0;
  color: #5f6a65;
  font-size: 15px;
  font-weight: 520;
  line-height: 1.55;
}

.how-note {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  margin: 36px 10px 0;
  padding: 14px 112px 14px 34px;
  border: 1px solid rgba(10, 115, 61, 0.18);
  border-radius: 9px;
  background: rgba(238, 248, 237, 0.72);
  color: #61706a;
  overflow: visible;
}

.how-note p {
  margin: 0;
  font-size: 15px;
  font-weight: 620;
  line-height: 1.45;
}

.how-note-leaves {
  position: absolute;
  right: -12px;
  bottom: -9px;
  width: 104px;
  height: 86px;
}

.how-note-leaves span {
  position: absolute;
  display: block;
  border-radius: 90% 0 90% 0;
  background: linear-gradient(135deg, #9ed25b 0%, #2c8534 100%);
  box-shadow: inset 8px 0 10px rgba(255, 255, 255, 0.22);
}

.how-note-leaves span:nth-child(1) {
  width: 34px;
  height: 62px;
  left: 8px;
  bottom: 0;
  transform: rotate(-26deg);
}

.how-note-leaves span:nth-child(2) {
  width: 39px;
  height: 70px;
  left: 39px;
  bottom: 15px;
  transform: rotate(-4deg);
}

.how-note-leaves span:nth-child(3) {
  width: 42px;
  height: 74px;
  right: 1px;
  bottom: 18px;
  transform: rotate(35deg);
}

.reveal-ready {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero.reveal-ready {
  transform: translateY(18px);
}

.products-section.reveal-ready {
  transform: translateY(34px) scale(0.985);
}

.how-section.reveal-ready {
  transform: translateY(28px);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

.how-section.reveal-ready .section-title,
.how-section.reveal-ready .how-note {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.how-section.reveal-ready .how-path-mask-line {
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1700ms cubic-bezier(0.22, 1, 0.36, 1) 220ms;
}

.how-section.reveal-ready .how-step {
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition: opacity 540ms ease, transform 540ms ease;
}

.how-section.reveal-ready .how-step:nth-child(1) {
  transition-delay: 220ms;
}

.how-section.reveal-ready .how-step:nth-child(2) {
  transition-delay: 400ms;
}

.how-section.reveal-ready .how-step:nth-child(3) {
  transition-delay: 580ms;
}

.how-section.reveal-ready .how-step:nth-child(4) {
  transition-delay: 760ms;
}

.how-section.reveal-ready .how-note {
  transition-delay: 940ms;
}

.how-section.is-visible .section-title,
.how-section.is-visible .how-note,
.how-section.is-visible .how-step {
  opacity: 1;
  transform: none;
}

.how-section.is-visible .how-path-mask-line {
  stroke-dashoffset: 0;
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  width: 166px;
  min-height: 112px;
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 14px 14px 13px;
  border: 1px solid rgba(219, 232, 222, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(24, 68, 42, 0.13);
  color: #263b31;
  backdrop-filter: blur(8px);
  animation: floatCard 5.8s ease-in-out infinite;
  will-change: transform;
}

.site-footer {
  margin-top: 70px;
  background:
    radial-gradient(circle at 83% 44%, rgba(32, 126, 67, 0.34), rgba(5, 64, 35, 0) 32%),
    linear-gradient(135deg, #063b22 0%, #07542f 56%, #064126 100%);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.footer-inner {
  width: min(calc(100% - var(--vtc-page-gutter)), var(--vtc-shell));
  min-height: 214px;
  display: grid;
  grid-template-columns: 1.45fr 0.86fr 1fr 1.22fr 1.34fr;
  gap: 34px;
  align-items: start;
  margin: 0 auto;
  padding: 26px 0 20px;
}

.footer-brand,
.footer-col,
.footer-pickup {
  min-height: 148px;
}

.footer-col,
.footer-pickup {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 38px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo-img {
  width: 184px;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
}

.footer-brand > p:not(.footer-eco) {
  max-width: 260px;
  margin: 13px 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.38;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--vtc-green-800);
  font-size: 15px;
  font-weight: 900;
}

.footer-eco {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 500;
}

.footer-eco span {
  color: #92d65e;
  font-size: 16px;
}

.footer-col h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.footer-col a,
.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.22;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-pickup {
  padding-left: 34px;
}

.footer-pickup > div {
  min-height: 124px;
  display: grid;
  grid-template-columns: 1fr 132px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-pickup strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.12;
}

.footer-map {
  position: relative;
  width: 124px;
  height: 90px;
  background: #c9f0c3;
  clip-path: polygon(17% 8%, 34% 0, 51% 8%, 68% 5%, 87% 18%, 82% 36%, 97% 48%, 76% 58%, 75% 82%, 57% 77%, 42% 95%, 32% 78%, 15% 80%, 22% 59%, 5% 46%, 20% 33%);
  box-shadow: inset 0 0 0 2px rgba(7, 115, 61, 0.12);
}

.footer-pin {
  position: absolute;
  left: 63%;
  top: 33%;
  width: 27px;
  height: 27px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 50% 50% 50% 0;
  background: var(--vtc-green-700);
}

.footer-pin::after {
  position: absolute;
  inset: 7px;
  content: "";
  border-radius: 999px;
  background: #fff;
}

.footer-pickup p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -26px 0 0 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.footer-pickup p svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.hero-float-card svg {
  width: 44px;
  height: 44px;
  margin-bottom: 3px;
}

.hero-float-card strong {
  display: block;
  color: #1b5a39;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.13;
}

.hero-float-card span {
  display: block;
  color: #55645d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.hero-float-card-map {
  top: 34px;
  left: 12px;
  animation-delay: 0s;
}

.hero-float-card-check {
  top: 32px;
  right: 0;
  animation-delay: 0.9s;
}

.hero-float-card-wallet {
  left: -6px;
  bottom: 44px;
  width: 178px;
  animation-delay: 1.7s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float-card,
  .reveal-ready,
  .how-section.reveal-ready .section-title,
  .how-section.reveal-ready .how-note,
  .how-section.reveal-ready .how-step,
  .how-section.reveal-ready .how-path-mask-line {
    animation: none;
    transition: none;
  }
}

@media (max-width: 860px) {
  :root {
    --vtc-page-gutter: 40px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .primary-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 46px;
  }

  .hero-copy {
    max-width: 660px;
  }

  .hero-visual {
    min-height: 470px;
    place-items: start center;
  }

  .products-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px 18px;
  }

  .products-search,
  .products-filters,
  .products-table-wrap,
  .products-note {
    grid-column: 1;
  }

  .products-search {
    width: 100%;
  }

  .products-heading h2 {
    font-size: 25px;
  }

  .how-inner {
    padding: 0;
  }

  .how-timeline,
  .how-steps {
    min-height: auto;
  }

  .how-path {
    display: none;
  }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 28px;
  }

  .how-step {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    padding-top: 0;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px 26px;
  }

  .footer-pickup {
    grid-column: span 2;
  }

  .footer-copy {
    margin-top: 0;
  }
}

@media (max-width: 782px) {
  body.admin-bar .cart-drawer {
    top: 46px;
  }
}

@media (max-width: 680px) {
  :root {
    --vtc-page-gutter: 28px;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .header-inner {
    min-height: 66px;
    gap: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 163px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-pill,
  .header-cart {
    min-height: 38px;
    font-size: 12px;
  }

  .header-pill {
    padding: 0 10px;
  }

  .header-login {
    width: 38px;
    padding: 0;
  }

  .header-login span {
    display: none;
  }

  .header-cart {
    width: 38px;
  }

  .account-name {
    display: none;
  }

  .header-account-toggle {
    min-height: 38px;
    padding: 0 9px 0 6px;
  }

  .account-avatar {
    width: 27px;
    height: 27px;
  }

  .account-dropdown {
    right: -44px;
  }

  .auth-modal {
    padding: 14px;
  }

  .auth-dialog {
    max-height: calc(100vh - 28px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .auth-copy {
    padding: 28px 22px;
  }

  .auth-mark {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .auth-copy h2 {
    font-size: 24px;
  }

  .auth-panel {
    padding: 24px 18px 22px;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 34px;
  }

  .hero-title {
    font-size: clamp(38px, 12.3vw, 52px);
  }

  .hero-title-leaf {
    width: 23px;
    height: 23px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-note {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .note-icon {
    width: 43px;
    height: 43px;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    min-height: 410px;
    padding-top: 0;
  }

  .hero-visual-shell {
    width: min(100%, 440px);
  }

  .hero-float-card {
    width: 140px;
    min-height: 96px;
    padding: 11px;
  }

  .hero-float-card svg {
    width: 35px;
    height: 35px;
  }

  .hero-float-card strong {
    font-size: 12px;
  }

  .hero-float-card span {
    font-size: 10.5px;
  }

  .hero-float-card-map {
    top: 12px;
    left: 0;
  }

  .hero-float-card-check {
    top: 12px;
    right: 0;
  }

  .hero-float-card-wallet {
    left: 0;
    bottom: 20px;
    width: 154px;
  }

  .products-section {
    margin: 42px auto 34px;
  }

  .products-panel {
    padding: 22px 14px 16px;
    border-radius: 16px;
  }

  .products-heading h2 {
    font-size: 23px;
  }

  .products-search {
    grid-template-columns: 30px 1fr 34px;
  }

  .products-filters {
    gap: 8px;
    margin: 12px 0 16px;
  }

  .products-filters a {
    min-width: 0;
    height: 28px;
    padding: 0 13px;
    font-size: 11px;
  }

  .products-table {
    min-width: 660px;
  }

  .products-table th,
  .products-table td {
    padding-left: 16px;
    padding-right: 16px;
  }

  .products-note {
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 11px;
    line-height: 1.35;
  }

  .products-cart-summary {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .products-cart-summary div {
    justify-content: space-between;
  }

  .how-section {
    margin: 50px auto 44px;
  }

  .section-title {
    font-size: 31px;
    margin-bottom: 22px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 0;
  }

  .how-icon {
    width: 86px;
    height: 86px;
    margin-bottom: 14px;
  }

  .how-icon svg {
    width: 50px;
    height: 50px;
  }

  .how-step strong {
    font-size: 17px;
  }

  .how-step p {
    max-width: 310px;
    font-size: 14px;
  }

  .how-note {
    margin: 32px 0 0;
    padding: 14px 78px 14px 16px;
  }

  .how-note p {
    font-size: 13px;
  }

  .how-note-leaves {
    right: -20px;
    transform: scale(0.78);
    transform-origin: right bottom;
  }

  .site-footer {
    margin-top: 46px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0 22px;
  }

  .footer-brand,
  .footer-col,
  .footer-pickup {
    min-height: 0;
  }

  .footer-col,
  .footer-pickup {
    padding-left: 0;
    border-left: 0;
  }

  .footer-pickup {
    grid-column: auto;
  }

  .footer-pickup > div {
    grid-template-columns: 1fr 112px;
    min-height: 112px;
    border-radius: 16px;
  }

  .footer-map {
    width: 108px;
    height: 78px;
  }

  .footer-copy {
    text-align: left;
  }
}
