/* Merchant Portal CSS (Dark Mode Kitchen Display System) */

body {
  background-color: #0F172A; /* Slate 900 */
  color: #F1F5F9; /* Slate 100 */
}

/* Header style override */
.merchant-header {
  background-color: #1E293B; /* Slate 800 */
  border-bottom: 1px solid #334155;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container-merchant {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-icon {
  font-size: 26px;
}

.brand-area h2 {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
}

.brand-area h2 span {
  color: var(--primary);
}

/* Shop selector */
.shop-select-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-select-area label {
  font-weight: 600;
  font-size: 14px;
  color: #94A3B8;
}

#merchant-shop-select {
  background-color: #0F172A;
  color: #FFFFFF;
  border: 1px solid #475569;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

#merchant-shop-select:focus {
  border-color: var(--primary);
}

/* Connection Status Badge */
.status-badge {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.status-badge.online {
  background-color: rgba(16, 185, 129, 0.2);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.status-badge.offline {
  background-color: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* Dashboard content */
.merchant-dashboard-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
  min-height: calc(100vh - 75px);
}

/* Overlay when no shop is selected */
.no-shop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.95);
  z-index: 5;
  transition: opacity 0.3s ease;
}

.overlay-card {
  text-align: center;
  background-color: #1E293B;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid #334155;
  max-width: 450px;
  box-shadow: var(--shadow-lg);
}

.overlay-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

.overlay-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.overlay-card p {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.6;
}

/* Stats Ribbon */
.stats-ribbon {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.stat-card {
  flex: 1;
  background-color: #1E293B;
  border: 1px solid #334155;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
}

#stat-pending { color: #EF4444; }
#stat-preparing { color: #F59E0B; }
#stat-completed { color: #10B981; }

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Kanban Board layout */
.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  height: calc(100vh - 240px);
  min-height: 500px;
}

.kanban-column {
  background-color: #1E293B;
  border-radius: var(--radius-lg);
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.column-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #334155;
}

