/*
 * This is a manifest file that'll automatically include all the stylesheets available in this directory
 * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
 * the top of the compiled file, but it's generally better to create a new file per style scope.
 *


*/
@font-face {
  font-family: 'Inter Regular';
  src: url(/assets/fonts/inter/inter-v18-latin-regular-4257feae4ab4d639ab5c04aa4e3be1e51a632cc3189abf481212a464607cba55.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Medium';
  src: url(/assets/fonts/inter/inter-v18-latin-500-4e948e63c678c58bab6bb0dc9fa0af063a33028841e5fd018908530494c6eb71.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter Semibold';
  src: url(/assets/fonts/inter/inter-v18-latin-600-eff1df42f259b7bea6b036e8d66414f539f58459a1cf1977083aae4731df0127.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Serif';
  src: url(/assets/fonts/source-serif/source-serif-4-v8-latin-regular-cd8f56d0633e0c07bdfa779dbd7324e56848e327f845156dbd7a9e5921ec2053.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: 'Source Serif Medium';
  src: url(/assets/fonts/source-serif/source-serif-4-v8-latin-500-24b592e26d85c7e4440f370ec846b156b0fc8c98ae62d31a0957b8d7a0c0caa2.woff2) format("woff2");
  font-display: swap;
}

/* ==========================================================================
   CART PAGE - Clean & Modern
   Refined shopping cart matching the site's light aesthetic
   ========================================================================== */
/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
/* line 9, app/assets/stylesheets/cart_page.scss */
:root {
  --cart-bg: #FAFBFF;
  --cart-surface: #FFFFFF;
  --cart-border: #E5E7EB;
  --cart-border-light: #F3F4F6;
  --cart-text: #111827;
  --cart-text-secondary: #6B7280;
  --cart-text-muted: #9CA3AF;
  --cart-accent: #111827;
  --cart-accent-hover: #374151;
  --cart-success: #059669;
  --cart-warning: #D97706;
  --cart-danger: #DC2626;
  --cart-radius-sm: 4px;
  --cart-radius-md: 8px;
  --cart-radius-lg: 12px;
  --cart-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --cart-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --cart-transition: 0.15s ease;
}

/* --------------------------------------------------------------------------
   Main Container
   -------------------------------------------------------------------------- */
/* line 38, app/assets/stylesheets/cart_page.scss */
.vault-cart {
  background: var(--cart-bg);
  min-height: 100vh;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

/* --------------------------------------------------------------------------
   Empty State
   -------------------------------------------------------------------------- */
/* line 47, app/assets/stylesheets/cart_page.scss */
.vault-empty {
  max-width: 400px;
  margin: 3rem auto;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cart-surface);
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius-lg);
}

/* line 57, app/assets/stylesheets/cart_page.scss */
.vault-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cart-border-light);
  border-radius: 50%;
}

/* line 67, app/assets/stylesheets/cart_page.scss */
.vault-empty__icon svg {
  width: 28px;
  height: 28px;
  color: var(--cart-text-muted);
}

/* line 74, app/assets/stylesheets/cart_page.scss */
.vault-empty__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cart-text-muted);
  margin-bottom: 0.5rem;
}

/* line 84, app/assets/stylesheets/cart_page.scss */
.vault-empty__title {
  font-family: 'Inter Medium', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cart-text);
  margin: 0 0 0.5rem;
}

/* line 92, app/assets/stylesheets/cart_page.scss */
.vault-empty__subtitle {
  font-size: 0.925rem;
  color: var(--cart-text-secondary);
  margin: 0 0 1.75rem;
  line-height: 1.5;
}

/* line 99, app/assets/stylesheets/cart_page.scss */
.vault-empty__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--cart-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--cart-radius-sm);
  transition: background var(--cart-transition);
}

/* line 114, app/assets/stylesheets/cart_page.scss */
.vault-empty__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

/* line 120, app/assets/stylesheets/cart_page.scss */
.vault-empty__cta:hover {
  background: var(--cart-accent-hover);
}

/* line 123, app/assets/stylesheets/cart_page.scss */
.vault-empty__cta:hover svg {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
/* line 132, app/assets/stylesheets/cart_page.scss */
.vault-header {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--cart-surface);
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius-lg);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  /* line 132, app/assets/stylesheets/cart_page.scss */
  .vault-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
  }
}

/* line 151, app/assets/stylesheets/cart_page.scss */
.vault-header__left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* line 157, app/assets/stylesheets/cart_page.scss */
.vault-header__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cart-text-muted);
}

/* line 165, app/assets/stylesheets/cart_page.scss */
.vault-header__title {
  font-family: 'Inter Semibold', system-ui, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--cart-text);
  margin: 0;
}

/* line 173, app/assets/stylesheets/cart_page.scss */
.vault-header__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* line 179, app/assets/stylesheets/cart_page.scss */
.vault-header__stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

/* line 185, app/assets/stylesheets/cart_page.scss */
.vault-header__stat-value {
  font-family: 'Inter Semibold', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cart-text);
}

/* line 192, app/assets/stylesheets/cart_page.scss */
.vault-header__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cart-text-muted);
}

/* line 200, app/assets/stylesheets/cart_page.scss */
.vault-header__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--cart-border);
}

/* --------------------------------------------------------------------------
   Layout Grid
   -------------------------------------------------------------------------- */
/* line 209, app/assets/stylesheets/cart_page.scss */
.vault-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  /* line 209, app/assets/stylesheets/cart_page.scss */
  .vault-layout {
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    align-items: start;
  }
}

/* --------------------------------------------------------------------------
   Items Section
   -------------------------------------------------------------------------- */
/* line 224, app/assets/stylesheets/cart_page.scss */
.vault-items {
  background: var(--cart-surface);
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius-lg);
  overflow: hidden;
}

/* line 231, app/assets/stylesheets/cart_page.scss */
.vault-items__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--cart-border-light);
}

@media (min-width: 640px) {
  /* line 231, app/assets/stylesheets/cart_page.scss */
  .vault-items__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
  }
}

/* line 246, app/assets/stylesheets/cart_page.scss */
.vault-items__title {
  font-family: 'Inter Medium', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cart-text);
  margin: 0;
}

