:root {
  --flow-ink: var(--ink, #201816);
  --flow-navy: var(--wine-dark, #3d121d);
  --flow-blue: var(--wine, #76263b);
  --flow-link: var(--wine-dark, #3d121d);
  --flow-green: var(--green, #3f5f4b);
  --flow-valid: var(--green, #3f5f4b);
  --flow-beige: var(--paper, #fff8ef);
  --flow-pink: #f6eaec;
  --flow-line: var(--line, #e7d8c8);
  --flow-soft-line: var(--line, #e7d8c8);
  --flow-muted: var(--muted, #675b55);
  --flow-white: var(--surface, #ffffff);
  --flow-input-valid: #f1f7ee;
  --flow-card-shadow: 0 18px 38px rgba(32, 24, 22, 0.08);
}

.vegavin-commerce-flow {
  padding-bottom: 0;
  background: var(--flow-beige);
  color: var(--flow-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.vegavin-commerce-flow > .top-promise,
.vegavin-commerce-flow > .site-header {
  display: none;
}

.checkout-flow-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--flow-line);
  background: var(--flow-white);
}

.checkout-flow-header__inner {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  width: min(1200px, calc(100% - 32px));
  min-height: clamp(112px, 10vw, 144px);
  margin-inline: auto;
}

.checkout-flow-header__back {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  gap: 0.45rem;
  color: var(--flow-ink);
  font-size: 1rem;
  text-decoration: none;
}

.checkout-flow-header__back svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.checkout-flow-header__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 0;
  text-decoration: none;
}

.checkout-flow-header__brand img {
  width: clamp(240px, 19vw, 285px);
  height: auto;
  max-width: 44vw;
  object-fit: contain;
}

.checkout-flow-header__spacer {
  display: block;
}

.checkout-flow-header.is-cart {
  border-bottom: 1px solid var(--flow-line);
  background: var(--flow-white);
}

.checkout-flow-header.is-cart .checkout-flow-header__inner {
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  min-height: clamp(112px, 10vw, 144px);
}

.checkout-flow-header.is-cart .checkout-flow-header__back {
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: var(--flow-blue);
  color: #fff;
  font-size: 1rem;
}

.checkout-flow-header.is-cart .checkout-flow-header__back:hover,
.checkout-flow-header.is-cart .checkout-flow-header__back:focus-visible {
  background: #5f1f31;
  color: #fff;
}

.checkout-flow-header.is-cart .checkout-flow-header__brand {
  display: inline-flex;
}

.checkout-flow-header.is-cart .checkout-flow-header__spacer {
  display: block;
}

.vegavin-commerce-flow .commerce-page {
  padding: 0 0 4rem;
  background: #fff;
}

.vegavin-commerce-flow .commerce-page > .section-inner {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.vegavin-commerce-checkout .commerce-page > .section-inner,
.vegavin-commerce-confirmation .commerce-page > .section-inner {
  width: min(1180px, calc(100% - 32px));
}

.vegavin-commerce-flow h1,
.vegavin-commerce-flow h2,
.vegavin-commerce-flow h3,
.vegavin-commerce-flow h4 {
  max-width: none;
  color: var(--flow-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.18;
}

.vegavin-commerce-flow h1 {
  font-size: clamp(2rem, 5vw, 2.65rem);
}

.vegavin-commerce-flow h2 {
  font-size: clamp(1.6rem, 4vw, 2rem);
}

.vegavin-commerce-flow a {
  color: var(--flow-link);
}

.vegavin-commerce-flow .woocommerce-notices-wrapper {
  margin-top: 1.2rem;
}

.vegavin-commerce-flow .woocommerce-message,
.vegavin-commerce-flow .woocommerce-info,
.vegavin-commerce-flow .woocommerce-error {
  border: 1px solid var(--flow-line);
  border-top: 0;
  padding: 1rem 1rem 1rem 4.2rem;
}

.vegavin-commerce-flow .woocommerce-message {
  border-color: #b8d9c1;
  background: #cef0d8;
  color: #207d3d;
}

.vegavin-commerce-flow .woocommerce-info {
  border-color: #dccaa9;
  background: #fff8ef;
  color: #5c4a2f;
}

.vegavin-commerce-flow .woocommerce-error {
  border-color: #e0aaa8;
  background: #fff1f0;
  color: #842029;
}

.vegavin-commerce-flow .woocommerce-message::before,
.vegavin-commerce-flow .woocommerce-info::before,
.vegavin-commerce-flow .woocommerce-error::before {
  display: grid;
  width: 42px;
  height: 100%;
  place-items: center;
  top: 0;
  left: 0;
  color: #fff;
}

.vegavin-commerce-flow .woocommerce-message::before {
  background: var(--flow-green);
}

.vegavin-commerce-flow .woocommerce-info::before {
  background: var(--brass, #b88948);
}

.vegavin-commerce-flow .woocommerce-error::before {
  background: #b22b2b;
}

/* Empty cart recovery block. */
.vegavin-empty-cart {
  display: grid;
  gap: 0.65rem;
  justify-items: start;
  border: 1px solid var(--flow-line);
  border-radius: 12px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--flow-white);
  box-shadow: 0 12px 30px rgba(48, 24, 17, 0.06);
}

.vegavin-empty-cart h2 {
  margin: 0;
  color: var(--flow-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
}

.vegavin-empty-cart p {
  margin: 0;
  max-width: 56ch;
  color: var(--flow-muted);
}

.vegavin-empty-cart__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.vegavin-empty-cart__actions .button {
  justify-content: center;
}

.vegavin-empty-cart__help a {
  color: var(--flow-link);
}

@media (max-width: 560px) {
  .vegavin-empty-cart__actions {
    width: 100%;
  }

  .vegavin-empty-cart__actions .button {
    flex: 1 1 100%;
  }
}

.vegavin-cart-intro {
  padding: clamp(1rem, 2.5vw, 1.6rem) 0 1rem;
}

.vegavin-cart-intro__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.vegavin-cart-intro__heading h2 {
  margin: 0;
  font-size: 1.7rem;
}

.vegavin-cart-intro__heading > span {
  color: #70767a;
  font-weight: 700;
}

.vegavin-cart-intro__help {
  max-width: 56ch;
  margin: 0.65rem 0 0;
  color: var(--flow-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.vegavin-commerce-route-help {
  max-width: 62ch;
  margin: -0.35rem 0 1.25rem;
  color: var(--flow-muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

.vegavin-shipping-progress {
  margin-top: 1.2rem;
}

.vegavin-shipping-progress p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
}

.vegavin-shipping-progress svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #59646a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.vegavin-shipping-progress__track {
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  background: #f3f3f3;
}

.vegavin-shipping-progress__track > span {
  display: block;
  height: 100%;
  background: var(--flow-blue);
}

.vegavin-commerce-cart .woocommerce-cart-form {
  margin-top: 0.25rem;
}

.vegavin-commerce-cart table.shop_table {
  border: 0;
  border-collapse: collapse;
  border-radius: 0;
  background: #fff;
}

.vegavin-commerce-cart table.shop_table th {
  padding: 0.8rem;
  color: var(--flow-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.vegavin-commerce-cart table.shop_table td {
  border-top: 1px solid #ececec;
  padding: 1rem 0.8rem;
}

.vegavin-commerce-cart .product-thumbnail img {
  width: 90px;
  height: 110px;
  object-fit: contain;
  background: #f5f5f5;
}

.vegavin-commerce-cart .product-name a {
  color: var(--flow-ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.vegavin-commerce-cart .product-remove a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 0;
  color: #5f696e !important;
  font-size: 1.6rem;
  text-decoration: none;
}

.vegavin-commerce-flow form .quantity {
  display: grid;
  grid-template-columns: 46px minmax(56px, 84px) 46px;
  width: fit-content;
  min-height: 54px;
}

.vegavin-commerce-flow form .quantity .qty,
.vegavin-flow-qty-button {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  border: 1px solid #222;
  border-radius: 0;
  background: #fff;
  color: var(--flow-ink);
  font: inherit;
  font-size: 1.12rem;
  text-align: center;
}

.vegavin-commerce-flow form .quantity .qty {
  border-right: 0;
  border-left: 0;
  appearance: textfield;
}

.vegavin-commerce-flow form .quantity .qty::-webkit-inner-spin-button,
.vegavin-commerce-flow form .quantity .qty::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.vegavin-flow-qty-button {
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.vegavin-commerce-cart .actions {
  padding: 1.2rem 0 !important;
}

.vegavin-commerce-cart .coupon {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 92px;
  width: min(100%, 560px);
}

.vegavin-commerce-cart .coupon label {
  display: none;
}

.vegavin-commerce-cart .coupon .input-text {
  width: 100% !important;
  min-height: 58px;
  border: 1px solid #aeb0b2;
  border-radius: 0;
  padding: 0.8rem 1rem;
  font: inherit;
}

.vegavin-commerce-cart .coupon .button {
  position: relative;
  min-height: 58px;
  border: 0;
  border-radius: 0;
  background: var(--flow-blue);
  color: #fff;
  font-size: 0;
}

.vegavin-commerce-cart .coupon .button::after {
  content: "✓";
  font-size: 2rem;
  font-weight: 400;
}

.vegavin-commerce-cart button[name="update_cart"] {
  min-height: 48px;
  border-radius: 0;
}

.vegavin-commerce-cart .cart-collaterals {
  margin-top: 1rem;
}

.vegavin-commerce-cart .cart_totals {
  float: none;
  width: 100%;
  margin-left: auto;
}

.vegavin-commerce-cart .cart_totals h2 {
  font-size: 1.35rem;
}

.vegavin-commerce-cart .cart_totals table {
  margin-left: auto;
}

.vegavin-commerce-cart .wc-proceed-to-checkout {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

.vegavin-commerce-flow .wc-proceed-to-checkout .button,
.vegavin-checkout-navigation .button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--flow-green);
  border-radius: 0;
  padding: 0.85rem 1.2rem;
  background: var(--flow-green);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.vegavin-commerce-checkout #place_order {
  border-color: var(--flow-blue);
  background: var(--flow-blue);
}

.vegavin-commerce-checkout #place_order:hover,
.vegavin-commerce-checkout #place_order:focus-visible {
  border-color: var(--flow-navy);
  background: var(--flow-navy);
}

.vegavin-commerce-flow .wc-proceed-to-checkout .vegavin-continue-shopping,
.vegavin-checkout-navigation .vegavin-checkout-back {
  border-color: var(--flow-blue);
  background: var(--flow-blue);
  color: #fff;
}

.vegavin-checkout-intro {
  margin-inline: 0;
  background: var(--flow-beige);
}

.vegavin-checkout-intro__heading,
.vegavin-checkout-trust,
.vegavin-order-summary-toggle {
  width: min(760px, calc(100% - 32px));
  margin-inline: auto;
}

.vegavin-checkout-intro__heading {
  display: grid;
  gap: 0.6rem;
  padding: clamp(1rem, 2.4vw, 1.45rem) 0 0.25rem;
}

.vegavin-checkout-intro__heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
}

.vegavin-checkout-intro__heading p {
  margin: 0;
  color: var(--flow-muted);
}

.vegavin-checkout-intro__help {
  font-weight: 700;
}

.vegavin-checkout-trust {
  display: grid;
  grid-template-columns: 34px auto 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0 0.45rem;
}

.vegavin-checkout-trust__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--flow-navy);
  color: #fff;
}

.vegavin-checkout-trust__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.vegavin-checkout-trust > span:last-child {
  color: var(--flow-muted);
  font-size: 0.88rem;
}

.vegavin-order-summary-toggle {
  display: grid;
  grid-template-columns: 1fr auto 24px;
  align-items: center;
  gap: 0.8rem;
  min-height: 64px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--flow-ink);
  font: inherit;
  font-size: 1.05rem;
  text-align: left;
  cursor: pointer;
}

.vegavin-order-summary-toggle strong {
  color: var(--flow-blue);
  font-size: 1.2rem;
}

.vegavin-order-summary-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.2s ease;
}

.vegavin-order-summary-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.vegavin-checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 1.8rem;
  border-bottom: 3px solid #f2f2f2;
}

.vegavin-checkout-step {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.8rem 0.25rem;
  color: #222;
  font-size: 0.9rem;
  text-align: center;
  text-transform: uppercase;
}

.vegavin-checkout-step svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--flow-valid);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.vegavin-checkout-step.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 3px;
  background: var(--flow-blue);
}

.vegavin-commerce-checkout form.checkout {
  display: block;
  margin-top: 0;
}

.vegavin-commerce-checkout form.checkout h3,
.vegavin-commerce-checkout .woocommerce-billing-fields > h3,
.vegavin-commerce-checkout .woocommerce-shipping-fields > h3,
.vegavin-commerce-checkout #order_review_heading {
  margin: 0 0 1.6rem;
  font-size: 1.55rem;
}

.vegavin-commerce-checkout form.checkout .col2-set,
.vegavin-commerce-checkout form.checkout .col-1,
.vegavin-commerce-checkout form.checkout .col-2 {
  float: none;
  width: 100%;
}

.vegavin-commerce-checkout form.checkout .col-2 {
  margin-top: 2rem;
}

.vegavin-commerce-checkout .woocommerce-billing-fields__field-wrapper,
.vegavin-commerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 0.75rem;
}

.vegavin-commerce-checkout .form-row {
  position: relative;
  float: none;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
}

.vegavin-commerce-checkout .form-row-wide,
.vegavin-commerce-checkout #billing_address_1_field,
.vegavin-commerce-checkout #shipping_address_1_field,
.vegavin-commerce-checkout #billing_email_field,
.vegavin-commerce-checkout #order_comments_field {
  grid-column: 1 / -1;
}

.vegavin-commerce-checkout .form-row label {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--flow-ink);
  font-size: 0.94rem;
}

.vegavin-commerce-checkout .form-row input.input-text,
.vegavin-commerce-checkout .form-row textarea,
.vegavin-commerce-checkout .form-row select,
.vegavin-commerce-checkout .select2-container .select2-selection--single {
  width: 100%;
  min-height: 60px;
  border: 1px solid #858585;
  border-radius: 0;
  padding: 0.8rem 0.95rem;
  background: #fff;
  color: var(--flow-ink);
  font: inherit;
  box-shadow: none;
}

.vegavin-commerce-checkout .form-row textarea {
  min-height: 120px;
}

.vegavin-commerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 32px;
}

.vegavin-commerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
  top: 17px;
  right: 10px;
}

.vegavin-commerce-checkout .form-row.is-valid input.input-text,
.vegavin-commerce-checkout .form-row.is-valid select,
.vegavin-commerce-checkout .form-row.is-valid .select2-selection--single {
  border-color: var(--flow-valid);
  background: var(--flow-input-valid);
}

.vegavin-commerce-checkout .form-row.is-valid::after {
  content: "✓";
  position: absolute;
  top: 31px;
  right: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--flow-valid);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  pointer-events: none;
}

.vegavin-commerce-checkout .woocommerce-invalid input.input-text,
.vegavin-commerce-checkout .woocommerce-invalid select,
.vegavin-commerce-checkout .woocommerce-invalid .select2-selection--single {
  border-color: #b22b2b;
}

.vegavin-checkout-navigation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 2rem 0 3rem;
}

.vegavin-commerce-checkout #order_review_heading {
  padding-top: 1rem;
}

