/* [project]/apps/web-user/src/components/ui/GlobalLoader.module.css [app-client] (css) */
.GlobalLoader-module__Fv0_ba__loaderContainer {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
}

.GlobalLoader-module__Fv0_ba__fullScreen {
  min-height: 100vh;
  padding: 0;
}

.GlobalLoader-module__Fv0_ba__loader {
  aspect-ratio: 1;
  background: #f10c49;
  border-radius: 50%;
  width: 22px;
  animation: 1.5s linear infinite GlobalLoader-module__Fv0_ba__l10;
}

@keyframes GlobalLoader-module__Fv0_ba__l10 {
  0% {
    box-shadow: 0 -30px #f4dd51, 21.21px -21.21px #e3aad6, 30px 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6;
  }

  12.5% {
    box-shadow: 0 0 #f4dd51, 21.21px -21.21px #e3aad6, 30px 0 #f4dd51, 21.21px 21.21px #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6;
  }

  25% {
    box-shadow: 0 0 #f4dd51, 0 0 #e3aad6, 30px 0 #f4dd51, 21.21px 21.21px #e3aad6, 0 30px #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6;
  }

  37.5% {
    box-shadow: 0 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 21.21px 21.21px #e3aad6, 0 30px #f4dd51, -21.21px 21.21px #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6;
  }

  50% {
    box-shadow: 0 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6, 0 30px #f4dd51, -21.21px 21.21px #e3aad6, -30px 0 #f4dd51, 0 0 #e3aad6;
  }

  62.5% {
    box-shadow: 0 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, -21.21px 21.21px #e3aad6, -30px 0 #f4dd51, -21.21px -21.21px #e3aad6;
  }

  75% {
    box-shadow: 0 -30px #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6, -30px 0 #f4dd51, -21.21px -21.21px #e3aad6;
  }

  87.5% {
    box-shadow: 0 -30px #f4dd51, 21.21px -21.21px #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, -21.21px -21.21px #e3aad6;
  }

  100% {
    box-shadow: 0 -30px #f4dd51, 21.21px -21.21px #e3aad6, 30px 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6, 0 0 #f4dd51, 0 0 #e3aad6;
  }
}

/* [project]/apps/web-user/src/components/cart/CartClient.module.css [app-client] (css) */
.CartClient-module__Stwy1W__root {
  background: #f8f9fa;
  min-height: 100vh;
}

.CartClient-module__Stwy1W__inner {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 120px;
  display: grid;
}

@media (min-width: 1024px) {
  .CartClient-module__Stwy1W__inner {
    grid-template-columns: 1fr 300px;
    gap: 32px;
    padding-bottom: 48px;
  }
}