/* line 254, app/assets/stylesheets/cart_page.scss */
.vault-items__subtitle {
  font-size: 0.85rem;
  color: var(--cart-text-muted);
  margin: 0.125rem 0 0;
}

/* line 260, app/assets/stylesheets/cart_page.scss */
.vault-items__continue {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cart-text-secondary);
  text-decoration: none;
  transition: color var(--cart-transition);
}

/* line 270, app/assets/stylesheets/cart_page.scss */
.vault-items__continue svg {
  width: 14px;
  height: 14px;
}

/* line 275, app/assets/stylesheets/cart_page.scss */
.vault-items__continue:hover {
  color: var(--cart-text);
}

/* line 280, app/assets/stylesheets/cart_page.scss */
.vault-items__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 286, app/assets/stylesheets/cart_page.scss */
.vault-items__footer {
  display: flex;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--cart-border-light);
  background: #FAFBFC;
}

@media (min-width: 640px) {
  /* line 286, app/assets/stylesheets/cart_page.scss */
  .vault-items__footer {
    padding: 1rem 1.5rem;
  }
}

/* line 297, app/assets/stylesheets/cart_page.scss */
.vault-clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cart-text-muted);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius-sm);
  transition: all var(--cart-transition);
  cursor: pointer;
}

/* line 313, app/assets/stylesheets/cart_page.scss */
.vault-clear-btn svg {
  width: 14px;
  height: 14px;
}

/* line 318, app/assets/stylesheets/cart_page.scss */
.vault-clear-btn:hover {
  color: var(--cart-danger);
  border-color: var(--cart-danger);
  background: #FEF2F2;
}

/* line 325, app/assets/stylesheets/cart_page.scss */
.vault-update-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cart-text);
  background: var(--cart-surface);
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius-sm);
  cursor: pointer;
  transition: all var(--cart-transition);
}

@media (max-width: 639px) {
  /* line 325, app/assets/stylesheets/cart_page.scss */
  .vault-update-btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

/* line 345, app/assets/stylesheets/cart_page.scss */
.vault-update-btn svg {
  width: 14px;
  height: 14px;
}

/* line 350, app/assets/stylesheets/cart_page.scss */
.vault-update-btn:hover:not(:disabled) {
  background: var(--cart-border-light);
  border-color: var(--cart-text-muted);
}

/* line 355, app/assets/stylesheets/cart_page.scss */
.vault-update-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   Cart Item
   -------------------------------------------------------------------------- */
/* line 364, app/assets/stylesheets/cart_page.scss */
.vault-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--cart-border-light);
}

@media (min-width: 640px) {
  /* line 364, app/assets/stylesheets/cart_page.scss */
  .vault-item {
    grid-template-columns: 100px 1fr auto;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
}

@media (min-width: 768px) {
  /* line 364, app/assets/stylesheets/cart_page.scss */
  .vault-item {
    grid-template-columns: 110px 1fr 200px;
  }
}

/* line 381, app/assets/stylesheets/cart_page.scss */
.vault-item:last-child {
  border-bottom: none;
}

/* Item Image */
/* line 387, app/assets/stylesheets/cart_page.scss */
.vault-item__image {
  position: relative;
  aspect-ratio: 1;
  background: #F9FAFB;
  border-radius: var(--cart-radius-md);
  overflow: hidden;
  border: 1px solid var(--cart-border-light);
}

/* line 396, app/assets/stylesheets/cart_page.scss */
.vault-item__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

/* line 402, app/assets/stylesheets/cart_page.scss */
.vault-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 408, app/assets/stylesheets/cart_page.scss */
.vault-item__preorder-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 0.2rem 0.4rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cart-accent);
  border-radius: 2px;
}

/* Item Details */
/* line 423, app/assets/stylesheets/cart_page.scss */
.vault-item__details {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

/* line 430, app/assets/stylesheets/cart_page.scss */
.vault-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

/* line 437, app/assets/stylesheets/cart_page.scss */
.vault-item__sku {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--cart-text-muted);
}

/* line 443, app/assets/stylesheets/cart_page.scss */
.vault-item__availability {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  background: #F3F4F6;
  color: var(--cart-text-secondary);
}

/* line 453, app/assets/stylesheets/cart_page.scss */
.vault-item__availability.badge-in-stock {
  background: #ECFDF5;
  color: #047857;
}

/* line 458, app/assets/stylesheets/cart_page.scss */
.vault-item__availability.badge-preorder, .vault-item__availability.badge-preorderable {
  background: #EEF2FF;
  color: #4338CA;
}

/* line 464, app/assets/stylesheets/cart_page.scss */
.vault-item__availability.badge-low-stock {
  background: #FFFBEB;
  color: #B45309;
}

/* line 469, app/assets/stylesheets/cart_page.scss */
.vault-item__availability.badge-out-of-stock {
  background: #FEF2F2;
  color: #B91C1C;
}

/* line 475, app/assets/stylesheets/cart_page.scss */
.vault-item__name {
  font-family: 'Inter Medium', system-ui, sans-serif;
  font-size: 0.925rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* line 483, app/assets/stylesheets/cart_page.scss */
.vault-item__name-link {
  color: var(--cart-text);
  text-decoration: none;
  transition: color var(--cart-transition);
}

/* line 488, app/assets/stylesheets/cart_page.scss */
.vault-item__name-link:hover {
  color: var(--cart-accent-hover);
}

/* line 493, app/assets/stylesheets/cart_page.scss */
.vault-item__variant {
  font-size: 0.8rem;
  color: var(--cart-text-secondary);
  margin: 0;
}

/* line 499, app/assets/stylesheets/cart_page.scss */
.vault-item__delivery {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--cart-text-muted);
  margin-top: 0.125rem;
}

/* line 507, app/assets/stylesheets/cart_page.scss */
.vault-item__delivery svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Preorder Info */
/* line 515, app/assets/stylesheets/cart_page.scss */
.vault-item__preorder-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.625rem;
  background: #F5F3FF;
  border: 1px solid #E9E5FF;
  border-radius: var(--cart-radius-sm);
  min-width: 0;
  overflow: hidden;
}

