.site-container {
    max-width: 1400px;
    margin: 0 auto;        /* center horizontally */
    padding: 0 20px;       /* breathing space on sides */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, Geneva, sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

a {
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-color: #ccc;
    text-underline-offset: 3px;
}

a:hover {
    color: #000;
    text-decoration-color: #000;
}


header {
    background: #111;
    color: #fff;
}


nav ul {
    list-style: none;
    justify-content: center;
    gap: 40px;
}

nav a {
    color: #ccc;
    font-size: 14px;
}

nav a:hover {
    color: #fff;
}


#genreList ul {
    list-style-type: disc;
    padding-left: 18px;
    margin-top: 4px;
}

.price-cart {

    display: flex;
	vertical-align:top;

    flex-direction: column;   /* stack price above button */
    align-items: flex-end;    /* align right */
}
    .price-cart {
        text-align: left;
        margin-top: 10px;
    }
.add-cart {
    background: #111;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.add-cart:hover {
    background: #444;
}