/* ===== MODAL DE PAGAMENTO ===== */

/* Floating Cart Button with Glass */
.floating-cart-btn {
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

/* Glass version */
.supports-backdrop-filter .floating-cart-btn {
  background: rgba(255, 107, 53, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Fallback version */
.no-backdrop-filter .floating-cart-btn {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.floating-cart-btn.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.floating-cart-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.floating-cart-btn.pulse {
  animation: pulse-cart 2s infinite;
}

@keyframes pulse-cart {
  0%, 70%, 100% { transform: scale(1); }
  35% { transform: scale(1.15); }
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--danger);
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.3);
}

/* Payment Modal with Glass Effects */
.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  display: none;
  z-index: 9998;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glass version */
.supports-backdrop-filter .payment-modal {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Fallback version */
.no-backdrop-filter .payment-modal {
  background: rgba(0, 0, 0, 0.8);
}

.payment-modal.show {
  opacity: 1;
}

.payment-modal-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

/* Glass version */
.supports-backdrop-filter .payment-modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
}

/* Fallback version */
.no-backdrop-filter .payment-modal-content {
  background: white;
}

.payment-modal.show .payment-modal-content {
  transform: translateX(0);
}

.payment-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  flex-shrink: 0;
}

/* Glass version */
.supports-backdrop-filter .payment-modal-header {
  background: rgba(255, 107, 53, 0.8);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

/* Fallback version */
.no-backdrop-filter .payment-modal-header {
  background: #ff6b35;
  position: sticky;
  top: 0;
  z-index: 1;
}

.payment-modal-title {
  font-size: 18px;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-payment-modal {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-payment-modal:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.payment-modal-body {
  padding: 20px 20px 100px 20px; /* Espaço extra na parte inferior para o botão fixo */
  flex: 1;
  overflow-y: auto;
}

/* Order Items List */
.order-items-list {
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-name {
  flex: 1;
  font-weight: 600;
  color: var(--dark);
}

.order-item-qty {
  color: var(--gray-600);
  margin: 0 16px;
  font-weight: 500;
}

.order-item-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Observations Section */
.observations-section {
  margin: 20px 0;
}

.observations-btn {
  width: 100%;
  padding: 12px 16px;
  background: var(--gray-100);
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  font-size: 14px;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.observations-btn:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
}

.observations-btn.has-content {
  background: var(--success);
  color: white;
  border-color: var(--success);
}

/* Payment Section */
.payment-section {
  margin: 24px 0;
}

.payment-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 16px;
}

/* Floating Labels System */
.floating-input-group {
  position: relative;
  margin-bottom: 16px;
}

.floating-input {
  width: 100%;
  height: 58px;
  padding: 20px 16px 8px 16px;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-size: 16px;
  color: var(--dark);
  background: #fff;
  transition: var(--transition);
  outline: none;
  font-family: inherit;
}

.floating-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 400;
  transition: var(--transition);
  pointer-events: none;
  background: white;
  padding: 0 4px;
  z-index: 1;
}

/* Label ativo - sobe */
.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label,
.floating-input.has-value + .floating-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}

/* Focus state */
.floating-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Error state */
.floating-input.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.floating-input.error + .floating-label {
  color: var(--danger);
}

/* Valid state */
.floating-input.valid {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
  padding-right: 48px;
}

.floating-input.valid + .floating-label {
  color: var(--success);
}

/* Validation icon */
.validation-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--success);
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-input.valid ~ .validation-icon {
  opacity: 1;
}

/* Error message */
.error-message {
  position: absolute;
  left: 0;
  bottom: -22px;
  color: var(--danger);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.floating-input.error ~ .error-message {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Textarea */
.floating-textarea {
  width: 100%;
  min-height: 80px;
  padding: 20px 16px 8px 16px;
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  background: white;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.5;
  resize: vertical;
  outline: none;
  transition: all 0.3s ease;
}

.floating-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.floating-textarea:focus + .floating-label,
.floating-textarea.has-value + .floating-label {
  top: 0;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}

.floating-textarea.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.floating-textarea.error ~ .error-message {
  opacity: 1;
  transform: translateY(0);
}

/* Payment Methods - macOS Tahoe Style */
.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.payment-method-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.payment-method-card input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.payment-method-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  min-height: 68px;
}

.payment-method-card:hover .payment-method-label {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.payment-method-card input:checked + .payment-method-label {
  background: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.payment-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.payment-info {
  flex: 1;
}

.payment-name {
  font-weight: 600;
  font-size: 16px;
  color: #1d1d1f;
  margin-bottom: 2px;
}

.payment-desc {
  font-size: 13px;
  color: #6e6e73;
  line-height: 1.2;
}

.payment-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-tag.best {
  background: linear-gradient(135deg, #00d084, #00b572);
  color: white;
}

@media (max-width: 480px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .payment-method-label {
    padding: 14px;
    min-height: 60px;
  }
}

/* Payment Options - Compatibility */
.payment-options {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.payment-option label {
  flex: 1;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark);
}

.label-credit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.label-credit .subnote {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 400;
}

/* Total Section */
.total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--gray-100);
  border-radius: 12px;
  margin: 24px 0;
}

.total-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

.total-value {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
}

/* Checkout Button - Fixo na parte inferior */

.payment-modal .checkout-btn {
  position: static;
  width: calc(100% - 40px);
  margin: 20px 20px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #00d084, #00b572);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 209, 132, 0.3);
  z-index: 1;
}

/* Botões checkout normais da página (não do modal) mantêm o estilo original */
.order-summary .checkout-btn {
  position: relative;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #00d084, #00b572);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.payment-modal .checkout-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #00b572, #009960);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 209, 132, 0.4);
}

.payment-modal .checkout-btn:disabled {
  background: #adb5bd;
  cursor: not-allowed;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

/* Observations Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.modal textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  outline: none;
  transition: var(--transition);
}

.modal textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.modal-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.modal-btn.secondary {
  background: var(--gray-200);
  color: var(--dark);
}

.modal-btn.secondary:hover {
  background: var(--gray-300);
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .payment-modal {
    padding: 10px;
  }
  
  .payment-modal-content {
    max-height: 95vh;
    border-radius: 16px;
  }
  
  .floating-input {
    height: 56px;
    padding: 18px 16px 8px 16px;
    font-size: 16px; /* Evita zoom no iOS */
  }
  
  .floating-input-group {
    margin-bottom: 14px;
  }
  
  .checkout-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .total-section {
    padding: 16px;
  }
  
  .total-value {
    font-size: 1.3rem;
  }
}

/* PIX Container */
#pixContainer {
  margin-top: 10px;
}

#pixContainer input {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  background: var(--gray-50);
  font-size: 14px;
  color: var(--dark);
}

