.store-product__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: var(--white--white100);
    border-radius: 8px;
    height: 386px;
}

.store-product__card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 8px;
}

.store-product__card-image {
    position: relative;
    z-index: 2;
    pointer-events: none;
    width: 100%;
    height: 170px;
    border-radius: 8px;
    overflow: hidden;
}

.store-product__card-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-product__card-content {
    position: relative;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 10px 10px 10px;
    align-self: stretch;
}

.store-product__card-category {
    position: relative;
    z-index: 3;
    pointer-events: auto;
    border-radius: 8px;
    background: var(--grey--grey90);
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    transition: background-color 0.2s ease, border 0.2s ease;
}

.store-product__card-category:hover {
    background: var(--primary-color--light);
    color: var(--primary-color--dark-dark-default);
}

.store-product__card-info {
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.store-product__card-price {
    pointer-events: none;
    font-size: 18px;
    color: inherit;
    font-weight: 700;
    line-height: 120%;
}

.store-product__card-title {
    pointer-events: none;
    color: inherit;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.store-product__card-button {
    position: absolute;
    z-index: 3;
    width: calc(100% - 20px);
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1199px) {
    .store-product__card {
        height: 360px;
    }

    .store-product__card-image {
        height: 150px;
    }

    .store-product__card-price {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .store-product__card {
        gap: 12px;
        height: 330px;
    }

    .store-product__card-image {
        height: 130px;
    }

    .store-product__card-content {
        gap: 12px;
        padding: 0 8px 8px 8px;
    }

    .store-product__card-category {
        font-size: 11px;
        padding: 6px 8px;
    }

    .store-product__card-price {
        font-size: 15px;
    }

    .store-product__card-title {
        font-size: 13px;
    }

    .store-product__card-button {
        width: calc(100% - 16px);
        bottom: 8px;
    }
}