/* line 30, app/assets/stylesheets/sqrl_brand_tokens.scss */
:root {
  --sqrl-cream-50: #f8f4ee;
  --sqrl-sand-100: #ede0d0;
  --sqrl-sage-200: #eaebc4;
  --sqrl-acorn-400: #e6974c;
  --sqrl-cinnamon-500: #c19a77;
  --sqrl-bark-600: #a87555;
  --sqrl-home-bg: #f6fbf4;
  --sqrl-home-muted: #e7efeb;
  --sqrl-home-primary: #4b9b7d;
  --sqrl-home-primary-glow: #87c5ae;
  --sqrl-home-foreground: #305044;
  --sqrl-home-muted-foreground: #7b9d91;
  --sqrl-home-border: #cfe2d9;
  --sqrl-action-primary: #2f6f58;
  --sqrl-action-primary-hover: #285e4c;
  --sqrl-text-muted-accessible: #526e63;
  --sqrl-auth-primary-strong: var(--sqrl-action-primary);
  --sqrl-auth-primary-hover: var(--sqrl-action-primary-hover);
  --sqrl-auth-muted-foreground: var(--sqrl-text-muted-accessible);
  --sqrl-font-heading: "Montserrat", "Inter", sans-serif;
  --sqrl-font-body: "Inter", "Montserrat", sans-serif;
  --sqrl-space-1: 0.375rem;
  --sqrl-space-2: 0.75rem;
  --sqrl-space-3: 1.125rem;
  --sqrl-space-4: 1.5rem;
  --sqrl-space-5: 1.875rem;
  --sqrl-space-6: 2.25rem;
  --sqrl-space-8: 3rem;
  --sqrl-space-10: 3.75rem;
  --sqrl-space-12: 4.5rem;
  --sqrl-radius-sm: 0.375rem;
  --sqrl-radius-md: 0.75rem;
  --sqrl-radius-lg: 1.125rem;
  --sqrl-radius-xl: 1.5rem;
}

/* line 3, app/assets/stylesheets/cart_page.scss */
.cart-page {
  background: radial-gradient(circle at 92% 8%, rgba(230, 151, 76, 0.12), transparent 18rem), var(--sqrl-home-bg);
  color: var(--sqrl-home-foreground);
  font-family: var(--sqrl-font-body);
  min-height: 60vh;
  padding: var(--sqrl-space-6) var(--sqrl-space-4) var(--sqrl-space-12);
}

/* line 13, app/assets/stylesheets/cart_page.scss */
.cart-page *,
.cart-page *::before,
.cart-page *::after {
  box-sizing: border-box;
}

/* line 19, app/assets/stylesheets/cart_page.scss */
.cart-page__shell {
  display: grid;
  gap: var(--sqrl-space-6);
  margin: 0 auto;
  max-width: 75rem;
}

/* line 26, app/assets/stylesheets/cart_page.scss */
.cart-page h1,
.cart-page h2,
.cart-page h3,
.cart-page strong,
.cart-page button,
.cart-page .cart-button {
  font-family: var(--sqrl-font-heading);
}

/* line 35, app/assets/stylesheets/cart_page.scss */
.cart-header {
  align-items: end;
  border-bottom: 1px solid var(--sqrl-home-border);
  display: flex;
  gap: var(--sqrl-space-4);
  justify-content: space-between;
  padding-bottom: var(--sqrl-space-4);
}

