.header {
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    font-size: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}
.header img:last-child{
    margin-left: auto;
}
.logo { 
    white-space: nowrap;
    text-align: center;
}
.logo-red {
    color: #EE2A28;
}
.logo-black {
    color: #000000;
}
body {
    background-color: #D9D9D9;
}
.subheader {
    font-family: 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
}
.search-bar {
    display: flex;
    align-items: center;
    margin: 16px;
    background-color: #7C7878;
    border-radius: 30px;
    padding: 14px 18px;
}
.search-bar img {
    width: 20px;
    margin-right: 10px;
}
.search-bar input {
    border: none;
    background: none;
    font-size: 16px;
    outline: none;
    color: white;
    width: 100%;
}
::placeholder {
    color: white;
}
.cta img{
    width: 100%;
    padding-top: 16px;
}
.deals{
    padding: 16px 16px 16px 0;
}
.deals-title {
    font-family: 'Avenir Next', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    margin: 0 16px;
}
.nba2k-card, .steam-card {
    background: white;
    border-radius: 0 15px 15px 0;
    padding: 16px;
    gap: 16px;
    margin: 16px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
}
.pc-card{
    background: white;
    border-radius: 15px 0 0 15px;
    padding: 16px;
    gap: 16px;
    margin-left: 16px;
    margin-right: -16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-end;
}
.product-card img {
    width: 128px;
    height: auto;
}
.product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.pc-card .product-info {
    align-items: flex-end;
    text-align: right;
}
.nba2k-description, .steam-description {
    font-family: 'Avenir Next', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    color: black;
    line-height: 1.5;
}
.nba2k-discount, .steam-discount {
    font-family: 'Avenir Next', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-top: 4px;
}
.pc-description{
    font-family: 'Avenir Next', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    color: black;
    line-height: 1.5;
}
.pc-discount{
    font-family: 'Avenir Next', 'Helvetica', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-top: 4px;
    align-self: end;
}
.buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
button {
    border: none;
    border-radius: 20px;
    padding: 10px 14px;
    font-size: 14px;
    flex: 1;
    min-width: 110px;
}
.buy {
    background-color: black;
    color: white;
}
.cart {
    background-color: #707070;
    color: white;
}
