.shop-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-item {
    display: flex;
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    text-align: center;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
    transition: transform 0.2s ease-in-out;
    flex-direction: column;
    align-items: stretch;
}

/* .shop-item:hover {
    transform: translateY(-5px);
} */

/* Image container for zoom effect */
.shop-item-image {
    overflow: hidden; /* Prevents image from overflowing */
    border-bottom: 1px solid #ddd;
}

.shop-item-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background-color: #F3F3F3;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

/* Zoom-in effect on hover */
.shop-item:hover .shop-item-image img {
    transform: scale(1.1);
}

.shop-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.shop-item-details {
    /* border-top: solid 3px var(--global-color-0); */
    display: flex;
    flex-direction: column;
    height: 50%; /* Ensure it takes full height */
}

/* Push category (and price) to the bottom */
.shop-item-category {
    background-color: var(--global-color-0);
    color: var(--global-color-6);
    font-weight: bold;
    font-size: 0.75em;
    padding: 5px 0;
    margin-bottom: 0px;
}
.shop-item-category > a {
    color: var(--global-color-6);
    text-decoration: none;
}

.shop-item-title {
    color:var(--global-color-0);
}

.shop-item-price {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
    margin-top: auto;
}


.shop-item-title {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