@media (min-width: 480px) {
  /* line 515, app/assets/stylesheets/cart_page.scss */
  .vault-item__preorder-info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
}

/* line 536, app/assets/stylesheets/cart_page.scss */
.vault-item__payment-split {
  display: flex;
  gap: 0.375rem;
  min-width: 0;
  flex-shrink: 1;
}

@media (min-width: 480px) {
  /* line 536, app/assets/stylesheets/cart_page.scss */
  .vault-item__payment-split {
    gap: 1rem;
    margin-left: auto;
  }
}

/* line 548, app/assets/stylesheets/cart_page.scss */
.vault-item__payment-now,
.vault-item__payment-later {
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
  text-align: right;
}

@media (min-width: 480px) {
  /* line 548, app/assets/stylesheets/cart_page.scss */
  .vault-item__payment-now,
.vault-item__payment-later {
    text-align: left;
  }
}

/* line 560, app/assets/stylesheets/cart_page.scss */
.vault-item__payment-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cart-text-muted);
}

@media (min-width: 480px) {
  /* line 560, app/assets/stylesheets/cart_page.scss */
  .vault-item__payment-label {
    font-size: 0.6rem;
  }
}

/* line 572, app/assets/stylesheets/cart_page.scss */
.vault-item__payment-amount {
  font-size: 0.75rem;
  font-weight: 600;
  color: #5B21B6;
}

@media (min-width: 480px) {
  /* line 572, app/assets/stylesheets/cart_page.scss */
  .vault-item__payment-amount {
    font-size: 0.8rem;
  }
}

/* line 582, app/assets/stylesheets/cart_page.scss */
.vault-item__payment-later .vault-item__payment-amount {
  color: var(--cart-text-secondary);
}

/* line 586, app/assets/stylesheets/cart_page.scss */
.vault-item__eta-pill {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 9999px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #92400E;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}

@media (min-width: 480px) {
  /* line 586, app/assets/stylesheets/cart_page.scss */
  .vault-item__eta-pill {
    align-self: center;
    padding: 0.25rem 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
  }
}

/* Item Actions */
/* line 609, app/assets/stylesheets/cart_page.scss */
.vault-item__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding: 0.625rem 0.75rem;
  background: #F8F9FA;
  border-radius: var(--cart-radius-sm);
}

@media (min-width: 640px) {
  /* line 609, app/assets/stylesheets/cart_page.scss */
  .vault-item__actions {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.625rem;
    grid-column: auto;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
}

/* line 634, app/assets/stylesheets/cart_page.scss */
.vault-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.0625rem;
}

@media (min-width: 640px) {
  /* line 634, app/assets/stylesheets/cart_page.scss */
  .vault-item__price {
    align-items: flex-end;
  }
}

/* line 645, app/assets/stylesheets/cart_page.scss */
.vault-item__price-main {
  font-family: 'Inter Semibold', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cart-text);
}

/* line 652, app/assets/stylesheets/cart_page.scss */
.vault-item__price-sub {
  font-size: 0.7rem;
  color: var(--cart-text-muted);
}

/* Quantity Controls */
/* line 658, app/assets/stylesheets/cart_page.scss */
.vault-quantity {
  display: inline-flex;
  align-items: center;
  background: #F9FAFB;
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius-sm);
}

/* line 666, app/assets/stylesheets/cart_page.scss */
.vault-quantity__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: var(--cart-text-secondary);
  cursor: pointer;
  transition: all var(--cart-transition);
}

/* line 678, app/assets/stylesheets/cart_page.scss */
.vault-quantity__btn svg {
  width: 12px;
  height: 12px;
}

/* line 683, app/assets/stylesheets/cart_page.scss */
.vault-quantity__btn:hover:not(:disabled) {
  background: var(--cart-border-light);
  color: var(--cart-text);
}

/* line 688, app/assets/stylesheets/cart_page.scss */
.vault-quantity__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* line 694, app/assets/stylesheets/cart_page.scss */
.vault-quantity__input {
  width: 48px;
  height: 32px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cart-text);
  background: #fff;
  border: none;
  border-left: 1px solid var(--cart-border);
  border-right: 1px solid var(--cart-border);
  outline: none;
  -moz-appearance: textfield;
}

/* line 708, app/assets/stylesheets/cart_page.scss */
.vault-quantity__input::-webkit-outer-spin-button, .vault-quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 714, app/assets/stylesheets/cart_page.scss */
.vault-quantity__input:focus {
  background: #F0F9FF;
}

/* line 719, app/assets/stylesheets/cart_page.scss */
.vault-quantity--fallback {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* line 726, app/assets/stylesheets/cart_page.scss */
.vault-quantity__label {
  font-size: 0.75rem;
  color: var(--cart-text-muted);
}

/* Stock Warning */
/* line 732, app/assets/stylesheets/cart_page.scss */
.vault-item__stock-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--cart-warning);
  margin: 0;
}

/* line 741, app/assets/stylesheets/cart_page.scss */
.vault-item__stock-warning svg {
  width: 12px;
  height: 12px;
}

/* Remove Button */
/* line 748, app/assets/stylesheets/cart_page.scss */
.vault-item__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  border-radius: var(--cart-radius-sm);
  color: var(--cart-text-muted);
  cursor: pointer;
  transition: all var(--cart-transition);
  margin-left: auto;
}

@media (min-width: 640px) {
  /* line 748, app/assets/stylesheets/cart_page.scss */
  .vault-item__remove {
    margin-left: 0;
  }
}

/* line 766, app/assets/stylesheets/cart_page.scss */
.vault-item__remove svg {
  width: 14px;
  height: 14px;
}

/* line 771, app/assets/stylesheets/cart_page.scss */
.vault-item__remove:hover {
  background: #FEF2F2;
  color: var(--cart-danger);
}

/* --------------------------------------------------------------------------
   Summary Sidebar
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  /* line 780, app/assets/stylesheets/cart_page.scss */
  .vault-summary {
    position: sticky;
    top: 1.5rem;
  }
}

