.saa-product-box {
    display: flex;
    align-items: flex-start;
    background: #e7e7e7;
    padding: 15px;
    margin: 5px 0 5px;
    overflow: hidden;
    gap: 15px;
    box-sizing: border-box;
    transition: background 0.2s ease;
}
.saa-product-box:hover {
    background: #cfcfcf;
}
a.saa-product-link {
    display: flex;
    flex: 1;
    text-decoration: none;
    color: inherit;
}
a.saa-product-link .saa-product-image {
    flex: 0 0 150px;
    width: 150px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    margin: 0 20px 0 0;
}
a.saa-product-link .saa-product-image img {
    width: 150px!important;
    height: auto!important;
    object-fit: contain;
    display: block;
}
a.saa-product-link .saa-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
a.saa-product-link .saa-product-title {
    font-size: 22px;
	line-height:26px;
    margin: 0 0 5px;
    font-weight: bold;
    color: inherit !important;
}
a.saa-product-link .saa-product-price {
    font-size: 20px;
    font-weight: bold;
    color: #B12704;
    margin: 0 0 8px;
}
a.saa-product-link .saa-product-desc {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 10px;
    padding: 0!important;
    color: #333;
    font-weight: normal;
}
a.saa-product-link .saa-buy-btn {
    display: inline-block;
    background: #ffa41c;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    align-self: flex-start;
    margin-top: 5px;
    border: 2px solid #e47911;
    cursor: pointer;
    transition: all 0.2s ease;
}
.saa-product-box:hover .saa-buy-btn {
    background: #f90;
    border-color: #7e4105;
    color: #7e4105;
}
.saa-disclaimer {
    font-size: 12px;
    font-style: italic;
    color: #999;
    margin: 2px 0 0 0!important;
}
a.saa-product-link .saa-buy-btn {
    display: inline-block !important;
    width: auto !important;
    line-height: normal !important;
    vertical-align: middle;
}

/* ============================================= */
/* NEW RESPONSIVE RULES (800px AND BELOW)       */
/* ============================================= */

@media only screen and (max-width: 800px) {

    .saa-product-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    a.saa-product-link {
        flex-direction: column;
        align-items: center;
    }

    a.saa-product-link .saa-product-image {
        margin: 0 0 15px 0;
        flex: none;
        width: 100%;
        justify-content: center;
    }

    a.saa-product-link .saa-product-image img {
        width: 200px !important; /* centred nicely */
        margin: 0 auto;
    }

    a.saa-product-link .saa-product-details {
        width: 100%;
        align-items: center;
    }

    a.saa-product-link .saa-product-title,
    a.saa-product-link .saa-product-price,
    a.saa-product-link .saa-product-desc {
        text-align: center;
    }

    a.saa-product-link .saa-buy-btn {
        align-self: center !important;
        margin: 10px auto !important;
    }
}