.vegavin-commerce-checkout .woocommerce-checkout-review-order-table {
  border: 1px solid #c7c7c7;
  border-collapse: collapse;
  border-radius: 0;
}

.vegavin-commerce-checkout .woocommerce-checkout-review-order-table th,
.vegavin-commerce-checkout .woocommerce-checkout-review-order-table td {
  border-top: 1px solid #e2e2e2;
  padding: 0.9rem;
}

.vegavin-commerce-checkout #shipping_method,
.vegavin-commerce-checkout #payment ul.payment_methods {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vegavin-commerce-checkout #shipping_method li,
.vegavin-commerce-checkout #payment ul.payment_methods > li {
  position: relative;
  margin: 0;
  border: 1px solid #bebebe;
  border-bottom: 0;
  padding: 1.2rem 1rem;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.vegavin-commerce-checkout #shipping_method li:last-child,
.vegavin-commerce-checkout #payment ul.payment_methods > li:last-child {
  border-bottom: 1px solid #bebebe;
}

.vegavin-commerce-checkout #shipping_method label,
.vegavin-commerce-checkout #payment ul.payment_methods > li > label {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.vegavin-commerce-checkout #shipping_method li:hover,
.vegavin-commerce-checkout #payment ul.payment_methods > li:hover,
.vegavin-commerce-checkout .wc-block-components-radio-control__option:hover,
.vegavin-commerce-checkout .wc-block-components-radio-control-accordion-option:hover {
  border-color: var(--flow-navy);
}

