/* POS Page Layout - Momence Style */
.pos-page {
  margin-left: 260px;
  min-height: 100vh;
  background: var(--bg-light);
  padding: 0;
}

/* Page Header */
.pos-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.pos-page-header h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.actions-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
}

/* POS Form Container */
.pos-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
}

/* POS Sections */
.pos-section {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.pos-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 16px 0;
}

/* Row layout for discounts and totals */
.pos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.pos-row .pos-section {
  margin-bottom: 0;
}

/* ========================================
   SEARCHABLE COMBOBOX COMPONENT
   ======================================== */

.combobox-wrapper {
  position: relative;
  width: 100%;
}

.combobox-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  min-height: 44px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.combobox-input-wrapper:hover {
  border-color: var(--primary);
}

.combobox-input-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.combobox-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  padding: 12px 0;
  min-width: 0;
}

.combobox-input::placeholder {
  color: var(--text-muted);
}

/* Selected state in combobox */
.combobox-selected {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.combobox-selected.hidden {
  display: none;
}

.combobox-selected + .combobox-input {
  display: none;
}

.combobox-selected.hidden + .combobox-input {
  display: block;
}

.selected-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}

.selected-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.selected-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selected-email {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.combobox-clear,
.combobox-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.combobox-clear:hover {
  background: #fee2e2;
  color: #dc2626;
}

.combobox-toggle:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.combobox-clear.hidden {
  display: none;
}

/* Combobox Dropdown */
.combobox-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-top: 4px;
  z-index: 100;
  max-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.combobox-dropdown.hidden {
  display: none;
}

.combobox-options {
  flex: 1;
  overflow-y: auto;
  padding: 4px;
}

.combobox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.combobox-option:hover {
  background: var(--bg-light);
}

.combobox-option.selected {
  background: var(--primary-light);
}

.option-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}

.option-info {
  flex: 1;
  min-width: 0;
}

.option-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.option-email {
  font-size: 12px;
  color: var(--text-muted);
}

.option-badge {
  font-size: 11px;
  color: var(--text-muted);
  padding: 2px 6px;
  background: var(--bg-light);
  border-radius: 4px;
}

.combobox-footer {
  padding: 8px;
  border-top: 1px solid var(--border);
}

.combobox-add-new {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  font-size: 14px;
  color: var(--primary);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.combobox-add-new:hover {
  background: var(--primary-light);
}

.combobox-add-new svg {
  stroke: var(--primary);
}

.combobox-no-results {
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* Customer field row */
.customer-field-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.customer-combobox {
  flex: 1;
}

.btn-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-icon:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

/* ========================================
   CART SECTION
   ======================================== */

.cart-section {
  padding: 20px 24px;
}

.cart-section.hidden {
  display: none;
}

.cart-items-container {
  margin-bottom: 16px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cart-item:hover {
  background: #f0f0f5;
}

.cart-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.cart-item-type {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.cart-item-prices {
  text-align: right;
  flex-shrink: 0;
}

.cart-item-original-price {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.cart-item-final-price {
  font-size: 14px;
  font-weight: 600;
  color: #dc2626;
}

.cart-item-final-price.no-discount {
  color: var(--text-dark);
}

.cart-item-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.cart-item-action {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-item-action:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.cart-item-action.delete:hover {
  background: #fee2e2;
  border-color: #fecaca;
  color: #dc2626;
}

/* Add to cart button */
.cart-add-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}

.btn-add-cart-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-cart-item:hover {
  background: var(--primary-light);
}

.btn-add-cart-item svg {
  stroke: var(--primary);
}

.cart-total-preview {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.cart-total-preview .original-price {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.cart-total-preview .original-price.hidden {
  display: none;
}

.cart-total-preview .final-price {
  font-size: 16px;
  font-weight: 600;
  color: #dc2626;
}

.cart-total-preview .final-price.no-discount {
  color: var(--text-dark);
}

/* ========================================
   DISCOUNTS SECTION
   ======================================== */

.discounts-section .pos-section-title {
  margin-bottom: 16px;
}

.discount-code-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.discount-code-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
}

.discount-code-input:focus {
  border-color: var(--primary);
}

.discount-code-input::placeholder {
  color: var(--text-muted);
}

.custom-discount-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.custom-discount-controls.hidden {
  display: none;
}

.discount-slider {
  flex: 1;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border);
  border-radius: 3px;
  outline: none;
}

.discount-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.discount-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.discount-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.discount-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.discount-input {
  width: 60px;
  padding: 8px 12px;
  border: none;
  font-size: 14px;
  color: var(--text-dark);
  text-align: right;
  outline: none;
}

.discount-input::-webkit-inner-spin-button,
.discount-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.discount-suffix {
  padding: 8px 12px;
  background: var(--bg-light);
  font-size: 14px;
  color: var(--text-muted);
  border-left: 1px solid var(--border);
}

/* ========================================
   TOTALS SECTION
   ======================================== */

.totals-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-medium);
}

.totals-row.total-row {
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-dark);
}

.totals-row.discount-row.hidden {
  display: none;
}

.discount-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--bg-light);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-medium);
  margin-left: 8px;
}