.column-header h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.column-header.pending { border-bottom-color: #EF4444; color: #EF4444; }
.column-header.preparing { border-bottom-color: #F59E0B; color: #F59E0B; }
.column-header.ready { border-bottom-color: #10B981; color: #10B981; }

.column-count {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

.column-cards {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Order Card style */
.order-card {
  background-color: #0F172A;
  border: 1px solid #334155;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition-fast);
  animation: scaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.order-card:hover {
  transform: translateY(-2px);
  border-color: #475569;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #1E293B;
  padding-bottom: 10px;
}

.order-id-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748B;
}

.order-type-badge {
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.order-type-badge.delivery {
  background-color: rgba(239, 68, 68, 0.15);
  color: #F87171;
}

.order-type-badge.mesa {
  background-color: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
}

.order-timer {
  font-size: 12px;
  font-weight: 600;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.order-timer.late {
  color: #EF4444;
  animation: pulse 1s infinite alternate;
}

.customer-name {
  font-size: 15px;
  font-weight: 700;
  color: #F8FAFC;
}

.order-items-list {
  list-style: none;
  padding: 0;
}

.order-item-detail {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 4px 0;
  border-bottom: 1px dashed #1E293B;
}

.order-item-qty {
  font-weight: 700;
  color: var(--primary);
  margin-right: 8px;
}

.order-item-name {
  flex: 1;
  color: #CBD5E1;
}

.order-address-box {
  background-color: #1E293B;
  padding: 10px;
  border-radius: 6px;
  font-size: 12px;
  border-left: 3px solid var(--primary);
}

.order-address-box strong {
  display: block;
  margin-bottom: 2px;
  color: #94A3B8;
}

.order-address-box p {
  color: #E2E8F0;
  word-break: break-all;
}

.order-total-price {
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  color: #10B981;
}

.btn-card-action {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  color: #FFFFFF;
  text-align: center;
}

.btn-card-action.start {
  background-color: #F59E0B;
}
.btn-card-action.start:hover {
  background-color: #D97706;
}

.btn-card-action.ready {
  background-color: #10B981;
}
.btn-card-action.ready:hover {
  background-color: #059669;
}

.btn-card-action.archive {
  background-color: #475569;
}
.btn-card-action.archive:hover {
  background-color: #334155;
}

.btn-card-action.cancel {
  background-color: #EF4444;
}
.btn-card-action.cancel:hover {
  background-color: #DC2626;
}

/* Sound play test floating button */
.sound-test-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #334155;
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.sound-test-btn:hover {
  background-color: #475569;
  transform: scale(1.05);
}

@keyframes pulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Responsive KDS */
@media (max-width: 1024px) {
  .kanban-board {
    grid-template-columns: 1fr;
    height: auto;
  }
  .kanban-column {
    height: 450px;
  }
  .stats-ribbon {
    flex-wrap: wrap;
  }
}

/* Specs rendering in Kitchen comanda */
.order-item-specs {
  font-size: 11.5px;
  color: #94A3B8; /* Slate 400 */
  margin-top: 4px;
  padding-left: 28px;
  line-height: 1.4;
  font-style: italic;
  white-space: pre-wrap;
  border-left: 2px solid #475569; /* Slate 600 line */
  margin-left: 10px;
}

/* Responsive KDS & Mobile Merchant Header */
@media (max-width: 768px) {
  .header-container-merchant {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand-area {
    width: 100%;
    justify-content: space-between;
  }

  .brand-area h2 {
    font-size: 18px;
  }

  .shop-select-area {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  #active-shop-info {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .btn-manage-prices {
    margin-left: 0 !important;
    flex: 1 1 calc(50% - 6px);
    text-align: center;
    padding: 8px 10px !important;
    font-size: 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Persistent Scandalous Alarm Flashing Top Banner */
.kitchen-alarm-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.7), 0 0 20px rgba(255, 255, 255, 0.4);
  animation: alarmBannerStrobe 0.8s infinite alternate ease-in-out;
  cursor: pointer;
  user-select: none;
  border-bottom: 3px solid #fef08a;
  transition: all 0.3s ease;
}

.kitchen-alarm-banner.hidden {
  display: none !important;
}

@keyframes alarmBannerStrobe {
  0% {
    background-color: #ef4444;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.9);
  }
  50% {
    background-color: #dc2626;
  }
  100% {
    background-color: #7f1d1d;
    box-shadow: 0 0 60px rgba(254, 240, 138, 0.8);
  }
}

.alarm-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.alarm-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.alarm-siren-icon {
  font-size: 32px;
  animation: alarmIconBounce 0.4s infinite alternate ease-in-out;
}

@keyframes alarmIconBounce {
  from { transform: scale(1) rotate(-10deg); }
  to { transform: scale(1.3) rotate(10deg); }
}

.alarm-banner-text .alarm-title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.alarm-banner-text .alarm-subtitle {
  font-size: 13px;
  opacity: 0.95;
  font-weight: 600;
}

.alarm-btn-silence {
  background: #ffffff;
  color: #b91c1c;
  border: 2px solid #ffffff;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s, background 0.15s;
  white-space: nowrap;
}

.alarm-btn-silence:hover {
  background: #fef08a;
  transform: scale(1.05);
}

.alarm-btn-silence:active {
  transform: scale(0.95);
}

/* Sound Test Floating Button */
.sound-test-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sound-test-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.6);
}

.sound-test-btn.alarm-ringing {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  animation: alarmIconBounce 0.4s infinite alternate;
}

/* Stacking Order Hierarchy */
#menu-tables-modal { z-index: 3000 !important; }
#admin-store-qr-modal { z-index: 3950 !important; }
#product-modal { z-index: 4000 !important; }
#daily-options-modal { z-index: 4100 !important; }
#pizza-crusts-manager-modal { z-index: 4400 !important; }
#quick-fill-prices-modal { z-index: 4700 !important; }
#clear-modifiers-modal { z-index: 4800 !important; }
#product-specs-modal { z-index: 4900 !important; }

/* =========================================================
   TALLER DE LOCAL & MENÚ: SISTEMA DE PESTAÑAS Y RESPONSIVE
   ========================================================= */

.designer-tabs-bar {
  display: flex;
  gap: 8px;
  background: rgba(15, 23, 42, 0.95);
  padding: 6px 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow-x: auto;
  white-space: nowrap;
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  min-height: 48px;
  align-items: center;
}

.designer-tabs-bar::-webkit-scrollbar {
  height: 4px;
}
.designer-tabs-bar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.designer-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  padding: 9px 15px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  min-width: max-content !important;
}

.designer-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.designer-tab-btn.active {
  background: linear-gradient(135deg, #FF5E3A 0%, #EA580C 100%) !important;
  color: #ffffff !important;
  border-color: rgba(255, 94, 58, 0.5) !important;
  box-shadow: 0 4px 14px rgba(255, 94, 58, 0.4) !important;
}

.designer-tab-content {
  display: none;
  animation: fadeInTab 0.2s ease-in-out;
}

.designer-tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* Day Selector Pills for Daily Specials */
.day-pill-selector {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.day-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.day-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.day-pill.active {
  background: #f59e0b;
  color: #0f172a;
  border-color: #f59e0b;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.day-pill.today-badge::after {
  content: ' • HOY';
  font-size: 9px;
  font-weight: 900;
  color: inherit;
}

/* Daily Dishes Cards */
.daily-specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.daily-dish-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform 0.15s, border-color 0.15s;
}

.daily-dish-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

.daily-dish-card.paused {
  opacity: 0.65;
  filter: grayscale(0.4);
}

.daily-dish-header {
  display: flex;
  gap: 10px;
  align-items: center;
}

.daily-dish-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.daily-dish-title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.daily-dish-price {
  color: #10b981;
  font-weight: 800;
  font-size: 13px;
}

.daily-dish-options-badge {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.daily-dish-actions {
  display: flex;
  gap: 6px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
}

.btn-daily-action {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.15s;
}

.btn-daily-action:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-daily-action.toggle-active {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}

.btn-daily-action.toggle-active.is-paused {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

/* Horizontal Categories Scroller on Mobile */
.category-list-horizontal {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 12px;
  list-style: none;
  padding-left: 0;
  -webkit-overflow-scrolling: touch;
}

.category-list-horizontal .category-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.15s;
}

.category-list-horizontal .category-item.active {
  background: var(--accent, #10b981);
  color: #0f172a;
  border-color: var(--accent, #10b981);
}

/* Mobile responsive full viewport overrides */
@media (max-width: 768px) {
  #menu-tables-modal,
  #product-specs-modal {
    padding: 0 !important;
  }

  #menu-tables-modal .modal-content,
  #product-specs-modal .modal-content {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    height: 100% !important;
    border-radius: 0 !important;
    padding: 14px 12px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .designer-tabs-bar {
    margin-bottom: 12px;
    padding: 6px 8px;
    gap: 8px;
    min-height: 50px;
  }

  .designer-tab-btn {
    padding: 8px 12px !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
  }

  #modal-products-catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .daily-specials-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  #floor-grid-canvas {
    max-width: 300px !important;
  }
}

/* Blinking Observation / Notes Badges & Box */
@keyframes blink-obs-glow {
  0%, 100% {
    background: #EF4444;
    color: #FFFFFF;
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.9), inset 0 0 8px rgba(255, 255, 255, 0.3);
    transform: scale(1);
  }
  50% {
    background: #F59E0B;
    color: #121216;
    box-shadow: 0 0 24px rgba(245, 158, 11, 1), inset 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.03);
  }
}

.blinking-obs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: gentle-blink-text 1.8s infinite ease-in-out;
  font-weight: 900;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

@keyframes gentle-pulse-obs {
  0% {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.35);
    border-color: #EF4444;
  }
  50% {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.7);
    border-color: #F59E0B;
  }
  100% {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.35);
    border-color: #EF4444;
  }
}

@keyframes gentle-blink-text {
  0%, 100% {
    opacity: 1;
    filter: brightness(1.15);
  }
  50% {
    opacity: 0.65;
    filter: brightness(0.85);
  }
}

.order-observations-box {
  margin-top: 12px;
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid #EF4444;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.35);
  animation: gentle-pulse-obs 2.2s infinite ease-in-out;
}

.order-observations-box .obs-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.blinking-obs-badge {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
  animation: gentle-blink-text 1.8s infinite ease-in-out;
}

.order-observations-box .obs-content {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.45);
  padding: 10px 12px;
  border-radius: 8px;
  border-left: 4px solid #F59E0B;
}

.blinking-kitchen-note-text {
  animation: gentle-blink-text 2s infinite ease-in-out;
}

.item-spec-note-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.22);
  border: 1.5px solid #F59E0B;
  color: #FEF08A;
  font-size: 13.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  margin-top: 4px;
  animation: gentle-blink-text 2s infinite ease-in-out;
}

.item-spec-exclusion-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #EF4444;
  color: #FCA5A5;
  font-size: 13px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  margin-top: 2px;
}