.vegavin-commerce-checkout #shipping_method li.is-selected,
.vegavin-commerce-checkout #payment ul.payment_methods > li.is-selected,
.vegavin-commerce-checkout .wc-block-components-radio-control__option.is-selected,
.vegavin-commerce-checkout .wc-block-components-radio-control-accordion-option.is-selected {
  border-color: var(--flow-navy);
  background: var(--flow-beige);
  box-shadow: inset 0 0 0 1px var(--flow-navy);
}

.vegavin-commerce-checkout input[type="radio"],
.vegavin-commerce-checkout input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--flow-navy);
}

.vegavin-commerce-checkout #payment {
  border-radius: 0;
  background: #fff;
}

.vegavin-commerce-checkout .wc-block-components-radio-control__option,
.vegavin-commerce-checkout .wc-block-components-radio-control-accordion-option {
  position: relative;
  margin: 0 0 0.9rem;
  border: 1px solid #bebebe;
  padding: 1rem;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.vegavin-commerce-checkout .wc-block-components-radio-control__option:last-child,
.vegavin-commerce-checkout .wc-block-components-radio-control-accordion-option:last-child {
  margin-bottom: 0;
}

.vegavin-commerce-checkout .wc-block-components-radio-control__option-layout,
.vegavin-commerce-checkout .wc-block-components-radio-control-accordion-option {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.vegavin-commerce-checkout .wc-block-components-radio-control__label-group,
.vegavin-commerce-checkout .wc-block-components-radio-control__description-group {
  display: grid;
  gap: 0.25rem;
  flex: 1 1 auto;
}

.vegavin-commerce-checkout .wc-block-components-radio-control__label-group label,
.vegavin-commerce-checkout .wc-block-components-radio-control__option .wc-block-components-radio-control__label,
.vegavin-commerce-checkout .wc-block-components-radio-control-accordion-option label {
  color: var(--flow-ink);
  font-size: 1rem;
  font-weight: 700;
}

.vegavin-commerce-checkout .wc-block-components-radio-control__description,
.vegavin-commerce-checkout .wc-block-components-radio-control__secondary-option-description,
.vegavin-commerce-checkout .wc-block-components-radio-control__help,
.vegavin-commerce-checkout .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__description {
  color: var(--flow-muted);
  font-size: 0.92rem;
}

.vegavin-commerce-checkout .wc-block-checkout__payment-method .wc-block-components-notice-banner.is-error,
.vegavin-commerce-checkout .wc-block-checkout__shipping-method .wc-block-components-notice-banner.is-error {
  border: 1px solid #d7b7b7;
  border-radius: 0;
  padding: 1rem 1rem 1rem 1.25rem;
  background: #fff4f4;
  color: #6f2525;
}

.vegavin-commerce-checkout .wc-block-checkout__payment-method.is-empty .wc-block-components-checkout-step__content,
.vegavin-commerce-checkout .wc-block-checkout__shipping-method.is-empty .wc-block-components-checkout-step__content {
  padding-bottom: 0.2rem;
}

.vegavin-commerce-checkout #payment div.payment_box {
  margin: 1rem 0 0;
  background: var(--flow-beige);
  color: var(--flow-ink);
}

.vegavin-commerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--flow-beige);
}

