/* =====================================================
   GLOBAL CART BUTTON - EL DORADO
===================================================== */

.cart-header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 10px 16px;

  background: #7b0d16;
  color: #ffffff !important;

  border: 2px solid #e0ad27;
  border-radius: 8px;

  text-decoration: none !important;

  font-size: 16px;
  font-weight: 700;

  white-space: nowrap;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cart-header-link:hover {
  background: #95101c;
  color: #ffffff !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}


/* =====================================================
   CART NUMBER
===================================================== */

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 22px;
  height: 22px;
  padding: 0 5px;

  background: #e0ad27;
  color: #111111 !important;

  border-radius: 50%;

  font-size: 13px;
  font-weight: 800;
}


/* =====================================================
   BREAKFAST - TEXT CONTRAST FIX
===================================================== */

/* Cash / Credit */
body.breakfast-theme .chicken-prices {
  color: #000000 !important;
}

body.breakfast-theme .chicken-prices span {
  color: #000000 !important;
  opacity: 1 !important;
}

/* Solo los números de precios permanecen dorados */
body.breakfast-theme .chicken-prices strong {
  color: #d9a928 !important;
  opacity: 1 !important;
}

/* Frase debajo del título BREAKFAST */
body.breakfast-theme .chicken-intro p {
  color: #000000 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #000000 !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {
  .cart-header-link {
    padding: 9px 12px;
    font-size: 14px;
    gap: 5px;
  }

  .cart-count {
    min-width: 20px;
    height: 20px;
    font-size: 12px;
  }

  body.breakfast-theme .chicken-prices,
  body.breakfast-theme .chicken-prices span {
    color: #000000 !important;
  }

  body.breakfast-theme .chicken-intro p {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
  }
}