/** Shopify CDN: Minification failed

Line 166:0 Unexpected "}"

**/
/* ==========================================================================
   lb-cart-ui.css
   Legendary Branding — Cart UI enhancements
   Covers: Trust Badge bar · Complete the Fit upsell row
   ========================================================================== */

/* --------------------------------------------------------------------------
   Trust Badge Bar
   .lb-cart-trust  >  .lb-cart-trust__item
   Sits between the totals block and the checkout button.
   -------------------------------------------------------------------------- */

.lb-cart-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.25rem;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
}

.lb-cart-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(var(--color-foreground-rgb) / 0.55);
  white-space: nowrap;
}

.lb-cart-trust__item svg {
  flex-shrink: 0;
  opacity: 0.65;
  color: inherit;
}

/* --------------------------------------------------------------------------
   Predictive Search — Loading State
   aria-busy="true" is set on the results container during fetch.
   -------------------------------------------------------------------------- */

[aria-busy="true"].predictive-search-results {
  position: relative;
  pointer-events: none;
}

[aria-busy="true"].predictive-search-results::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgb(var(--color-foreground-rgb) / 0.04) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: lb-search-shimmer 1.2s ease-in-out infinite;
}

@keyframes lb-search-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --------------------------------------------------------------------------
   Razorpay UPI Badge
   .lb-razorpay-upi-wrapper > .lb-razorpay-upi-btn
   Gated behind settings.razorpay_badge_enabled in cart-summary.liquid.
   -------------------------------------------------------------------------- */

.lb-razorpay-upi-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.lb-razorpay-upi-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgb(var(--color-foreground-rgb) / 0.05);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1;
  color: rgb(var(--color-foreground-rgb));
  transition: background 0.18s ease;
}

.lb-razorpay-upi-btn:hover {
  background: rgb(var(--color-foreground-rgb) / 0.08);
}

.lb-razorpay-upi-btn svg {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Checkout Button
   -------------------------------------------------------------------------- */

.cart__checkout-button {
  border-radius: 8px !important;
}

.shopify-payment-button__button {
  border-radius: 8px !important;
}

.cart__checkout-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   404 Page
   -------------------------------------------------------------------------- */

.lb-404 {
  text-align: center;
  padding: 60px 20px;
}

.lb-404__code {
  font-size: 6rem;
  margin: 0;
  line-height: 1;
}

.lb-404__title {
  margin: 12px 0 8px;
}

.lb-404__message {
  margin: 0 0 28px;
  opacity: 0.7;
}

.lb-404__cta {
  display: inline-block;
  padding: 14px 32px;
  background: rgb(var(--color-foreground-rgb));
  color: rgb(var(--color-background));
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  }
}
