.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}


.product-category-heading {
    margin: 40px 0 15px;
    font-size: 26px;
    line-height: 38px;
    font-weight: 500;
    border-bottom: 1px solid #000;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-item {
    display: flex;
    align-items: stretch;
    gap: 15px;
    padding: 10px;
    background: #F2F6FA;
    border-radius: 2px;
    border: 1px solid #DAE5F0;
    position: relative;
    transition: background .25s, border-color .25s;
}

.product-item:nth-child(odd) {
    background: #f5f9fc;
}

.product-item:hover {
    background: #eef5fa;
}

.product-thumb {
    max-width: 240px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #86A0B5 0%, #6E889F 70%);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 12px;
    color: #262626;
}

.product-name {
    font-size: 26px;
    font-weight: 500;
    color: #000;
    margin-top: 10px;
    margin-bottom: 4px;
}

.product-desc {
    font-size: 19px;
    color: #5F5F5F;
    max-width: 520px;
}

.product-short {
    white-space: normal;
}

.product-full {
    margin-top: 4px;
    font-size: 11px;
    line-height: 17px;
}

.product-read-more {
    margin-top: 4px;
    display: inline-block;
    font-size: 10px;
    line-height: 13px;
    border: 1px solid #c0cbd4;
    border-radius: 3px;
    padding: 2px 6px;
    background: #fff;
    cursor: pointer;
    color: #333;
    transition: background .2s, border-color .2s;
}

.product-read-more:hover {
    background: #e8eef3;
    border-color: #9dafbb;
}

.product-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    min-width: 190px;
    padding: 0 10px;
}

.product-price {
    font-size: 13px;
    font-weight: 600;
}

.product-btn-buy {
    background: #000;
    color: #fff;
    min-width: 300px;
    border-radius: 26px;
    padding: 10px 18px;
    font-size: 21px;
    letter-spacing: .3px;
}

.product-btn-buy:hover {
    background: #222;
}

.product-card {
    background: #fff;
    border: 2px solid #20B2AA;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:nth-child(n+4) {
    border-color: #9370DB;
}

.product-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-description {
    font-size: 19px;
    color: #5F5F5F;
    line-height: 1.4;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 3em;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.product-description.expanded {
    max-height: 300px;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.product-category {
    font-size: 26px;
    border-bottom: 1px solid #000;
    text-transform: uppercase;
}

.product-expand-btn {
    background: none;
    margin-top: 8px;
    border: 1.7px solid var(--txt-expand-btn);
    border-radius: var(--radius);
    padding: 5px 15px;
    color: var(--txt-expand-btn);
    cursor: pointer;
    min-width: 135px;
    max-width: 135px;
    line-height: 16px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.5s ease-in-out;
}

.product-avaliability {
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 53px;
    text-transform: uppercase;
}

.open-info:hover {
    color: #000;
    cursor: pointer;
}

.product-select>div>div.button.product.minus.pbtn,
.product-select>div>div.button.product.plus.pbtn {
    width: 45px;
    height: 45px;
}

input.qfield {
    width: 55px;
    font-size: 22px;
}

.product-btn-col {
    margin-bottom: 20px;
}

.pdesc {
    min-height: unset;
    overflow: hidden;
    font-size: 18px;
    padding-right: 0;
}

.products>.pone>div>.product.pbtn {
    margin: 20px 0 15px;
}

.pone {
    flex-direction: column;
    align-items: center;
    border: 1px solid #c9d3da !important;
    margin-bottom: 20px !important;
}

.pone>.product-image {
    margin-top: 20px;
}

.product-title {
    text-align: center;
}

.pbox {
    flex-direction: column;
    align-items: center;
}

.product-price {
    font-size: 26px;
    font-weight: 500;
    color: #000;
    text-align: center;
    flex-shrink: 0;
}

.product-btn {
    flex-shrink: 0;
}

.product-btn-buy:hover {
    text-decoration: none;
}

.product-removed {
    color: #F44336;
}

.show-notification {
    transform: translateX(-50%) scale(1) !important;
    opacity: 1 !important;
}

.hide-notification {
    transform: translateX(-50%) scale(0) !important;
    opacity: 0 !important;
}


.products-empty {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .product-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-card {
        padding: 1rem;
    }

    .product-name {
        font-size: 24px;
        text-align: left;
        margin-bottom: 0;
    }

    .product-btn {
        margin-bottom: 25px;
    }

    .product-meta {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .product-thumb {
        max-width: 100%;
    }

}

@media (max-width: 767px) {
    .product-description {
        font-size: 16px;
        position: unset;
    }

    .product-price-col {
        font-size: 24px;
    }
}