.boogeek-product-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;
    transform: scale(1);
    transform-origin: top left;
    transition: transform 0.3s ease;
    aspect-ratio: 1 / 1.5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    0 5px 10px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.06);
}

.boogeek-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.10);
}

.boogeek-product-card-link {
    z-index: 3;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.product-price {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    background: #fff;
    border-radius: 15px;
    padding: 5px 10px;
    margin: 15px;
    width: max-content;
    float: left;
    display: flex;
    gap: 5px
}

.price-regular {
    font-weight: 600;
    color: #000;
}

.price-old {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9em;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
}

/*@media (max-width: 1200px) {*/
/*    .boogeek-product-card {*/
/*        max-width: 20%;*/
/*    }*/
/*}*/

/*@media (max-width: 800px) {*/
/*    .boogeek-product-card {*/
/*        max-width: 30%;*/
/*    }*/
/*}*/

/*@media (max-width: 500px) {*/
/*    .boogeek-product-card {*/
/*        max-width: 45%;*/
/*    }*/
/*}*/