/* line 787, app/assets/stylesheets/cart_page.scss */
.vault-summary__inner {
  background: var(--cart-surface);
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius-lg);
  padding: 1.25rem;
}

@media (min-width: 640px) {
  /* line 787, app/assets/stylesheets/cart_page.scss */
  .vault-summary__inner {
    padding: 1.5rem;
  }
}

/* line 798, app/assets/stylesheets/cart_page.scss */
.vault-summary__title {
  font-family: 'Inter Medium', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cart-text);
  margin: 0 0 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--cart-border-light);
}

/* Promo Code */
/* line 809, app/assets/stylesheets/cart_page.scss */
.vault-promo {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cart-border-light);
}

/* line 814, app/assets/stylesheets/cart_page.scss */
.vault-promo--checkout {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* line 821, app/assets/stylesheets/cart_page.scss */
.vault-promo__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cart-text-secondary);
  margin-bottom: 0.5rem;
}

/* line 829, app/assets/stylesheets/cart_page.scss */
.vault-promo__input-group {
  display: flex;
  gap: 0.5rem;
}

/* line 834, app/assets/stylesheets/cart_page.scss */
.vault-promo__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--cart-text);
  background: #fff;
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius-sm);
  outline: none;
  transition: border-color var(--cart-transition);
}

/* line 846, app/assets/stylesheets/cart_page.scss */
.vault-promo__input::placeholder {
  color: var(--cart-text-muted);
}

/* line 850, app/assets/stylesheets/cart_page.scss */
.vault-promo__input:focus {
  border-color: var(--cart-text-secondary);
  background: #fff;
}

/* line 856, app/assets/stylesheets/cart_page.scss */
.vault-promo__btn {
  flex: 0 0 auto;
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cart-text-secondary);
  background: transparent;
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius-sm);
  cursor: pointer;
  transition: all var(--cart-transition);
  white-space: nowrap;
}

/* line 871, app/assets/stylesheets/cart_page.scss */
.vault-promo__btn:hover {
  color: var(--cart-text);
  border-color: var(--cart-text);
  background: transparent;
}

/* Breakdown */
/* line 879, app/assets/stylesheets/cart_page.scss */
.vault-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

/* line 886, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

/* line 892, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__row dt {
  color: var(--cart-text-secondary);
}

/* line 896, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__row dd {
  font-weight: 500;
  color: var(--cart-text);
  margin: 0;
}

/* line 904, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__row--muted dt, .vault-breakdown__row--muted dd {
  font-size: 0.8rem;
  color: var(--cart-text-muted);
  font-weight: 400;
}

/* line 912, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__row--discount dd {
  color: var(--cart-success);
}

/* line 917, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__row--total {
  padding-top: 0.875rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--cart-border-light);
}

/* line 922, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__row--total dt {
  font-weight: 600;
  color: var(--cart-text);
}

/* line 927, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__row--total dd {
  font-family: 'Inter Semibold', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

/* line 935, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__row--due dt {
  font-weight: 600;
  color: #5B21B6;
}

/* line 940, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__row--due dd {
  font-family: 'Inter Semibold', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #5B21B6;
}

/* line 948, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__preorder-split {
  margin-top: 0.75rem;
  padding: 0.875rem;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 1px solid #A7F3D0;
  border-radius: var(--cart-radius-md);
}

/* line 956, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__split-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 961, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__split-row dt, .vault-breakdown__split-row dd {
  margin: 0;
  color: #065F46;
}

/* line 966, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__split-row dt {
  font-size: 0.8rem;
  font-weight: 500;
}

/* line 971, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__split-row dd {
  font-family: 'Inter Semibold', system-ui, sans-serif;
  font-weight: 600;
}

/* line 977, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__split-row--deposit {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #A7F3D0;
}

/* line 982, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__split-row--deposit dd {
  font-size: 1.125rem;
  color: #047857;
}

/* line 989, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__split-row--remaining dt, .vault-breakdown__split-row--remaining dd {
  color: #6B7280;
}

/* line 993, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__split-row--remaining dd {
  font-size: 0.9rem;
}

/* line 998, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__tbd {
  font-style: normal;
  color: var(--cart-text-muted);
}

/* line 1003, app/assets/stylesheets/cart_page.scss */
.vault-breakdown__note {
  font-size: 0.7rem;
  color: var(--cart-text-muted);
  margin: 0.125rem 0 0;
  text-align: right;
}

/* Terms and Conditions */
/* line 1011, app/assets/stylesheets/cart_page.scss */
.vault-terms {
  margin-bottom: 1rem;
  padding: 0.875rem;
  background: #F9FAFB;
  border-radius: var(--cart-radius-sm);
}

/* line 1018, app/assets/stylesheets/cart_page.scss */
.vault-terms__label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
}

/* line 1025, app/assets/stylesheets/cart_page.scss */
.vault-terms__checkbox {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  accent-color: var(--cart-accent);
  cursor: pointer;
}

/* line 1034, app/assets/stylesheets/cart_page.scss */
.vault-terms__text {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--cart-text-secondary);
}

/* line 1040, app/assets/stylesheets/cart_page.scss */
.vault-terms__link {
  color: var(--cart-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* line 1045, app/assets/stylesheets/cart_page.scss */
.vault-terms__link:hover {
  color: var(--cart-accent-hover);
}

/* line 1050, app/assets/stylesheets/cart_page.scss */
.vault-terms__error {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--cart-danger);
}

/* line 1055, app/assets/stylesheets/cart_page.scss */
.vault-terms__error.hidden {
  display: none;
}

/* Checkout Button */
/* line 1061, app/assets/stylesheets/cart_page.scss */
.vault-checkout {
  margin-bottom: 1.25rem;
}

/* line 1065, app/assets/stylesheets/cart_page.scss */
.vault-checkout__btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: var(--cart-accent);
  border: none;
  border-radius: var(--cart-radius-sm);
  cursor: pointer;
  transition: background var(--cart-transition), opacity var(--cart-transition);
}

/* line 1081, app/assets/stylesheets/cart_page.scss */
.vault-checkout__btn:hover:not(.vault-checkout__btn--disabled) {
  background: var(--cart-accent-hover);
}

/* line 1085, app/assets/stylesheets/cart_page.scss */
.vault-checkout__btn:disabled, .vault-checkout__btn.vault-checkout__btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Trust Signals */
/* line 1093, app/assets/stylesheets/cart_page.scss */
.vault-trust {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cart-border-light);
}

@media (min-width: 640px) {
  /* line 1093, app/assets/stylesheets/cart_page.scss */
  .vault-trust {
    display: flex;
  }
}

/* line 1105, app/assets/stylesheets/cart_page.scss */
.vault-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--cart-text-muted);
}

/* line 1112, app/assets/stylesheets/cart_page.scss */
.vault-trust__item svg {
  width: 14px;
  height: 14px;
  color: var(--cart-success);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Legacy Support
   -------------------------------------------------------------------------- */
/* line 1123, app/assets/stylesheets/cart_page.scss */
.cart-frame,
.cart-card {
  /* Preserve for compatibility */
}

/* Auto-save indicator */
/* line 1129, app/assets/stylesheets/cart_page.scss */
.auto-save-indicator {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--cart-border);
  border-radius: var(--cart-radius-md);
  font-size: 13px;
  font-weight: 500;
  color: var(--cart-text);
  z-index: 1000;
  transform: translateY(100px);
  transition: all 0.3s ease;
  opacity: 0;
  box-shadow: var(--cart-shadow);
}

/* line 1146, app/assets/stylesheets/cart_page.scss */
.auto-save-indicator.pending {
  transform: translateY(0);
  opacity: 1;
  background: #FFFBEB;
  border-color: #FCD34D;
  color: #B45309;
}

/* line 1154, app/assets/stylesheets/cart_page.scss */
.auto-save-indicator.saving {
  transform: translateY(0);
  opacity: 1;
  background: #EFF6FF;
  border-color: #93C5FD;
  color: #1D4ED8;
}

/* line 1162, app/assets/stylesheets/cart_page.scss */
.auto-save-indicator.saved {
  transform: translateY(0);
  opacity: 1;
  background: #ECFDF5;
  border-color: #6EE7B7;
  color: #047857;
}

/* line 1170, app/assets/stylesheets/cart_page.scss */
.auto-save-indicator.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

/* line 1176, app/assets/stylesheets/cart_page.scss */
.skeleton {
  background: #E5E7EB;
  border-radius: 4px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* line 4, app/assets/stylesheets/account_page.scss */
.account-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  /* line 4, app/assets/stylesheets/account_page.scss */
  .account-page {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1400px) {
  /* line 4, app/assets/stylesheets/account_page.scss */
  .account-page {
    max-width: 1200px;
  }
}

/* line 19, app/assets/stylesheets/account_page.scss */
.account-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  /* line 19, app/assets/stylesheets/account_page.scss */
  .account-header {
    margin-bottom: 3rem;
  }
}

/* line 27, app/assets/stylesheets/account_page.scss */
.account-header__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #f4f4f5 0%, #e4e4e7 100%);
  border-radius: 50%;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  /* line 27, app/assets/stylesheets/account_page.scss */
  .account-header__avatar {
    width: 5rem;
    height: 5rem;
  }
}

/* line 42, app/assets/stylesheets/account_page.scss */
.account-header__avatar svg {
  width: 2rem;
  height: 2rem;
  color: #71717a;
}

@media (min-width: 768px) {
  /* line 42, app/assets/stylesheets/account_page.scss */
  .account-header__avatar svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* line 54, app/assets/stylesheets/account_page.scss */
.account-header__email {
  color: #18181b;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  /* line 54, app/assets/stylesheets/account_page.scss */
  .account-header__email {
    font-size: 1.25rem;
  }
}

/* line 65, app/assets/stylesheets/account_page.scss */
.account-header__logout {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #71717a;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}

/* line 79, app/assets/stylesheets/account_page.scss */
.account-header__logout:hover {
  color: #18181b;
  background: #f4f4f5;
}

/* line 84, app/assets/stylesheets/account_page.scss */
.account-header__logout svg {
  width: 1rem;
  height: 1rem;
}

/* line 92, app/assets/stylesheets/account_page.scss */
.account-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e4e4e7;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  /* line 92, app/assets/stylesheets/account_page.scss */
  .account-tabs {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
}

/* line 106, app/assets/stylesheets/account_page.scss */
.account-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #71717a;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  /* line 106, app/assets/stylesheets/account_page.scss */
  .account-tab {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/* line 124, app/assets/stylesheets/account_page.scss */
.account-tab:hover {
  color: #18181b;
}

/* line 128, app/assets/stylesheets/account_page.scss */
.account-tab--active {
  color: #18181b;
  border-bottom-color: #18181b;
}

/* line 133, app/assets/stylesheets/account_page.scss */
.account-tab svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* line 140, app/assets/stylesheets/account_page.scss */
.account-card {
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 0.75rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  /* line 140, app/assets/stylesheets/account_page.scss */
  .account-card {
    border-radius: 1rem;
  }
}

/* line 151, app/assets/stylesheets/account_page.scss */
.account-card__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f4f4f5;
}

@media (min-width: 768px) {
  /* line 151, app/assets/stylesheets/account_page.scss */
  .account-card__header {
    padding: 1.5rem 2rem;
  }
}

/* line 159, app/assets/stylesheets/account_page.scss */
.account-card__header h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #18181b;
  margin: 0;
}

@media (min-width: 768px) {
  /* line 159, app/assets/stylesheets/account_page.scss */
  .account-card__header h2 {
    font-size: 1.25rem;
  }
}

/* line 171, app/assets/stylesheets/account_page.scss */
.account-card__body {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  /* line 171, app/assets/stylesheets/account_page.scss */
  .account-card__body {
    padding: 2rem;
  }
}

/* line 180, app/assets/stylesheets/account_page.scss */
.orders-table {
  width: 100%;
  display: none;
}

@media (min-width: 768px) {
  /* line 180, app/assets/stylesheets/account_page.scss */
  .orders-table {
    display: table;
  }
}

/* line 188, app/assets/stylesheets/account_page.scss */
.orders-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #71717a;
  background: #fafafa;
  border-bottom: 1px solid #e4e4e7;
}

