/*
 * SolidVPS Modern Cart
 * Loaded by this child theme's page wrappers. The inherited pages explicitly
 * include standard_cart/common.tpl, which does not discover child CSS.
 * Presentation only: all cart actions and gateway behavior remain WHMCS-native.
 */

:root {
  --svps-ink: #081426;
  --svps-navy: #0a1628;
  --svps-blue: #0869ff;
  --svps-blue-dark: #0356d6;
  --svps-cyan: #10c7ea;
  --svps-red: #9c0100;
  --svps-surface: #ffffff;
  --svps-soft: #f3f6fb;
  --svps-line: #dce5f0;
  --svps-muted: #66758d;
  --svps-radius: 14px;
  --svps-shadow: 0 14px 36px rgba(6, 16, 31, 0.09);
}

/* Match the reference on this order form without changing the rest of the site. */
body.svps-whmcs-body:has(#order-standard_cart) {
  background: #f3f6fb;
}

body.svps-whmcs-body:has(#order-standard_cart) .ca-hero {
  display: none;
}

body.svps-whmcs-body:has(#order-standard_cart) .svps-whmcs-navbar {
  background: #08172b;
}

body.svps-whmcs-body:has(#order-standard_cart) .ca-whmcs-area {
  background: #f3f6fb;
}

body.svps-whmcs-body:has(#order-standard_cart) .ca-whmcs-area > .container {
  width: calc(100% - 48px);
  max-width: 1360px;
}

#order-standard_cart {
  color: var(--svps-ink);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-top: 24px;
  padding-bottom: 44px;
}

#order-standard_cart *,
#order-standard_cart *::before,
#order-standard_cart *::after {
  box-sizing: border-box;
}

#order-standard_cart h1,
#order-standard_cart h2,
#order-standard_cart h3,
#order-standard_cart h4 {
  color: var(--svps-ink);
  font-weight: 700;
  letter-spacing: -0.025em;
}

#order-standard_cart .header-lined {
  margin: 0 0 22px;
  border: 0;
}

#order-standard_cart .header-lined:not(.svps-review-heading)::before {
  display: block;
  margin-bottom: 6px;
  color: #0976dd;
  content: "ORDER DETAILS";
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

#order-standard_cart .header-lined h1 {
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.2;
}

#order-standard_cart .header-lined p {
  color: var(--svps-muted);
  font-size: 15px;
}

#order-standard_cart .cart-sidebar {
  padding-top: 5px;
}

#order-standard_cart .cart-sidebar .panel,
#order-standard_cart .sidebar-collapsed .panel,
#order-standard_cart .categories-collapsed {
  overflow: hidden;
  border: 1px solid var(--svps-line);
  border-radius: 12px;
  background: var(--svps-surface);
  box-shadow: 0 7px 22px rgba(6, 16, 31, 0.055);
}

#order-standard_cart .cart-sidebar .panel-heading {
  background: #f5f8fc;
  color: #102540;
}

#order-standard_cart .cart-sidebar .list-group-item.active,
#order-standard_cart .cart-sidebar .list-group-item.active:hover,
#order-standard_cart .cart-sidebar .list-group-item.active:focus {
  border-color: #e7eef7;
  border-left: 3px solid #0780f5;
  background: #eef6ff;
  color: #075fc3;
}

#order-standard_cart .panel-heading {
  padding: 15px 17px;
  border-color: var(--svps-line);
  background: linear-gradient(135deg, #f8fbff 0%, #edf4ff 100%);
  color: var(--svps-ink);
  font-weight: 700;
  letter-spacing: 0.025em;
}

#order-standard_cart .list-group-item {
  padding: 10px 15px;
  border-color: #edf1f6;
  color: #334158;
  transition: background-color 150ms ease, color 150ms ease, padding-left 150ms ease;
}

#order-standard_cart .list-group-item:hover,
#order-standard_cart .list-group-item:focus {
  padding-left: 19px;
  background: #eff6ff;
  color: var(--svps-blue);
}

#order-standard_cart .list-group-item.active,
#order-standard_cart .list-group-item.active:hover,
#order-standard_cart .list-group-item.active:focus {
  border-color: var(--svps-blue);
  background: linear-gradient(135deg, var(--svps-blue), #0789ff);
  color: #fff;
}

