
.zeno-atc-bottom {
  display: none;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 999999;
  padding: 20px 25px;
  border-top: 1px solid #1E40AF;
  box-shadow: 0 0 6px 1px #1E40AF;
}
.zeno-atc-bottom.show {
  display: block !important;
}
.zeno-atc-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  position: relative;
}
.zeno-qty {
  display: flex;
  align-items: center;
}
.qty-btn {
  background: #1E40AF;
  color: white;
  padding: 0 10px;
  font-size: 20px;
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-input {
  width: 60px;
  text-align: center;
  font-size: 18px;
  margin: 0 10px;
  height: 40px;
}
.zeno-add-btn {
  background: #1E40AF;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  position: relative;
}
.zeno-loader {
  margin-left: 10px;
  animation: spin 1s linear infinite;
}
.zeno-confirm-message {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: #1E40AF;
  color: white;
  padding: 15px 25px;
  font-size: 16px;
  border-radius: 8px;
  z-index: 999999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: none;
  max-width: 90%;
  text-align: center;
}
.zeno-ver-carrito {
  color: #fff;
  font-weight: bold;
  margin-left: 10px;
  text-decoration: underline;
}
.zeno-close-msg {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  color: white;
}
.zeno-close-bar {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 24px;
  color: #1E40AF;
  cursor: pointer;
  font-weight: bold;
  z-index: 1000000;
}
.zeno-confirm-message:hover {
  animation-play-state: paused;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*codigo extra*/

h2.zeno-product-title {
    font-size: 21px;
}

@media only screen and (max-width: 600px) {
  h2.zeno-product-title {
    text-align:center;
    padding-top: 15px;
  }

 .zeno-close-bar {
  top: -20px; 
 }
}

h3.zeno-product-price {
    font-size: 21px;
    font-weight: 600;
}

/* Input */
.zeno-atc-bottom .zeno-qty input[type=number]{
	width:80px;
	
}
.zeno-product-title {
  font-size: 21px;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-input {
  -moz-appearance: textfield;
}

.zeno-subtotal {
  font-weight: bold;
  font-size: 18px;
  margin-left: 20px;
  color: #1E40AF;
}
