/* Food Module Specific Styles */

.food-module {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 36px;
  gap: 24px;
  overflow: hidden;
  background: transparent;
}

.food-module__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.hud-button--icon {
  padding: 8px;
  min-width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hud-button--icon svg {
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.hud-button--icon:hover svg {
  transform: rotate(180deg);
  color: var(--accent-green);
}

.food-module__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 480px;
  gap: 24px;
  min-height: 0;
  overflow: hidden;
}

.food-module__feed {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  order: 1;
}

.food-module__feed-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#foodWebcam {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.food-mock-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
  transition: opacity 0.8s ease-in;
}

.detection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

/* CRITICAL FIX: Always center the scan rings */
.food-module__feed .hud-scan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.food-module__feed .hud-status {
  z-index: 5;
}

.detection-box {
  position: absolute;
  border: 2px solid var(--accent-cyan);
  background: rgba(0, 242, 255, 0.1);
  box-shadow: 0 0 12px rgba(0, 242, 255, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.detection-box--high-confidence {
  border-color: var(--accent-green);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

.detection-label {
  position: absolute;
  top: -24px;
  left: 0;
  background: rgba(0, 242, 255, 0.9);
  color: var(--bg);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.detection-label--high-confidence {
  background: rgba(57, 255, 20, 0.9);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.food-module__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(125, 211, 252, 0.6) rgba(9, 13, 22, 0.6);
  order: 2;
}

.food-module__sidebar::-webkit-scrollbar {
  width: 6px;
}

.food-module__sidebar::-webkit-scrollbar-track {
  background: rgba(9, 13, 22, 0.6);
  border-radius: 999px;
}

.food-module__sidebar::-webkit-scrollbar-thumb {
  background: rgba(125, 211, 252, 0.6);
  border-radius: 999px;
  border: 1px solid rgba(9, 13, 22, 0.6);
}

.food-module__sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(125, 211, 252, 0.85);
}

.order-info {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.order-info__row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.order-info__row span:last-child {
  color: var(--text);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
}

.order-info__row--customer {
  display: none;
}

.weight-input {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(0, 242, 255, 0.25);
  box-shadow: var(--glow-soft);
  display: none;
}

.weight-input label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.weight-input__container {
  display: flex;
  gap: 12px;
}

.weight-input input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(2, 6, 12, 0.7);
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
  outline: none;
}

.weight-input input:focus {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-soft);
}

.items-panel {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.items-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.items-panel__header h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.btn--small {
  padding: 8px 14px;
  font-size: 11px;
}

.items-list {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  min-height: 200px;
}

.item-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.item-card:hover {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.item-card__info {
  flex: 1;
}

.item-card__name {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.item-card__details {
  font-size: 13px;
  color: var(--muted);
}

.item-card__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-green);
  margin-right: 12px;
}

.item-card__actions {
  display: flex;
  gap: 8px;
}

.btn--icon {
  width: 32px;
  height: 32px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 95, 109, 0.1);
  border: 1px solid rgba(255, 95, 109, 0.3);
  color: var(--danger);
  cursor: pointer;
  transition: var(--transition);
}

.btn--icon:hover {
  background: rgba(255, 95, 109, 0.2);
  border-color: var(--danger);
  box-shadow: 0 0 8px rgba(255, 95, 109, 0.4);
}

.items-panel__total {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 16px;
  margin-top: auto;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

.total-row--main {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.btn--large {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 16px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form__select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(2, 6, 12, 0.7);
  color: var(--text);
  font-size: 16px;
  transition: var(--transition);
  outline: none;
  cursor: pointer;
}

.form__select:focus {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-soft);
}

.modal--small {
  width: min(480px, 90vw);
}

.modal--small .modal__body {
  grid-template-columns: 1fr;
}

.modal--large {
  width: min(900px, 90vw);
}

.modal__body--checkout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  align-items: start;
}

.checkout-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.checkout-items {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  padding-right: 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 242, 255, 0.4) transparent;
}

.checkout-items::-webkit-scrollbar {
  width: 6px;
}

.checkout-items::-webkit-scrollbar-track {
  background: transparent;
}

.checkout-items::-webkit-scrollbar-thumb {
  background: rgba(0, 242, 255, 0.4);
  border-radius: 3px;
}

.checkout-items::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 242, 255, 0.6);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item__name {
  font-weight: 600;
}

.checkout-item__details {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.checkout-total {
  padding: 20px;
  background: rgba(0, 242, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 242, 255, 0.2);
}

.payment-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-section h3 {
  margin: 0 0 16px;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.payment-methods {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-method {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(2, 6, 12, 0.7);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.payment-method:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-soft);
}

.payment-method.active {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 255, 0.1);
  box-shadow: var(--glow-soft);
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(2, 6, 12, 0.7);
  color: var(--text);
  font-size: 16px;
  transition: var(--transition);
  outline: none;
}

.payment-form input:focus {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-soft);
}