/* line 199, app/assets/stylesheets/account_page.scss */
.orders-table th:first-child {
  padding-left: 2rem;
}

/* line 203, app/assets/stylesheets/account_page.scss */
.orders-table th:last-child {
  padding-right: 2rem;
  text-align: right;
}

/* line 209, app/assets/stylesheets/account_page.scss */
.orders-table td {
  padding: 1.25rem 1rem;
  font-size: 0.9375rem;
  color: #3f3f46;
  border-bottom: 1px solid #f4f4f5;
  vertical-align: middle;
}

/* line 216, app/assets/stylesheets/account_page.scss */
.orders-table td:first-child {
  padding-left: 2rem;
}

/* line 220, app/assets/stylesheets/account_page.scss */
.orders-table td:last-child {
  padding-right: 2rem;
  text-align: right;
}

/* line 226, app/assets/stylesheets/account_page.scss */
.orders-table tbody tr {
  transition: background-color 0.15s ease;
}

/* line 229, app/assets/stylesheets/account_page.scss */
.orders-table tbody tr:hover {
  background-color: #fafafa;
}

/* line 233, app/assets/stylesheets/account_page.scss */
.orders-table tbody tr:last-child td {
  border-bottom: none;
}

/* line 238, app/assets/stylesheets/account_page.scss */
.orders-table .order-number {
  font-weight: 600;
  color: #18181b;
}

/* line 242, app/assets/stylesheets/account_page.scss */
.orders-table .order-number a {
  color: inherit;
  text-decoration: none;
}

/* line 246, app/assets/stylesheets/account_page.scss */
.orders-table .order-number a:hover {
  text-decoration: underline;
}

/* line 252, app/assets/stylesheets/account_page.scss */
.orders-table .order-total {
  font-weight: 600;
  color: #18181b;
}

/* line 259, app/assets/stylesheets/account_page.scss */
.order-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  /* line 259, app/assets/stylesheets/account_page.scss */
  .order-cards {
    display: none;
  }
}

/* line 269, app/assets/stylesheets/account_page.scss */
.order-card {
  display: block;
  padding: 1.25rem;
  background: #fafafa;
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}

/* line 278, app/assets/stylesheets/account_page.scss */
.order-card:hover {
  background-color: #f4f4f5;
}

/* line 282, app/assets/stylesheets/account_page.scss */
.order-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

/* line 289, app/assets/stylesheets/account_page.scss */
.order-card__number {
  font-weight: 600;
  color: #18181b;
  font-size: 0.9375rem;
}

/* line 295, app/assets/stylesheets/account_page.scss */
.order-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: #71717a;
}

/* line 303, app/assets/stylesheets/account_page.scss */
.order-card__detail {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* line 308, app/assets/stylesheets/account_page.scss */
.order-card__detail svg {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.7;
}

/* line 315, app/assets/stylesheets/account_page.scss */
.order-card__total {
  font-weight: 600;
  color: #18181b;
}

/* line 322, app/assets/stylesheets/account_page.scss */
.account-empty {
  text-align: center;
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  /* line 322, app/assets/stylesheets/account_page.scss */
  .account-empty {
    padding: 4rem 2rem;
  }
}

/* line 330, app/assets/stylesheets/account_page.scss */
.account-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #f4f4f5;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

/* line 340, app/assets/stylesheets/account_page.scss */
.account-empty__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #a1a1aa;
}

/* line 347, app/assets/stylesheets/account_page.scss */
.account-empty__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 0.5rem;
}

/* line 354, app/assets/stylesheets/account_page.scss */
.account-empty__text {
  color: #71717a;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* line 363, app/assets/stylesheets/account_page.scss */
.account-empty__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #18181b;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

/* line 376, app/assets/stylesheets/account_page.scss */
.account-empty__cta:hover {
  background: #3f3f46;
}

/* line 380, app/assets/stylesheets/account_page.scss */
.account-empty__cta svg {
  width: 1rem;
  height: 1rem;
}

/* line 388, app/assets/stylesheets/account_page.scss */
.account-form {
  max-width: 400px;
}

/* line 391, app/assets/stylesheets/account_page.scss */
.account-form__group {
  margin-bottom: 1.5rem;
}

/* line 395, app/assets/stylesheets/account_page.scss */
.account-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3f3f46;
  margin-bottom: 0.5rem;
}

/* line 403, app/assets/stylesheets/account_page.scss */
.account-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #e4e4e7;
  border-radius: 0.5rem;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* line 412, app/assets/stylesheets/account_page.scss */
.account-form__input:focus {
  outline: none;
  border-color: #a1a1aa;
  box-shadow: 0 0 0 3px rgba(161, 161, 170, 0.1);
}

/* line 418, app/assets/stylesheets/account_page.scss */
.account-form__input::placeholder {
  color: #a1a1aa;
}

/* line 423, app/assets/stylesheets/account_page.scss */
.account-form__hint {
  font-size: 0.8125rem;
  color: #71717a;
  margin-top: 0.375rem;
}

/* line 429, app/assets/stylesheets/account_page.scss */
.account-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #18181b;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 443, app/assets/stylesheets/account_page.scss */
.account-form__submit:hover {
  background: #3f3f46;
}

/* line 447, app/assets/stylesheets/account_page.scss */
.account-form__submit:disabled {
  background: #d4d4d8;
  cursor: not-allowed;
}

/* line 455, app/assets/stylesheets/account_page.scss */
.order-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 9999px;
}

/* line 465, app/assets/stylesheets/account_page.scss */
.order-status--complete {
  background: #dcfce7;
  color: #166534;
}

/* line 470, app/assets/stylesheets/account_page.scss */
.order-status--pending {
  background: #fef9c3;
  color: #854d0e;
}

/* line 475, app/assets/stylesheets/account_page.scss */
.order-status--shipped {
  background: #dbeafe;
  color: #1e40af;
}

/* line 480, app/assets/stylesheets/account_page.scss */
.order-status--preorder {
  background: #ede9fe;
  color: #5b21b6;
}

/* line 485, app/assets/stylesheets/account_page.scss */
.order-status--backorder {
  background: #fef3c7;
  color: #92400e;
}

/* line 4, app/assets/stylesheets/components/filters.scss */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* line 7, app/assets/stylesheets/components/filters.scss */
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* line 14, app/assets/stylesheets/components/filters.scss */
.filter-toolbar__active-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.25rem;
}

/* line 23, app/assets/stylesheets/components/filters.scss */
.filter-toolbar__active-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* line 31, app/assets/stylesheets/components/filters.scss */
.filter-toolbar__active-title {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  font-weight: 600;
}

/* line 39, app/assets/stylesheets/components/filters.scss */
.filter-toolbar__clear {
  font-size: 0.85rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

/* line 46, app/assets/stylesheets/components/filters.scss */
.filter-toolbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-bottom: 0.25rem;
  overflow-x: auto;
}

/* line 55, app/assets/stylesheets/components/filters.scss */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #e4e8ff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

/* line 71, app/assets/stylesheets/components/filters.scss */
.filter-chip:hover {
  background: #d6ddff;
  border-color: #c7d2fe;
  color: #111827;
}

/* line 77, app/assets/stylesheets/components/filters.scss */
.filter-chip__icon {
  width: 0.9rem;
  height: 0.9rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

/* line 84, app/assets/stylesheets/components/filters.scss */
.filter-chip:hover .filter-chip__icon {
  color: #4b5563;
}

/* line 88, app/assets/stylesheets/components/filters.scss */
.filter-toolbar__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: stretch;
  padding: 1rem 0 0.5rem;
}

/* line 96, app/assets/stylesheets/components/filters.scss */
.filter-pill-wrapper {
  position: relative;
  flex: 0 0 auto;
}

/* line 101, app/assets/stylesheets/components/filters.scss */
.filter-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d6d9f5;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

/* line 115, app/assets/stylesheets/components/filters.scss */
.filter-pill:hover {
  border-color: #bfc8ff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.15);
}

/* line 120, app/assets/stylesheets/components/filters.scss */
.filter-pill.is-active {
  background: #eef2ff;
  border-color: #818cf8;
  color: #312e81;
  box-shadow: 0 18px 38px rgba(99, 102, 241, 0.25);
}

/* line 127, app/assets/stylesheets/components/filters.scss */
.filter-pill--wide {
  min-width: 230px;
}

/* line 131, app/assets/stylesheets/components/filters.scss */
.filter-pill__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

/* line 137, app/assets/stylesheets/components/filters.scss */
.filter-pill__text--inline {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
}

/* line 143, app/assets/stylesheets/components/filters.scss */
.filter-pill__subtext {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* line 149, app/assets/stylesheets/components/filters.scss */
.filter-pill__selection {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
}

/* line 155, app/assets/stylesheets/components/filters.scss */
.filter-pill__meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

/* line 162, app/assets/stylesheets/components/filters.scss */
.filter-pill__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #2563eb;
  color: #fff;
}

/* line 175, app/assets/stylesheets/components/filters.scss */
.filter-pill__caret {
  width: 1rem;
  height: 1rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

/* line 182, app/assets/stylesheets/components/filters.scss */
.filter-pill:hover .filter-pill__caret,
.filter-pill.is-active .filter-pill__caret {
  color: #475569;
}

/* line 188, app/assets/stylesheets/components/filters.scss */
.filter-dropdown {
  animation: fadeIn 0.15s ease-out;
  max-height: 70vh;
  overflow: auto;
}

@media (max-width: 575px) {
  /* line 188, app/assets/stylesheets/components/filters.scss */
  .filter-dropdown {
    min-width: 90vw;
    max-width: 90vw;
  }
}

@media (min-width: 576px) {
  /* line 188, app/assets/stylesheets/components/filters.scss */
  .filter-dropdown {
    min-width: 420px;
    max-width: 420px;
  }
}

/* line 207, app/assets/stylesheets/components/filters.scss */
.filter-pill__label {
  font-size: 0.95rem;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 575px) {
  /* line 217, app/assets/stylesheets/components/filters.scss */
  .filter-pill__label {
    max-width: 120px;
  }
  /* line 222, app/assets/stylesheets/components/filters.scss */
  .filter-pill {
    padding: 0.75rem 1.2rem;
  }
  /* line 227, app/assets/stylesheets/components/filters.scss */
  .filter-pill--wide {
    min-width: 100%;
  }
}

/* line 233, app/assets/stylesheets/components/filters.scss */
.slider-input {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  position: absolute;
  pointer-events: none;
}

/* line 241, app/assets/stylesheets/components/filters.scss */
.slider-min {
  z-index: 1;
}

/* line 245, app/assets/stylesheets/components/filters.scss */
.slider-max {
  z-index: 2;
}

/* line 249, app/assets/stylesheets/components/filters.scss */
.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #3b82f6;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: all;
  position: relative;
}

/* line 262, app/assets/stylesheets/components/filters.scss */
.slider-input::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #3b82f6;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: all;
  position: relative;
}

/* line 2, app/assets/stylesheets/components/subcategory_grid.scss */
.subcategory-card {
  display: block;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
  will-change: transform, box-shadow;
}

/* line 15, app/assets/stylesheets/components/subcategory_grid.scss */
.subcategory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  border-color: #94a3b8;
}

/* line 21, app/assets/stylesheets/components/subcategory_grid.scss */
.subcategory-card img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 25, app/assets/stylesheets/components/subcategory_grid.scss */
.subcategory-card:hover img {
  transform: scale(1.05);
}

/* line 29, app/assets/stylesheets/components/subcategory_grid.scss */
.subcategory-card h3 {
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  /* line 34, app/assets/stylesheets/components/subcategory_grid.scss */
  .subcategory-card {
    border-radius: 12px;
  }
}

/* line 2, app/assets/stylesheets/components/breadcrumb.scss */
.breadcrumb {
  margin-bottom: 24px;
}

/* line 6, app/assets/stylesheets/components/breadcrumb.scss */
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 16, app/assets/stylesheets/components/breadcrumb.scss */
.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}

