@font-face {
  font-family: "Graphik Checkout";
  src: url("../webflow/cdn.prod.website-files.com/690b91018a37ef7945ccf1a4/690b958c76a8eb425b25f0dd_Graphik-Regular-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Graphik Checkout";
  src: url("../webflow/cdn.prod.website-files.com/690b91018a37ef7945ccf1a4/690b958c766f2d42aa771882_Graphik-Medium-Trial.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Graphik Checkout";
  src: url("../webflow/cdn.prod.website-files.com/690b91018a37ef7945ccf1a4/690b958cd6811bef995ea2ca_Graphik-Semibold-Trial.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Graphik Checkout";
  src: url("../webflow/cdn.prod.website-files.com/690b91018a37ef7945ccf1a4/690b958cafa939c8c7e901d6_Graphik-Bold-Trial.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --checkout-bg: #eff6f0;
  --checkout-card: #ffffff;
  --checkout-card-hover: #e8f6ec;
  --checkout-text: #132119;
  --checkout-muted: #6e7b72;
  --checkout-line: #d8e5db;
  --checkout-line-strong: #bad0c0;
  --checkout-accent: #0f8a43;
  --checkout-accent-strong: #0c6f36;
  --checkout-accent-soft: #e8f6ec;
  --checkout-accent-rgb: 15, 138, 67;
  --checkout-shadow: 0 8px 24px rgba(18, 60, 35, 0.08);
  --checkout-radius: 8px;
  --checkout-transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--checkout-bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fbf8 0%, var(--checkout-bg) 100%);
  color: var(--checkout-text);
  font-family: "Graphik Checkout", "Avenir Next", "Helvetica Neue", sans-serif;
}

a {
  color: inherit;
}

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

.checkout-app {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 10px 0 32px;
}

.checkout-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 0 12px;
}

.checkout-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.checkout-brand img {
  width: auto;
  height: 152px;
  display: block;
}

.checkout-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.checkout-brand-word {
  color: #0d5f38;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.checkout-brand-title {
  color: #143c29;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.checkout-account-link {
  margin: 0;
  padding-inline-end: 112px;
  color: #5f6c63;
  font-size: 17px;
  line-height: 1.45;
}

.checkout-account-link a {
  color: var(--checkout-accent);
  text-decoration: none;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.checkout-column {
  display: grid;
  gap: 24px;
}

.checkout-card {
  background: var(--checkout-card);
  border: 1px solid rgba(186, 208, 192, 0.9);
  border-radius: var(--checkout-radius);
  box-shadow: var(--checkout-shadow);
}

.checkout-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 10px;
}

.checkout-card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.checkout-card-chevron {
  border: none;
  background: transparent;
  color: #111827;
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.checkout-card-chevron svg {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform var(--checkout-transition);
}

.checkout-card.is-collapsed .checkout-card-chevron svg {
  transform: rotate(180deg);
}

.checkout-card-body {
  padding: 10px 24px 22px;
}

.checkout-card.is-collapsed .checkout-card-body {
  display: none;
}

.checkout-field-grid {
  display: grid;
  gap: 18px;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.checkout-field-shell {
  position: relative;
}

.checkout-field-shell.is-wide {
  grid-column: 1 / -1;
}

.checkout-field-label {
  position: absolute;
  top: -9px;
  left: 14px;
  z-index: 1;
  padding: 0 8px;
  background: var(--checkout-card);
  color: #7c897f;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.checkout-field-shell input,
.checkout-field-shell select,
.checkout-field-shell textarea {
  width: 100%;
  border: 1.5px solid var(--checkout-line-strong);
  border-radius: 6px;
  background: #fff;
  color: #34443c;
  transition: border-color var(--checkout-transition), box-shadow var(--checkout-transition), background-color var(--checkout-transition);
}

.checkout-field-shell input,
.checkout-field-shell select {
  min-height: 56px;
  padding: 16px 16px 14px;
  font-size: 16px;
  line-height: 24px;
}

.checkout-field-shell textarea {
  min-height: 78px;
  padding: 16px;
  resize: vertical;
  font-size: 16px;
  line-height: 1.45;
}

.checkout-field-shell select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10' fill='none'%3E%3Cpath d='M2 2L8 8L14 2' stroke='%23636F82' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 44px;
}

.checkout-field-shell input::placeholder,
.checkout-field-shell textarea::placeholder {
  color: #9ba89f;
}

.checkout-field-shell:focus-within input,
.checkout-field-shell:focus-within select,
.checkout-field-shell:focus-within textarea,
.checkout-field-shell.is-valid input,
.checkout-field-shell.is-valid textarea {
  border-color: var(--checkout-accent);
  box-shadow: 0 0 0 3px rgba(var(--checkout-accent-rgb), 0.12);
}

.checkout-field-shell.is-error input,
.checkout-field-shell.is-error textarea {
  border-color: #d14a61;
  box-shadow: 0 0 0 3px rgba(209, 74, 97, 0.08);
}

.checkout-field-check {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--checkout-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--checkout-transition);
}

.checkout-field-check svg {
  width: 11px;
  height: 11px;
  display: block;
}

.checkout-field-shell.is-valid .checkout-field-check {
  opacity: 1;
}

.checkout-field-shell.has-check input {
  padding-right: 44px;
}

.checkout-inline-checks {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.checkout-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #506055;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

.checkout-check input {
  appearance: none;
  margin: 0;
  width: 17px;
  height: 17px;
  border-radius: 3px;
  border: 1.5px solid #8fa093;
  background: #fff;
  position: relative;
  flex: 0 0 auto;
}

.checkout-check input:checked {
  border-color: var(--checkout-accent);
  background: var(--checkout-accent);
}

.checkout-check input:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkout-note {
  margin: 0;
  color: var(--checkout-muted);
  font-size: 14px;
  line-height: 1.5;
}

.shipping-options {
  display: grid;
  gap: 18px;
}

.shipping-option {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  border-radius: 6px;
  border: 1.5px solid var(--checkout-line-strong);
  background: #fff;
  cursor: pointer;
  transition: border-color var(--checkout-transition), background-color var(--checkout-transition), box-shadow var(--checkout-transition);
}

.shipping-option:hover {
  border-color: #8fc39f;
}

.shipping-option.is-active {
  border-color: var(--checkout-accent);
  background: var(--checkout-accent-soft);
  box-shadow: inset 0 0 0 1px rgba(var(--checkout-accent-rgb), 0.08);
}

.shipping-option input {
  display: none;
}

.shipping-option-radio {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #8fa093;
  background: #fff;
}

.shipping-option.is-active .shipping-option-radio {
  border-color: var(--checkout-accent);
}

.shipping-option.is-active .shipping-option-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--checkout-accent);
}

.shipping-option-price {
  min-width: 64px;
  color: #17231b;
  font-size: 17px;
  font-weight: 700;
}

.shipping-option-copy {
  min-width: 0;
}

.shipping-option-title {
  color: #314037;
  font-size: 16px;
  line-height: 1.35;
}

.shipping-option-meta {
  color: #64746a;
  font-size: 15px;
  line-height: 1.35;
}

.shipping-option-badge {
  min-width: 78px;
  min-height: 40px;
  border-radius: 6px;
  background: linear-gradient(135deg, #169154 0%, #0d6a3a 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.payment-options {
  display: grid;
  gap: 18px;
}

.payment-option {
  border: 1.5px solid var(--checkout-line-strong);
  border-radius: 6px;
  background: #fff;
  transition: border-color var(--checkout-transition), background-color var(--checkout-transition), box-shadow var(--checkout-transition);
}

.payment-option.is-active {
  border-color: var(--checkout-accent);
  background: var(--checkout-accent-soft);
  box-shadow: inset 0 0 0 1px rgba(var(--checkout-accent-rgb), 0.06);
}

.payment-option-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
}

.payment-option input {
  display: none;
}

.payment-option-radio {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #8fa093;
  background: #fff;
}

.payment-option.is-active .payment-option-radio {
  border-color: var(--checkout-accent);
}

.payment-option.is-active .payment-option-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--checkout-accent);
}