.payment-form__row {
  display: flex;
  gap: 12px;
}

.payment-form__row input {
  flex: 1;
}

.form__actions--checkout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.form__actions--checkout .btn {
  width: 100%;
}

/* Invoice Section */
.confirmation__card--invoice {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 242, 255, 0.4) transparent;
}

.confirmation__card--invoice::-webkit-scrollbar {
  width: 6px;
}

.confirmation__card--invoice::-webkit-scrollbar-track {
  background: transparent;
}

.confirmation__card--invoice::-webkit-scrollbar-thumb {
  background: rgba(0, 242, 255, 0.4);
  border-radius: 3px;
}

.confirmation__card--invoice::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 242, 255, 0.6);
}

.confirmation__card--invoice .confirmation__icon {
  margin: 0 auto 16px;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.confirmation__card--invoice h1 {
  margin: 0 0 8px;
  text-align: center;
}

.confirmation__card--invoice > p {
  margin: 0 0 24px;
  text-align: center;
}

.invoice-section {
  margin: 0 0 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 16px;
}

.invoice-header__left {
  flex: 1;
  min-width: 0;
  max-width: calc(100% - 140px);
}

.invoice-header__right {
  flex-shrink: 0;
  text-align: right;
  width: auto;
}

.invoice-header h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--text);
}

.invoice-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.invoice-meta__row {
  display: flex;
  gap: 8px;
  font-size: 13px;
}

.invoice-meta__row span:first-child {
  min-width: 65px;
  flex-shrink: 0;
}

.invoice-meta__row span:last-child {
  flex: 0 1 auto;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.invoice-meta__row span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.invoice-meta__row span:last-child {
  color: var(--text);
  font-weight: 600;
}

.invoice-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  text-shadow: 0 0 12px rgba(0, 242, 255, 0.6);
  white-space: nowrap;
  line-height: 1.2;
}

.invoice-items {
  margin-bottom: 20px;
}

.invoice-items__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 2px solid rgba(0, 242, 255, 0.3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.invoice-items__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  margin-top: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 242, 255, 0.4) transparent;
}

.invoice-items__list::-webkit-scrollbar {
  width: 6px;
}

.invoice-items__list::-webkit-scrollbar-track {
  background: transparent;
}

.invoice-items__list::-webkit-scrollbar-thumb {
  background: rgba(0, 242, 255, 0.4);
  border-radius: 3px;
}

.invoice-items__list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 242, 255, 0.6);
}

.invoice-items__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  font-size: 14px;
  color: var(--text);
}

.invoice-items__row span:last-child {
  font-weight: 600;
  color: var(--accent-green);
}

.invoice-totals {
  padding: 16px;
  background: rgba(0, 242, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 242, 255, 0.2);
  margin-bottom: 20px;
}

.invoice-totals__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
}

.invoice-totals__row--main {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid rgba(0, 242, 255, 0.3);
}

.invoice-totals__row span:last-child {
  color: var(--accent-green);
  font-weight: 600;
}

.invoice-totals__row--main span:last-child {
  color: var(--accent-cyan);
  font-size: 24px;
}

.invoice-footer {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-bottom: 0;
}

.invoice-footer p {
  margin: 6px 0;
  color: var(--text);
}

.invoice-footer__note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.confirmation__card--invoice .btn {
  margin-top: 0;
  width: 100%;
}

/* =========================================
   RESPONSIVE - ALWAYS SIDE BY SIDE
   ========================================= */

/* Large Desktop */
@media (min-width: 1400px) {
  .food-module__content {
    grid-template-columns: 1.3fr 500px;
  }
}

/* Standard Desktop */
@media (min-width: 1200px) and (max-width: 1399px) {
  .food-module__content {
    grid-template-columns: 1.2fr 480px;
  }
}

/* Medium Desktop */
@media (min-width: 1024px) and (max-width: 1199px) {
  .food-module__content {
    grid-template-columns: 1fr 420px;
  }
}

