/* ========================================
   El Camaron Loco - Custom Styles
   ======================================== */

:root {
  --rojo-camaron: #E74C3C;
  --rojo-oscuro: #C0392B;
  --azul-oceano: #1B6B93;
  --azul-oscuro: #0D3B66;
  --naranja: #F39C12;
  --naranja-claro: #F5B041;
  --blanco: #FFFFFF;
  --gris-claro: #F8F9FA;
  --gris: #6C757D;
}

/* General */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--azul-oscuro);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--rojo-camaron);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--azul-oceano) 0%, var(--azul-oscuro) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,50 C360,100 720,0 1080,50 C1260,75 1380,60 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.hero-logo {
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Wave Dividers */
.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.wave-top {
  background: linear-gradient(135deg, var(--azul-oceano) 0%, var(--azul-oscuro) 100%);
}

/* Menu Cards */
.menu-card {
  background: var(--blanco);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Card image header */
.menu-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}


.menu-card-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.menu-card .price {
  color: var(--rojo-camaron);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.spice-level {
  display: inline-flex;
  gap: 2px;
}

/* Test price notice */
.price-notice {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: #856404;
  margin-bottom: 2rem;
}

/* Feature Cards */
.feature-card {
  background: var(--blanco);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
}

/* Buttons */
.btn-camaron {
  background: linear-gradient(135deg, var(--rojo-camaron), var(--rojo-oscuro));
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-camaron:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
  color: white;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

.btn-outline-camaron {
  border: 2px solid var(--rojo-camaron);
  color: var(--rojo-camaron);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

.btn-outline-camaron:hover {
  background: var(--rojo-camaron);
  color: white;
  transform: translateY(-2px);
}

/* Section Titles */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--azul-oscuro);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--rojo-camaron), var(--naranja));
  border-radius: 2px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--azul-oscuro) 0%, #091f36 100%);
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--naranja) !important;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.25rem;
}

.social-link:hover {
  background: var(--rojo-camaron);
  color: white;
  transform: translateY(-3px);
}

/* Location Page */
.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card {
  background: var(--blanco);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--azul-oscuro);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--gris);
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--azul-oceano);
  box-shadow: 0 0 0 3px rgba(27, 107, 147, 0.15);
}

.contact-form label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--azul-oscuro);
  margin-bottom: 0.5rem;
  display: block;
}

/* Page Header for Inner Pages */
.page-header {
  background: linear-gradient(135deg, var(--azul-oceano) 0%, var(--azul-oscuro) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,50 C360,100 720,0 1080,50 C1260,75 1380,60 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 59, 102, 0.98);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--naranja);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--azul-oscuro);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none !important;
  }

  .hero-logo {
    width: 200px !important;
    height: 200px !important;
  }
}

/* Badge */
.badge-spicy {
  background: linear-gradient(135deg, var(--rojo-camaron), var(--naranja));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ========================================
   Cart System
   ======================================== */

/* Floating Cart Button */
.cart-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rojo-camaron), var(--rojo-oscuro));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
}

.cart-float-btn.has-items {
  animation: cartPulse 2s infinite;
}

@keyframes cartPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(231, 76, 60, 0.6); }
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--naranja);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Cart Side Panel */
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: white;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eee;
}

.cart-panel-header h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--azul-oscuro);
  margin: 0;
}

.cart-panel-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--gris);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.cart-panel-close:hover {
  background: var(--gris-claro);
}

/* Cart Items */
.cart-panel-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gris);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cart-empty p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cart-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.cart-item-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--azul-oscuro);
}

.cart-item-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--rojo-camaron);
  font-size: 0.95rem;
  white-space: nowrap;
  margin-left: 0.5rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove:hover {
  color: var(--rojo-camaron);
}

/* Quantity Controls */
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: var(--gris-claro);
  color: var(--azul-oscuro);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #e0e0e0;
}

.qty-value {
  width: 36px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--azul-oscuro);
}

/* Cart Footer */
.cart-panel-footer {
  padding: 1.25rem 1.5rem;
  border-top: 2px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--azul-oscuro);
}

.cart-checkout-btn {
  width: 100%;
  text-align: center;
  padding: 0.9rem !important;
  font-size: 1rem !important;
  margin-bottom: 0.5rem;
}

.cart-clear-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--gris);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  transition: color 0.2s;
}

.cart-clear-btn:hover {
  color: var(--rojo-camaron);
}

/* Add to Cart Buttons */
.btn-add-cart {
  background: linear-gradient(135deg, var(--rojo-camaron), var(--rojo-oscuro));
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.35);
}

.btn-add-cart-sm {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rojo-camaron), var(--rojo-oscuro));
  color: white;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.btn-add-cart-sm:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.35);
}

/* Cart Toast */
.cart-toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--azul-oscuro);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 95;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Payment result pages */
.payment-result {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.payment-result-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.payment-result h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--azul-oscuro);
  margin-bottom: 1rem;
}

.payment-result p {
  color: var(--gris);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ========================================
   Checkout Page (Checkout API)
   ======================================== */

/* Checkout form fields */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.checkout-field label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--azul-oscuro);
}

.checkout-input,
.checkout-select {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--azul-oscuro);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  background: white;
  -webkit-appearance: none;
}

.checkout-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.checkout-input:focus,
.checkout-select:focus {
  border-color: var(--azul-oceano);
  box-shadow: 0 0 0 3px rgba(27, 107, 147, 0.15);
}

.checkout-input::placeholder {
  color: #9ca3af;
}

/* MP iframe containers — match input styling */
.mp-iframe-container {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.3rem 0.5rem;
  height: 50px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.mp-iframe-container:focus-within {
  border-color: var(--azul-oceano);
  box-shadow: 0 0 0 3px rgba(27, 107, 147, 0.15);
}

.mp-iframe-container iframe {
  width: 100%;
  height: 100%;
}

/* Two-column row for exp/cvv and doc type/number */
.checkout-row {
  display: flex;
  gap: 1rem;
}

.checkout-row .checkout-field {
  flex: 1;
}

/* Submit button */
.checkout-submit-btn {
  width: 100%;
  text-align: center;
  padding: 1rem !important;
  font-size: 1.1rem !important;
  margin-top: 0.5rem;
}

.checkout-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Error message */
.checkout-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #dc2626;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Order summary items */
.checkout-summary-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

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

/* Processing overlay */
.processing-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.processing-content {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: var(--azul-oscuro);
}

.processing-content p {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Spinner */
.checkout-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top-color: var(--rojo-camaron);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive checkout */
@media (max-width: 768px) {
  .checkout-row {
    flex-direction: column;
    gap: 1.25rem;
  }

  .checkout-row .checkout-field {
    flex: 1 !important;
  }
}
