/* Mobile ordering overrides loaded after legacy/theme CSS. */
#objednat,
#objednat * {
  box-sizing: border-box;
}

#objednat {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  text-align: center;
}

#objednat .products-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px 8px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

#objednat .product-item {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#objednat .product-item.hidden {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#objednat .order-product-image {
  position: relative;
  height: 164px;
  min-height: 164px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 14px 8px 20px;
}

#objednat .order-product-image img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 16px;
}

#objednat .order-product-body,
#objednat .order-product-body h5,
#objednat .order-product-body .price,
#objednat .order-history-head,
#objednat .order-history-head h2,
#objednat .order-history-block h3,
#objednat .order-history-card,
#objednat .order-empty {
  text-align: center !important;
}

.bottom-nav {
  z-index: 2000 !important;
}

.cart-preview {
  position: fixed !important;
  top: auto !important;
  left: 50% !important;
  bottom: 88px !important;
  z-index: 2300 !important;
  width: min(205px, calc(100vw - 90px)) !important;
  min-height: 66px;
  padding: 8px 14px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 16px !important;
  color: #ffffff !important;
  background: #141414 !important;
  background-image: none !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.84), 0 0 0 1px rgba(253,181,13,.24), 0 0 24px rgba(253,181,13,.18) !important;
  transform: translateX(-50%) translateY(10px) !important;
}

.cart-preview.show {
  transform: translateX(-50%) translateY(0) !important;
}

.cart-preview.show:hover {
  transform: translateX(-50%) translateY(0) scale(1.02) !important;
}

#objednat .cart-item {
  grid-template-columns: 86px minmax(0, 1fr) 40px !important;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 8px 12px;
  padding: 12px !important;
}

#objednat .cart-item img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 86px !important;
  height: 86px !important;
  border-radius: 14px !important;
  object-fit: cover;
}

#objednat .cart-item-main {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  min-width: 0;
  text-align: left !important;
}

#objednat .cart-item .title,
#objednat .cart-item .unit {
  text-align: left !important;
}

#objednat .qty {
  grid-column: 2;
  grid-row: 2;
  justify-content: flex-start !important;
  align-self: start;
}

#objednat .cart-remove {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: end;
  width: 40px !important;
  height: 40px !important;
}

@media (min-width: 560px) {
  #objednat .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 420px) {
  #objednat .order-product-image {
    height: 158px;
    min-height: 158px;
  }

  #objednat .order-product-image img {
    width: 108px;
    height: 108px;
  }
}