#order-standard_cart .products {
  margin: 18px 0 30px;
}

#order-standard_cart .products > .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

#order-standard_cart .products > .row > [class*="col-"] {
  display: flex;
  padding: 10px;
}

#order-standard_cart .products .product {
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--svps-line);
  border-radius: var(--svps-radius);
  background: var(--svps-surface);
  box-shadow: 0 7px 22px rgba(6, 16, 31, 0.055);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

#order-standard_cart .products .product:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 105, 255, 0.45);
  box-shadow: var(--svps-shadow);
}

#order-standard_cart .products .product header {
  min-height: 58px;
  padding: 17px 19px;
  border-bottom: 1px solid var(--svps-line);
  background: linear-gradient(135deg, #f8fbff 0%, #edf4ff 100%);
}

#order-standard_cart .products .product header span:first-child {
  color: var(--svps-ink);
  font-size: 16px;
  font-weight: 700;
}

#order-standard_cart .products .product header .qty {
  color: var(--svps-muted);
  font-size: 12px;
}

#order-standard_cart .products .product .product-desc {
  flex: 1;
  padding: 18px 20px 8px;
  color: #3d4a5f;
  line-height: 1.65;
}

#order-standard_cart .products .product .product-desc p {
  margin: 0 0 10px;
}

#order-standard_cart .products .product .product-desc ul {
  margin: 0;
  padding-left: 18px;
}

#order-standard_cart .products .product .product-desc li {
  margin-bottom: 4px;
}

#order-standard_cart .products .product .product-desc .feature-value {
  color: var(--svps-ink);
  font-weight: 700;
}

#order-standard_cart .products .product footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 19px 19px;
}

#order-standard_cart .products .product .product-pricing {
  color: var(--svps-muted);
  line-height: 1.45;
}

#order-standard_cart .products .product .product-pricing .price {
  color: var(--svps-ink);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

#order-standard_cart .btn {
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 9px;
  font-weight: 700;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

#order-standard_cart .btn:hover {
  transform: translateY(-1px);
}

#order-standard_cart .btn-primary,
#order-standard_cart .btn-success,
#order-standard_cart .btn-info {
  border-color: var(--svps-blue);
  background: linear-gradient(135deg, var(--svps-blue), #0789ff);
  color: #fff;
  box-shadow: 0 6px 16px rgba(8, 105, 255, 0.2);
}

#order-standard_cart .btn-primary:hover,
#order-standard_cart .btn-success:hover,
#order-standard_cart .btn-info:hover {
  border-color: var(--svps-blue-dark);
  background: linear-gradient(135deg, var(--svps-blue-dark), #0576df);
}

#order-standard_cart .btn-default {
  border-color: #cbd7e5;
  background: #fff;
  color: #25344b;
}

#order-standard_cart .btn-default:hover {
  border-color: #afbed0;
  background: #f3f7fc;
}

#order-standard_cart .form-control,
#order-standard_cart select,
#order-standard_cart textarea {
  min-height: 43px;
  border: 1px solid #ccd8e6;
  border-radius: 9px;
  background: #fff;
  box-shadow: none;
  color: var(--svps-ink);
}

#order-standard_cart .form-control:focus,
#order-standard_cart select:focus,
#order-standard_cart textarea:focus {
  border-color: var(--svps-blue);
  box-shadow: 0 0 0 3px rgba(8, 105, 255, 0.14);
  outline: none;
}

#order-standard_cart .summary-container,
#order-standard_cart .domain-checker-container,
#order-standard_cart .account-select-container {
  overflow: hidden;
  border: 1px solid var(--svps-line);
  border-radius: var(--svps-radius);
  background: var(--svps-surface);
  box-shadow: var(--svps-shadow);
}

#order-standard_cart .order-summary,
#order-standard_cart .view-cart-items-header {
  background: linear-gradient(135deg, var(--svps-navy), #122b4c);
  color: #fff;
}

#order-standard_cart .order-summary h2,
#order-standard_cart .order-summary h3,
#order-standard_cart .view-cart-items-header h2,
#order-standard_cart .view-cart-items-header h3 {
  color: #fff;
}

