.custom-products-grid-6ede39f9 {
    display: grid;
    gap: 20px;
    width: 100%;
}
.custom-products-grid-6ede39f9.columns-1 { grid-template-columns: repeat(1, 1fr); }
.custom-products-grid-6ede39f9.columns-2 { grid-template-columns: repeat(2, 1fr); }
.custom-products-grid-6ede39f9.columns-3 { grid-template-columns: repeat(3, 1fr); }
.custom-products-grid-6ede39f9.columns-4 { grid-template-columns: repeat(4, 1fr); }

.custom-product-card-6ede39f9 {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}
.custom-product-card-6ede39f9:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.custom-product-card-6ede39f9 .product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.custom-product-card-6ede39f9 .product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.custom-product-card-6ede39f9 .product-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}
.custom-product-card-6ede39f9 .product-title a {
    color: #333;
    text-decoration: none;
}
.custom-product-card-6ede39f9 .product-title a:hover {
    color: #67AD5C;
}
.custom-product-card-6ede39f9 .product-price {
    font-size: 15px;
    font-weight: bold;
    color: #212121;
    margin-bottom: 10px;
}
.custom-dynamic-fields-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px dashed #e0e0e0;
    padding-top: 10px;
    margin-top: auto;
}
.custom-dynamic-field {
    font-size: 12px;
}
.custom-dynamic-field-label {
    font-weight: 600;
}