/* Troco Container */
#trocoContainer {
  margin-top: 16px;
}

.troco-label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.troco-input {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.troco-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Fee Info */
#feeInfo {
  padding: 12px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  color: #856404;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Delivery Container */
#deliveryContainer {
  margin-top: 16px;
}

/* ===== SISTEMA DE ALERTAS PERSONALIZADO ===== */
.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-alert-overlay.show {
  opacity: 1;
  visibility: visible;
}

.custom-alert {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 400px;
  width: calc(100% - 40px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: scale(0.95) translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
}

.custom-alert-overlay.show .custom-alert {
  transform: scale(1) translateY(0);
}

.custom-alert-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.custom-alert-icon.success { color: #00d084; }
.custom-alert-icon.error { color: #ff4757; }
.custom-alert-icon.warning { color: #ffa502; }
.custom-alert-icon.info { color: #3742fa; }

.custom-alert-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 28px;
}

.custom-alert-message {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 24px;
  line-height: 24px;
}

.custom-alert-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.custom-alert-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.custom-alert-btn.primary {
  background: linear-gradient(135deg, #00d084, #00b572);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 209, 132, 0.3);
}

.custom-alert-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 209, 132, 0.4);
}

.custom-alert-btn.secondary {
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
}

.custom-alert-btn.secondary:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.custom-alert-btn.danger {
  background: linear-gradient(135deg, #ff4757, #e84c5e);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

.custom-alert-btn.danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

@media (max-width: 480px) {
  .custom-alert {
    padding: 24px 20px;
    max-width: calc(100% - 32px);
  }
  
  .custom-alert-buttons {
    flex-direction: column;
  }
  
  .custom-alert-btn {
    width: 100%;
  }
}

/* ===== HEADER STYLES (EXTRAÍDO DA REFERÊNCIA) ===== */
.header {
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(circle at top center, #d78f00 0%, transparent 70%),
    radial-gradient(circle at bottom center, #c81101 0%, transparent 50%),
    radial-gradient(circle at center, #d78f00 0%, transparent 80%),
    #c81101;
}

.header::before {
  content:'';
  position:absolute;
  inset:0;
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="g"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23g)"/><circle cx="700" cy="400" r="150" fill="url(%23g)"/><circle cx="400" cy="700" r="120" fill="url(%23g)"/></svg>') no-repeat center/cover;
  opacity:.3;
}

.header-content {
  z-index:2;
  animation:fadeInUp 1s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 0;
}

.header .schedule {
  font-size:.85rem;
  line-height:1.25;
  opacity:.9;
}

.logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(10px);
  margin-bottom: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: block;
}

.logo:hover {
  transform:scale(1.05);
  border-color:rgba(255,255,255,.5);
}

.header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
}

.status-badge {
  background:rgba(255,255,255,.2);
  backdrop-filter:blur(10px);
  padding:6px 14px;
  border-radius:25px;
  font-size:.75rem;
  font-weight:500;
  margin-top:8px;
  border:1px solid rgba(255,255,255,.1);
  transition:var(--transition);
}

.status-open {
  background:#fff;
  color:var(--success);
  border:2px solid var(--success);
  font-weight:700;
  box-shadow:0 4px 12px rgba(0,208,132,.15);
}

.status-closed {
  background:#fff;
  color:var(--danger);
  border:2px solid var(--danger);
  font-weight:700;
  box-shadow:0 4px 12px rgba(255,71,87,.15);
}

/* ===== SECTION TITLES (EXTRAÍDO DA REFERÊNCIA) ===== */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 50px 0 4px;
  color: var(--dark);
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.section-first-header-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 5px 0 4px;
  color: var(--dark);
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.section-sub {
  color: var(--gray-600);
  font-size: .75rem;
  margin-bottom: 5px;
  text-align: center;
}

.section-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 8px 0 24px;
}

/* Animações de entrada */
@keyframes fadeInUp {
  from {
    opacity:0;
    transform:translateY(30px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

/* Mobile responsivo para header */
@media (max-width:768px) {
  .header h1 {
    font-size:1.4rem;
  }
  .header .schedule {
    font-size:.8rem;
  }
  .status-badge {
    font-size:.72rem;
    padding:6px 12px;
  }
}

/* ===== PIZZA CATEGORIES ===== */
.pizza-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.pizza-category-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  border: 2px solid #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.pizza-category-card:hover {
  border-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.pizza-category-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.pizza-category-info {
  flex: 1;
}

.pizza-category-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 4px 0;
}

.pizza-category-price {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b35;
  margin: 0 0 4px 0;
}

.pizza-category-desc {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.3;
}

.pizza-category-arrow {
  font-size: 1.5rem;
  color: #ff6b35;
  font-weight: bold;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pizza-category-card:hover .pizza-category-arrow {
  transform: translateX(4px);
}

/* Modal de Seleção de Pizza */
.pizza-selection-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  display: none;
  z-index: 9998;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pizza-selection-modal.show {
  opacity: 1;
}

.pizza-selection-content {
  background: white;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.pizza-selection-modal.show .pizza-selection-content {
  transform: translateX(0);
}

.pizza-selection-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e9ecef;
  background: #ff6b35;
  color: white;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 1;
}

.pizza-selection-title {
  font-size: 18px;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.close-pizza-selection {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-pizza-selection:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.pizza-selection-body {
  padding: 20px 20px 100px 20px;
  flex: 1;
}

/* Pizza Selection Options */
.pizza-size-selection {
  margin: 20px 0;
  background: #f8f9fa;
  padding: 16px;
  border-radius: 12px;
}

.pizza-size-title {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 12px;
}

.pizza-size-options {
  display: flex;
  gap: 12px;
}

.pizza-size-option {
  flex: 1;
  position: relative;
}

.pizza-size-radio {
  position: absolute;
  opacity: 0;
}

.pizza-size-label {
  display: block;
  padding: 12px;
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.pizza-size-radio:checked + .pizza-size-label {
  border-color: #ff6b35;
  background: #ff6b35;
  color: white;
}

.pizza-size-label:hover {
  border-color: #ff6b35;
}

/* Pizza Flavor Selection */
.pizza-flavor-section {
  margin: 20px 0;
}

.pizza-flavor-title {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pizza-flavor-count {
  background: #ff6b35;
  color: white;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

.pizza-flavor-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pizza-flavor-option {
  background: white;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pizza-flavor-option:hover {
  border-color: #ff6b35;
}

.pizza-flavor-option.selected {
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.pizza-flavor-name {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
}

.pizza-flavor-desc {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.3;
}

/* Pizza Selection Footer */
.pizza-selection-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 16px 20px;
  border-top: 1px solid #e9ecef;
  z-index: 2;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.pizza-quantity-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.pizza-qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #ff6b35;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pizza-qty-btn:hover {
  background: #e55a2b;
  transform: scale(1.1);
}

.pizza-qty-btn:disabled {
  background: #adb5bd;
  cursor: not-allowed;
  transform: none;
}

.pizza-qty-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  min-width: 40px;
  text-align: center;
}

.pizza-add-btn {
  width: 100%;
  padding: 16px;
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pizza-add-btn:hover:not(:disabled) {
  background: #e55a2b;
  transform: translateY(-2px);
}

.pizza-add-btn:disabled {
  background: #adb5bd;
  cursor: not-allowed;
  transform: none;
}