.vegavin-commerce-checkout .order-total .amount,
.vegavin-commerce-checkout .wc-block-components-order-summary .wc-block-components-formatted-money-amount,
.vegavin-commerce-checkout .wc-block-components-totals-item__value {
  color: var(--flow-blue);
  font-weight: 700;
}

.vegavin-commerce-checkout #payment .place-order {
  padding: 1.4rem 0 0;
}

.vegavin-commerce-checkout #place_order {
  float: none;
  width: 100%;
}

.vegavin-commerce-cart .wp-block-woocommerce-cart,
.vegavin-commerce-checkout .wp-block-woocommerce-checkout {
  margin-top: 1.25rem;
}

.vegavin-commerce-cart .wc-block-components-button,
.vegavin-commerce-cart .wc-block-cart__submit-button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--flow-green);
  border-radius: 0;
  padding: 0.85rem 1.2rem;
  background: var(--flow-green);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.vegavin-commerce-cart .wc-block-components-button,
.vegavin-commerce-cart .wc-block-cart__submit-button {
  border: 1px solid var(--flow-green);
  background: var(--flow-green);
}

.vegavin-commerce-checkout .wc-block-components-button,
.vegavin-commerce-checkout .wc-block-components-checkout-place-order-button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid var(--flow-blue);
  border-radius: 0;
  padding: 0.85rem 1.2rem;
  background: var(--flow-blue);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.vegavin-commerce-checkout .wc-block-components-button:hover,