#order-standard_cart .order-summary .summary-container {
  border-radius: 10px;
  background: #fff;
  color: var(--svps-ink);
}

#order-standard_cart .order-summary .summary-container span,
#order-standard_cart .order-summary .summary-container div,
#order-standard_cart .order-summary .summary-container strong {
  color: var(--svps-ink);
}

#order-standard_cart .view-cart-item {
  border-color: var(--svps-line);
  background: #fff;
}

#order-standard_cart .total-due-today,
#order-standard_cart .amt {
  color: var(--svps-blue);
  font-weight: 800;
}

#order-standard_cart .promo-code-form {
  padding: 15px;
  border: 1px dashed #b9d2f7;
  border-radius: 12px;
  background: #eff6ff;
}

#order-standard_cart .alert {
  border: 0;
  border-left: 4px solid currentColor;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(6, 16, 31, 0.045);
}

#order-standard_cart .payment-methods .payment-method,
#order-standard_cart .cc-input-container,
#order-standard_cart .gateway-selector {
  border-color: var(--svps-line);
  border-radius: 12px;
}

#order-standard_cart .payment-methods .payment-method:hover,
#order-standard_cart .payment-methods .payment-method.selected {
  border-color: var(--svps-blue);
  box-shadow: 0 0 0 3px rgba(8, 105, 255, 0.1);
}

#order-standard_cart a {
  color: var(--svps-blue);
}

#order-standard_cart a:hover {
  color: var(--svps-blue-dark);
}

#order-standard_cart .domain-selection-options .option {
  margin-bottom: 12px;
  border: 1px solid var(--svps-line);
  border-radius: 12px;
  background: #fff;
}

#order-standard_cart .domain-selection-options .option-selected {
  border-color: var(--svps-blue);
  background: #f2f7ff;
  box-shadow: 0 0 0 3px rgba(8, 105, 255, 0.08);
}

#order-standard_cart input[type="radio"],
#order-standard_cart input[type="checkbox"] {
  accent-color: var(--svps-blue);
}

@media (max-width: 991px) {
  #order-standard_cart .cart-sidebar {
    margin-bottom: 18px;
  }

  #order-standard_cart .products > .row > [class*="col-"] {
    width: 50%;
  }
}

@media (max-width: 767px) {
  #order-standard_cart {
    padding-right: 10px;
    padding-left: 10px;
  }

  #order-standard_cart .products > .row > [class*="col-"] {
    width: 100%;
  }

  #order-standard_cart .products .product footer {
    align-items: stretch;
    flex-direction: column;
  }

  #order-standard_cart .products .product footer .btn {
    width: 100%;
  }

  #order-standard_cart .checkout-btn,
  #order-standard_cart #btnCompleteOrder {
    display: block;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  #order-standard_cart *,
  #order-standard_cart *::before,
  #order-standard_cart *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (min-width: 1200px) {
  #order-standard_cart > .row > .cart-sidebar {
    width: 20%;
  }

  #order-standard_cart > .row > .cart-body {
    width: 80%;
  }

  #order-standard_cart .secondary-cart-body {
    width: 68%;
  }

  #order-standard_cart .secondary-cart-sidebar {
    width: 32%;
  }

  #order-standard_cart .cart-sidebar .list-group {
    max-height: 570px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c7d9ee #f7faff;
  }
}

/*
 * SolidVPS checkout refinements. Scope stays inside the cart so the
 * client-area header, gateway-rendered controls, and site theme remain intact.
 */
#order-standard_cart {
  color: #24344d;
  font-size: 15px;
  line-height: 1.55;
}

#order-standard_cart label,
#order-standard_cart .form-group,
#order-standard_cart .text-muted,
#order-standard_cart .small,
#order-standard_cart .info-text-sm {
  color: #43536b;
}

#order-standard_cart .form-control::placeholder,
#order-standard_cart textarea::placeholder {
  color: #65748a;
  opacity: 1;
}

#order-standard_cart .form-control,
#order-standard_cart select,
#order-standard_cart textarea {
  font-size: 14px;
}

#order-standard_cart .form-control:focus-visible,
#order-standard_cart .btn:focus-visible,
#order-standard_cart a:focus-visible,
#order-standard_cart #paymentGatewaysContainer label:focus-within {
  outline: 2px solid var(--svps-blue);
  outline-offset: 2px;
}

