@media (max-width: 800px) {
    .cart-icon-link {
        position: relative;
        display: inline-block;
        margin-left: 18px;
        font-size: 1.25em !important;
    }

    .cart-count {
        position: absolute;
        top: -4px;  
        right: 70px;  
        background: #f8d042;
        color: #00234d;
        border-radius: 50%;
        font-size: 0.85em;
        font-weight: bold;
        padding: 3px 6px;
        min-width: 18px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .cart-icon-link {
        position: relative;
        display: inline-block;
        margin-left: 18px;
        font-size: 1.4em !important;
    }

    .cart-count {
        position: absolute;
        top: -4px; 
        right: 209px !important;
        background: #f8d042;
        color: #00234d;
        border-radius: 50%;
        font-size: 0.75em;  
        font-weight: bold;
        padding: 2px 4px !important;
        min-width: 12px !important;
        text-align: center;
    }
}
.cart-modal-content {
  background: #fff;
  color: #222;
  margin: 6vh auto;
  padding: 1.7rem 1.2rem 1.4rem 1.2rem;
  border-radius: 13px;
  max-width: 410px;
  min-width: 270px;
  position: relative;
  box-shadow: 0 10px 40px #00234d22;
  animation: fadeInCart 0.23s;
  max-height: 80vh;  
  overflow-y: auto;  
}

#cart-items {
  margin-bottom: 0.7em;
  max-height: 60vh; 
  overflow-y: auto; 
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0.6em 0 0.5em 0;
  border-radius: 8px;
  padding: 0.5em 0.2em;
  background: #f8f9fa;
  box-shadow: 0 1px 8px #00234d09;
}

.cart-product-controls button {
  background: #f8d042;
  color: #00234d;
  border: none;
  border-radius: 4px;
  padding: 3px 10px;
  margin: 0 2px;
  cursor: pointer;
  font-size: 1em;
}

.cart-summary {
  text-align: right;
  margin-top: 1em;
  font-size: 1.12em;
  color: #00234d;
}

.cart-icon-link {
  position: relative;
  margin-left: 18px;
  color: #00234d;
  font-size: 1.25em;
  text-decoration: none;
  transition: color 0.2s;
}
.cart-icon-link:hover {
  color: #f8d042;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #f8d042;
  color: #00234d;
  border-radius: 50%;
  font-size: 0.85em;
  font-weight: bold;
  padding: 2px 7px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 2px 8px #00234d22;
}

/* Modal */
.cart-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.20);
}
@keyframes fadeInCart {
  from {transform: translateY(40px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.close-cart {
  position: absolute;
  right: 15px;
  top: 8px;
  font-size: 1.5em;
  cursor: pointer;
  color: #00234d;
  transition: color 0.15s;
}
.close-cart:hover {
  color: #cc2020;
}
.cart-item-row img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  background: #f2f2f3;
}
.cart-item-info {
  flex: 1;
  font-size: 1em;
}
.cart-item-info strong {
  font-size: 1.02em;
  color: #00234d;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cart-item-info small {
  display: block;
  color: #666;
}
.descuento-aplicado {
  font-size: 0.85em;
  color: #32a852;
  margin-left: 7px;
  background: #eafbe8;
  border-radius: 8px;
  padding: 1px 7px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
}
@keyframes fadeDiscount {
  0% {opacity: 0;}
  10% {opacity: 1;}
  90% {opacity: 1;}
  100% {opacity: 0;}
}


.cart-product-controls button:hover {
  background: #00234d;
  color: #fff;
}
.cart-product-controls button:last-child {
  background: none;
  color: #cc2020;
  font-size: 1.12em;
  padding: 0 6px;
}

.cart-send-btn {
  margin-top: 0.6em;
  width: 100%;
  border-radius: 8px;
  border: none;
  padding: 10px 0;
  font-size: 1em;
  cursor: pointer;
  font-weight: 700;
}
#send-whatsapp.cart-send-btn {
  background: #4caf50;
  color: #fff;
}
#view-cart-btn.cart-send-btn {
  background: #f8d042;
  color: #00234d;
  margin-top: 8px;
}
#view-cart-btn.cart-send-btn:hover {
  background: #ffe471;
  color: #00306b;
}

@media (max-width: 600px) {
  .cart-modal-content {max-width: 95vw;}
}



