.lc-ofertas-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin: 40px auto 0 auto;
    max-width: 1250px;
    justify-content: center;
    padding: 0 16px;
    box-sizing: border-box;
    align-items: stretch;
}

.lc-product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px #0001;
    padding: 24px 16px 18px 16px;
    width: 100%;
    max-width: 270px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .2s;
    text-align: center;
    height: 90%;
}

.lc-product-card:hover {
    box-shadow: 0 8px 24px #0002;
    transform: translateY(-2px) scale(1.025);
}

.lc-img-container {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.lc-img-container img:first-child {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 1px 3px #0001;
    margin: 0 auto;
    display: block;
}

.icone-loja-card {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    padding: 4px;
    z-index: 2;
    border: 1px solid #e5e5e5;
    display: block !important;
    opacity: 1 !important;
    transition: none !important;
}

.lc-card-title {
    font-size: 1.05em;
    font-weight: bold;
    margin: 12px 0 8px 0;
    text-align: center;
    min-height: 40px;
    color: #212121;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lc-card-price {
    font-size: 1.16em;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

.card-content {
    flex: 1 1 auto;
    width: 100%;
    margin-bottom: 20px;
}

.lc-button {
    background: #198754;
    color: #fff;
    border-radius: 8px;
    padding: 12px 22px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: background .2s;
    box-shadow: 0 2px 8px rgba(25,135,84,0.1);
}

.lc-button:hover {
    background: #145a38;
}

.lc-loadmore-btn {
    margin: 32px auto 24px auto;
    display: block;
    padding: 12px 32px;
    background: #198754;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.08em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(25,135,84,0.10);
    cursor: pointer;
    transition: background .2s;
    text-align: center;
}

.lc-loadmore-btn:hover {
    background: #145a38;
}

/* RESPONSIVO TABLET: 2 COLUNAS */
@media (max-width: 1200px) {
    .lc-ofertas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* RESPONSIVO CELULAR: 1 COLUNA CENTRALIZADA, CARDS E BOTÃO AJUSTADOS */
@media (max-width: 700px) {
    .lc-ofertas-grid {
        grid-template-columns: 1fr;
        justify-items: center !important;
        justify-content: initial !important;
        padding: 0 4vw;
    }
    .lc-product-card {
        max-width: 360px;
        min-width: 0;
        width: 100%;
        margin: 0 auto;
        padding: 20px 10px 14px 10px;
        box-sizing: border-box;
    }
    .lc-img-container {
        height: 100px;
    }
    .lc-img-container img:first-child {
        width: 100px;
        height: 100px;
    }
    .icone-loja-card {
        width: 28px;
        height: 28px;
        top: 4px;
        right: 4px;
        padding: 2px;
    }
    .lc-card-title {
        font-size: 1.08em;
        min-height: 32px;
    }
    .lc-card-price {
        font-size: 1.50em;
    }
    .lc-button {
        width: calc(60% - 32px);
        margin: 50px auto;
        display: block;
        padding: 12px 0;
    }
    .lc-loadmore-btn {
        width: calc(100% - 32px);
        min-width: 140px;
        max-width: 360px;
        margin: 150px auto 18px auto;
        padding: 12px 0;
        font-size: 1em;
    }
}
