:root {
  --cart-navy:#071525;
  --cart-blue:#2b64e8;
  --cart-green:#16a36a;
  --cart-line:#dfe6ef;
  --cart-muted:#667085;
  --cart-soft:#f5f8fc;
}

.cart-header-link,
.cart-account-link {
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid #dbe3ed;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #344054;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.cart-header-link:hover,
.cart-account-link:hover {
  color: var(--cart-blue);
  border-color: #abc0e6;
}
.cart-header-link svg,
.cart-account-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-count {
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--cart-blue);
  font-size: 8px;
  font-weight: 800;
}
.cart-count[data-empty="true"] {
  color: #667085;
  background: #edf1f5;
}

.buy-actions {
  flex-wrap: wrap;
}
.cart-add-form {
  display: inline-flex;
  margin: 0;
}
.cart-add-form .button {
  cursor: pointer;
}
.button.disabled {
  pointer-events: none;
  opacity: .52;
}

.cart-main {
  min-height: 680px;
  padding: 54px 0 90px;
  background:
    radial-gradient(circle at 88% 5%, rgba(43,100,232,.10), transparent 31%),
    var(--cart-soft);
}
.cart-title {
  max-width: 760px;
  margin-bottom: 28px;
}
.cart-title > span {
  color: var(--cart-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.cart-title h1 {
  margin: 8px 0;
  font-family: var(--display);
  font-size: 43px;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.cart-title p {
  margin: 0;
  color: var(--cart-muted);
  font-size: 13px;
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 350px;
  gap: 24px;
  align-items: start;
}
.cart-items,
.cart-summary,
.cart-empty {
  border: 1px solid var(--cart-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 17px 48px rgba(7,21,37,.06);
}
.cart-item {
  padding: 21px;
  display: grid;
  grid-template-columns: 130px minmax(0,1fr) auto;
  gap: 20px;
  align-items: center;
}
.cart-image {
  width: 130px;
  height: 100px;
  padding: 5px;
  border: 1px solid #e5eaf1;
  border-radius: 12px;
  background: #fff;
}
.cart-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-offer {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  color: #08734e;
  background: #dcfce7;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}
.cart-item h2 {
  margin: 9px 0 5px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.35;
}
.cart-item p {
  margin: 0 0 11px;
  color: var(--cart-muted);
  font-size: 10px;
}
.cart-remove {
  padding: 0;
  border: 0;
  color: #b33b3b;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}
.cart-item-price {
  text-align: right;
}
.cart-item-price span,
.cart-item-price strong {
  display: block;
}
.cart-item-price span {
  color: #98a2b3;
  font-size: 11px;
  text-decoration: line-through;
}
.cart-item-price strong {
  color: #172033;
  font-family: var(--display);
  font-size: 23px;
}
.cart-summary {
  position: sticky;
  top: 112px;
  padding: 24px;
}
.cart-summary h2 {
  margin: 0 0 17px;
  font-family: var(--display);
  font-size: 20px;
}
.cart-summary-row {
  padding: 11px 0;
  border-bottom: 1px solid #edf1f5;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #667085;
  font-size: 11px;
}
.cart-summary-row strong {
  color: #344054;
}
.cart-summary-row.total {
  padding-top: 17px;
  border-bottom: 0;
}
.cart-summary-row.total strong {
  color: #172033;
  font-family: var(--display);
  font-size: 25px;
}
.cart-checkout {
  width: 100%;
  margin-top: 18px;
}
.cart-continue {
  display: block;
  margin-top: 16px;
  color: var(--cart-blue);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}
.cart-empty {
  padding: 70px 25px;
  text-align: center;
}
.cart-empty-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 17px;
  padding: 15px;
  border-radius: 19px;
  color: var(--cart-blue);
  background: #eaf1ff;
}
.cart-empty-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-empty h2 {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: 25px;
}
.cart-empty p {
  margin: 0 auto 20px;
  color: var(--cart-muted);
  font-size: 11px;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
}
@media (max-width: 680px) {
  .cart-header-label {
    display: none;
  }
  .cart-header-link {
    min-width: 41px;
    padding-inline: 9px;
  }
  .cart-main {
    padding: 30px 0 65px;
  }
  .cart-item {
    grid-template-columns: 85px minmax(0,1fr);
  }
  .cart-image {
    width: 85px;
    height: 72px;
  }
  .cart-item-price {
    grid-column: 2;
    text-align: left;
  }
}

/* V11.1 professional multi-product cart */
.cart-item + .cart-item {
  border-top: 1px solid var(--cart-line);
}
.cart-secondary-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.cart-secondary-actions form {
  margin: 0;
  text-align: center;
}
.cart-clear {
  padding: 0;
  border: 0;
  color: #b33b3b;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.cart-secure-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid #edf1f5;
  color: var(--cart-muted);
  font-size: 10px;
  line-height: 1.65;
}
.cart-add-form .button {
  min-height: 46px;
  border: 0;
  font: inherit;
}

.cta .cart-add-form { margin: 0; }
@media (max-width: 640px) {
  .buy-actions .cart-add-form,
  .buy-actions .cart-add-form .button,
  .cta .cart-add-form,
  .cta .cart-add-form .button {
    width: 100%;
  }
}
