.card-home {
    border-radius: 12px;
    padding: 15px 25px;
}

.card-home-blue {
    background-color: #084f79;
    color: #FFF;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.card-home-azzurro {
    background-color: #EDF6FF;
    color: #000;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0' y1='20' x2='20' y2='0' stroke='rgba(0,0,0,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.card-book {
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    background-color: #379ec2;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='rotate(45 100 100)'%3E%3Cpath d='M0 50 Q50 0 100 50 T200 50' stroke='rgba(255,255,255,0.1)' fill='transparent' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-book:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.img-book {
    max-width: 150px;
    height: auto;         
    border-radius: 3px;
    display: block;
    margin: 0;       
}

.card-book-content {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-book-content h3 {
    color: #FFF
}

.card-book-content p {
    font-size: 16px;
}

.card-book-content a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.book-price {
    font-size: 22px!important;
    font-weight: 700;
}