.lined-headline {
	display: flex;
    flex: 1;
    width: 85%;
    margin: 10px auto;
    line-height: 1em;
    font-weight: bold;
	font-size:1.1em;
}

.lined-headline:before, .lined-headline:after {
	content: '';
	flex-grow: 1;
	margin: 0 0.5em;
	/* background: linear-gradient(to right, black, white); */
	background-size: 100% 3px;
	background-position: 0% 50%;
	background-repeat: repeat-x;
}

.lined-headline:before {
	background-image: linear-gradient(to right, transparent, black);
}
  
.lined-headline:after {
	background-image: linear-gradient(to left, transparent, black);
}

.homepage-product-bar .lined-headline {
	font-size:1.5em;
	text-transform: uppercase;
    font-weight: bold;
}

#homepage-content {
	padding: 0.75em;
}

#homepage-top-banner {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    column-gap: 1em;
}

#homepage-headline-image img {
	max-width:100%;
	display:block;
}

#homepage-headline-text a {
	padding:0.5em;
	background-color:black;
	color:white;
	text-align:center;
	text-decoration:none;
	display:block;
}

#homepage-headline-image a:hover {
	color:#aa66cd;
} 

.image-floating-shadow {
	content: '';
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 90%;
	filter: blur(10px);
	height: 10px;
	width: 90%;
	margin: 30px auto;
}

.home-most-popular-item {
	padding-top: 1.75em;
}

.home-most-popular-item-headline {
	text-align:center;
	font-weight:bold;
	font-size:1.1em;
	padding-top: 0.5em;
    background-color: white;
}

.home-most-popular-item-image-link {
	padding: 0.75em 1.25em;
    display: block;
    background-color: white;
}

.home-most-popular-item img {
	max-width:100%;
	background-color:white;
	display: block;
}

.home-most-popular-item-name {
	text-align: center;
    /* background-color: rgb(0, 0, 0,0.15); */
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(200,200,200,1) 50%, rgba(255,255,255,0.5) 100%);
	padding: 0.35em;
}

.home-most-popular-item-name a {
	color: black;
	display:block;
	text-decoration:none;
}

.home-most-popular-item .home-most-popular-item-name a:hover {
	color: white;
}

#homepage-whats-new-bar {
	margin-bottom:2em;
}

#homepage-whats-new-4-up {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

#homepage-whats-new-4-up img {
	max-height:180px;
	max-width:100%;
}

.homepage-product-bar {
	margin:1em 0;
}

.homepage-product-bar-header {
	font-size:1.5em;
	color:black;
	text-transform: uppercase;
	font-weight: bold;
}

.homepage-product-bar-products-container {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
	column-gap:1em;
	margin-bottom:3.5em;
}

.homepage-product-bar-product {
	background-color:white;
	padding:1em;
	border-bottom: 3px solid lightgray;
}

.homepage-product-bar-product-image img {
	max-width:100%;
}

.homepage-tag {
	padding:0 0 0.75em 0;
	background-color:white;
	margin:0 auto 1em auto;
	max-width:1280px;
}

.homepage-tag-container {
	display: grid;
    column-gap: 15px;
    justify-items: start;
    grid-template-columns: repeat(6, 1fr);
    justify-content: center;
    align-content: center;
    margin: 1em auto 1em auto;
    width: 95%;
}

.homepage-tag-header {
	padding:0.5em;
	color:white;
	text-transform:capitalize;
	font-size: 1.5em;
}

.homepage-tag-header a {
	text-decoration:none;
	color:white;
	display:block;
}

.homepage-tag-header a:hover {
	color:white;
}

.homepage-tag-product-name a {
	color:white;
}

.homepage-tag-product-name a:hover {
	color:#ff783e;
}

.homepage-tag:nth-child(odd) .homepage-tag-header {
	background-color:#ff8700;
	text-align:left;
}

.homepage-tag:nth-child(even) .homepage-tag-header {
	background-color:#aa66cd;
	text-align:left;
}

.homepage-tag-product-image img {
	max-width: 100%;
}

.homepage-tag-footer {
	text-align: center;
	margin-top:0.5em;
}

.homepage-tag-footer .button-small {
	display: inline-block;
    text-align: center;
    margin: 0 auto;
    background-color: #ff8700;
    padding: 0.5em 1.5em;
    border-radius: 3px;
	color:white;
	text-decoration:none;
}

.homepage-tag:nth-child(even) .homepage-tag-footer .button-small {
	background-color:#aa66cd;
}

.homepage-tag-footer .button-small:hover {
	filter: brightness(60%);
}