/* Reset default styles for all elements */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root variables for color scheme to provide easy customization */
:root {
    --dark-grey: #1b1b32;
    --light-grey: #f5f6f7;
    --black: #000;
    --white: #fff;
    --grey: #3b3b4f;
    --golden-yellow: #fecc4c;
    --yellow: #ffcc4c;
    --gold: #feac32;
    --orange: #ffac33;
    --dark-orange: #f89808;
}

body {
    background-color: var(--dark-grey);
}

.title {
    color: var(--light-grey);
    text-align: center;
    margin: 25px 0;
}

#dessert-card-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.dessert-card {
    background-color: var(--light-grey);
    padding: 15px;
    text-align: center;
    border-radius: 15px;
    margin: 20px 10px;
}

.dessert-price {
    font-size: 1.2rem;
}

.btn {
    display: block;
    cursor: pointer;
    width: 100px;
    color: var(--dark-grey);
    background-color: var(--gold);
    background-image: linear-gradient(var(--golden-yellow), var(--orange));
    border-color: var(--gold);
    border-width: 3px;
}

.btn:hover {
    background-image: linear-gradient(var(--yellow), var(--dark-orange));
}

#cart-btn {
    position: absolute;
    top: 0;
    right: 0;
}

.add-to-cart-btn {
    margin: 30px auto 10px;
}

#cart-container {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: var(--light-grey);
    width: 200px;
    height: 400px;
    border: 8px double var(--black);
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    overflow-y: scroll;
}

.product {
    margin: 25px 0;
}

.product-count {
    display: inline-block;
    margin-right: 10px;
}

.product-category {
    margin: 10px 0;
}

@media (min-width: 768px) {
    #dessert-card-container {
        flex-direction: row;
    }

    .dessert-card {
        flex: 1 0 21%;
    }

    #cart-container {
        width: 300px;
    }
}