ul.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px; 
}

ul.products li.product {
    display: flex;
    margin-bottom: 30px !important;
    padding: 0 15px; 
}

.abs_sklep_product-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 20px;
    position: relative;
}

.abs_sklep_product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: 15px;
}

.abs_sklep_product-wrapper .woocommerce-loop-product__title {
    font-size: 24px !important;
    font-weight: 600;
    margin-bottom: 10px !important;
    min-height: 50px;
    display: flex;
	justify-content: center;
    align-items: center;
}

.abs_sklep_product-wrapper .price {
    margin-bottom: 10px !important;
    min-height: 25px; 
}

.abs_sklep_product-excerpt {
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 60px;
    margin-bottom: 15px;
}

.abs_sklep_product-wrapper .woocommerce-LoopProduct-link img {
    width: 100%;
    height: 250px !important; 
    object-fit: cover;
    border-radius: 20px;
}

.abs_sklep_product-variations {
    margin-top: auto;
    margin-bottom: 15px;
}

.abs_sklep_product-buttons {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.abs_sklep_product-buttons a {
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.abs_sklep_variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .abs_sklep_product-wrapper .woocommerce-LoopProduct-link img {
        height: 200px !important;
    }
    
    .abs_sklep_product-buttons {
        flex-direction: column;
    }
    
    .abs_sklep_product-wrapper .woocommerce-loop-product__title {
        min-height: 40px;
    }
}