/* MEN'S PAGE BUTTONS */

.product button {
    background: linear-gradient(to bottom, #f8df82, #d4af37);
    color: #111;
    border: 1px solid #f4c76b;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,.35);
    transition: all .25s ease;
}

.product button:hover {
    background: linear-gradient(to bottom, #fff0a8, #e8c54d);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212,175,55,.45);
}
/* ===== Men's Product Buttons ===== */

body.men .product button {

    border-radius: 30px;

    padding: 12px 22px;

    font-weight: 600;

    transition: .3s ease;

}