.Zcard-box {
    margin: 100px;
    width: 200px;
    height: 250px;
    position: relative;
    perspective: 1000px;

}

.Zcard-box:hover .Zcard {
    transform: rotateY(180deg);
}

.Zcard {
    transform-style: preserve-3d;
    transition: all 0.5s linear;

}

.Zface {
    position: absolute;
    backface-visibility: hidden;
    /*background-color: #CBE2E1;*//*#E3F0EF;*/
    background: linear-gradient(
        145deg,
        #E8F7F6 0%,       /* Brillo máximo (luz incidente) */
        #CBE2E1 40%,      /* Color base */
        #A8C6C5 100%      /* Sombra */
    );
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.5); /* Sombra exterior + brillo interno */
    border-radius: 8px;  /* Bordes redondeados para suavizar el efecto */
}

.Zback.Zface {
    transform: rotateY(180deg);
    text-align: justify;
    color: #509594;
}

.Zface01 {
    position: absolute;
    backface-visibility: hidden;
    /*background-color: #509594;*//*#E3F0EF;*/
    background: linear-gradient(
        135deg,
        #8FCECD 0%,      /* Reflejo claro (azulado) */
        #68B0AF 50%,     /* Color base metalizado */
        #3A7877 100%     /* Sombra oscura */
    );
    border-radius: 8px; /* Opcional: bordes redondeados para mejor efecto */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra exterior para profundidad */
}

.Zback.Zface01 {
    transform: rotateY(180deg);
    text-align: justify;
    color: #E3F0EF;
}


.image-Zcontainer {
    border-radius: 50%;
    /*width: 150px;*/
    /*height: 150px;*/
    width: 60%;
    height: 60%;
    display: flex;
    justify-content: center;
}
.product-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-image {
    width: 200px;
    height: 200px;
    margin-right: 0px;
}

.product-info {
    /*align-content: flex-start;*/
    width: 80%;
}
.mainTittle{
    width: 100%;
}
.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
}
.space-between {
     background-color: #565e64;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     margin-left: 5%;
     margin-right: 5%;
     margin-top: 10px;
 }
.space-between p{
    color: #ffffff;
    text-decoration-color: #ffffff;
}
.modal-header h4{
    font-size: 13px;
}
.modal-header p{
    font-size: 12px;
}
.modal-body p{
    font-size: 10px;
}