.upl-grid-f4158747 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.upl-product-item-f4158747 {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.upl-product-item-f4158747:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.upl-product-image-f4158747 {
    display: block;
    width: 100%;
    overflow: hidden;
}

.upl-product-image-f4158747 img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.upl-product-content-f4158747 {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.upl-product-title-f4158747 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.upl-product-title-f4158747 a {
    color: inherit;
    text-decoration: none;
}

.upl-product-price-f4158747 {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
    font-weight: 700;
}

.upl-product-price-f4158747 del {
    opacity: 0.5;
    margin-right: 5px;
    font-weight: normal;
}

.upl-add-to-cart-f4158747 {
    margin-top: auto;
    display: inline-block;
    text-align: center;
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: opacity 0.2s ease;
    border: none;
    cursor: pointer;
}

.upl-add-to-cart-f4158747:hover {
    opacity: 0.9;
    color: #fff;
}