.payment-option-title {
  color: #17231b;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
}

.payment-option-note {
  color: #64756b;
  font-size: 15px;
  line-height: 1.4;
}

.payment-option-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.payment-logo-chip {
  min-width: 52px;
  height: 36px;
  border: 1px solid #c7d7cb;
  border-radius: 6px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #203026;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.payment-logo-chip.dual {
  padding: 0 6px;
}

.payment-logo-chip.dual span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
}

.payment-logo-chip.dual span:first-child {
  margin-right: -6px;
}

.payment-logo-chip.visa {
  color: #203c90;
}

.payment-logo-chip.discover {
  color: #141414;
}

.payment-logo-chip.discover strong {
  color: #f97316;
}

.payment-logo-chip.mastercard span:first-child {
  background: #ea4335;
}

.payment-logo-chip.mastercard span:last-child {
  background: #f59e0b;
}

.payment-logo-chip.maestro span:first-child {
  background: #2563eb;
}

.payment-logo-chip.maestro span:last-child {
  background: #ef4444;
}

.payment-option-paypal-chip {
  min-width: 64px;
  height: 38px;
  border: 1px solid #c7d7cb;
  border-radius: 6px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--checkout-accent);
  font-size: 13px;
  font-weight: 700;
}

.payment-details {
  padding: 0 20px 20px;
  display: none;
}

