* {
  box-sizing: border-box;
}

body {
  background: #8b8b8b;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > .container-fluid {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#page-black-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s ease-out;
}

#page-black-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (max-width: 767.98px) {
  .topbar #btn-calculate {
    font-size: 1.1rem;
    padding: 0.5rem 1.1rem;
  }
}

.main-content {
  flex: 1;
}
@media (max-width: 767.98px) {
  .main-content {
    align-content: flex-start;
  }
}

.sidebar {
  background: #5a5a5a;
}
@media (max-width: 767.98px) {
  .sidebar {
    scrollbar-width: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.25);
  }
  .sidebar::-webkit-scrollbar {
    display: none;
  }
  .sidebar .cat-btn {
    min-height: 44px;
    flex-shrink: 0;
    font-size: 0.9rem;
  }
  .sidebar .cat-btn.active {
    transform: none;
    outline-width: 3px;
  }
}
@media (min-width: 768px) {
  .sidebar {
    min-width: 140px;
    min-height: calc(100vh - 56px);
  }
  .sidebar .cat-btn {
    width: 100%;
  }
}
.sidebar .cat-btn {
  text-align: left;
  white-space: nowrap;
}
.sidebar .cat-btn.active {
  outline: 4px solid #fff;
  outline-offset: -4px;
  filter: brightness(1.5);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.4);
  transform: scale(0.92);
  border-radius: 0.5rem;
  font-weight: 700;
}

.item-card {
  cursor: default;
  border: none;
  transition: box-shadow 0.15s, filter 0.15s, transform 0.1s;
}
.item-card:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  filter: brightness(1.08);
}

.item-card-main {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.item-card-main:active {
  filter: brightness(0.88) !important;
  transform: scale(0.97);
  box-shadow: none !important;
}

.item-size-btn {
  border-radius: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  min-height: 44px;
  transition: background-color 0.15s, transform 0.1s, box-shadow 0.15s;
}
.item-size-btn:hover {
  background-color: rgba(0, 0, 0, 0.28) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}
.item-size-btn:active {
  background-color: rgba(0, 0, 0, 0.4) !important;
  transform: scale(0.96);
  box-shadow: none;
}

.size-label-vol {
  display: block;
  font-size: 0.75em;
  opacity: 0.8;
}

.size-label-price {
  display: block;
  font-weight: 600;
}

.receipt-modal-content {
  border-radius: 0.75rem;
  overflow-y: auto;
}
@media (max-width: 767.98px) {
  .receipt-modal-content {
    border-radius: 0;
  }
}

.receipt-table {
  width: auto;
  margin: 0 auto;
}
.receipt-table th, .receipt-table td {
  white-space: nowrap;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.receipt-close-bar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.receipt-header {
  background: #fff;
}

.receipt-logo {
  height: 40px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.receipt-qr {
  width: 180px;
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.5rem;
}

.receipt-divider {
  border: none;
  border-top: 2px dashed #ced4da;
  opacity: 1;
}

.receipt-total-row {
  background: #f8f9fa;
  border-top: 2px solid #dee2e6;
}

.receipt-qty-btn {
  padding: 0.1rem 0.35rem;
  font-size: 0.8rem;
  line-height: 1.2;
  min-width: 1.6rem;
  border-radius: 0.25rem;
}
.receipt-qty-btn + .receipt-qty-btn {
  margin-left: 0.25rem;
}
@media (max-width: 767.98px) {
  .receipt-qty-btn {
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}

.twint-popup {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
}
.twint-popup.d-none {
  display: none !important;
}

.twint-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.twint-popup-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 320px;
  width: 90%;
}
@media (max-width: 767.98px) {
  .twint-popup-inner {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */