* {
    margin: 0;
    box-sizing: border-box;
}

/* Logo size */
.logo {
    width: 4%;
    height: 4%;
}

/* Card styles */
.card {
    height: 100%; /* Makes all cards the same height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    margin: 10px 0; /* Top and bottom spacing */
}

/* Card body styles */
.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

/* Image style for consistency */
.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
}

/* Apply zoom effect on hover */
.card-img-top:hover {
    transform: scale(1.5); /* Zoom effect on hover */
    cursor: zoom-in; /* Change cursor to indicate zoom */
}

/* Cart image styles */
.cart_img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
}

/* Apply zoom effect on hover for cart images */
.cart_img:hover {
    transform: scale(1.5); /* Zoom effect on hover */
    cursor: zoom-in; /* Change cursor to indicate zoom */
}
