.lcake-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lcake-product-grid-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lcake-product-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.12);
}

.lcake-product-grid-thumb {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.lcake-product-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lcake-product-grid-card:hover .lcake-product-grid-image {
    transform: scale(1.06);
}

.lcake-product-grid-content {
    padding: 18px 20px;
    text-align: center;
}

.lcake-product-grid-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
}

.lcake-product-grid-title a {
    color: #111827;
    text-decoration: none;
}

.lcake-product-grid-title a:hover {
    color: #3b82f6;
}

.lcake-product-grid-price {
    font-size: 15px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 12px;
}

.lcake-product-grid-price del {
    color: #9ca3af;
    font-weight: 400;
    margin-right: 6px;
}

.lcake-product-grid-cart a.button {
    display: inline-block;
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.lcake-product-grid-cart a.button:hover {
    background: #3b82f6;
}

@media (max-width: 767px) {
    .lcake-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Remove text decoration for a tags */
.elementor-widget-lcake-kit-product-grid a,
.lcake-product-grid a,
.lcake-kit-product-grid a,
.lc-header-footer-product-grid a {
    text-decoration: none !important;
}
