body {
    font-family: arial;
    margin: 0px;
    margin-top: 50px;
    background-image: url(../images/sfondo.jpg);
    background-repeat: repeat;
}

#shop-title {
    text-align: center;
    padding: 20px;
    background-color: #4CAF50;
    color: white;
}

.shop-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.product {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product h3 {
    font-size: 18px;
    margin: 10px 0;
}

.product p {
    font-size: 14px;
    color: #555;
}

.product strong {
    font-size: 16px;
    color: #000;
}

.add-to-cart {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.add-to-cart:hover {
    background-color: #45a049;
}

#cart {
    position: relative;
}

#cart-count {
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -10px;
}

#custom-donation{
    border: 1px solid rgb(147, 147, 147);
    border-radius: 5px;
    padding: 6px 10px;
    margin-bottom: 7px;
}

#donation-progress {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#donation-progress h3 {
    font-size: 20px;
    color: #2d6a4f;
    margin-bottom: 10px;
}

#donation-progress p {
    font-size: 16px;
    color: #333;
    margin: 5px 0;
}

#progress-bar {
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

#progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(135deg, #4CAF50, #2d6a4f);
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
}
