.add-to-list:disabled {
   background: #ccc;
}

#complete-list {
   display: none;
   font-size: 14px;
   margin-top: 0px;
   background: #0073aa;
   color: white;
   border: none;
   padding: 10px 10px;
   cursor: pointer;
}

.cart-icon-container {
   position: relative;
   display: inline-block;
}
   
.cart-icon {
   cursor: pointer;
}

.cart-counter {
   position: absolute;
   top: -10px;
   right: -10px;
   background: red;
   color: white;
   border-radius: 50%;
   padding: 2px 6px;
   font-size: 12px;
}

.cart-preview {
   display: none;
   position: absolute;
   right: 0;
   top: 100%;
   background: white;
   border: 1px solid #ddd;
   padding: 10px;
   min-width: 200px;
   box-shadow: 0 2px 5px rgba(0,0,0,0.2);
   z-index: 1000;
}

.cart-items {
   list-style: none;
   margin: 0;
   padding: 0;
}

.cart-items li {
   padding: 5px 0;
   border-bottom: 1px solid #eee;
}

.cart-icon-container {
   position: relative;
   display: inline-block;
   margin: 10px;
}

.cart-icon {
   font-size: 24px;
   cursor: pointer;
   padding: 10px;
   background: #f5f5f5;
   border-radius: 50%;
}

.cart-counter {
   position: absolute;
   top: -5px;
   right: -5px;
   background: #e53935;
   color: white;
   border-radius: 50%;
   padding: 2px 6px;
   font-size: 12px;
   min-width: 20px;
   text-align: center;
}

.cart-preview {
   display: none;
   position: absolute;
   right: 0;
   top: 120%;
   background: white;
   border-radius: 8px;
   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   min-width: 500px;
   max-width: 700px;
   z-index: 1000;
   padding: 10px;
   text-align: left;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
    .cart-preview {
        min-width: 320px!important;
        max-width: 320px!important;
    }
}

.cart-items {
   list-style: none;
   margin: 0;
   padding: 0;
   max-height: 300px;
   overflow-y: auto;
}

.cart-items li {
   padding: 10px;
   border-bottom: 1px solid #eee;
   font-size: 14px;
   color: #333;
}

.cart-items li:last-child {
   border-bottom: none;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-title {
    flex: 1;
}

.cart-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
}

.remove-item {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    color: #999;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #ff0000;
}

.empty-cart-message {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

.add-to-list.processing {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Animazione per il pulsante in elaborazione */
@keyframes processing {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.add-to-list.processing {
    animation: processing 1s infinite;
}