.woo-loop-grid-4203 {
    display: grid;
    gap: 20px;
}

.woo-loop-grid-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.woo-loop-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.woo-product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.woo-product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.woo-product-title {
    font-size: 1.1em;
    margin: 0 0 10px;
}

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

.woo-product-rating {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.woo-product-price {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.woo-product-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.woo-product-actions .button {
    text-align: center;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.woo-view-product {
    background-color: #f1f1f1;
    color: #333;
}

.woo-view-product:hover {
    background-color: #e2e2e2;
}

.add_to_cart_button {
    background-color: #000;
    color: #fff;
}

.add_to_cart_button:hover {
    background-color: #333;
}