.vegavin-commerce-checkout .wc-block-components-button:focus-visible,
.vegavin-commerce-checkout .wc-block-components-checkout-place-order-button:hover,
.vegavin-commerce-checkout .wc-block-components-checkout-place-order-button:focus-visible {
  border-color: var(--flow-navy);
  background: var(--flow-navy);
}

.vegavin-commerce-cart .wc-block-cart__submit-button,
.vegavin-commerce-checkout .wc-block-components-checkout-place-order-button {
  width: 100%;
}

.vegavin-commerce-cart .wc-block-components-product-button__button.add_to_cart_button {
  border-color: var(--flow-green);
  background: var(--flow-green);
  color: #fff;
}

.vegavin-commerce-cart .wc-block-components-product-button__button.add_to_cart_button:hover,
.vegavin-commerce-cart .wc-block-components-product-button__button.add_to_cart_button:focus-visible {
  border-color: #314a39;
  background: #314a39;
  color: #fff;
}

.vegavin-commerce-cart .wc-block-components-product-button__button:not(.add_to_cart_button) {
  border-color: var(--flow-blue);
  background: transparent;
  color: var(--flow-blue);
}

.vegavin-commerce-cart .wc-block-components-title,
.vegavin-commerce-checkout .wc-block-components-title,
.vegavin-commerce-checkout .wc-block-components-checkout-step__heading h2 {
  color: var(--flow-ink);
  font-family: Arial, Helvetica, sans-serif;
}

.vegavin-commerce-checkout .wc-block-components-order-summary,
.vegavin-commerce-cart .wc-block-cart__totals-title,
.vegavin-commerce-cart .wc-block-cart__submit {
  margin-top: 1rem;
}

.vegavin-commerce-checkout .wc-block-components-text-input input,
.vegavin-commerce-checkout .wc-block-components-text-input select,
.vegavin-commerce-checkout .wc-block-components-combobox-control input,
.vegavin-commerce-checkout .wc-block-components-address-form__address_2-toggle {
  width: 100%;
  min-height: 60px;
  border: 1px solid #858585;
  border-radius: 0;
  padding: 0.8rem 0.95rem;
  background: #fff;
  color: var(--flow-ink);
  font: inherit;
  box-shadow: none;
}

.vegavin-commerce-checkout .wc-block-components-checkout-step,
.vegavin-commerce-checkout .wc-block-components-checkout-step__container {
  margin-bottom: 1.6rem;
}

.vegavin-commerce-cart .wc-block-components-product-name,
.vegavin-commerce-checkout .wc-block-components-product-name {
  color: var(--flow-ink);
  font-weight: 700;
  text-decoration: none;
}

.vegavin-commerce-cart .wc-block-woocommerce-cart,
.vegavin-commerce-checkout .wc-block-woocommerce-checkout {
  column-gap: clamp(1.4rem, 2.6vw, 2.6rem);
}

.vegavin-commerce-cart .wc-block-cart__main,
.vegavin-commerce-checkout .wc-block-checkout__main {
  min-width: 0;
}

.vegavin-commerce-cart .wc-block-cart__sidebar,
.vegavin-commerce-checkout .wc-block-checkout__sidebar {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  min-width: 0;
  border: 1px solid var(--flow-line);
  background: var(--flow-white);
  box-shadow: var(--flow-card-shadow);
}

.vegavin-commerce-cart .wc-block-cart__sidebar {
  padding: 1.15rem 1.15rem 1.25rem;
}

.vegavin-commerce-checkout .wc-block-checkout__sidebar {
  padding: 1.2rem 1.2rem 1.3rem;
}

.vegavin-commerce-cart .wc-block-cart-items,
.vegavin-commerce-checkout .wc-block-components-checkout-step {
  border: 1px solid var(--flow-line);
  background: var(--flow-white);
  box-shadow: var(--flow-card-shadow);
}

.vegavin-commerce-cart .wc-block-cart-items {
  padding: 0 1.25rem;
}

.vegavin-commerce-checkout .wc-block-components-checkout-step {
  padding: 1.35rem 1.25rem;
}

.vegavin-commerce-checkout .wc-block-components-checkout-step__heading {
  margin-bottom: 1rem;
}

.vegavin-commerce-cart .wc-block-cart-items__header {
  margin: 0;
  padding: 1rem 0 0.9rem;
  border-bottom: 1px solid var(--flow-line);
}

.vegavin-commerce-cart .wc-block-cart-items__row {
  align-items: start;
  padding: 1.3rem 0;
  border-top: 1px solid var(--flow-line);
}

.vegavin-commerce-cart .wc-block-cart-items__row:first-child {
  border-top: 0;
}

.vegavin-commerce-cart .wc-block-cart-item__image img {
  width: 108px;
  height: 132px;
  border: 1px solid rgba(118, 38, 59, 0.12);
  background: #fff;
  object-fit: contain;
}

.vegavin-commerce-cart .wc-block-cart-item__wrap,
.vegavin-commerce-checkout .wc-block-components-order-summary-item {
  display: grid;
  gap: 0.65rem;
}

.vegavin-commerce-cart .wc-block-components-product-name,
.vegavin-commerce-checkout .wc-block-components-product-name {
  font-size: 1.08rem;
  line-height: 1.35;
}