/* Small Desktop / Large Tablet */
@media (min-width: 900px) and (max-width: 1023px) {
  .food-module__content {
    grid-template-columns: 1fr 380px;
  }
  
  .food-module {
    padding: 24px 30px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 899px) {
  .food-module__content {
    grid-template-columns: 1.1fr 340px;
    gap: 20px;
  }
  
  .food-module {
    padding: 20px 24px;
  }
  
  .food-module__feed-container {
    min-height: 400px;
  }
}

/* Large Mobile / Small Tablet */
@media (min-width: 600px) and (max-width: 767px) {
  .food-module__content {
    grid-template-columns: 1.2fr 300px;
    gap: 16px;
  }
  
  .food-module {
    padding: 16px 20px;
  }
  
  .food-module__feed-container {
    min-height: 350px;
  }
  
  .items-panel {
    padding: 16px;
  }
  
  .items-list {
    min-height: 150px;
  }
}

/* Medium Mobile */
@media (min-width: 480px) and (max-width: 599px) {
  .food-module__content {
    grid-template-columns: 1fr 260px;
    gap: 12px;
  }
  
  .food-module {
    padding: 14px 16px;
  }
  
  .food-module__feed-container {
    min-height: 300px;
  }
  
  .items-panel {
    padding: 14px;
    font-size: 13px;
  }
  
  .items-panel__header h3 {
    font-size: 15px;
  }
  
  .item-card {
    padding: 10px;
  }
  
  .item-card__name {
    font-size: 13px;
  }
  
  .item-card__details {
    font-size: 11px;
  }
  
  .item-card__price {
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 479px) {
  .food-module__content {
    grid-template-columns: 1fr 220px;
    gap: 10px;
  }
  
  .food-module {
    padding: 12px 14px;
  }
  
  .food-module__feed-container {
    min-height: 280px;
  }
  
  .items-panel {
    padding: 12px;
    font-size: 12px;
  }
  
  .items-panel__header h3 {
    font-size: 14px;
  }
  
  .item-card {
    padding: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .item-card__name {
    font-size: 12px;
  }
  
  .item-card__details {
    font-size: 10px;
  }
  
  .item-card__price {
    font-size: 14px;
    margin-right: 0;
  }
  
  .btn--icon {
    width: 28px;
    height: 28px;
  }
  
  .total-row {
    font-size: 11px;
  }
  
  .total-row--main {
    font-size: 15px;
  }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
  .food-module__content {
    grid-template-columns: 1fr 180px;
    gap: 8px;
  }
  
  .food-module {
    padding: 10px 12px;
  }
  
  .items-panel {
    padding: 10px;
  }
}

/* Landscape Mode - Keep side by side */
@media (max-height: 600px) and (orientation: landscape) {
  .food-module {
    padding: 12px 16px;
  }
  
  .food-module__content {
    grid-template-columns: 1.3fr 320px;
    gap: 16px;
  }
  
  .food-module__feed-container {
    min-height: 250px;
  }
  
  .items-list {
    min-height: 120px;
  }
}

/* Very Short Screens */
@media (max-height: 500px) {
  .food-module {
    padding: 10px 14px;
  }
  
  .food-module__content {
    grid-template-columns: 1.4fr 280px;
  }
  
  .food-module__feed-container {
    min-height: 200px;
  }
  
  .items-panel {
    padding: 12px;
  }
}

/* Checkout Modal Responsive */
@media (max-width: 900px) {
  .modal__body--checkout {
    grid-template-columns: 1fr !important;
  }
  
  .invoice-items__header,
  .invoice-items__row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .modal--large {
    width: 95vw;
  }
  
  .invoice-section {
    padding: 16px;
  }
  
  .invoice-header {
    flex-direction: column;
    gap: 12px;
  }
  
  .invoice-header__left,
  .invoice-header__right {
    max-width: 100%;
    width: 100%;
    text-align: left;
  }
  
  .invoice-items__header,
  .invoice-items__row {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 8px;
    font-size: 11px;
  }
}

/* HUD Scan Ring Scaling */
@media (max-width: 768px) {
  .hud-scan__ring {
    width: 280px;
    height: 280px;
  }
  
  .hud-scan__ring--inner {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 600px) {
  .hud-scan__ring {
    width: 220px;
    height: 220px;
  }
  
  .hud-scan__ring--inner {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 480px) {
  .hud-scan__ring {
    width: 180px;
    height: 180px;
  }
  
  .hud-scan__ring--inner {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 380px) {
  .hud-scan__ring {
    width: 150px;
    height: 150px;
  }
  
  .hud-scan__ring--inner {
    width: 90px;
    height: 90px;
  }
}

/* Fine-tune button sizes for small screens */
@media (max-width: 480px) {
  .btn--large {
    padding: 12px;
    font-size: 14px;
  }
  
  .btn--small {
    padding: 6px 10px;
    font-size: 10px;
  }
}

/* Scrollbar refinements for small screens */
@media (max-width: 768px) {
  .food-module__sidebar::-webkit-scrollbar,
  .items-list::-webkit-scrollbar,
  .checkout-items::-webkit-scrollbar,
  .invoice-items__list::-webkit-scrollbar {
    width: 4px;
  }
}

/* body {
    cursor: none;
} * {
    cursor: none !important;
} html {
    touch-action: manipulation; 
    -ms-touch-action: manipulation;
} */