#order-standard_cart .product-info {
  padding: 20px;
  border: 1px solid var(--svps-line);
  border-left: 4px solid var(--svps-blue);
  border-radius: 12px;
  background: #fff;
}

#order-standard_cart .product-info .product-title {
  color: var(--svps-ink);
  font-size: 19px;
  font-weight: 700;
}

#order-standard_cart:has(#frmConfigureProduct) .secondary-cart-body {
  padding: 20px;
  border: 1px solid var(--svps-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--svps-shadow);
}

#order-standard_cart:has(#frmConfigureProduct) .secondary-cart-body::before {
  display: block;
  margin: -20px -20px 20px;
  padding: 14px 20px;
  border-radius: 13px 13px 0 0;
  background: var(--svps-navy);
  color: #eaf4ff;
  content: "01  PRODUCT / OPTIONS";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .055em;
}

#order-standard_cart:has(#frmCheckout) #frmCheckout {
  padding: 24px;
  border: 1px solid var(--svps-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--svps-shadow);
}

#order-standard_cart:has(#frmCheckout) #frmCheckout::before {
  display: block;
  margin: -24px -24px 22px;
  padding: 16px 24px;
  border-radius: 13px 13px 0 0;
  background: var(--svps-navy);
  color: #eaf4ff;
  content: "ACCOUNT & PAYMENT";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .055em;
}

#order-standard_cart .sub-heading,
#order-standard_cart .sub-heading-borderless {
  border-top-color: var(--svps-line);
}

#order-standard_cart .sub-heading span,
#order-standard_cart .sub-heading-borderless span {
  padding: 0 12px;
  background: #fff;
  color: var(--svps-ink);
  font-weight: 700;
}

#order-standard_cart .btn-primary,
#order-standard_cart .btn-success,
#order-standard_cart .btn-info,
#order-standard_cart .btn-warning,
#order-standard_cart #btnAlreadyRegistered,
#order-standard_cart #btnNewUserSignup,
#order-standard_cart #btnCompleteProductConfig,
#order-standard_cart #btnCompleteOrder,
#order-standard_cart #checkout {
  border: 1px solid var(--svps-blue);
  border-radius: 9px;
  background: var(--svps-blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(8, 105, 255, 0.2);
}

#order-standard_cart .btn-primary:hover,
#order-standard_cart .btn-success:hover,
#order-standard_cart .btn-info:hover,
#order-standard_cart .btn-warning:hover,
#order-standard_cart #btnAlreadyRegistered:hover,
#order-standard_cart #btnNewUserSignup:hover,
#order-standard_cart #btnCompleteProductConfig:hover,
#order-standard_cart #btnCompleteOrder:hover,
#order-standard_cart #checkout:hover {
  border-color: var(--svps-blue-dark);
  background: var(--svps-blue-dark);
  color: #fff;
}

#order-standard_cart .btn-link {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--svps-blue);
}

#order-standard_cart .order-summary .summary-container {
  padding: 16px;
  font-size: 13px;
  line-height: 1.5;
}

#order-standard_cart .order-summary .summary-container .amt {
  color: var(--svps-blue);
}

#order-standard_cart .order-summary .summary-container .clearfix {
  overflow-wrap: anywhere;
}

#order-standard_cart .order-summary .summary-container .pull-left,
#order-standard_cart .order-summary .summary-container .pull-right {
  max-width: 100%;
}

#order-standard_cart .view-cart-items .item {
  padding: 16px;
  color: #334158;
  font-size: 14px !important;
  line-height: 1.55;
}

#order-standard_cart .view-cart-items .item-title {
  color: var(--svps-ink);
  font-size: 17px;
  font-weight: 700;
}

#order-standard_cart .view-cart-items .item-group,
#order-standard_cart .view-cart-items .item-domain,
#order-standard_cart .view-cart-items .item small {
  color: #465670;
  font-size: 13px;
  line-height: 1.55;
}

#order-standard_cart .view-cart-items .item-price span {
  color: var(--svps-ink);
  font-size: 16px;
  font-weight: 700;
}

