/* Frontend styles for Product Three Column block */
.laforma-product-three-column {
    margin: 40px 0;
}

.laforma-product-three-column__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 -10px;
}

.laforma-product-three-column__item {
    padding: 0 10px;
    text-align: center;
}

.laforma-product-three-column__image-wrapper {
    position: relative;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.laforma-product-three-column__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.laforma-product-three-column__title {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 10px;
    font-weight: 400;
}

.laforma-product-three-column__title a {
    color: inherit;
    text-decoration: none;
}

.laforma-product-three-column__title a:hover {
    color: #C69160;
}

.laforma-product-three-column__price {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #000;
}

.laforma-product-three-column__price .woocommerce-Price-amount {
    font-weight: 600;
}

.laforma-product-three-column__price del {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
    margin-right: 10px;
}

.laforma-product-three-column__price ins {
    text-decoration: none;
    background: transparent;
}

.laforma-product-three-column__button {
    display: inline-block;
    padding: 12px 24px;
    background: #f8f8f8;
    color: #000;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.laforma-product-three-column__button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .laforma-product-three-column__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .laforma-product-three-column__item {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .laforma-product-three-column__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



