/**
 * Cart Header Styles
 *
 * Custom styles for the cart in the header
 */

/* Cart Contents */
.cart-contents {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
}

.cart-contents-count {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #720213;
}

.cart-contents-total {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    color: #484848;
    margin-top: 2px;
}

/* Hide the view cart button */
.woocommerce-message .wc-forward.hidden {
    display: none !important;
}

/* Hide WooCommerce sidebar */
.woocommerce-active .sidebar {
    display: none;
}

/* Make the shop content full width */
.woocommerce-active .content-area {
    width: 100%;
    float: none;
}
