@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pos-nav {
  position: sticky;
  top: 0;
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f97316, #fb7185);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

.brand-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.nav-pill.primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border-color: transparent;
}

.pos-layout {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  gap: 1rem;
  align-items: start;
}

.pos-layout > * {
  min-width: 0;
}

.pos-menu-panel,
.pos-order-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  animation: riseIn 0.4s ease both;
}

.pos-menu-panel {
  padding: 1rem;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 0.8rem;
  height: calc(100vh - 6.5rem);
  max-height: calc(100vh - 6.5rem);
  overflow: hidden;
  min-height: 0;
}

.pos-order-panel {
  padding: 1rem;
  position: sticky;
  top: 5.6rem;
  max-height: calc(100vh - 6.5rem);
  overflow: auto;
  display: grid;
  gap: 0.9rem;
}

.pos-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.pos-header h1 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.pos-header p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

.restaurant-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.badge-soft {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.restaurant-switcher {
  min-width: 240px;
}

.clear-filters-btn {
  width: auto;
  min-width: 120px;
  white-space: nowrap;
  border-radius: 9px;
}

.search-row {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 0 0.8rem;
  background: #fff;
  height: 42px;
  flex: 1 1 240px;
  min-width: 0;
}

.search-input-wrap i {
  color: var(--text-muted);
}

.search-input-wrap input {
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 0.95rem;
  background: transparent;
}

.menu-body {
  margin-top: 0;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 0.9rem;
  min-height: 0;
}

.category-rail {
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: #f8fafc;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  overflow: auto;
  min-height: 0;
  width: 200px;
}

.category-rail-title {
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.categories {
  display: flex;
  gap: 0.5rem;
  overflow: auto;
  margin: 0;
  padding: 0 0 0.25rem;
}

.categories-vertical {
  flex-direction: column;
  padding-bottom: 0;
  gap: 0.45rem;
  flex: 1 1 auto;
}

.cat-btn {
  border: 1px solid var(--panel-border);
  background: #fff;
  border-radius: 10px;
  padding: 0.35rem 0.6rem;
  font-size: 0.82rem;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
}

.cat-btn.active {
  background: #111827;
  color: #fff;
  font-weight: 600;
}

.category-rail .cat-btn.active {
  background: var(--success);
  border-color: transparent;
  box-shadow: 0 10px 18px rgba(19, 152, 105, 0.2);
}

.category-rail .cat-btn {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-grid-wrap {
  min-height: 0;
  overflow: auto;
  padding-right: 0.25rem;
  scrollbar-width: none;
}

.menu-grid-wrap .items-grid {
  margin-top: 0;
}

.items-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.8rem;
}

.item-card {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.items-grid.animate-cards .item-card {
  animation: cardIn 0.3s ease both;
}

.item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.item-card.selected {
  border-color: #16a34a75;
  box-shadow: 0 0 0 2px #16a34a39;
  border-width: 1px;
}

.item-thumb {
  background: linear-gradient(165deg, #f8fafc, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 130px;
  min-height: 130px;
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-placeholder {
  font-size: 2rem;
  color: #cbd5e1;
}

.item-content {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.item-category {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.item-content h3 {
  margin: 0.35rem 0;
  font-size: 1rem;
  line-height: 1.25;
  word-break: break-word;
}

.item-name {
  flex: 1 1 auto;
  min-width: 0;
}

.item-description {
  margin: 0;
  color: var(--text-muted);
  min-height: 2.5rem;
  font-size: 0.82rem;
  line-height: 1.3;
}

.item-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.add-btn {
  background: linear-gradient(135deg, #139869, #22c55e);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  width: 100%;
  font-weight: 700;
  min-height: 34px;
}

.add-btn:hover {
  background: linear-gradient(135deg, #139869, #16a34a);
}

.qty-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  color: #111827;
  font-weight: 700;
  touch-action: manipulation;
}

.qty-controls span {
  flex: 1;
  text-align: center;
  font-weight: 700;
}

.qty-controls .qty-btn:last-child {
  background: var(--success);
  border-color: var(--success);
  color: #ffffff;
}

.loading-card,
.empty-order {
  border: 1px dashed var(--panel-border);
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
  color: var(--text-muted);
  text-align: center;
}

.empty-menu-state {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(220px, 50vh, 480px);
  color: var(--text-muted);
  font-weight: 600;
  border: 1px dashed var(--panel-border);
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
}

.order-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.order-head h2 {
  margin: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.order-subtitle {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.order-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 0.7rem;
}

.order-top-field {
  display: grid;
  gap: 0.35rem;
}

.order-top-field span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field-with-action {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.icon-btn {
  border: 1px solid var(--panel-border);
  background: #fff;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-weight: 700;
  cursor: pointer;
}

.order-details {
  border: 1px dashed var(--panel-border);
  border-radius: 12px;
  padding: 0.65rem;
  background: #f8fafc;
}

.order-details summary {
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
}

.order-form-grid {
  display: grid;
  gap: 0.65rem;
}

.order-field {
  display: grid;
  gap: 0.3rem;
}

.order-field span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.order-type-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem;
  background: #eef0f4;
  border: 1px solid #eef0f4;
  border-radius: 8px;
  padding: 0.15rem;
}

.order-type-tab {
  border: 0;
  background: transparent;
  color: var(--text-main);
  border-radius: 6px;
  padding: 0.22rem 0.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  touch-action: manipulation;
}

.order-type-tab:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.55);
}

.order-type-tab.active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.15);
}

.order-type-tab:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.order-items {
  display: grid;
  gap: 0.35rem;
}

.order-row {
  display: grid;
  grid-template-columns:
    36px minmax(0, 1.2fr) minmax(0, 0.9fr)
    0.6fr 0.6fr 0.7fr;
  gap: 0.45rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  background: #fff;
  border-top: 1px solid var(--panel-border);
  min-width: 620px;
}

.order-item-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.order-item-meta {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.order-table {
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  overflow-x: auto;
  background: #fff;
}

.order-table.is-empty .order-table-head {
  border-bottom: 0;
}

.order-table.is-empty .order-items {
  padding: 0.65rem;
}

.order-table-head {
  display: grid;
  grid-template-columns:
    36px minmax(0, 1.2fr) minmax(0, 0.9fr)
    0.6fr 0.6fr 0.7fr;
  gap: 0.45rem;
  padding: 0.5rem 0.65rem;
  min-width: 620px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #f1f5f9;
  border-bottom: 1px solid var(--panel-border);
}

.order-edit-btn {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  cursor: pointer;
}

.order-item-cell {
  min-width: 0;
}

.order-select,
.order-input {
  font-size: 0.78rem;
}

.order-qty-available {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.order-summary {
  display: flex;
  gap: 0;
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel-bg, #ffffff);
}

.order-summary .summary-card {
  flex: 1 1 0;
  padding: 0.7rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.order-summary .summary-card + .summary-card {
  border-left: 1px solid var(--panel-border);
}

.summary-title {
  font-weight: 700;
  color: var(--primary, #2b4a72);
  font-size: 0.95rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.summary-value {
  margin-left: auto;
  font-weight: 600;
  color: var(--text, #222);
}

.summary-subtext {
  display: block;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 0.18rem;
}

.edit-icon {
  color: #17a84b;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  margin-right: 0.35rem;
}

.order-summary input[type="number"],
.order-summary input[type="text"] {
  width: 80px;
  max-width: 100px;
  text-align: right;
  padding: 0.18rem 0.35rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 1100px) {
  .order-summary {
    flex-direction: column;
  }
  .order-summary .summary-card {
    width: 100%;
    padding: 0.6rem 0.8rem;
  }
  .summary-value {
    margin-left: 0;
  }
}

.summary-row strong {
  color: var(--text-main);
}

.summary-row.editable {
  gap: 0.6rem;
}

.summary-row.editable input {
  max-width: 110px;
  text-align: right;
}

.grand-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--panel-border);
  padding-top: 0.7rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.order-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.action-btn {
  border: 0;
  border-radius: 12px;
  min-height: 44px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #fff;
  cursor: pointer;
}

.action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.action-btn.calc {
  background: #2563eb;
}

.action-btn.multi {
  background: var(--accent);
}

.action-btn.credit {
  background: #1f2937;
}

.action-btn.hold {
  background: #475569;
}

.action-btn.cash {
  background: linear-gradient(135deg, #139869, #22c55e);
}

.action-btn.card {
  background: #0ea5e9;
}

.totals {
  border-top: 1px solid var(--panel-border);
  padding-top: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.t-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.t-row.total {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 700;
}

.place-order-btn {
  border: 0;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, #139869, #22c55e);
  color: #fff;
  font-weight: 700;
}

.place-order-btn:disabled {
  opacity: 0.55;
}

.item-price {
  font-weight: 700;
  background: rgba(128, 128, 128, 0.093);
  border-radius: 8px;
  padding: 0.1rem 0.6rem;
  font-size: 0.62rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.receipt-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1040;
  padding: 1rem;
}

.receipt-modal-card {
  width: min(100%, 420px);
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
  overflow: hidden;
}

.receipt-content {
  padding: 1rem 1rem 0.8rem;
}

.receipt-head {
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.7rem;
}

.receipt-head h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.receipt-head p {
  margin: 0.2rem 0 0;
  color: #64748b;
  font-size: 0.95rem;
}

.receipt-contact {
  margin-top: 0.6rem;
}

.receipt-contact p {
  margin: 0.15rem 0;
  color: #334155;
  font-size: 0.88rem;
}

.receipt-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
}

.receipt-table th,
.receipt-table td {
  padding: 0.45rem 0.2rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.receipt-table .text-end {
  text-align: right;
}

.receipt-summary {
  margin-top: 0.7rem;
}

.receipt-summary div {
  display: flex;
  justify-content: space-between;
  margin: 0.25rem 0;
  color: #334155;
}

.receipt-summary .grand {
  margin-top: 0.5rem;
  border-top: 1px solid #d1d5db;
  padding-top: 0.5rem;
  color: #111827;
  font-size: 1.1rem;
  font-weight: 700;
}

.receipt-footer {
  text-align: center;
  color: #64748b;
  margin: 0.9rem 0 0;
}

.receipt-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.9rem;
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
}

.receipt-btn {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  min-height: 44px;
  font-weight: 700;
}

.receipt-btn.print {
  background: #ea580c;
  border-color: #ea580c;
  color: #fff;
}

.receipt-btn.thermal {
  background: #1e293b;
  border-color: #1e293b;
  color: #fff;
}

.receipt-btn.close {
  background: #fff;
  color: #1f2937;
}

@media (max-width: 1100px) {
  .pos-layout {
    grid-template-columns: 1fr;
  }

  .pos-menu-panel {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .menu-grid-wrap {
    overflow: visible;
    padding-right: 0;
  }

  .category-rail {
    overflow: visible;
  }

  .pos-order-panel {
    position: static;
    max-height: none;
  }

  .pos-menu-panel,
  .pos-order-panel {
    border-radius: 16px;
  }

  .items-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .menu-body {
    grid-template-columns: 1fr;
  }

  .category-rail-title {
    display: none;
  }

  .categories-vertical {
    flex-direction: row;
  }

  .category-rail .cat-btn {
    width: auto;
  }

  .category-rail {
    width: auto;
  }

  .order-top-grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (max-width: 860px) {
  .pos-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .clear-filters-btn {
    min-width: 0;
    padding: 0.35rem 0.65rem;
    font-size: 0.85rem;
  }
  .item-price {
    font-size: 0.65rem;
    padding: 0.1rem 0.45rem;
  }

  .item-name {
    font-size: 0.62rem;
  }

  .container-fluid {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .pos-layout {
    gap: 0.75rem;
  }

  .pos-menu-panel,
  .pos-order-panel {
    padding: 0.75rem;
    border-radius: 14px;
  }

  .pos-header {
    gap: 0.65rem;
  }

  .pos-header h1 {
    font-size: 1.1rem;
  }

  .pos-header p {
    font-size: 0.86rem;
  }

  .search-input-wrap {
    height: 40px;
    padding: 0 0.65rem;
  }

  .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .item-card {
    min-height: 0;
  }

  .item-thumb {
    height: 120px;
    min-height: 120px;
  }

  .item-content {
    padding: 0.6rem;
  }

  .item-content h3 {
    margin: 0.1rem 0 0.35rem;
    font-size: 0.95rem;
  }

  .item-footer {
    margin-top: 0.4rem;
  }

  .add-btn {
    min-height: 36px;
  }

  .qty-btn,
  .mini-btn {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .order-row {
    gap: 0.6rem;
  }

  .order-actions {
    gap: 0.5rem;
  }

  .order-type-tab {
    min-height: 36px;
    font-size: 0.75rem;
    padding: 0.3rem 0.15rem;
  }

  .order-actions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .empty-menu-state {
    min-height: clamp(180px, 40vh, 320px);
    font-size: 0.92rem;
  }

  .place-order-btn {
    min-height: 44px;
  }

  .restaurant-switcher {
    min-width: 100%;
  }

  .receipt-modal {
    padding: 0.65rem;
  }

  .receipt-content {
    padding: 0.8rem 0.8rem 0.65rem;
  }

  .receipt-head h3 {
    font-size: 1.5rem;
  }

  .receipt-head p,
  .receipt-contact p,
  .receipt-table th,
  .receipt-table td {
    font-size: 0.82rem;
  }

  .receipt-actions {
    padding: 0.65rem;
    gap: 0.4rem;
  }

  .receipt-btn {
    min-height: 40px;
    font-size: 0.86rem;
  }
}

@media (max-width: 400px) {
  .order-type-tabs {
    grid-template-columns: 1fr;
  }

  .items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .item-card {
    min-height: 0;
  }

  .item-thumb {
    height: 116px;
    min-height: 116px;
  }

  .qty-btn,
  .mini-btn {
    width: 32px;
    height: 32px;
  }
}
