/* [project]/src/app/pos/page.module.css [app-client] (css) */
.page-module__RVtCmW__posContainer {
  background-color: var(--bg-color);
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.page-module__RVtCmW__header {
  background-color: var(--surface);
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px 16px;
  display: flex;
}

.page-module__RVtCmW__title {
  color: #0d9488;
  font-size: 22px;
  font-weight: 700;
}

.page-module__RVtCmW__cartBtn {
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  color: var(--text-main);
  cursor: pointer;
  background: none;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.page-module__RVtCmW__cartBadge {
  color: #fff;
  background-color: #ef4444;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  position: absolute;
  top: -4px;
  right: -4px;
}

.page-module__RVtCmW__searchWrapper {
  margin-top: 8px;
  padding: 0 20px;
  position: relative;
}

.page-module__RVtCmW__searchIcon {
  color: #9ca3af;
  position: absolute;
  top: 50%;
  left: 36px;
  transform: translateY(-50%);
}

.page-module__RVtCmW__searchInput {
  border: 1px solid var(--border-color);
  width: 100%;
  color: var(--text-main);
  background-color: var(--surface);
  border-radius: 24px;
  outline: none;
  padding: 14px 148px 14px 44px;
  font-size: 14px;
  transition: border-color .2s;
}

.page-module__RVtCmW__searchInput:focus {
  border-color: #0d9488;
}

.page-module__RVtCmW__searchClearBtn {
  color: #6b7280;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: 86px;
  transform: translateY(-50%);
}

.page-module__RVtCmW__scanBtn {
  color: #0f766e;
  cursor: pointer;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
}

.page-module__RVtCmW__filtersWrapper {
  scrollbar-width: none;
  z-index: 30;
  gap: 12px;
  padding: 16px 20px;
  display: flex;
  position: relative;
  overflow: auto visible;
}

.page-module__RVtCmW__filtersWrapper::-webkit-scrollbar {
  display: none;
}

.page-module__RVtCmW__filterChip {
  color: #0f766e;
  white-space: nowrap;
  cursor: pointer;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
  box-shadow: 0 2px 4px #00000005;
}

.page-module__RVtCmW__filterActive {
  color: #0d9488;
  background-color: #e6fcf5;
  border-color: #ccfbf1;
}

.page-module__RVtCmW__filterSort {
  color: #059669;
  background-color: #f0fdf4;
  border-color: #dcfce7;
}

.page-module__RVtCmW__dropdownContainer {
  z-index: 1;
  flex: none;
  display: inline-block;
  position: relative;
}

.page-module__RVtCmW__dropdownOpen {
  z-index: 80;
}

.page-module__RVtCmW__dropdownMenu {
  z-index: 90;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  width: 200px;
  padding: 12px 0;
  animation: .15s ease-out page-module__RVtCmW__fadeIn;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  box-shadow: 0 10px 25px #0000001a;
}

.page-module__RVtCmW__dropdownHeader {
  color: #94a3b8;
  letter-spacing: .05em;
  padding: 8px 16px 12px;
  font-size: 11px;
  font-weight: 800;
}

.page-module__RVtCmW__dropdownSearchWrap {
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 4px;
  padding: 0 12px 10px;
}

.page-module__RVtCmW__dropdownSearchInput {
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  width: 100%;
  height: 36px;
  padding: 0 10px;
  font-size: 13px;
}

.page-module__RVtCmW__dropdownSearchInput:focus {
  border-color: #0d9488;
}

.page-module__RVtCmW__dropdownItem {
  color: #334155;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
  display: flex;
}

.page-module__RVtCmW__dropdownItem:hover {
  background: #f8fafc;
}

.page-module__RVtCmW__dropdownItemActive {
  color: #0d9488;
  background: #f0fdfa;
}

.page-module__RVtCmW__dropdownEmpty {
  color: #64748b;
  cursor: default;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
}

.page-module__RVtCmW__activeIndicator {
  background: #0d9488;
  border-radius: 3px;
  width: 6px;
  height: 6px;
}

.page-module__RVtCmW__catalogArea {
  background-color: var(--bg-color);
  flex-direction: column;
  flex: 1;
  padding: 8px 20px 164px;
  display: flex;
}

.page-module__RVtCmW__catalogHeader {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  display: flex;
}

.page-module__RVtCmW__productCount {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
}

.page-module__RVtCmW__viewToggle {
  background: #f8fafc;
  border: 1px solid #dbe5ef;
  border-radius: 999px;
  display: inline-flex;
  overflow: hidden;
}

.page-module__RVtCmW__viewBtn {
  color: #64748b;
  cursor: pointer;
  background: none;
  border: 0;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 30px;
  display: flex;
}

.page-module__RVtCmW__viewBtnActive {
  color: #0d9488;
  background: #e6fcf5;
}

.page-module__RVtCmW__productGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

.page-module__RVtCmW__productList {
  grid-template-columns: 1fr;
}

.page-module__RVtCmW__productCard {
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 16px;
  flex-direction: column;
  min-height: 140px;
  padding: 12px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 12px #0f172a0d;
}

.page-module__RVtCmW__productImagePlaceholder {
  color: #1d4ed8;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
}

.page-module__RVtCmW__productImageThumb {
  object-fit: cover;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}

.page-module__RVtCmW__productInfo {
  flex-direction: column;
  gap: 4px;
  margin-right: 34px;
  display: flex;
}

.page-module__RVtCmW__productName {
  color: #0f172a;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  display: -webkit-box;
  overflow: hidden;
}

.page-module__RVtCmW__productPrice {
  color: #1d4ed8;
  font-size: 15px;
  font-weight: 700;
}

.page-module__RVtCmW__productStock {
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}

.page-module__RVtCmW__productCardList {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: 112px;
  padding: 12px 44px 12px 12px;
}

.page-module__RVtCmW__productCardList .page-module__RVtCmW__productImagePlaceholder, .page-module__RVtCmW__productCardList .page-module__RVtCmW__productImageThumb {
  flex: none;
  margin-bottom: 0;
}

.page-module__RVtCmW__productCardList .page-module__RVtCmW__productInfo {
  margin-right: 0;
}

.page-module__RVtCmW__cardQtyControls {
  background: #f8fafc;
  border: 1px solid #dbe5f2;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 4px;
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.page-module__RVtCmW__cardQtyBtn {
  color: #0f172a;
  cursor: pointer;
  background: #fff;
  border: 0;
  border-radius: 12px;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 700;
}

.page-module__RVtCmW__cardQtyText {
  text-align: center;
  color: #0f172a;
  min-width: 14px;
  font-size: 12px;
  font-weight: 700;
}

.page-module__RVtCmW__loadSentinel {
  text-align: center;
  color: #64748b;
  padding: 16px 8px 20px;
  font-size: 12px;
  font-weight: 600;
}

.page-module__RVtCmW__bottomCheckoutBar {
  width: calc(100% - 32px);
  max-width: 448px;
  left: 50%;
  bottom: calc(88px + env(safe-area-inset-bottom));
  z-index: 60;
  background: #fff;
  border: 1px solid #dbe5ef;
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  display: flex;
  position: fixed;
  transform: translateX(-50%);
  box-shadow: 0 8px 28px #0f172a1f;
}

.page-module__RVtCmW__bottomCheckoutInfo p {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.page-module__RVtCmW__bottomCheckoutInfo h3 {
  color: #0d9488;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
}

.page-module__RVtCmW__bottomCheckoutBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border: none;
  border-radius: 14px;
  min-width: 112px;
  padding: 12px 22px;
  font-size: 18px;
  font-weight: 700;
}

.page-module__RVtCmW__scannerOverlay {
  z-index: 240;
  background: #0f172aad;
  justify-content: center;
  align-items: center;
  padding: 16px;
  display: flex;
  position: fixed;
  inset: 0;
}

.page-module__RVtCmW__scannerModal {
  background: #fff;
  border: 1px solid #dbe5ef;
  border-radius: 16px;
  flex-direction: column;
  gap: 10px;
  width: min(420px, 100%);
  padding: 14px;
  display: flex;
}

.page-module__RVtCmW__scannerHeader {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.page-module__RVtCmW__scannerHeader h3 {
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
}

.page-module__RVtCmW__scannerCloseBtn {
  color: #334155;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dbe5ef;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: inline-flex;
}

.page-module__RVtCmW__scannerVideo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #0f172a;
  border: 1px solid #dbe5ef;
  border-radius: 12px;
  width: 100%;
}

.page-module__RVtCmW__scannerHint {
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}

.page-module__RVtCmW__scannerError {
  color: #dc2626;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.page-module__RVtCmW__manualScanForm {
  gap: 8px;
  display: flex;
}

.page-module__RVtCmW__manualScanInput {
  color: #0f172a;
  border: 1px solid #dbe5ef;
  border-radius: 10px;
  flex: 1;
  height: 38px;
  padding: 0 10px;
  font-size: 13px;
}

.page-module__RVtCmW__manualScanBtn {
  color: #fff;
  cursor: pointer;
  background: #0f766e;
  border: 0;
  border-radius: 10px;
  height: 38px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.page-module__RVtCmW__scanHistoryWrap {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  max-height: 180px;
  padding: 8px;
  overflow: auto;
}

.page-module__RVtCmW__scanHistoryTitle {
  color: #0f172a;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
}

.page-module__RVtCmW__scanHistoryEmpty {
  color: #64748b;
  margin: 0;
  font-size: 12px;
}

.page-module__RVtCmW__scanHistoryList {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.page-module__RVtCmW__scanHistoryItem {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px;
  display: flex;
}

.page-module__RVtCmW__scanHistoryMeta {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.page-module__RVtCmW__scanHistoryMeta strong {
  color: #0f172a;
  font-size: 12px;
  line-height: 1.3;
}

.page-module__RVtCmW__scanHistoryMeta span {
  color: #475569;
  font-size: 11px;
}

.page-module__RVtCmW__scanHistoryActions {
  background: #fff;
  border: 1px solid #dbe5ef;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 4px;
  display: inline-flex;
}

.page-module__RVtCmW__scanHistoryActions button {
  color: #fff;
  cursor: pointer;
  background: #0f766e;
  border: 0;
  border-radius: 12px;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: 700;
}

.page-module__RVtCmW__scanHistoryActions button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.page-module__RVtCmW__scanHistoryActions span {
  text-align: center;
  color: #0f172a;
  min-width: 16px;
  font-size: 12px;
  font-weight: 700;
}

.page-module__RVtCmW__scanHistoryNotFound {
  color: #dc2626;
  font-size: 11px;
  font-weight: 700;
}

.page-module__RVtCmW__scannerRetryBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border: 0;
  border-radius: 10px;
  height: 38px;
  font-size: 13px;
  font-weight: 800;
}

.page-module__RVtCmW__scannerRetryBtn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .page-module__RVtCmW__header {
    padding: 18px 14px 12px;
  }

  .page-module__RVtCmW__title {
    font-size: 18px;
  }

  .page-module__RVtCmW__searchWrapper {
    padding: 0 14px;
  }

  .page-module__RVtCmW__searchIcon {
    left: 28px;
  }

  .page-module__RVtCmW__searchInput {
    padding-right: 132px;
  }

  .page-module__RVtCmW__searchClearBtn {
    width: 24px;
    height: 24px;
    right: 76px;
  }

  .page-module__RVtCmW__scanBtn {
    padding: 0 10px;
    right: 20px;
  }

  .page-module__RVtCmW__filtersWrapper {
    gap: 8px;
    padding: 12px 14px;
  }

  .page-module__RVtCmW__filterChip {
    gap: 6px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .page-module__RVtCmW__catalogArea {
    padding: 6px 14px 156px;
  }

  .page-module__RVtCmW__productGrid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-module__RVtCmW__productCard {
    min-height: 124px;
  }

  .page-module__RVtCmW__productName {
    font-size: 17px;
  }

  .page-module__RVtCmW__catalogHeader {
    margin-bottom: 12px;
  }

  .page-module__RVtCmW__bottomCheckoutBar {
    width: calc(100% - 24px);
    max-width: 448px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    border-radius: 14px;
    padding: 10px 12px;
  }

  .page-module__RVtCmW__bottomCheckoutInfo p {
    font-size: 12px;
  }

  .page-module__RVtCmW__bottomCheckoutInfo h3 {
    font-size: 22px;
  }

  .page-module__RVtCmW__bottomCheckoutBtn {
    min-width: 96px;
    padding: 10px 16px;
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .page-module__RVtCmW__productName {
    font-size: 16px;
  }

  .page-module__RVtCmW__bottomCheckoutBar {
    gap: 8px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .page-module__RVtCmW__bottomCheckoutInfo h3 {
    font-size: 20px;
  }

  .page-module__RVtCmW__bottomCheckoutBtn {
    min-width: 88px;
    font-size: 15px;
  }
}

.page-module__RVtCmW__emptyState {
  color: #94a3b8;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 60px;
  display: flex;
}

.page-module__RVtCmW__emptyIcon {
  opacity: .5;
}

.page-module__RVtCmW__emptyState p {
  font-size: 14px;
  font-weight: 500;
}

@keyframes page-module__RVtCmW__fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/src/app/pos/pos.module.css [app-client] (css) */
.pos-module__yqSpaa__cartOverlay {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 100;
  background: #0006;
  justify-content: center;
  align-items: center;
  animation: .2s ease-out pos-module__yqSpaa__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.pos-module__yqSpaa__cartModal {
  background: #fff;
  border-radius: 24px 24px 0 0;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  margin-top: auto;
  padding: 24px 20px;
  animation: .3s cubic-bezier(.16, 1, .3, 1) pos-module__yqSpaa__slideUp;
  display: flex;
  box-shadow: 0 -10px 40px #0000001a;
}

.pos-module__yqSpaa__cartHeader {
  border-bottom: 1px solid #f1f5f9;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 20px;
  display: flex;
}

.pos-module__yqSpaa__cartHeaderLeft {
  align-items: center;
  gap: 12px;
  display: flex;
}

.pos-module__yqSpaa__cartIconWrapper {
  color: #0d9488;
  background: #f0fdfa;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.pos-module__yqSpaa__cartTitleText {
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
}

.pos-module__yqSpaa__cartClearBtn {
  color: #ef4444;
  cursor: pointer;
  background: #fef2f2;
  border: none;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}

.pos-module__yqSpaa__cartClearBtn:active {
  background: #fee2e2;
}

.pos-module__yqSpaa__cartCountTag {
  color: #475569;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
}

.pos-module__yqSpaa__closeCartBtn {
  color: #64748b;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  font-size: 20px;
  line-height: 1;
}

.pos-module__yqSpaa__cartBody {
  flex: 1;
  overflow-y: auto;
}

.pos-module__yqSpaa__emptyCartBox {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 40px 0 60px;
  display: flex;
}

.pos-module__yqSpaa__emptyBagIcon {
  opacity: .15;
  color: #64748b;
  margin-bottom: 8px;
}

.pos-module__yqSpaa__emptyCartText {
  color: #94a3b8;
  font-size: 16px;
  font-weight: 700;
}

.pos-module__yqSpaa__startShoppingBtn {
  color: #4ade80;
  cursor: pointer;
  background: none;
  border: none;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
}

.pos-module__yqSpaa__cartList {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.pos-module__yqSpaa__cartItem {
  border-bottom: 1px solid #f8fafc;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  display: flex;
}

.pos-module__yqSpaa__cartItemInfo {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.pos-module__yqSpaa__cartItemInfo h4 {
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
}

.pos-module__yqSpaa__cartItemInfo p {
  color: #0d9488;
  font-size: 13px;
  font-weight: 600;
}

.pos-module__yqSpaa__cartItemControls {
  background: #f8fafc;
  border-radius: 20px;
  align-items: center;
  gap: 12px;
  padding: 4px;
  display: flex;
}

.pos-module__yqSpaa__qtyBtn {
  color: #0f172a;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 16px;
  display: flex;
  box-shadow: 0 1px 2px #0000000d;
}

.pos-module__yqSpaa__qtyText {
  color: #0f172a;
  text-align: center;
  min-width: 20px;
  font-size: 14px;
  font-weight: 700;
}

.pos-module__yqSpaa__cartSummary {
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
}

.pos-module__yqSpaa__cartTotalLabel {
  flex-direction: column;
  display: flex;
}

.pos-module__yqSpaa__cartTotalLabel p {
  color: #64748b;
  margin-bottom: 2px;
  font-size: 13px;
}

.pos-module__yqSpaa__cartTotalLabel h2 {
  color: #0d9488;
  font-size: 20px;
  font-weight: 800;
}

.pos-module__yqSpaa__checkoutBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border: none;
  border-radius: 16px;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 4px 12px #0d948833;
}

.pos-module__yqSpaa__paymentPanel {
  flex-direction: column;
  gap: 14px;
  padding-bottom: 8px;
  display: flex;
}

.pos-module__yqSpaa__paymentLabel {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.pos-module__yqSpaa__paymentMethodRow {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  display: grid;
}

.pos-module__yqSpaa__methodBtn {
  color: #334155;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dbe5f2;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.pos-module__yqSpaa__methodBtnActive {
  color: #0d9488;
  background: #e6fcf5;
  border-color: #0d9488;
}

.pos-module__yqSpaa__cashForm {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  display: flex;
}

.pos-module__yqSpaa__cashForm label {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.pos-module__yqSpaa__cashForm input {
  color: #0f172a;
  border: 1px solid #dbe5f2;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 700;
}

.pos-module__yqSpaa__quickCashRow {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.pos-module__yqSpaa__quickCashBtn {
  color: #334155;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dbe5f2;
  border-radius: 9px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}

.pos-module__yqSpaa__quickCashBtnPrimary {
  color: #0d9488;
  background: #e6fcf5;
  border-color: #0d9488;
}

.pos-module__yqSpaa__paymentInfoRow {
  color: #475569;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.pos-module__yqSpaa__paymentInfoRow strong {
  color: #0d9488;
}

.pos-module__yqSpaa__onlineBox {
  color: #1e3a8a;
  background: #f8fbff;
  border: 1px dashed #bfd6ff;
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
}

.pos-module__yqSpaa__paymentActions {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  display: grid;
}

.pos-module__yqSpaa__backBtn, .pos-module__yqSpaa__payBtn {
  cursor: pointer;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.pos-module__yqSpaa__backBtn {
  color: #334155;
  background: #f1f5f9;
}

.pos-module__yqSpaa__payBtn {
  color: #fff;
  background: linear-gradient(135deg, #0d9488, #0f766e);
}

@media (max-width: 640px) {
  .pos-module__yqSpaa__cartModal {
    border-radius: 20px 20px 0 0;
    max-height: 78vh;
    padding: 16px;
  }

  .pos-module__yqSpaa__cartHeader {
    margin-bottom: 12px;
    padding-bottom: 14px;
  }

  .pos-module__yqSpaa__cartHeaderLeft {
    gap: 8px;
  }

  .pos-module__yqSpaa__cartTitleText {
    font-size: 16px;
  }

  .pos-module__yqSpaa__cartCountTag {
    padding: 3px 8px;
    font-size: 10px;
  }

  .pos-module__yqSpaa__cartItem {
    align-items: flex-start;
    gap: 10px;
  }

  .pos-module__yqSpaa__cartSummary {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .pos-module__yqSpaa__checkoutBtn {
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
  }

  .pos-module__yqSpaa__paymentMethodRow, .pos-module__yqSpaa__paymentActions {
    grid-template-columns: 1fr;
  }

  .pos-module__yqSpaa__backBtn, .pos-module__yqSpaa__payBtn {
    min-height: 42px;
  }
}

@keyframes pos-module__yqSpaa__slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/src/app/pos/product-grid.module.css [app-client] (css) */
.product-grid-module__Bn7CPW__productGrid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-bottom: 80px;
  display: grid;
}

.product-grid-module__Bn7CPW__productCard {
  background: #fff;
  border: none;
  border-radius: 20px;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px #0d948814;
}

.product-grid-module__Bn7CPW__productCard:active {
  transform: translateY(2px);
  box-shadow: 0 2px 8px #0d94880d;
}

.product-grid-module__Bn7CPW__productImagePlaceholder {
  color: #0f766e;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  justify-content: center;
  align-items: center;
  height: 140px;
  font-size: 48px;
  display: flex;
}

.product-grid-module__Bn7CPW__productInfo {
  padding: 12px;
}

.product-grid-module__Bn7CPW__productName {
  color: var(--text-main);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 40px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
}

.product-grid-module__Bn7CPW__productPrice {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.product-grid-module__Bn7CPW__addCartBtn {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 18px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  position: absolute;
  bottom: 8px;
  right: 8px;
  box-shadow: 0 4px 12px #0d948833;
}

.product-grid-module__Bn7CPW__addCartBtn:active {
  transform: translateY(2px)scale(.95);
  box-shadow: 0 2px 6px #0d94881a;
}

/*# sourceMappingURL=src_app_pos_26c0a568._.css.map*/