#order-standard_cart .view-cart-items .item-price .cycle {
  color: #53647b;
  font-size: 12px;
  font-weight: 400;
}

/* WHMCS renders these labels and iCheck radio controls; never replace them. */
#order-standard_cart #paymentGatewaysContainer > .text-center {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 12px;
  text-align: left !important;
}

#order-standard_cart #paymentGatewaysContainer label.radio-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--svps-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(6, 16, 31, 0.045);
  color: var(--svps-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

#order-standard_cart #paymentGatewaysContainer label.radio-inline:hover,
#order-standard_cart #paymentGatewaysContainer label.radio-inline:has(input:checked),
#order-standard_cart #paymentGatewaysContainer label.radio-inline:has(.iradio_square-blue.checked) {
  border-color: var(--svps-blue);
  box-shadow: 0 0 0 3px rgba(8, 105, 255, 0.1);
}

#order-standard_cart #paymentGatewaysContainer label.radio-inline .iradio_square-blue {
  flex: 0 0 22px;
  order: -1;
  margin: 0;
}

#order-standard_cart #paymentGatewaysContainer label.radio-inline::before {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

#order-standard_cart #paymentGatewaysContainer label:has(input[value="paypal_ppcpv"])::before {
  background-image: url("./logos/paypal.svg");
}

#order-standard_cart #paymentGatewaysContainer label:has(input[value="stripe"])::before {
  background-image: url("./logos/stripe.svg");
}

#order-standard_cart #paymentGatewaysContainer label:has(input[value="bp"])::before {
  background-image: url("./logos/bitpay.svg");
}

#order-standard_cart #paymentGatewaysContainer label:has(input[value="btcpay"])::before {
  background-image: url("./logos/btcpay.svg");
}

#order-standard_cart #paymentGatewaysContainer label:has(input[value="zellepayment"])::before {
  background-image: url("./logos/zelle.svg");
}

#order-standard_cart #paymentGatewayInput,
#order-standard_cart #creditCardInputFields {
  color: var(--svps-ink);
}

#order-standard_cart #paymentGatewaysContainer .small.text-muted {
  color: #43536b;
  font-size: 13px;
}

@media (max-width: 767px) {
  #order-standard_cart #paymentGatewaysContainer > .text-center {
    grid-template-columns: 1fr;
  }

  body.svps-whmcs-body:has(#order-standard_cart) .ca-whmcs-area > .container {
    width: calc(100% - 28px);
    padding-right: 0;
    padding-left: 0;
  }

  #order-standard_cart:has(#frmCheckout) #frmCheckout {
    padding: 16px;
  }

  #order-standard_cart:has(#frmCheckout) #frmCheckout::before {
    margin: -16px -16px 18px;
    padding: 14px 16px;
  }
}

/*
 * Review-cart layout only. Keep WHMCS's item, category, promotion, quantity,
 * tax and checkout markup intact; give the order details room on desktop.
 */
#order-standard_cart:has(.view-cart-items) .header-lined {
  margin: 4px 0 25px;
}

#order-standard_cart:has(.view-cart-items) .header-lined h1 {
  margin-bottom: 0;
  color: var(--svps-navy);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

#order-standard_cart:has(.view-cart-items) .svps-review-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

#order-standard_cart:has(.view-cart-items) .svps-review-kicker {
  color: #0976dd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#order-standard_cart:has(.view-cart-items) .svps-review-heading p {
  margin: 5px 0 0;
  color: #5e7088;
  font-size: 14px;
}

#order-standard_cart:has(.view-cart-items) .svps-secure-pill {
  flex: none;
  padding: 8px 12px;
  border: 1px solid #dae6f3;
  border-radius: 99px;
  background: #f8fbff;
  color: #51677f;
  font-size: 12px;
}

#order-standard_cart:has(.view-cart-items) .svps-secure-pill i {
  margin-right: 5px;
  color: var(--svps-blue);
}

#order-standard_cart:has(.view-cart-items) .view-cart-items-header {
  padding: 14px 20px;
  border: 1px solid var(--svps-line);
  border-bottom: 0;
  border-radius: 15px 15px 0 0;
  background: var(--svps-navy);
  color: #eaf4ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