.payment-option.is-active .payment-details.is-card {
  display: block;
}

.payment-option.is-active .payment-details.is-paypal {
  display: block;
}

.payment-details-card-grid {
  display: grid;
  gap: 18px;
}

.payment-details-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-help-link {
  margin-top: 10px;
  color: var(--checkout-accent);
  text-decoration: none;
  font-size: 15px;
}

.payment-security {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--checkout-line);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #728094;
  font-size: 15px;
  line-height: 1.45;
}

.payment-security-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--checkout-accent);
  color: var(--checkout-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.payment-security-badge svg {
  width: 16px;
  height: 16px;
  display: block;
}

.order-review-count {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.35;
}

.order-review-list {
  display: grid;
}

.order-review-item {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--checkout-line);
}

.order-review-item:first-child {
  border-top: none;
  padding-top: 10px;
}

.order-review-thumb {
  width: 98px;
  height: 98px;
  border-radius: 6px;
  background: var(--checkout-accent-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-review-thumb svg {
  width: 44px;
  height: 44px;
  color: #a1b8a8;
}

.order-review-main {
  min-width: 0;
}

.order-review-name {
  color: #17231b;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.order-review-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.order-review-qty-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--checkout-line-strong);
  border-radius: 4px;
  background: #fff;
  color: #192133;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.order-review-qty-btn:hover {
  border-color: #94b79b;
}

.order-review-qty-value {
  min-width: 18px;
  color: #52655a;
  font-size: 15px;
  text-align: center;
}

.order-review-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.order-review-remove {
  border: none;
  background: transparent;
  color: #233126;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.order-review-prices {
  text-align: right;
}

.order-review-old-price {
  color: #afbeb2;
  font-size: 14px;
  text-decoration: line-through;
}

.order-review-current-price {
  color: #17231b;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
}

.discount-form {
  display: grid;
  gap: 10px;
}

.discount-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.discount-apply {
  min-width: 92px;
  height: 52px;
  border: 1.5px solid var(--checkout-accent);
  border-radius: 6px;
  background: #fff;
  color: var(--checkout-accent);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.discount-apply:hover {
  background: var(--checkout-accent-soft);
}

.discount-status {
  min-height: 22px;
  color: #697a70;
  font-size: 14px;
  line-height: 1.45;
}

.discount-status.is-success {
  color: #166534;
}

.discount-status.is-error {
  color: #b42318;
}

.summary-list {
  display: grid;
  gap: 12px;
}

.summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: #4c5f53;
  font-size: 16px;
  line-height: 1.35;
}

.summary-row strong {
  color: #18241c;
  font-weight: 600;
}

.summary-row.is-discount .summary-value {
  color: #0f8a43;
}

.summary-row.is-warranty button {
  margin-top: 4px;
}

.summary-value {
  text-align: right;
  white-space: nowrap;
  color: #28392f;
}

.summary-link {
  border: none;
  background: transparent;
  padding: 0;
  color: var(--checkout-accent);
  font-size: 14px;
  cursor: pointer;
}

.summary-divider {
  margin: 14px 0;
  border: none;
  border-top: 1px solid var(--checkout-line);
}

.summary-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: #17231b;
}

.summary-total-label {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.summary-total-value {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}

.summary-privacy {
  margin-top: 16px;
}

.summary-privacy a {
  color: var(--checkout-accent);
  text-decoration: none;
}

.summary-actions {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.summary-pay-button {
  min-height: 48px;
  border: none;
  border-radius: 7px;
  background: linear-gradient(180deg, #19a85b 0%, #0d773f 100%);
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(var(--checkout-accent-rgb), 0.24);
  cursor: pointer;
}

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

.summary-paypal {
  display: none;
}

.summary-paypal.is-visible {
  display: block;
}

.summary-paypal-status {
  margin: 10px 0 0;
  color: #6b7484;
  font-size: 14px;
  line-height: 1.4;
}

.summary-paypal-status.is-error {
  color: #b42318;
}

.summary-trust-badge {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  color: #17231b;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}

.summary-trust-badge-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.summary-trust-badge-mark::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 17px;
  border: solid #111827;
  border-width: 0 4px 4px 0;
  transform: rotate(38deg);
  top: 5px;
}

.summary-trust-badge small {
  display: block;
  color: #5c6678;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
}

.empty-state {
  margin: 0;
  color: #6a7a70;
  font-size: 15px;
  line-height: 1.5;
}

.is-hidden {
  display: none !important;
}

.ltr-input,
.co-price,
.order-review-prices,
.summary-value,
.summary-total-value {
  direction: ltr;
}

html[lang="he"] .checkout-app {
  direction: ltr;
}

html[lang="he"] .checkout-field-label {
  left: 14px;
  right: auto;
}

html[lang="he"] .checkout-field-check {
  right: 12px;
  left: auto;
}

html[lang="he"] .checkout-field-shell select {
  background-position: right 16px center;
  padding-right: 44px;
  padding-left: 16px;
}

html[lang="he"] .checkout-field-shell.has-check input {
  padding-right: 44px;
  padding-left: 16px;
}

html[lang="he"] .summary-row,
html[lang="he"] .summary-total-row,
html[lang="he"] .checkout-card-header,
html[lang="he"] .checkout-topbar {
  direction: ltr;
}

html[lang="he"] .checkout-account-link {
  padding-inline-end: 112px;
  padding-inline-start: 0;
}

html[lang="he"] .shipping-option,
html[lang="he"] .payment-option-head,
html[lang="he"] .order-review-item,
html[lang="he"] .discount-input-row {
  direction: ltr;
}

html[lang="he"] .order-review-side,
html[lang="he"] .summary-value,
html[lang="he"] .summary-total-value {
  text-align: right;
}

@media (max-width: 1080px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .checkout-app {
    width: min(100%, calc(100% - 20px));
  }

  .checkout-topbar {
    padding: 0 2px;
  }

  .checkout-field-row,
  .payment-details-card-grid.two,
  .discount-input-row {
    grid-template-columns: 1fr;
  }

  .shipping-option,
  .payment-option-head,
  .order-review-item {
    grid-template-columns: 1fr;
  }

  .shipping-option-price,
  .shipping-option-badge,
  .order-review-side {
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }

  html[lang="he"] .shipping-option-price,
  html[lang="he"] .shipping-option-badge,
  html[lang="he"] .order-review-side {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .checkout-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-account-link {
    padding-inline: 0;
    font-size: 15px;
  }

  .checkout-card-header,
  .checkout-card-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .checkout-card-header {
    padding-bottom: 8px;
  }

  .checkout-card-body {
    padding-top: 8px;
    padding-bottom: 18px;
  }
}
