:root {
  --bg: #f7f8f6;
  --ink: #141817;
  --muted: #5f6763;
  --line: #dce3de;
  --panel: #ffffff;
  --graphite: #222927;
  --green: #0b8f66;
  --green-dark: #076247;
  --amber: #d8911f;
  --blue: #2257a5;
  --danger: #c92a2a;
  --danger-soft: #fff1f1;
  --shadow: 0 24px 70px rgba(18, 25, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

body.modal-open {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(247, 248, 246, 0.88);
  border-bottom: 1px solid rgba(220, 227, 222, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.trust-row,
.hero-actions,
.footer,
.commerce-badges,
.checkout-title,
.quantity-row,
.quantity-control,
.whatsapp-float {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand img {
  display: block;
  width: clamp(150px, 18vw, 210px);
  height: auto;
}

.brand-mark,
.card-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.nav {
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.footer a:hover {
  color: var(--green-dark);
}

.nav-cta,
.primary-action,
.secondary-action,
.pay-button {
  border-radius: 8px;
  font-weight: 800;
}

.nav-cta {
  padding: 10px 16px;
  background: var(--graphite);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px) 44px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.hero-subtitle {
  margin: 22px 0 0;
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.primary-action {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 143, 102, 0.22);
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-row a {
  padding: 8px 11px;
  border: 1px solid rgba(11, 143, 102, 0.28);
  border-radius: 8px;
  background: #eaf7f1;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-media {
  min-width: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.product-band {
  background: #ecf1ee;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.product-grid,
.steps-grid,
.credibility-grid,
.checkout-layout,
.path-grid,
.store-layout,
.store-products {
  display: grid;
  gap: 20px;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card,
.checkout,
.path-card,
.store-card,
.cart-panel,
.steps-grid article,
.credibility-grid article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: clamp(22px, 3vw, 34px);
}

.product-card.featured {
  border-color: rgba(11, 143, 102, 0.55);
  box-shadow: 0 18px 52px rgba(11, 143, 102, 0.12);
}

.product-card p,
.checkout-copy p,
.path-card p,
.store-head p,
.store-card p,
.cart-panel p,
.steps-grid p,
.credibility-grid p,
.faq p,
.checkout-note {
  color: var(--muted);
}

.price-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.price-list strong {
  font-size: 1.25rem;
}

.checkout-section {
  background: var(--graphite);
  color: #fff;
}

.path-section {
  background: #fff;
}

.path-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
}

.path-card.featured {
  border-color: rgba(11, 143, 102, 0.55);
  box-shadow: 0 18px 52px rgba(11, 143, 102, 0.12);
}

.path-kicker,
.store-tag {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: start;
}

.checkout-copy {
  max-width: 560px;
  position: sticky;
  top: 100px;
}

.checkout-section .eyebrow {
  color: #8be0c0;
}

.store-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.store-head > div:first-child {
  max-width: 760px;
}

.store-head p {
  margin-bottom: 0;
}

.store-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  align-items: start;
}

.store-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 390px;
  padding: clamp(20px, 3vw, 28px);
  color: var(--ink);
}

.store-card.featured {
  border-color: rgba(11, 143, 102, 0.55);
  box-shadow: 0 18px 52px rgba(11, 143, 102, 0.12);
}

.store-card-head {
  display: grid;
  gap: 8px;
}

.store-card h3 {
  margin-bottom: 0;
}

.store-price {
  margin-top: auto;
  color: var(--green-dark);
  font-size: 1.55rem;
  font-weight: 900;
}

.store-fields {
  display: grid;
  gap: 12px;
}

.field-label {
  display: grid;
  gap: 7px;
  color: #303936;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-label input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  outline: none;
  text-transform: none;
}

.field-label input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 143, 102, 0.12);
}

.field-label.has-error {
  color: var(--danger);
}

.field-label.has-error input {
  border-color: var(--danger);
  background: var(--danger-soft);
  box-shadow: 0 0 0 3px rgba(201, 42, 42, 0.12);
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: none;
}

.field-label.has-error .field-error {
  display: block;
}

.add-cart-button,
.whatsapp-cart-button,
.clear-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.add-cart-button {
  width: 100%;
  border: 0;
  background: var(--green);
  color: #fff;
}

.add-cart-button:hover {
  background: var(--green-dark);
}

.cart-panel {
  position: sticky;
  top: 96px;
  padding: clamp(18px, 3vw, 26px);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cart-list {
  display: grid;
  gap: 12px;
  max-height: 480px;
  overflow: auto;
  padding-right: 4px;
}

.empty-cart {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f8faf8;
}

.empty-cart p {
  margin-bottom: 0;
}

.cart-line {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.cart-line-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-line-title {
  display: grid;
  gap: 3px;
}

.cart-line-title strong {
  line-height: 1.2;
}

.cart-line-title span,
.cart-line-meta,
.line-total span {
  color: var(--muted);
  font-size: 0.88rem;
}

.remove-line {
  align-self: start;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

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

.cart-line .quantity-control {
  flex: 0 0 auto;
}

.line-total {
  text-align: right;
}

.line-total strong {
  display: block;
  color: var(--green-dark);
}

.cart-summary {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.cart-summary div {
  min-height: 82px;
  padding: 14px;
  border-radius: 8px;
  background: #eaf7f1;
  border: 1px solid rgba(11, 143, 102, 0.2);
}

.cart-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.cart-summary strong {
  color: var(--green-dark);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.cart-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.pay-button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.whatsapp-cart-button {
  width: 100%;
  min-height: 56px;
  border: 0;
  background: #1fad5a;
  color: #fff;
}

.whatsapp-cart-button:hover {
  background: #168846;
}

.whatsapp-cart-button.is-disabled {
  pointer-events: none;
  opacity: 0.52;
}

.clear-cart-button {
  width: 100%;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.checkout-copy p {
  font-size: 1.05rem;
}

.commerce-badges {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.commerce-badges span {
  padding: 8px 11px;
  border: 1px solid rgba(139, 224, 192, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #dff8ef;
  font-size: 0.9rem;
  font-weight: 800;
}

.checkout {
  padding: clamp(18px, 3vw, 30px);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.checkout-title {
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.checkout-title span,
.checkout-title small {
  color: var(--muted);
  font-size: 0.86rem;
}

.checkout-title strong {
  display: block;
  font-size: 1.2rem;
}

.checkout-title small {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f0faf6;
  color: var(--green-dark);
  font-weight: 900;
}

fieldset {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

legend,
.company-field span {
  display: block;
  margin-bottom: 10px;
  color: #303936;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.api-note {
  margin: -3px 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.option {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.option:hover,
.option:has(input:checked) {
  border-color: var(--green);
  background: #f0faf6;
}

.option input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.option span {
  display: grid;
  gap: 2px;
}

.option small {
  color: var(--muted);
}

.limit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option.compact {
  margin: 0;
}

.quantity-row {
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.quantity-row strong,
.quantity-row small {
  display: block;
}

.quantity-row small {
  color: var(--muted);
}

.quantity-control {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.quantity-control input {
  width: 58px;
  height: 44px;
  border: 0;
  text-align: center;
  font-weight: 900;
  outline: 0;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.quantity-button {
  width: 44px;
  height: 44px;
  border: 0;
  background: #f4f6f5;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
}

.quantity-button:hover {
  background: #e8f5ef;
  color: var(--green-dark);
}

.company-field {
  display: none;
  margin-bottom: 20px;
}

.company-field.is-visible {
  display: block;
}

.company-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.company-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 143, 102, 0.12);
}

.order-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.order-summary div {
  min-height: 86px;
  padding: 14px;
  border-radius: 8px;
  background: #f4f6f5;
}

.order-summary span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.84rem;
}

.order-summary strong {
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

.order-summary .summary-total {
  grid-column: span 2;
  background: #eaf7f1;
  border: 1px solid rgba(11, 143, 102, 0.2);
}

.summary-total strong {
  color: var(--green-dark);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.pay-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

.pay-button:hover {
  background: var(--green-dark);
}

.checkout-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid article,
.credibility-grid article {
  min-height: 230px;
  padding: 24px;
}

.steps-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--amber);
  font-weight: 900;
}

.credibility {
  background: #fff;
}

.credibility-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.credibility-grid article {
  min-height: 190px;
}

.credibility-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.faq {
  background: #f7f8f6;
}

.faq details {
  max-width: 900px;
  padding: 18px 22px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin-bottom: 0;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--graphite);
  color: #fff;
}

.footer span {
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 20;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1fad5a;
  color: #fff;
  box-shadow: 0 18px 42px rgba(31, 173, 90, 0.34);
}

.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  background: #168846;
}

.mobile-cart-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(220, 227, 222, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(18, 25, 22, 0.16);
  backdrop-filter: blur(18px);
}

.mobile-cart-summary {
  flex: 1;
  display: grid;
  gap: 1px;
  min-width: 0;
}

.mobile-cart-summary span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.mobile-cart-summary strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.mobile-cart-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 48px;
  border-radius: 8px;
  background: #1fad5a;
  color: #fff;
  font-weight: 900;
}

.mobile-cart-cta.is-disabled {
  pointer-events: none;
  opacity: 0.48;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 23, 0.62);
  backdrop-filter: blur(10px);
}

.lead-form {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
}

.lead-form h2 {
  margin-bottom: 12px;
  padding-right: 32px;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.lead-copy {
  margin-top: 0;
  color: var(--muted);
}

.lead-field {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: #303936;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  outline: none;
  text-transform: none;
}

.lead-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 143, 102, 0.12);
}

.lead-field input:user-invalid,
.lead-field.has-error input {
  border-color: var(--danger);
  background: var(--danger-soft);
}

.lead-error {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.lead-submit:hover {
  background: var(--green-dark);
}

.lead-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

@media (max-width: 880px) {
  .nav {
    display: none;
  }

  .hero,
  .checkout-layout,
  .product-grid,
  .path-grid,
  .store-layout,
  .store-products,
  .steps-grid,
  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    max-width: none;
  }

  .checkout-copy {
    position: static;
  }

  .store-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 86px;
  }

  .topbar {
    gap: 10px;
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand img {
    width: 154px;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero {
    padding: 28px 16px 40px;
  }

  h1 {
    font-size: clamp(2.05rem, 12vw, 3.1rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.6rem, 9vw, 2.25rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    min-height: 52px;
  }

  .section {
    padding: 46px 16px;
  }

  .hero-media img {
    aspect-ratio: 1 / 0.9;
  }

  .path-card,
  .store-card,
  .cart-panel,
  .product-card,
  .steps-grid article,
  .credibility-grid article,
  .faq details {
    padding: 18px;
  }

  .store-card {
    min-height: 0;
  }

  .store-price {
    font-size: 1.4rem;
  }

  .limit-grid,
  .order-summary {
    grid-template-columns: 1fr;
  }

  .quantity-row {
    align-items: stretch;
    flex-direction: column;
  }

  .quantity-control {
    width: 100%;
    justify-content: space-between;
  }

  .quantity-control input {
    flex: 1;
  }

  .order-summary .summary-total {
    grid-column: auto;
  }

  .cart-line-bottom,
  .cart-line-top {
    align-items: stretch;
    flex-direction: column;
  }

  .line-total {
    text-align: left;
  }

  .cart-summary {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cart-bar {
    display: flex;
  }

  .product-card {
    min-height: 0;
  }

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