/* line 44, app/assets/stylesheets/cart_page.scss */
.cart-header__eyebrow,
.cart-empty__eyebrow {
  color: var(--sqrl-action-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 var(--sqrl-space-1);
  text-transform: uppercase;
}

/* line 54, app/assets/stylesheets/cart_page.scss */
.cart-header h1,
.cart-empty h1 {
  color: var(--sqrl-home-foreground);
  font-family: var(--sqrl-font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

/* line 65, app/assets/stylesheets/cart_page.scss */
.cart-header__intro,
.cart-empty__intro,
.cart-page__update-actions p,
.cart-coupon__help,
.cart-footer__checkout-note {
  color: var(--sqrl-text-muted-accessible);
  line-height: 1.55;
}

/* line 74, app/assets/stylesheets/cart_page.scss */
.cart-header__intro {
  margin: var(--sqrl-space-1) 0 0;
}

/* line 78, app/assets/stylesheets/cart_page.scss */
.cart-header__continue {
  color: var(--sqrl-action-primary);
  font-weight: 700;
  min-height: 44px;
  padding: var(--sqrl-space-2) 0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* line 88, app/assets/stylesheets/cart_page.scss */
.cart-page__items-panel,
.cart-page__summary,
.cart-empty {
  background: var(--sqrl-cream-50);
  border: 1px solid var(--sqrl-home-border);
  border-radius: var(--sqrl-radius-xl);
  box-shadow: 0 18px 48px rgba(47, 111, 88, 0.08);
}

/* line 97, app/assets/stylesheets/cart_page.scss */
.cart-page__items-panel {
  min-width: 0;
  padding: var(--sqrl-space-4);
}

/* line 102, app/assets/stylesheets/cart_page.scss */
.cart-items {
  display: flex;
  flex-direction: column;
}

/* line 107, app/assets/stylesheets/cart_page.scss */
.cart-item {
  align-items: start;
  border-bottom: 1px solid var(--sqrl-home-border);
  display: grid;
  gap: var(--sqrl-space-3);
  grid-template-columns: 7.5rem minmax(0, 1fr);
  padding: var(--sqrl-space-4) 0;
}

/* line 116, app/assets/stylesheets/cart_page.scss */
.cart-item__media {
  align-items: center;
  aspect-ratio: 1;
  background: var(--sqrl-home-muted);
  border-radius: var(--sqrl-radius-lg);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: var(--sqrl-space-2);
}

/* line 127, app/assets/stylesheets/cart_page.scss */
.cart-item__media a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

/* line 135, app/assets/stylesheets/cart_page.scss */
.cart-item__media img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

/* line 141, app/assets/stylesheets/cart_page.scss */
.cart-item__details {
  min-width: 0;
}

/* line 145, app/assets/stylesheets/cart_page.scss */
.cart-item__info {
  gap: var(--sqrl-space-1) !important;
}

/* line 149, app/assets/stylesheets/cart_page.scss */
.cart-item__info h3 {
  color: var(--sqrl-home-foreground);
  font-size: 1.125rem;
  line-height: 1.35;
  margin: 0;
}

/* line 156, app/assets/stylesheets/cart_page.scss */
.cart-item__info a {
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* line 163, app/assets/stylesheets/cart_page.scss */
.cart-item__info p,
.cart-item__info small,
.cart-item__info .text-gray-600,
.cart-item__info .text-blue-600 {
  color: var(--sqrl-text-muted-accessible) !important;
  margin: 0;
}

/* line 171, app/assets/stylesheets/cart_page.scss */
.cart-item__controls {
  align-items: end;
  display: grid;
  gap: var(--sqrl-space-3);
  grid-column: 2;
  grid-template-columns: 6rem minmax(9rem, 1fr) auto;
}

/* line 179, app/assets/stylesheets/cart_page.scss */
.cart-item__quantity label,
.cart-coupon label,
.cart-item__price-label {
  color: var(--sqrl-home-foreground);
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: var(--sqrl-space-1);
}

/* line 189, app/assets/stylesheets/cart_page.scss */
.cart-item__quantity input,
.cart-coupon input {
  background: #ffffff;
  border: 1px solid var(--sqrl-home-border);
  border-radius: var(--sqrl-radius-md);
  color: var(--sqrl-home-foreground);
  font: 600 1rem/1.2 var(--sqrl-font-body);
  min-height: 48px;
  padding: var(--sqrl-space-2);
  width: 100%;
}

/* line 201, app/assets/stylesheets/cart_page.scss */
.cart-item__price {
  text-align: right;
}

/* line 205, app/assets/stylesheets/cart_page.scss */
.cart-item__line-total,
.cart-item__due {
  color: var(--sqrl-home-foreground);
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0;
}

/* line 213, app/assets/stylesheets/cart_page.scss */
.cart-item__before-coverage,
.cart-item__coverage-detail {
  color: var(--sqrl-text-muted-accessible);
  font-size: 0.8125rem;
  line-height: 1.4;
  margin: 0;
}

/* line 221, app/assets/stylesheets/cart_page.scss */
.cart-item__before-coverage .money {
  text-decoration: line-through;
}

/* line 225, app/assets/stylesheets/cart_page.scss */
.cart-item__coverage-detail {
  margin-top: var(--sqrl-space-1);
}

/* line 229, app/assets/stylesheets/cart_page.scss */
.cart-item__remove {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--sqrl-radius-md);
  color: var(--sqrl-text-muted-accessible);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  gap: var(--sqrl-space-1);
  justify-content: center;
  min-height: 44px;
  padding: var(--sqrl-space-2);
}

/* line 245, app/assets/stylesheets/cart_page.scss */
.cart-item__remove svg,
.cart-button svg {
  fill: currentColor;
  height: 1.25rem;
  width: 1.25rem;
}

/* line 252, app/assets/stylesheets/cart_page.scss */
.cart-item__remove:hover {
  background: var(--sqrl-sand-100);
  color: #7a352f;
}

/* line 257, app/assets/stylesheets/cart_page.scss */
.cart-page__update-actions {
  align-items: center;
  display: flex;
  gap: var(--sqrl-space-3);
  justify-content: flex-end;
  padding-top: var(--sqrl-space-4);
}

/* line 265, app/assets/stylesheets/cart_page.scss */
.cart-page__update-actions p {
  font-size: 0.875rem;
  margin: 0;
  max-width: 27rem;
}

/* line 271, app/assets/stylesheets/cart_page.scss */
.cart-button {
  align-items: center;
  border-radius: var(--sqrl-radius-md);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9375rem;
  font-weight: 800;
  gap: var(--sqrl-space-1);
  justify-content: center;
  line-height: 1.2;
  min-height: 48px;
  padding: var(--sqrl-space-2) var(--sqrl-space-3);
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

/* line 288, app/assets/stylesheets/cart_page.scss */
.cart-button--primary {
  background: var(--sqrl-action-primary);
  border: 1px solid var(--sqrl-action-primary);
  color: #ffffff !important;
}

/* line 294, app/assets/stylesheets/cart_page.scss */
.cart-button--primary:hover {
  background: var(--sqrl-action-primary-hover);
  border-color: var(--sqrl-action-primary-hover);
  transform: translateY(-1px);
}

/* line 300, app/assets/stylesheets/cart_page.scss */
.cart-button--secondary {
  background: transparent;
  border: 1px solid var(--sqrl-action-primary);
  color: var(--sqrl-action-primary) !important;
}

/* line 306, app/assets/stylesheets/cart_page.scss */
.cart-button--secondary:hover {
  background: var(--sqrl-home-muted);
}

/* line 310, app/assets/stylesheets/cart_page.scss */
.cart-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* line 315, app/assets/stylesheets/cart_page.scss */
.cart-page :focus-visible {
  outline: 3px solid var(--sqrl-home-primary-glow);
  outline-offset: 3px;
}

/* line 320, app/assets/stylesheets/cart_page.scss */
.cart-page__summary {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: var(--sqrl-space-4);
  padding: var(--sqrl-space-4);
}

/* line 328, app/assets/stylesheets/cart_page.scss */
.cart-page__summary h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
}

/* line 334, app/assets/stylesheets/cart_page.scss */
.cart-coupon {
  border-bottom: 1px solid var(--sqrl-home-border);
  padding-bottom: var(--sqrl-space-4);
}

/* line 339, app/assets/stylesheets/cart_page.scss */
.cart-coupon h3 {
  font-size: 1rem;
  margin: 0 0 var(--sqrl-space-1);
}

/* line 344, app/assets/stylesheets/cart_page.scss */
.cart-coupon__help {
  font-size: 0.875rem;
  margin: 0 0 var(--sqrl-space-2);
}

/* line 349, app/assets/stylesheets/cart_page.scss */
.cart-coupon__controls {
  display: grid;
  gap: var(--sqrl-space-2);
  grid-template-columns: minmax(0, 1fr) auto;
}

/* line 355, app/assets/stylesheets/cart_page.scss */
.cart-coupon__applied {
  margin-top: var(--sqrl-space-3);
}

/* line 359, app/assets/stylesheets/cart_page.scss */
.cart-coupon__applied > p {
  color: var(--sqrl-text-muted-accessible);
  font-size: 0.8125rem;
  margin: 0 0 var(--sqrl-space-1);
}

/* line 365, app/assets/stylesheets/cart_page.scss */
.cart-coupon__applied ul {
  display: flex;
  flex-direction: column;
  gap: var(--sqrl-space-1);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 374, app/assets/stylesheets/cart_page.scss */
.cart-coupon__applied li {
  align-items: center;
  background: var(--sqrl-home-muted);
  border-radius: var(--sqrl-radius-md);
  display: flex;
  gap: var(--sqrl-space-2);
  justify-content: space-between;
  padding: var(--sqrl-space-2);
}

/* line 384, app/assets/stylesheets/cart_page.scss */
.cart-coupon__details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* line 390, app/assets/stylesheets/cart_page.scss */
.cart-coupon__details span {
  color: var(--sqrl-text-muted-accessible);
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

/* line 396, app/assets/stylesheets/cart_page.scss */
.cart-coupon__actions {
  align-items: center;
  display: flex;
  gap: var(--sqrl-space-1);
}

/* line 402, app/assets/stylesheets/cart_page.scss */
.cart-coupon__amount {
  color: var(--sqrl-action-primary);
  font-weight: 800;
}

/* line 407, app/assets/stylesheets/cart_page.scss */
.cart-coupon__remove {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--sqrl-radius-md);
  color: #7a352f;
  display: inline-flex;
  font-size: 1.5rem;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  text-decoration: none;
}

/* line 420, app/assets/stylesheets/cart_page.scss */
.cart-coupon__remove:hover {
  background: var(--sqrl-sand-100);
}

/* line 424, app/assets/stylesheets/cart_page.scss */
.cart-adjustments {
  display: flex;
  flex-direction: column;
  gap: var(--sqrl-space-2);
  margin: 0;
}

/* line 431, app/assets/stylesheets/cart_page.scss */
.cart-amount-row,
.cart-footer__total {
  align-items: start;
  display: flex;
  gap: var(--sqrl-space-2);
  justify-content: space-between;
}

/* line 439, app/assets/stylesheets/cart_page.scss */
.cart-amount-row dt {
  display: flex;
  flex-direction: column;
}

/* line 444, app/assets/stylesheets/cart_page.scss */
.cart-amount-row__label {
  color: var(--sqrl-text-muted-accessible);
  font-size: 0.75rem;
}

/* line 449, app/assets/stylesheets/cart_page.scss */
.cart-amount-row__amount {
  flex: 0 0 auto;
  font-weight: 700;
}

/* line 454, app/assets/stylesheets/cart_page.scss */
.cart-footer__total {
  border-top: 1px solid var(--sqrl-home-border);
  font-size: 1.125rem;
  margin: var(--sqrl-space-3) 0 0;
  padding-top: var(--sqrl-space-3);
}

/* line 461, app/assets/stylesheets/cart_page.scss */
.cart-footer__coverage-note {
  background: var(--sqrl-home-muted);
  border-radius: var(--sqrl-radius-md);
  color: var(--sqrl-home-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: var(--sqrl-space-2) 0 0;
  padding: var(--sqrl-space-2);
}

/* line 471, app/assets/stylesheets/cart_page.scss */
.cart-footer__primary-action {
  margin-top: var(--sqrl-space-4);
}

/* line 475, app/assets/stylesheets/cart_page.scss */
.cart-footer__primary-action .cart-button,
.cart-footer__secondary-action .cart-button {
  width: 100%;
}

/* line 480, app/assets/stylesheets/cart_page.scss */
.cart-footer__checkout-note {
  font-size: 0.75rem;
  margin: var(--sqrl-space-1) 0 0;
  text-align: center;
}

/* line 486, app/assets/stylesheets/cart_page.scss */
.cart-footer__secondary-action {
  margin-top: var(--sqrl-space-2);
}

/* line 490, app/assets/stylesheets/cart_page.scss */
.cart-empty {
  margin: 0 auto;
  max-width: 46rem;
  padding: var(--sqrl-space-8) var(--sqrl-space-6);
  text-align: center;
}

/* line 497, app/assets/stylesheets/cart_page.scss */
.cart-empty__icon {
  align-items: center;
  background: var(--sqrl-home-muted);
  border-radius: var(--sqrl-radius-lg);
  color: var(--sqrl-action-primary);
  display: flex;
  height: 4.5rem;
  justify-content: center;
  margin: 0 auto var(--sqrl-space-3);
  width: 4.5rem;
}

/* line 509, app/assets/stylesheets/cart_page.scss */
.cart-empty__icon svg {
  fill: currentColor;
  height: 2.25rem;
  width: 2.25rem;
}

/* line 515, app/assets/stylesheets/cart_page.scss */
.cart-empty__intro {
  margin: var(--sqrl-space-2) auto var(--sqrl-space-4);
  max-width: 34rem;
}

@media (min-width: 64rem) {
  /* line 521, app/assets/stylesheets/cart_page.scss */
  .cart-page {
    padding-left: var(--sqrl-space-6);
    padding-right: var(--sqrl-space-6);
  }
  /* line 526, app/assets/stylesheets/cart_page.scss */
  .cart-page__shell {
    grid-template-columns: minmax(0, 2fr) minmax(19rem, 1fr);
  }
  /* line 530, app/assets/stylesheets/cart_page.scss */
  .cart-page__summary {
    position: sticky;
    top: var(--sqrl-space-4);
  }
}

@media (max-width: 48rem) {
  /* line 537, app/assets/stylesheets/cart_page.scss */
  .cart-page {
    padding: var(--sqrl-space-4) var(--sqrl-space-2) var(--sqrl-space-8);
  }
  /* line 541, app/assets/stylesheets/cart_page.scss */
  .cart-page__items-panel,
.cart-page__summary {
    padding: var(--sqrl-space-3);
  }
  /* line 546, app/assets/stylesheets/cart_page.scss */
  .cart-header {
    align-items: start;
    flex-direction: column;
  }
  /* line 551, app/assets/stylesheets/cart_page.scss */
  .cart-header h1,
.cart-empty h1 {
    font-size: 1.875rem;
  }
  /* line 556, app/assets/stylesheets/cart_page.scss */
  .cart-item {
    grid-template-columns: 5.25rem minmax(0, 1fr);
  }
  /* line 560, app/assets/stylesheets/cart_page.scss */
  .cart-item__controls {
    grid-column: 1 / -1;
    grid-template-columns: 5.25rem minmax(0, 1fr) auto;
  }
  /* line 565, app/assets/stylesheets/cart_page.scss */
  .cart-page__update-actions {
    align-items: stretch;
    flex-direction: column;
  }
  /* line 570, app/assets/stylesheets/cart_page.scss */
  .cart-page__update-button {
    width: 100%;
  }
  /* line 574, app/assets/stylesheets/cart_page.scss */
  .cart-empty {
    padding: var(--sqrl-space-6) var(--sqrl-space-3);
  }
}

@media (max-width: 24rem) {
  /* line 580, app/assets/stylesheets/cart_page.scss */
  .cart-item__controls,
.cart-coupon__controls {
    grid-template-columns: 1fr;
  }
  /* line 585, app/assets/stylesheets/cart_page.scss */
  .cart-item__price {
    text-align: left;
  }
  /* line 589, app/assets/stylesheets/cart_page.scss */
  .cart-item__remove {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* line 595, app/assets/stylesheets/cart_page.scss */
  .cart-button {
    transition: none;
  }
  /* line 599, app/assets/stylesheets/cart_page.scss */
  .cart-button--primary:hover {
    transform: none;
  }
}