.vegavin-commerce-cart .wc-block-cart-item__prices .price,
.vegavin-commerce-checkout .wc-block-components-order-summary-item__individual-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: baseline;
  color: var(--flow-ink);
}

.vegavin-commerce-cart .wc-block-cart-item__prices ins,
.vegavin-commerce-checkout .wc-block-components-order-summary-item__individual-prices ins,
.vegavin-commerce-checkout .wc-block-components-order-summary-item__individual-prices .wc-block-components-product-price__value {
  color: var(--flow-blue);
  font-weight: 700;
  text-decoration: none;
}

.vegavin-commerce-cart .wc-block-cart-item__prices del,
.vegavin-commerce-checkout .wc-block-components-order-summary-item__individual-prices del {
  color: var(--flow-muted);
}

.vegavin-commerce-cart .wc-block-components-product-metadata,
.vegavin-commerce-checkout .wc-block-components-order-summary-item__description {
  color: var(--flow-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.vegavin-commerce-cart .wc-block-components-product-metadata p,
.vegavin-commerce-checkout .wc-block-components-order-summary-item__description p {
  margin: 0;
}

.vegavin-commerce-cart .wc-block-components-product-details,
.vegavin-commerce-checkout .wc-block-components-product-details {
  display: grid;
  gap: 0.25rem;
  color: var(--flow-muted);
  font-size: 0.9rem;
}

.vegavin-commerce-cart .wc-block-components-product-details__name,
.vegavin-commerce-checkout .wc-block-components-product-details__name {
  color: var(--flow-ink);
  font-weight: 700;
}

.vegavin-commerce-cart .wc-block-cart-item__total,
.vegavin-commerce-checkout .wc-block-components-order-summary-item__total-price {
  color: var(--flow-blue);
  font-weight: 700;
}

.vegavin-commerce-cart .wc-block-cart__sidebar > *,
.vegavin-commerce-checkout .wc-block-checkout__sidebar > * {
  margin-top: 0;
}

.vegavin-commerce-cart .wc-block-cart__sidebar > * + *,
.vegavin-commerce-checkout .wc-block-checkout__sidebar > * + * {
  margin-top: 0.9rem;
}

.vegavin-commerce-cart .wc-block-cart__totals-title,
.vegavin-commerce-checkout .wc-block-components-order-summary__title {
  margin: 0;
  color: var(--flow-ink);
  font-size: 1.55rem;
}

.vegavin-commerce-cart .wc-block-components-totals-wrapper,
.vegavin-commerce-checkout .wc-block-components-totals-wrapper {
  padding: 0.95rem 0;
  border-top: 1px solid var(--flow-line);
}

.vegavin-commerce-cart .wc-block-components-totals-wrapper:first-child,
.vegavin-commerce-checkout .wc-block-components-totals-wrapper:first-child {
  border-top: 0;
  padding-top: 0;
}

.vegavin-commerce-cart .wc-block-components-totals-coupon,
.vegavin-commerce-checkout .wc-block-components-totals-coupon {
  padding: 0;
  border-top: 1px solid var(--flow-line);
}

.vegavin-commerce-cart .wc-block-components-totals-coupon summary,
.vegavin-commerce-checkout .wc-block-components-totals-coupon summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  font-weight: 700;
}

.vegavin-commerce-cart .wc-block-cart__submit,
.vegavin-commerce-checkout .wp-block-woocommerce-checkout-order-summary-totals-block {
  border-top: 1px solid var(--flow-line);
  padding-top: 1rem;
}

.vegavin-commerce-checkout .wc-block-components-order-summary {
  margin-top: 0;
}

.vegavin-commerce-checkout .wc-block-components-order-summary-item {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(231, 216, 200, 0.7);
}

.vegavin-commerce-checkout .wc-block-components-order-summary-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.vegavin-commerce-checkout .wc-block-components-order-summary-item img {
  width: 72px;
  height: 92px;
  border: 1px solid rgba(118, 38, 59, 0.12);
  background: #fff;
  object-fit: contain;
}

.vegavin-commerce-checkout .wc-block-components-checkout-step__heading h2,
.vegavin-commerce-checkout .wc-block-components-order-summary__title {
  font-size: 1.55rem;
}

.vegavin-commerce-checkout .wc-block-components-formatted-money-amount,
.vegavin-commerce-cart .wc-block-formatted-money-amount {
  font-weight: 700;
}

.vegavin-commerce-checkout .wc-block-components-text-input input:focus,
.vegavin-commerce-checkout .wc-block-components-text-input select:focus,
.vegavin-commerce-checkout .wc-block-components-combobox-control input:focus,
.vegavin-commerce-checkout .wc-block-components-address-form__address_2-toggle:focus,
.vegavin-commerce-checkout .form-row input.input-text:focus,
.vegavin-commerce-checkout .form-row textarea:focus,
.vegavin-commerce-checkout .form-row select:focus {
  border-color: var(--flow-blue);
  box-shadow: 0 0 0 3px rgba(118, 38, 59, 0.12);
  outline: 0;
}

.vegavin-commerce-checkout .wc-block-components-radio-control__option:focus-within,
.vegavin-commerce-checkout .wc-block-components-radio-control-accordion-option:focus-within,
.vegavin-commerce-checkout #shipping_method li:focus-within,
.vegavin-commerce-checkout #payment ul.payment_methods > li:focus-within {
  border-color: var(--flow-blue);
  box-shadow: inset 0 0 0 1px var(--flow-blue), 0 0 0 3px rgba(118, 38, 59, 0.1);
}

