:root {
    --fanshop-primary-color: #a3191b;
    --fanshop-primary-color-dark: #841213;
    --fanshop-secondary-color: #000;
    --fanshop-third-color: rgb(202, 169, 104);
  }
div#fanshopProducts{
    display:flex;
    flex-direction:row;
    overflow-x:auto;
    gap: 35px;
    margin: 10px 0;
    height:420px;
    align-items:center;
    scroll-padding-left:16px;
    width:100%;
}
div.fanshopProducts>h5{
    display:block;
    text-align:center;
    font-size: 30px;
    width:100%;
}

div#fanshopProducts>div.fanshopProduct{
    width:210px;
    flex: 0 0 210px;
    scroll-snap-align: start;
    box-shadow: 0 0px 10px rgba(80,80,80,0.15);
    height:auto;
    background-color:#fff;
}
div#fanshopProducts>div.fanshopProduct:first-child{
    margin-left:auto;
}
div#fanshopProducts>div.fanshopProduct:last-child{
    margin-right:auto;
}
div#fanshopProducts>div.fanshopProduct>div.fanshopContent{
    padding:0 18px;
}
div#fanshopProducts>div.fanshopProduct>div.fanshopContent>h3{
    color:var(--fanshop-primary-color);
    height:80px;
    overflow:hidden;
    font-style:normal;
    color:#151515;
    font-weight: 400;
}
div#fanshopProducts>div.fanshopProduct>div.fanshopContent>p{
    height:30px;
    font-weight: bold;
    font-size:22px;
    text-align:center;
}
div#fanshopProducts>div.fanshopProduct>div.fanshopContent>a{
    display:block;
    margin:0 auto 20px;
    text-decoration:none;
    text-align:center;
    padding: 7px 15px;
    width:65%;
    background-color:#d8d9da;
    color: #111;
    border-radius:3px;
    font-weight: 500;
    font-style:normal;
    font-family:stolzl, sans-serif;
    transition:background 0.2s;
    font-size:0.75rem;
    text-transform:uppercase;
    letter-spacing: 1.1px;
}
div#fanshopProducts>div.fanshopProduct>div.fanshopContent>a:hover{
    background-color:#d5d5d5;
    text-decoration:underline;
}
div#fanshopProducts>div.fanshopProduct>img{
    display:block;
    margin:10px auto;
    transition: transform 0.2s;
    max-height: 180px;
    object-fit: contain;
}
div#fanshopProducts>div.fanshopProduct>img:hover{
    transform: scale(1.15);
}
h2.fanshop-header-left{
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-size: 32px;
    font-size: 2rem;
    line-height: .94em;
    color:var(--fanshop-third-color);
    padding: 5px;
    margin: 0;
    display:inline-block;
}
a.fanshop-header-right{
    font-family: bebas-neue-by-fontfabric, sans-serif;
    font-size: 22px !important;
    font-size: 2rem;
    line-height: .94em;
    padding: 15px;
    margin: 0;
    display:inline-block;
    text-decoration:none;
    color:var(--fanshop-primary-color);
    font-weight: bold;
}
div.fanshop-header{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
}
@media screen and (max-width: 500px) {
    a.fanshop-header-right{
        font-size: 16px !important;
    }
    h2.fanshop-header-left{
        font-size: 22px;
    }
}