.discount-amount {
  color: #dc2626;
}

/* ========================================
   PAYMENT SECTION
   ======================================== */

.payment-section {
  padding: 20px 24px;
}

.payment-section.hidden {
  display: none;
}

.payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.payment-header .pos-section-title {
  margin: 0;
}

/* Switch/Toggle */
.switch-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-medium);
}

.switch-label input {
  display: none;
}

.switch-track {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--border);
  border-radius: 12px;
  transition: background 0.2s ease;
}

.switch-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.switch-label input:checked + .switch-track {
  background: var(--primary);
}

.switch-label input:checked + .switch-track::after {
  transform: translateX(20px);
}

/* Payment Methods Row */
.payment-methods-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.payment-method-btn {
  padding: 10px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-method-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.payment-method-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.payment-method-btn.hidden {
  display: none;
}

/* Payment Details */
.payment-details {
  padding: 16px;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 16px;
  min-height: 80px;
}

.payment-prompt {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.payment-amount-field {
  margin-bottom: 12px;
}

.payment-amount-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.payment-amount-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-white);
}

.payment-amount-prefix {
  padding: 10px 12px;
  background: var(--bg-light);
  font-size: 14px;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}

.payment-amount-input input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
}

.payment-instruction {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
}

.payment-free-message {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
}

/* Split payment controls */
.split-payment-controls {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* Payment Footer */
.payment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-confirm {
  padding: 12px 24px;
}

.btn-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   MODALS
   ======================================== */

.pos-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.pos-modal.hidden {
  display: none;
}

.pos-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.pos-modal-content {
  position: relative;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  width: 560px;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.pos-modal-content.add-item-modal {
  width: 700px;
}

.pos-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.pos-modal-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.pos-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.pos-modal-close:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.pos-modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}

/* Category Buttons in Modal */
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.category-btn.active svg {
  stroke: white;
}

.category-btn svg {
  stroke: currentColor;
}

.category-content {
  min-height: 200px;
}

/* Modal Search Row */
.modal-search-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.modal-search svg {
  flex-shrink: 0;
  color: var(--text-muted);
}

.modal-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
}

.modal-search input::placeholder {
  color: var(--text-muted);
}

.date-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  white-space: nowrap;
}

/* Modal Time Tabs */
.modal-time-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.time-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-tab:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.time-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.time-tab.active svg {
  stroke: white;
}

/* Modal Results */
.modal-results {
  min-height: 200px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* Class Result Item */
.class-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}

.class-result-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.class-result-info {
  flex: 1;
}

.class-result-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.class-result-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.class-result-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* Out of stock */
.class-result-item.out-of-stock {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.out-of-stock-badge {
  font-size: 12px;
  font-weight: 600;
  color: #dc3545;
  white-space: nowrap;
  padding: 2px 8px;
  background: #fff5f5;
  border-radius: 4px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--bg-light);
  color: var(--text-medium);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-white);
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-medium);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   UTILITIES
   ======================================== */

.hidden {
  display: none !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
  .pos-page {
    margin-left: 80px;
  }

  .pos-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pos-page {
    margin-left: 0;
  }

  .pos-page-header {
    padding: 16px 20px;
  }

  .pos-form-container {
    padding: 16px;
  }

  .payment-methods-row {
    flex-direction: column;
  }

  .payment-method-btn {
    width: 100%;
    justify-content: center;
  }

  .payment-footer {
    flex-direction: column;
    gap: 12px;
  }

  .payment-footer .checkbox-label {
    width: 100%;
  }

  .payment-footer .btn-confirm {
    width: 100%;
  }
}

/* Cart Item Edit Form */
.cart-item-edit-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 4px 0;
}

.cart-item-edit-form .edit-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-edit-form .edit-field label {
  font-size: 13px;
  color: #6B7280;
  white-space: nowrap;
}

.cart-item-edit-form .edit-price-input {
  width: 120px;
  padding: 6px 10px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 14px;
}

.cart-item-edit-form .edit-price-input:focus {
  outline: none;
  border-color: #6366F1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.15);
}

.cart-item-edit-form .edit-actions {
  display: flex;
  gap: 6px;
}

.btn-sm {
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 4px;
}