#order-standard_cart:has(.view-cart-items) .view-cart-items {
  overflow: hidden;
  border: 1px solid var(--svps-line);
  border-radius: 0 0 15px 15px;
  background: #fff;
  box-shadow: var(--svps-shadow);
}

#order-standard_cart:has(.view-cart-items) .view-cart-items .item,
#order-standard_cart:has(.view-cart-items) .view-cart-items .item:nth-child(even) {
  padding: 24px 22px;
  border: 0;
  border-bottom: 1px solid #e7edf5;
  background: #fff;
}

#order-standard_cart:has(.view-cart-items) .view-cart-items .item:last-child {
  border-bottom: 0;
}

#order-standard_cart:has(.view-cart-items) .view-cart-items .item-title {
  margin-bottom: 9px;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

#order-standard_cart:has(.view-cart-items) .view-cart-items .item-title .btn-link {
  margin-left: 8px;
  padding: 3px 7px;
  border-radius: 6px;
  background: #edf5ff;
  color: #075fca;
  font-size: 12px;
  vertical-align: middle;
}

#order-standard_cart:has(.view-cart-items) .view-cart-items .item-group,
#order-standard_cart:has(.view-cart-items) .view-cart-items .item-domain,
#order-standard_cart:has(.view-cart-items) .view-cart-items .item small {
  color: #40526b;
  font-size: 13px;
  line-height: 1.7;
}

#order-standard_cart:has(.view-cart-items) .view-cart-items .item-domain {
  margin: 3px 0 11px;
  color: #0965d5;
  font-weight: 700;
}

#order-standard_cart:has(.view-cart-items) .view-cart-items .item-price > span:first-child {
  color: var(--svps-navy);
  font-size: 18px;
  letter-spacing: -0.035em;
}

#order-standard_cart:has(.view-cart-items) .view-cart-items .item-price .cycle {
  margin-top: 3px;
  color: #60718a;
  font-size: 13px;
  font-weight: 500;
}

#order-standard_cart:has(.view-cart-items) .svps-config-options {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid #e9eef5;
}

#order-standard_cart:has(.view-cart-items) .svps-config-heading,
#order-standard_cart:has(.view-cart-items) .svps-config-row {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  gap: 12px;
  align-items: center;
}

#order-standard_cart:has(.view-cart-items) .svps-config-heading {
  padding: 0 0 8px;
  color: #6c7e95;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#order-standard_cart:has(.view-cart-items) .svps-config-row {
  min-height: 34px;
  padding: 7px 0;
  border-bottom: 1px solid #eff2f6;
  color: #344760;
  font-size: 13px;
  line-height: 1.4;
}

#order-standard_cart:has(.view-cart-items) .svps-config-row:last-child {
  border-bottom: 0;
}

#order-standard_cart:has(.view-cart-items) .svps-config-label {
  color: #566982;
}

#order-standard_cart:has(.view-cart-items) .svps-config-label::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: #24b6dc;
  content: "";
}

#order-standard_cart:has(.view-cart-items) .svps-config-value {
  color: #243951;
  font-weight: 600;
  overflow-wrap: anywhere;
}

#order-standard_cart:has(.view-cart-items) #btnEmptyCart,
#order-standard_cart:has(.view-cart-items) .btn-remove-from-cart {
  color: #7b3644;
}

#order-standard_cart:has(.view-cart-items) #btnEmptyCart {
  border: 0;
  background: transparent !important;
  box-shadow: none;
  color: #7b3644 !important;
}

#order-standard_cart:has(.view-cart-items) #btnEmptyCart:hover,
#order-standard_cart:has(.view-cart-items) #btnEmptyCart:focus-visible {
  background: #fff0f2 !important;
  color: #9b2539 !important;
}

#order-standard_cart:has(.view-cart-items) .empty-cart {
  margin-top: -20px;
  padding: 9px 17px;
  border: 1px solid var(--svps-line);
  border-top: 0;
  border-radius: 0 0 15px 15px;
  background: #fafcfe;
  text-align: left;
}

#order-standard_cart:has(.view-cart-items) .order-summary {
  overflow: hidden;
  border: 1px solid var(--svps-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--svps-shadow);
}

#order-standard_cart:has(.view-cart-items) .order-summary h2 {
  padding: 19px 22px;
  background: var(--svps-navy);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