.vegavin-commerce-checkout .woocommerce-terms-and-conditions-wrapper {
  display: grid;
  gap: 0.8rem;
  margin: 1.1rem 0 0.95rem;
  padding: 1rem 1rem 0.9rem;
  border: 1px solid rgba(118, 38, 59, 0.18);
  background: rgba(255, 248, 239, 0.84);
  box-shadow: 0 12px 26px rgba(48, 24, 17, 0.05);
}

.vegavin-commerce-checkout .woocommerce-terms-and-conditions-wrapper .form-row.terms {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.vegavin-commerce-checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.78rem;
  align-items: start;
  margin: 0;
  color: var(--flow-ink);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.52;
  cursor: pointer;
}

.vegavin-commerce-checkout .woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
  margin: 0.16rem 0 0;
}

.vegavin-commerce-checkout .woocommerce-terms-and-conditions-wrapper a {
  color: var(--flow-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  text-decoration-thickness: 0.08em;
}

.vegavin-commerce-checkout .woocommerce-terms-and-conditions-wrapper .required {
  color: var(--flow-blue);
  font-weight: 700;
}

.vegavin-commerce-checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-invalid-required-field {
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(118, 38, 59, 0.24);
  background: rgba(118, 38, 59, 0.06);
}

.vegavin-commerce-checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
  margin: 0;
  color: var(--flow-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.vegavin-commerce-checkout .woocommerce-form-login,
.vegavin-commerce-checkout .checkout_coupon {
  border: 1px solid var(--flow-line);
  border-radius: 0;
}

.vegavin-commerce-faq {
  margin-top: 4rem;
  margin-inline: 0;
  background: var(--flow-beige);
}

.vegavin-commerce-faq__inner {
  width: min(760px, calc(100% - 32px));
  margin-inline: auto;
  padding: 3.2rem 0 2.8rem;
}

.vegavin-commerce-faq h2 {
  margin: 0 0 2rem;
  text-align: center;
}

.vegavin-commerce-faq details {
  border-top: 1px solid var(--flow-soft-line);
}

.vegavin-commerce-faq details:last-of-type {
  border-bottom: 1px solid var(--flow-soft-line);
}

.vegavin-commerce-faq summary {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  padding-right: 2.5rem;
  color: var(--flow-ink);
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}

.vegavin-commerce-faq summary::-webkit-details-marker {
  display: none;
}

.vegavin-commerce-faq summary::after {
  content: "⌄";
  position: absolute;
  right: 0.35rem;
  color: #536065;
  font-size: 1.4rem;
}

.vegavin-commerce-faq details[open] summary::after {
  transform: rotate(180deg);
}

.vegavin-commerce-faq details > div {
  padding: 0 0 1.4rem;
  color: var(--flow-muted);
}

.vegavin-commerce-faq details p {
  margin: 0;
}

.vegavin-commerce-methods-note {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.vegavin-commerce-methods-note p {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1rem;
  margin: 0;
}

.vegavin-commerce-methods-note span {
  color: var(--flow-muted);
}

.vegavin-commerce-reviews {
  margin-inline: 0;
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
  background: #fff;
}

.vegavin-commerce-reviews .section-inner {
  width: min(760px, calc(100% - 32px));
}

.vegavin-commerce-reviews .section-head {
  text-align: center;
}

.vegavin-commerce-reviews .review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vegavin-commerce-flow .commerce-footer {
  margin-top: 0;
  border-top: 0;
  background: var(--flow-navy);
  color: #fff;
}

.vegavin-commerce-flow .commerce-footer .footer-inner {
  width: min(980px, calc(100% - 32px));
}

.vegavin-commerce-flow .commerce-footer a,
.vegavin-commerce-flow .commerce-footer address,
.vegavin-commerce-flow .commerce-footer strong,
.vegavin-commerce-flow .commerce-footer small {
  color: #fff;
}

.vegavin-flow-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 35;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: var(--flow-blue);
  color: #fff;
  cursor: pointer;
}

.vegavin-flow-back-to-top[hidden] {
  display: none;
}

.vegavin-flow-back-to-top svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.vegavin-commerce-flow :focus-visible {
  outline: 3px solid rgba(118, 38, 59, 0.36);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .checkout-flow-header__inner {
    grid-template-columns: minmax(76px, 1fr) auto minmax(76px, 1fr);
    min-height: 128px;
  }

  .checkout-flow-header__back {
    font-size: 0.96rem;
  }

  .checkout-flow-header__brand img {
    width: clamp(165px, 38vw, 210px);
    height: auto;
    max-width: 42vw;
  }

  .vegavin-checkout-trust {
    grid-template-columns: 32px 1fr;
  }

  .vegavin-checkout-trust > span:last-child {
    grid-column: 2;
  }

  .vegavin-checkout-step {
    font-size: 0.78rem;
  }

  .vegavin-commerce-cart .wc-block-cart__sidebar,
  .vegavin-commerce-checkout .wc-block-checkout__sidebar {
    position: static;
  }

  .vegavin-commerce-cart .wc-block-cart-items,
  .vegavin-commerce-checkout .wc-block-components-checkout-step,
  .vegavin-commerce-cart .wc-block-cart__sidebar,
  .vegavin-commerce-checkout .wc-block-checkout__sidebar {
    box-shadow: none;
  }

  .vegavin-commerce-checkout .woocommerce-billing-fields__field-wrapper,
  .vegavin-commerce-checkout .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .vegavin-commerce-checkout .form-row {
    grid-column: 1 / -1;
  }

  .vegavin-commerce-reviews .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .vegavin-commerce-flow {
    font-size: 15px;
  }

  .checkout-flow-header__inner {
    grid-template-columns: minmax(70px, 1fr) auto minmax(70px, 1fr);
    min-height: 124px;
  }

  .checkout-flow-header__back span {
    max-width: 72px;
  }

  .vegavin-commerce-cart table.shop_table thead {
    display: none;
  }

  .vegavin-commerce-cart table.shop_table,
  .vegavin-commerce-cart table.shop_table tbody,
  .vegavin-commerce-cart table.shop_table tr,
  .vegavin-commerce-cart table.shop_table td {
    display: block;
    width: 100%;
  }

  .vegavin-commerce-cart table.shop_table tr.cart_item {
    position: relative;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr) 44px;
    grid-template-areas:
      "image name remove"
      "image price remove"
      "image quantity remove"
      "image subtotal remove";
    gap: 0.3rem 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid var(--flow-line);
    background: #fff;
  }

  .vegavin-commerce-cart table.shop_table td {
    border: 0;
    padding: 0;
    text-align: left !important;
  }

  .vegavin-commerce-cart .product-thumbnail {
    grid-area: image;
  }

  .vegavin-commerce-cart .product-name {
    grid-area: name;
  }

  .vegavin-commerce-cart .product-price {
    grid-area: price;
  }

  .vegavin-commerce-cart .product-quantity {
    grid-area: quantity;
  }

  .vegavin-commerce-cart .product-subtotal {
    grid-area: subtotal;
    margin-top: 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
  }

  .vegavin-commerce-cart .product-remove {
    grid-area: remove;
  }

  .vegavin-commerce-cart .product-thumbnail img {
    width: 110px;
    height: 130px;
  }

  .vegavin-commerce-cart .wc-block-cart-items {
    padding-inline: 1rem;
  }

  .vegavin-commerce-checkout .wc-block-components-checkout-step,
  .vegavin-commerce-cart .wc-block-cart__sidebar,
  .vegavin-commerce-checkout .wc-block-checkout__sidebar {
    padding-inline: 1rem;
  }

  .vegavin-commerce-cart .actions {
    display: grid !important;
    gap: 0.8rem;
  }

  .vegavin-commerce-cart .coupon {
    grid-template-columns: minmax(0, 1fr) 82px;
  }

  .vegavin-commerce-cart button[name="update_cart"] {
    width: 100%;
  }

  .vegavin-commerce-cart .cart_totals table,
  .vegavin-commerce-cart .cart_totals tbody,
  .vegavin-commerce-cart .cart_totals tr,
  .vegavin-commerce-cart .cart_totals th,
  .vegavin-commerce-cart .cart_totals td {
    display: block;
    width: 100%;
  }

  .vegavin-commerce-cart .cart_totals th,
  .vegavin-commerce-cart .cart_totals td {
    border: 0;
    padding: 0.5rem 0;
    text-align: left;
  }

  .vegavin-commerce-cart .cart_totals td {
    font-size: 1.1rem;
  }

  .vegavin-commerce-cart .wc-proceed-to-checkout {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .vegavin-commerce-flow .wc-proceed-to-checkout .button {
    min-height: 64px;
    padding-inline: 0.65rem;
    font-size: 0.88rem;
  }

  .vegavin-checkout-trust,
  .vegavin-order-summary-toggle,
  .vegavin-commerce-faq__inner,
  .vegavin-commerce-reviews .section-inner {
    width: calc(100% - 32px);
  }

  .vegavin-order-summary-toggle {
    min-height: 62px;
  }

  .vegavin-checkout-steps {
    margin-bottom: 1.45rem;
  }

  .vegavin-checkout-step {
    min-height: 58px;
    font-size: 0.72rem;
  }

  .vegavin-commerce-checkout .form-row input.input-text,
  .vegavin-commerce-checkout .form-row textarea,
  .vegavin-commerce-checkout .form-row select,
  .vegavin-commerce-checkout .select2-container .select2-selection--single {
    min-height: 58px;
  }

  .vegavin-commerce-methods-note p {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .vegavin-flow-back-to-top {
    right: 16px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 430px) {
  .checkout-flow-header__inner {
    grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
    min-height: 118px;
  }

  .checkout-flow-header__back {
    gap: 0.2rem;
    font-size: 0.82rem;
  }

  .checkout-flow-header__back svg {
    width: 19px;
    height: 19px;
  }

  .checkout-flow-header__brand img {
    width: clamp(165px, 46vw, 190px);
    height: auto;
    max-width: 46vw;
  }

  .vegavin-commerce-cart .wc-proceed-to-checkout {
    grid-template-columns: 1fr;
  }

  .vegavin-commerce-cart table.shop_table tr.cart_item {
    grid-template-columns: 92px minmax(0, 1fr) 40px;
  }

  .vegavin-commerce-cart .product-thumbnail img {
    width: 88px;
    height: 112px;
  }

  .vegavin-commerce-cart .wc-block-cart-items,
  .vegavin-commerce-checkout .wc-block-components-checkout-step,
  .vegavin-commerce-cart .wc-block-cart__sidebar,
  .vegavin-commerce-checkout .wc-block-checkout__sidebar {
    padding-inline: 0.85rem;
  }
}