/* line 24, app/assets/stylesheets/components/breadcrumb.scss */
.breadcrumb-link {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* line 30, app/assets/stylesheets/components/breadcrumb.scss */
.breadcrumb-link:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

/* line 35, app/assets/stylesheets/components/breadcrumb.scss */
.breadcrumb-current {
  color: #1a1a1a;
  font-weight: 500;
}

/* line 40, app/assets/stylesheets/components/breadcrumb.scss */
.breadcrumb-separator {
  width: 14px;
  height: 14px;
  color: #999;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  /* line 48, app/assets/stylesheets/components/breadcrumb.scss */
  .breadcrumb {
    margin-bottom: 16px;
  }
  /* line 52, app/assets/stylesheets/components/breadcrumb.scss */
  .breadcrumb-item {
    font-size: 12px;
  }
  /* line 56, app/assets/stylesheets/components/breadcrumb.scss */
  .breadcrumb-separator {
    width: 12px;
    height: 12px;
  }
}

/* ==========================================================================
   Quantity Selector Component
   Used on product pages and cart drawer
   ========================================================================== */
/* line 6, app/assets/stylesheets/components/_quantity_selector.scss */
.simple-quantity-selector {
  display: inline-flex;
  align-items: center;
}

/* line 11, app/assets/stylesheets/components/_quantity_selector.scss */
.quantity-controls {
  display: inline-flex;
  align-items: center;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}

/* line 20, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.15s ease;
}

/* line 32, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn svg {
  width: 16px;
  height: 16px;
}

/* line 37, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn:hover:not(:disabled) {
  background: #F3F4F6;
  color: #111827;
}

/* line 42, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* line 47, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn.minus {
  border-right: 1px solid #E5E7EB;
}

/* line 51, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-btn.plus {
  border-left: 1px solid #E5E7EB;
}

/* line 56, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-input {
  width: 48px;
  height: 40px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  background: #fff;
  border: none;
  outline: none;
  -moz-appearance: textfield;
}

/* line 68, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 74, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-input:focus {
  background: #F0F9FF;
}

/* line 78, app/assets/stylesheets/components/_quantity_selector.scss */
.qty-input:disabled {
  background: #F9FAFB;
  color: #9CA3AF;
}

/* line 10, app/assets/stylesheets/screen.scss */
body {
  background: #FAFBFF;
  min-height: 100vh;
}

/* line 16, app/assets/stylesheets/screen.scss */
button,
input[type="submit"],
input[type="button"],
input[type="checkbox"],
input[type="radio"],
label {
  cursor: pointer;
}

/* line 24, app/assets/stylesheets/screen.scss */
button:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled,
input[type="checkbox"]:disabled,
input[type="radio"]:disabled,
label:disabled {
  cursor: not-allowed;
}

/* line 30, app/assets/stylesheets/screen.scss */
.breadcrumb-background {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
}

/* line 37, app/assets/stylesheets/screen.scss */
.product-card-image-primary {
  opacity: 1 !important;
  z-index: 1 !important;
}

/* line 42, app/assets/stylesheets/screen.scss */
.product-card-image-hover {
  opacity: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

@media (min-width: 768px) {
  /* line 50, app/assets/stylesheets/screen.scss */
  .product-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  }
  /* line 54, app/assets/stylesheets/screen.scss */
  .product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  }
  /* line 58, app/assets/stylesheets/screen.scss */
  .product-card:hover img {
    transform: scale(1.05) !important;
  }
  /* line 63, app/assets/stylesheets/screen.scss */
  .product-card:hover .product-card-image-hover {
    opacity: 1 !important;
  }
  /* line 68, app/assets/stylesheets/screen.scss */
  .product-card:hover .product-image:has(.product-card-image-hover) .product-card-image-primary {
    opacity: 0 !important;
  }
  /* line 73, app/assets/stylesheets/screen.scss */
  .product-card img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
  }
}

@media (max-width: 767px) {
  /* line 81, app/assets/stylesheets/screen.scss */
  .product-card {
    transition: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  }
  /* line 85, app/assets/stylesheets/screen.scss */
  .product-card:hover, .product-card:active {
    transform: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
  }
  /* line 91, app/assets/stylesheets/screen.scss */
  .product-card img {
    transition: none !important;
  }
  /* line 95, app/assets/stylesheets/screen.scss */
  .product-card:hover img, .product-card:active img {
    transform: none !important;
  }
  /* line 101, app/assets/stylesheets/screen.scss */
  .product-card:hover .product-card-image-primary, .product-card:active .product-card-image-primary {
    opacity: 1 !important;
  }
  /* line 106, app/assets/stylesheets/screen.scss */
  .product-card:hover .product-card-image-hover, .product-card:active .product-card-image-hover {
    opacity: 0 !important;
  }
}

/* line 114, app/assets/stylesheets/screen.scss */
.featured-carousel {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* line 120, app/assets/stylesheets/screen.scss */
.featured-carousel::-webkit-scrollbar {
  display: none;
}

@media (max-width: 767px) {
  /* line 127, app/assets/stylesheets/screen.scss */
  .featured-carousel .group {
    transition: none !important;
  }
  /* line 130, app/assets/stylesheets/screen.scss */
  .featured-carousel .group:hover, .featured-carousel .group:active {
    transform: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1) !important;
  }
}
/*
Placeholder manifest file.
the installer will append this file to the app vendored assets here: 'vendor/assets/stylesheets/spree/frontend/all.css'
*/

.solidus-stripe-payment {
  padding: 1em 0;
  width: 100%;
}

[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 3, app/assets/stylesheets/preorders_section.scss */
.preorder-product-card:hover {
  border-color: #0070CC !important;
  transform: translateY(-10px);
}
/*
 * This is a manifest file that'll automatically include all the stylesheets available in this directory
 * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
 * the top of the compiled file, but it's generally better to create a new file per style scope.
 *
 * spree/frontend/all points to the
 * `vendor/assets/stylesheets/spree/frontend/all.css` file generated by
 * `solidus:install`. See `setup_assets` at
 * https://github.com/solidusio/solidus/blob/main/core/lib/generators/solidus/install/install_generator.rb

 *



*/