#order-standard_cart:has(.view-cart-items) .order-summary h2::before {
  display: block;
  margin-bottom: 4px;
  color: #6fd4f1;
  content: "YOUR ORDER";
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

#order-standard_cart:has(.view-cart-items) .order-summary .summary-container {
  padding: 19px 22px 22px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  line-height: 1.65;
}

#order-standard_cart:has(.view-cart-items) .svps-review-promo {
  margin: 16px 0;
  padding: 13px 0;
  border-top: 1px solid #e8edf4;
  border-bottom: 1px solid #e8edf4;
}

#order-standard_cart:has(.view-cart-items) .svps-review-promo > summary {
  color: #075fc3;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style-position: inside;
}

#order-standard_cart:has(.view-cart-items) .svps-review-promo > summary::marker {
  color: #075fc3;
}

#order-standard_cart:has(.view-cart-items) .svps-review-promo .view-cart-tabs {
  padding-top: 12px;
  border: 0;
}

#order-standard_cart:has(.view-cart-items) .svps-review-promo .nav-tabs {
  margin-bottom: 8px;
  border-bottom-color: #e8edf4;
}

#order-standard_cart:has(.view-cart-items) .svps-review-promo .nav-link {
  padding: 7px 9px;
  font-size: 12px;
}

#order-standard_cart:has(.view-cart-items) .svps-review-promo .tab-content {
  padding: 0;
}

#order-standard_cart:has(.view-cart-items) .svps-review-promo .promo form {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

#order-standard_cart:has(.view-cart-items) .svps-review-promo .promo form .form-group {
  flex: 1;
  min-width: 0;
}

#order-standard_cart:has(.view-cart-items) .svps-review-promo .promo form button {
  flex: 0 0 auto;
  width: auto;
  min-height: 43px;
}

#order-standard_cart:has(.view-cart-items) .order-summary .total-due-today .amt {
  color: var(--svps-blue);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

#order-standard_cart:has(.view-cart-items) #checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  width: 100%;
  font-size: 15px;
}

#order-standard_cart:has(.view-cart-items) #continueShopping {
  display: block;
  margin-top: 10px;
  color: #445775;
  text-align: center;
}

@media (min-width: 1200px) {
  #order-standard_cart:has(.view-cart-items) > .row > .cart-body {
    width: 80%;
  }

  #order-standard_cart:has(.view-cart-items) > .row > .cart-sidebar {
    width: 20%;
  }

  #order-standard_cart:has(.view-cart-items) .secondary-cart-body {
    width: 68%;
  }

  #order-standard_cart:has(.view-cart-items) .secondary-cart-sidebar {
    width: 32%;
  }

  #order-standard_cart:has(.view-cart-items) .cart-sidebar .list-group {
    max-height: 570px;
    overflow-y: auto;
    scrollbar-color: #c7d9ee #f7faff;
    scrollbar-width: thin;
  }

  #order-standard_cart:has(.view-cart-items) .cart-sidebar .list-group-item {
    border-bottom: 1px solid #edf1f6;
    font-size: 12px;
    line-height: 1.4;
  }

  #order-standard_cart:has(.view-cart-items) .cart-sidebar .list-group-item.active,
  #order-standard_cart:has(.view-cart-items) .cart-sidebar .list-group-item.active:hover {
    border-left: 3px solid var(--svps-blue);
    background: #eef6ff;
    box-shadow: none;
    color: #075fc3;
  }
}

@media (max-width: 767px) {
  #order-standard_cart:has(.view-cart-items) .svps-review-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  #order-standard_cart:has(.view-cart-items) .svps-secure-pill {
    display: none;
  }

  #order-standard_cart:has(.view-cart-items) .view-cart-items .item {
    padding: 18px 15px;
  }

  #order-standard_cart:has(.view-cart-items) .view-cart-items .item-title {
    font-size: 18px;
  }

  #order-standard_cart:has(.view-cart-items) .svps-config-heading,
  #order-standard_cart:has(.view-cart-items) .svps-config-row {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    gap: 8px;
  }

  #order-standard_cart:has(.view-cart-items) .svps-config-row {
    font-size: 12px;
  }
}