:root {
    --lh-pink: #c60751;
    --lh-black: #111;
    --lh-white: #fff;
    --lh-content-width: 1200px;
    --lh-site-padding: 40px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--lh-black);
    background: var(--lh-white);
}

/* Remove default Storefront sidebar */

body.page .content-area {
    width: 100%;
    float: none;
    margin-right: 0;
}

body.page .widget-area {
    display: none;
}

/* Buttons */

.button,
button,
input[type="submit"],
.added_to_cart {
    background: var(--lh-pink);
    color: var(--lh-white);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
.added_to_cart:hover {
    background: var(--lh-black);
    color: var(--lh-white);
}