/* [project]/apps/web-user/src/components/product/ProductCard.module.css [app-client] (css) */
.ProductCard-module__HoKyLa__card {
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #f27a1a59;
  border-radius: 16px;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px #f27a1a0d;
}

.ProductCard-module__HoKyLa__card:hover {
  border-color: #f27a1a;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px #f27a1a29, 0 2px 8px #0000000f;
}

.ProductCard-module__HoKyLa__cardLink {
  flex-direction: column;
  flex-grow: 1;
  text-decoration: none;
  display: flex;
}

.ProductCard-module__HoKyLa__imageSection {
  aspect-ratio: 1;
  background: #fff;
  border-bottom: 1px solid #f27a1a1a;
  border-radius: 14px 14px 0 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ProductCard-module__HoKyLa__productImg {
  object-fit: contain;
  padding: 12px;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.ProductCard-module__HoKyLa__card:hover .ProductCard-module__HoKyLa__productImg {
  transform: scale(1.06);
}

.ProductCard-module__HoKyLa__noImage {
  color: #d1d5db;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.ProductCard-module__HoKyLa__favIcon {
  z-index: 2;
  -webkit-backdrop-filter: blur(8px);
  color: #c4c9d2;
  cursor: pointer;
  background: #fffffff2;
  border: 1.5px solid #f1f3f5;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: all .2s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0 2px 8px #0000001a;
}

.ProductCard-module__HoKyLa__favIcon:hover, .ProductCard-module__HoKyLa__favIcon:focus {
  color: #f27a1a;
  border-color: #ffd4b0;
  transform: scale(1.15);
  box-shadow: 0 4px 12px #f27a1a33;
}

.ProductCard-module__HoKyLa__quickLook {
  display: none;
}

.ProductCard-module__HoKyLa__infoSection {
  flex-direction: column;
  flex-grow: 1;
  gap: 0;
  padding: 10px 12px 6px;
  display: flex;
}

.ProductCard-module__HoKyLa__titleRow {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 6px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.ProductCard-module__HoKyLa__brandName {
  color: #111827;
  letter-spacing: -.1px;
  font-size: 12.5px;
  font-weight: 700;
}

.ProductCard-module__HoKyLa__productName {
  color: #4b5563;
  font-size: 12.5px;
  font-weight: 400;
}

.ProductCard-module__HoKyLa__viewCount {
  color: #f27a1a;
  background: #fff7ee;
  border: 1px solid bisque;
  border-radius: 20px;
  align-items: center;
  gap: 4px;
  width: fit-content;
  margin-bottom: 8px;
  padding: 3px 8px;
  font-size: 10.5px;
  font-weight: 600;
  display: inline-flex;
}

.ProductCard-module__HoKyLa__priceSection {
  margin-top: auto;
  padding-bottom: 2px;
}

.ProductCard-module__HoKyLa__currentPrice {
  color: #f27a1a;
  letter-spacing: -.4px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.ProductCard-module__HoKyLa__actionSection {
  padding: 8px 10px 10px;
}

.ProductCard-module__HoKyLa__actionBtn {
  cursor: pointer;
  letter-spacing: .1px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 9px 12px;
  font-size: 12.5px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
}

.ProductCard-module__HoKyLa__btnAdd {
  color: #fff;
  background: #f27a1a;
  border: 1.5px solid #f27a1a;
}

.ProductCard-module__HoKyLa__btnAdd:hover:not(:disabled) {
  background: #d96a13;
  border-color: #d96a13;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px #f27a1a4d;
}

.ProductCard-module__HoKyLa__btnRemove {
  color: #e8344e;
  background: #fff1f2;
  border: 1.5px solid #ffc4cb;
}

.ProductCard-module__HoKyLa__btnRemove:hover:not(:disabled) {
  color: #fff;
  background: #e8344e;
  border-color: #e8344e;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px #e8344e40;
}

.ProductCard-module__HoKyLa__actionBtn:active:not(:disabled) {
  transform: scale(.97);
}

.ProductCard-module__HoKyLa__actionBtn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.ProductCard-module__HoKyLa__imgDots {
  gap: 4px;
  display: flex;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.ProductCard-module__HoKyLa__dot {
  background: #0003;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.ProductCard-module__HoKyLa__dotActive {
  background: #f27a1a;
  border-radius: 3px;
  width: 14px;
}

/* [project]/apps/web-user/src/app/category/[slug]/page.module.css [app-client] (css) */
.page-module__-cQIBG__page {
  background-color: var(--background);
  padding-bottom: 5rem;
}

.page-module__-cQIBG__headerRow {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 0;
  display: flex;
}

.page-module__-cQIBG__breadcrumb {
  color: #6b7280;
  align-items: center;
  gap: .35rem;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
}

.page-module__-cQIBG__breadcrumbLink {
  color: var(--text-muted);
  align-items: center;
  gap: .25rem;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.page-module__-cQIBG__breadcrumbLink:hover {
  color: var(--primary);
}

.page-module__-cQIBG__breadcrumbSep {
  color: var(--surface-border);
}

.page-module__-cQIBG__breadcrumbCurrent {
  color: #374151;
  letter-spacing: -.1px;
  font-size: 13.5px;
  font-weight: 600;
}

.page-module__-cQIBG__toolbarLeft {
  flex-wrap: nowrap;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.page-module__-cQIBG__pillBtn {
  color: #334155;
  cursor: pointer;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  align-items: center;
  gap: .375rem;
  padding: .375rem .75rem;
  font-size: .8125rem;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 1px 2px #00000005;
}

.page-module__-cQIBG__pillBtn:hover {
  color: var(--primary);
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

.page-module__-cQIBG__filterIcon {
  color: inherit;
}

.page-module__-cQIBG__filterText {
  font-weight: 500;
}

.page-module__-cQIBG__pillSelectWrapper {
  padding: 0 .5rem 0 .75rem;
}

.page-module__-cQIBG__selectLabel {
  color: #64748b;
  margin-right: .25rem;
  font-weight: 500;
}

.page-module__-cQIBG__sortSelect {
  color: #0f172a;
  cursor: pointer;
  appearance: auto;
  background: none;
  border: none;
  outline: none;
  padding: .25rem 0;
  font-size: .8125rem;
  font-weight: 600;
}

.page-module__-cQIBG__toolbarRight {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.page-module__-cQIBG__sortSelect {
  background-color: var(--surface);
  border: 1px solid var(--surface-border);
  color: var(--text);
  cursor: pointer;
  border-radius: .75rem;
  outline: none;
  padding: .625rem 1rem;
  font-size: .875rem;
  transition: all .2s;
}

.page-module__-cQIBG__sortSelect:focus {
  border-color: var(--primary);
}

.page-module__-cQIBG__viewToggle {
  background-color: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: .75rem;
  display: flex;
  overflow: hidden;
}

.page-module__-cQIBG__viewBtn {
  color: var(--text-muted);
  padding: .625rem .875rem;
  transition: all .2s;
}

.page-module__-cQIBG__viewBtn:hover {
  color: var(--text);
  background-color: #ffffff0d;
}

.page-module__-cQIBG__viewBtnActive {
  background-color: rgba(var(--primary-rgb), .1);
  color: var(--primary);
}

.page-module__-cQIBG__grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  display: grid;
}

@media (max-width: 1200px) {
  .page-module__-cQIBG__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .page-module__-cQIBG__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-module__-cQIBG__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.page-module__-cQIBG__chunkedContainer {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.page-module__-cQIBG__chunkWrapper {
  width: 100%;
}

.page-module__-cQIBG__loadMoreTrigger {
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  display: flex;
}

.page-module__-cQIBG__miniSpinner {
  color: var(--primary);
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-module__-cQIBG__spinIcon {
  animation: 1s linear infinite page-module__-cQIBG__spin;
}

@keyframes page-module__-cQIBG__spin {
  to {
    transform: rotate(360deg);
  }
}

.page-module__-cQIBG__list {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.page-module__-cQIBG__list .page-module__-cQIBG__card {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.page-module__-cQIBG__list .page-module__-cQIBG__cardImage {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}

.page-module__-cQIBG__card {
  background-color: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  flex-direction: column;
  transition: all .3s;
  display: flex;
  overflow: hidden;
}

.page-module__-cQIBG__card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px -10px rgba(var(--primary-rgb), .2);
  transform: translateY(-4px);
}

.page-module__-cQIBG__cardImage {
  aspect-ratio: 1;
  background-color: #fff;
  display: block;
  position: relative;
  overflow: hidden;
}

.page-module__-cQIBG__cardImg {
  object-fit: contain;
  padding: 1rem;
  transition: transform .3s;
}

.page-module__-cQIBG__card:hover .page-module__-cQIBG__cardImg {
  transform: scale(1.05);
}

.page-module__-cQIBG__cardNoImg {
  background-color: var(--surface);
  width: 100%;
  height: 100%;
  color: var(--text-muted);
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-module__-cQIBG__stockBadge {
  color: #fff;
  z-index: 10;
  background-color: #ef4444;
  border-radius: .5rem;
  padding: .25rem .5rem;
  font-size: .75rem;
  font-weight: 700;
  position: absolute;
  top: .75rem;
  left: .75rem;
}

.page-module__-cQIBG__cardBody {
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
  display: flex;
}

.page-module__-cQIBG__cardBrand {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .25rem;
  font-size: .75rem;
  font-weight: 600;
}

.page-module__-cQIBG__cardName {
  color: var(--text);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
  margin-bottom: 1rem;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.page-module__-cQIBG__cardName:hover {
  color: var(--primary);
}

.page-module__-cQIBG__cardFooter {
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.page-module__-cQIBG__cardPrice {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
}

.page-module__-cQIBG__addBtn {
  background-color: rgba(var(--primary-rgb), .1);
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.page-module__-cQIBG__addBtn:hover:not(:disabled) {
  background-color: var(--primary);
  color: #fff;
}

.page-module__-cQIBG__addBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.page-module__-cQIBG__empty {
  text-align: center;
  background-color: var(--surface);
  border: 1px dashed var(--surface-border);
  border-radius: 1.5rem;
  padding: 6rem 1rem;
}

.page-module__-cQIBG__emptyIcon {
  color: var(--text-muted);
  opacity: .5;
  margin-bottom: 1.5rem;
}

.page-module__-cQIBG__empty h2 {
  color: var(--text);
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.page-module__-cQIBG__empty p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.page-module__-cQIBG__emptyBtn {
  background-color: var(--primary);
  color: #fff;
  border-radius: .75rem;
  padding: .875rem 2rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
}

.page-module__-cQIBG__emptyBtn:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 10px 20px -10px rgba(var(--primary-rgb), .4);
  transform: translateY(-2px);
}

.page-module__-cQIBG__loadingWrapper {
  min-height: 60vh;
  color: var(--text-muted);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  display: flex;
}

.page-module__-cQIBG__spinner {
  width: 80px;
  height: 80px;
  position: relative;
}

.page-module__-cQIBG__spinner:before, .page-module__-cQIBG__spinner:after {
  content: "";
  background-color: var(--primary);
  opacity: .6;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 2s linear infinite page-module__-cQIBG__pulseRipple;
  position: absolute;
  top: 0;
  left: 0;
}

.page-module__-cQIBG__spinner:after {
  animation-delay: -1s;
}

.page-module__-cQIBG__loadingText {
  color: var(--primary);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 500;
  animation: 1.5s ease-in-out infinite alternate page-module__-cQIBG__pulseText;
}

@keyframes page-module__-cQIBG__pulseRipple {
  0% {
    opacity: .8;
    transform: scale(0);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes page-module__-cQIBG__pulseText {
  0% {
    opacity: .6;
  }

  100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(var(--primary-rgb), .3);
  }
}

@media (max-width: 768px) {
  .page-module__-cQIBG__heroTitle {
    font-size: 1.75rem;
  }

  .page-module__-cQIBG__list .page-module__-cQIBG__card {
    flex-direction: column;
  }

  .page-module__-cQIBG__list .page-module__-cQIBG__cardImage {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
  }
}

/* [project]/apps/web-user/src/components/ui/BasketLoader.module.css [app-client] (css) */
.BasketLoader-module__w1HzeG__loaderContainer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  min-height: 60vh;
  display: flex;
}

.BasketLoader-module__w1HzeG__basketWrapper {
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  display: flex;
  position: relative;
}

.BasketLoader-module__w1HzeG__basket {
  color: var(--primary);
  z-index: 2;
  fill: rgba(var(--primary-rgb), .05);
  animation: 2s ease-in-out infinite BasketLoader-module__w1HzeG__rockBasket;
}

.BasketLoader-module__w1HzeG__item {
  opacity: 0;
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: -50px;
}

.BasketLoader-module__w1HzeG__iconBlue {
  color: #3b82f6;
}

.BasketLoader-module__w1HzeG__iconGreen {
  color: #10b981;
}

.BasketLoader-module__w1HzeG__iconOrange {
  color: #f97316;
}

.BasketLoader-module__w1HzeG__item1 {
  animation: 2.4s ease-in infinite BasketLoader-module__w1HzeG__dropItem;
  left: 20px;
}

.BasketLoader-module__w1HzeG__item2 {
  animation: 2.4s ease-in .8s infinite BasketLoader-module__w1HzeG__dropItem;
  left: 35px;
}

.BasketLoader-module__w1HzeG__item3 {
  animation: 2.4s ease-in 1.6s infinite BasketLoader-module__w1HzeG__dropItem;
  left: 50px;
}

.BasketLoader-module__w1HzeG__loadingText {
  letter-spacing: .05em;
  background: linear-gradient(90deg, var(--primary) 0%, #f43f5e 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 1.25rem;
  font-weight: 700;
  animation: 1.5s ease-in-out infinite alternate BasketLoader-module__w1HzeG__pulseOpacity;
}

@keyframes BasketLoader-module__w1HzeG__dropItem {
  0% {
    opacity: 0;
    transform: translateY(-20px)scale(.6)rotate(-20deg);
  }

  15% {
    opacity: 1;
  }

  60% {
    opacity: 1;
    transform: translateY(60px)scale(1)rotate(15deg);
  }

  75% {
    opacity: 0;
    transform: translateY(70px)scale(0)rotate(30deg);
  }

  100% {
    opacity: 0;
    transform: translateY(70px)scale(0);
  }
}

@keyframes BasketLoader-module__w1HzeG__rockBasket {
  0%, 100% {
    transform: rotate(0)scale(1);
  }

  25% {
    transform: rotate(-4deg)scale(1.02);
  }

  50% {
    transform: rotate(4deg)scale(1);
  }

  75% {
    transform: rotate(-2deg)scale(1.01);
  }
}

@keyframes BasketLoader-module__w1HzeG__pulseOpacity {
  0% {
    opacity: .5;
    filter: blur(.5px);
  }

  100% {
    opacity: 1;
    filter: blur();
  }
}

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