.CartClient-module__Stwy1W__cartSection {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.CartClient-module__Stwy1W__cartHeaderDesktop {
  display: none;
}

@media (min-width: 1024px) {
  .CartClient-module__Stwy1W__cartHeaderDesktop {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    display: flex;
  }
}

.CartClient-module__Stwy1W__cartTitle {
  color: #111827;
  letter-spacing: -.4px;
  font-size: 22px;
  font-weight: 800;
}

.CartClient-module__Stwy1W__cartCount {
  color: #f27a1a;
  background: #fff7ee;
  border: 1.5px solid #ffd4b0;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
}

.CartClient-module__Stwy1W__loadingBox {
  background: #fff;
  border: 1.5px solid #f1f3f5;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 80px 20px;
  display: flex;
}

.CartClient-module__Stwy1W__emptyBox {
  background: #fff;
  border: 1.5px solid #f1f3f5;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  padding: 72px 20px;
  display: flex;
  box-shadow: 0 2px 12px #0000000a;
}

.CartClient-module__Stwy1W__emptyIcon {
  color: #ffd4b0;
  margin-bottom: 20px;
}

.CartClient-module__Stwy1W__emptyTitle {
  color: #111827;
  letter-spacing: -.3px;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 800;
}

.CartClient-module__Stwy1W__emptySub {
  color: #6b7280;
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.CartClient-module__Stwy1W__freeShipCard {
  background: #fff;
  border: 1.5px solid #f1f3f5;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px #0000000a;
}

.CartClient-module__Stwy1W__freeShipText {
  color: #374151;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
}

.CartClient-module__Stwy1W__freeTrack {
  background: #f3f4f6;
  border-radius: 4px;
  height: 7px;
  overflow: hidden;
}

.CartClient-module__Stwy1W__freeFill {
  background: linear-gradient(90deg, #f27a1a, #ffb800);
  border-radius: 4px;
  height: 100%;
  transition: width .6s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
}

.CartClient-module__Stwy1W__freeFill:after {
  content: "";
  background: #f27a1a;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  box-shadow: 0 0 6px #f27a1a80;
}

.CartClient-module__Stwy1W__itemCard {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  gap: 14px;
  padding: 12px;
  transition: all .25s;
  display: flex;
  position: relative;
}

.CartClient-module__Stwy1W__itemRemoving {
  opacity: .3;
  pointer-events: none;
  transform: translateX(24px)scale(.97);
}

.CartClient-module__Stwy1W__imgWrap {
  background: #f8f9fa;
  border-radius: 8px;
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  position: relative;
  overflow: hidden;
}

.CartClient-module__Stwy1W__itemContent {
  flex-direction: column;
  flex: 1;
  min-width: 0;
  display: flex;
}

.CartClient-module__Stwy1W__itemHeader {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
  display: flex;
}

.CartClient-module__Stwy1W__itemName {
  color: #374151;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  letter-spacing: -.1px;
  -webkit-box-orient: vertical;
  padding-right: 8px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.CartClient-module__Stwy1W__deleteBtn {
  color: #4b5563;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  transition: all .2s;
  display: flex;
}

.CartClient-module__Stwy1W__deleteBtn:hover {
  color: #e8344e;
  background: #fff1f2;
  border-color: #ffc4cb;
}

.CartClient-module__Stwy1W__itemMeta {
  align-items: center;
  gap: 8px;
  min-height: 20px;
  margin-bottom: auto;
  display: flex;
}

.CartClient-module__Stwy1W__metaBrand {
  color: #9ca3af;
  font-size: 11.5px;
  font-weight: 600;
}

.CartClient-module__Stwy1W__metaDivider {
  color: #d1d5db;
  font-size: 10px;
}

.CartClient-module__Stwy1W__countBadge {
  color: #f27a1a;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  display: inline-flex;
}

.CartClient-module__Stwy1W__countBadgeUrgent {
  color: #e8344e;
}

.CartClient-module__Stwy1W__itemFooter {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 12px;
  display: flex;
}

.CartClient-module__Stwy1W__priceCol {
  flex-direction: column;
  display: flex;
}

.CartClient-module__Stwy1W__oldPrice {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 500;
  text-decoration: line-through;
}

.CartClient-module__Stwy1W__price {
  color: #111827;
  letter-spacing: -.5px;
  font-size: 15.5px;
  font-weight: 700;
}

.CartClient-module__Stwy1W__qtyControl {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  align-items: center;
  padding: 2px;
  display: flex;
}

.CartClient-module__Stwy1W__qtyBtn {
  color: #4b5563;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-weight: 600;
  display: flex;
}

.CartClient-module__Stwy1W__qtyBtn:disabled {
  opacity: .3;
}

.CartClient-module__Stwy1W__qtyNum {
  text-align: center;
  color: #374151;
  min-width: 24px;
  font-size: 13.5px;
  font-weight: 700;
}

.CartClient-module__Stwy1W__summarySection {
  display: none;
}

@media (min-width: 1024px) {
  .CartClient-module__Stwy1W__summarySection {
    display: block;
  }
}

.CartClient-module__Stwy1W__summaryCard {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  position: sticky;
  top: 90px;
  overflow: hidden;
  box-shadow: 0 4px 20px #00000008;
}

.CartClient-module__Stwy1W__summaryCard:before {
  content: "";
  background: linear-gradient(90deg, #f27a1a, #ffb800);
  height: 3px;
  display: block;
}

.CartClient-module__Stwy1W__summaryTitle {
  color: #111827;
  letter-spacing: -.1px;
  margin-bottom: 12px;
  padding: 16px 16px 0;
  font-size: 15px;
  font-weight: 700;
}

.CartClient-module__Stwy1W__summaryRow {
  color: #6b7280;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.CartClient-module__Stwy1W__summaryDivider {
  background: #f3f4f6;
  height: 1px;
  margin: 10px 0;
}

.CartClient-module__Stwy1W__summaryTotal {
  color: #111827 !important;
  margin-bottom: 0 !important;
  padding: 0 16px 16px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

.CartClient-module__Stwy1W__summaryCard .CartClient-module__Stwy1W__btn-primary {
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
  box-shadow: 0 4px 12px #f27a1a40;
}

.CartClient-module__Stwy1W__summaryCard .CartClient-module__Stwy1W__btn-primary:hover {
  background: #e06010;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #f27a1a66;
}

.CartClient-module__Stwy1W__mobileBar {
  -webkit-backdrop-filter: blur(20px);
  z-index: 90;
  background: #fffffff5;
  border-top: 1px solid #f1f3f5;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  display: flex;
  position: fixed;
  bottom: 64px;
  left: 0;
  right: 0;
  box-shadow: 0 -4px 20px #0000000f;
}

@media (min-width: 1024px) {
  .CartClient-module__Stwy1W__mobileBar {
    display: none;
  }
}

.CartClient-module__Stwy1W__mobileBarLabel {
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
}

.CartClient-module__Stwy1W__mobileBarTotal {
  color: #111827;
  letter-spacing: -.5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.CartClient-module__Stwy1W__mobileBarBtn {
  background: #3b82f6;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 4px 12px #f27a1a4d;
}

.CartClient-module__Stwy1W__modalOverlay {
  -webkit-backdrop-filter: blur(6px);
  z-index: var(--z-modal);
  background: #11182766;
  justify-content: center;
  align-items: center;
  padding: 16px;
  animation: .2s CartClient-module__Stwy1W__fade-in;
  display: flex;
  position: fixed;
  inset: 0;
}

.CartClient-module__Stwy1W__modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  animation: .35s cubic-bezier(.34, 1.56, .64, 1) CartClient-module__Stwy1W__slide-up;
  box-shadow: 0 -8px 40px #0000001f;
}

@media (min-width: 640px) {
  .CartClient-module__Stwy1W__modal {
    border-radius: 24px;
  }
}

.CartClient-module__Stwy1W__modalHeader {
  border-bottom: 1px solid #f3f4f6;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 16px;
  display: flex;
}

.CartClient-module__Stwy1W__modalHeader h3 {
  color: #111827;
  letter-spacing: -.2px;
  font-size: 17px;
  font-weight: 800;
}

.CartClient-module__Stwy1W__modalClose {
  color: #6b7280;
  cursor: pointer;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  transition: all .15s;
  display: flex;
}

.CartClient-module__Stwy1W__modalClose:hover {
  color: #111827;
  background: #e5e7eb;
}

.CartClient-module__Stwy1W__modalBody {
  padding: 20px;
}

.CartClient-module__Stwy1W__codeInputRow {
  gap: 10px;
  display: flex;
}

.CartClient-module__Stwy1W__codeInputRow .CartClient-module__Stwy1W__input {
  letter-spacing: .5px;
  border-radius: 12px;
  flex: 1;
  font-size: 14px;
  font-weight: 600;
}

.CartClient-module__Stwy1W__codeError {
  color: #e8344e;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
}

.CartClient-module__Stwy1W__authModal {
  background: #fff;
  border-radius: 24px;
  width: 90%;
  max-width: 380px;
  animation: .35s cubic-bezier(.34, 1.56, .64, 1) CartClient-module__Stwy1W__modal-zoom-in;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px #0000001f;
}

@keyframes CartClient-module__Stwy1W__modal-zoom-in {
  from {
    opacity: 0;
    transform: scale(.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.CartClient-module__Stwy1W__authModalHeader {
  justify-content: flex-end;
  padding: 14px 14px 0;
  display: flex;
}

.CartClient-module__Stwy1W__authIconWrap {
  color: #f27a1a;
  background: #fff7ee;
  border: 2px solid #ffd4b0;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
}

.CartClient-module__Stwy1W__authModalBody {
  text-align: center;
  padding: 0 28px 36px;
}

.CartClient-module__Stwy1W__authModalTitle {
  color: #111827;
  letter-spacing: -.3px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
}

.CartClient-module__Stwy1W__authModalText {
  color: #6b7280;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.CartClient-module__Stwy1W__authModalActions {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

@media (max-width: 1023px) {
  :is(.navbar, .mobile-nav) {
    display: none !important;
  }

  .CartClient-module__Stwy1W__root {
    z-index: 9999;
    inset: 0;
    overflow: hidden auto;
    background: #fff !important;
    position: fixed !important;
  }

  .CartClient-module__Stwy1W__inner {
    border: none !important;
    padding-top: 60px !important;
    padding-bottom: 110px !important;
  }

  .CartClient-module__Stwy1W__itemCard {
    border: 1px solid #f1f3f5;
    border-radius: 12px;
    box-shadow: 0 2px 8px #00000008;
  }

  .CartClient-module__Stwy1W__mobileBar {
    background: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 16px 20px 24px;
    box-shadow: 0 -4px 24px #00000014;
    bottom: 0 !important;
  }

  .CartClient-module__Stwy1W__mobileBarBtn {
    border-radius: 12px;
    flex-grow: 1;
    justify-content: center;
    margin-left: 20px;
    padding: 12px 24px;
    font-size: 16px;
    box-shadow: none !important;
    background: #3dc5a6 !important;
  }

  .CartClient-module__Stwy1W__mobileBarLeft {
    min-width: 90px;
  }
}

.CartClient-module__Stwy1W__mobileAppHeader {
  z-index: 99999;
  background: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 1024px) {
  .CartClient-module__Stwy1W__mobileAppHeader {
    display: none;
  }
}

.CartClient-module__Stwy1W__mobileAppTitle {
  color: #111827;
  letter-spacing: -.2px;
  font-size: 18px;
  font-weight: 800;
}

.CartClient-module__Stwy1W__backBtn, .CartClient-module__Stwy1W__bellBtn {
  color: #111827;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 4px;
  display: flex;
}

/*# sourceMappingURL=apps_web-user_src_components_02_lrfx._.css.map*/