.lcs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lcs-product-card {
    border: 1px solid #e5e5e5;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    transition: 0.2s ease;
}

.lcs-product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.lcs-title {
    font-size: 17px;
    line-height: 1.4;
    margin-top: 12px;
    margin-bottom: 8px;
    font-weight: 600;
}

.lcs-price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.lcs-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.lcs-size-pill input {
    display: none;
}

.lcs-size-pill span {
    display: inline-block;
    min-width: 42px;
    text-align: center;
    padding: 10px 14px;
    border: 1px solid #222;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: 0.2s ease;
}

.lcs-size-pill input:checked + span {
    background: #000;
    color: #fff;
}

.lcs-buy-btn {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.lcs-buy-btn:disabled {
    background: #ccc;
    color: #777;
    cursor: not-allowed;
}

/*
=========================
TABLET
=========================
*/

@media (max-width: 1024px) {

    .lcs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

/*
=========================
MOBILE
=========================
*/

@media (max-width: 768px) {

    .lcs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .lcs-product-card {
        padding: 10px;
        border-radius: 10px;
    }

    .lcs-title {
        font-size: 15px;
        margin-top: 10px;
        margin-bottom: 8px;
        line-height: 1.35;
    }

    .lcs-price {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .lcs-sizes {
        gap: 6px;
        margin-bottom: 14px;
    }

    .lcs-size-pill span {
        min-width: 36px;
        padding: 8px 10px;
        font-size: 14px;
        border-radius: 7px;
    }

    .lcs-buy-btn {
        padding: 13px;
        font-size: 15px;
        border-radius: 8px;
    }
}