@charset "utf-8";

body {
	background-color: #f7f9f9;
}

/* helpers */

.hover-fade img {
	backface-visibility: hidden;
	opacity: 1;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

.hover-fade:hover img {
	opacity:0.7;
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

.hover-zoom {
	transition: transform .2s; /* Animation */
}

.hover-zoom:hover {
	transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.animate-intro {
	-webkit-animation: rotate-scale-up 0.65s linear both;
	animation: rotate-scale-up 0.65s linear both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-10-27 16:45:56
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-scale-up
 * ----------------------------------------
 */
@-webkit-keyframes rotate-scale-up {
	0% {
		-webkit-transform: scale(1) rotateZ(0);
		transform: scale(1) rotateZ(0);
	}
	50% {
		-webkit-transform: scale(2) rotateZ(180deg);
		transform: scale(2) rotateZ(180deg);
	}
	100% {
		-webkit-transform: scale(1) rotateZ(360deg);
		transform: scale(1) rotateZ(360deg);
	}
}
@keyframes rotate-scale-up {
	0% {
		-webkit-transform: scale(1) rotateZ(0);
		transform: scale(1) rotateZ(0);
	}
	50% {
		-webkit-transform: scale(2) rotateZ(180deg);
		transform: scale(2) rotateZ(180deg);
	}
	100% {
		-webkit-transform: scale(1) rotateZ(360deg);
		transform: scale(1) rotateZ(360deg);
	}
}



/* sliders */

/* mh--carousel shell: shared markup, per-page scoped copy of the styling. The
   JS engine (initMhCarousels in public-scripts.js) handles drag, snap, arrow
   scrolling, and overflow detection. Card-sizing rules below are scoped to the
   carousel's direct children so they only affect the product and article
   widgets inside a strip. */
.page-deals .mh--carousel-scroller {
	display: flex;
	align-items: center;
	margin: 0 0 20px 0;
	min-width: 0;
	max-width: 100%;
}

.page-deals .mh--carousel-track {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	gap: 10px;
	padding: 2px 0; /* breathing room so the overflow container never clips card borders */
	width: 100%;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	scroll-padding-left: 2px;
	scroll-behavior: smooth;
	scrollbar-width: none;
	cursor: grab;
	min-width: 0;
}

/* active mouse drag: snap + smooth would fight direct scrollLeft writes, so
   both turn off for the duration; releasing re-snaps to the nearest card */
.page-deals .mh--carousel-track.mh--carousel-dragging {
	scroll-snap-type: none;
	scroll-behavior: auto;
	cursor: grabbing;
	-webkit-user-select: none;
	user-select: none;
}

.page-deals .mh--carousel-track::-webkit-scrollbar {
	display: none;
}

.page-deals .mh--carousel-arrow {
	align-self: stretch;
	background-color: #e2e2e2;
	padding: 2px 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 2px;
	border: none;
}

.page-deals .mh--carousel-arrow svg {
	stroke: #4a4a4a;
	color: #4a4a4a;
}

.page-deals .mh--carousel-arrow-prev {
	margin-right: 2px;
}

.page-deals .mh--carousel-arrow-next {
	margin-left: 2px;
}

.page-deals .mh--carousel-arrow:not(.mh--carousel-arrow-disabled):hover,
.page-deals .mh--carousel-arrow:not(.mh--carousel-arrow-disabled):active {
	background: #EEF3FA;
}

.page-deals .mh--carousel-arrow.mh--carousel-arrow-disabled {
	opacity: 0.3;
}

.page-deals .mh--carousel-arrow.mh--carousel-arrow-hidden {
	display: none;
}

.page-deals .mh--carousel-track:empty {
	display: none;
}

/* Product widgets: fixed card width so cards snap instead of squishing to
   min-content in the nowrap flex row. 270px matches the site's product grid
   column (public.css .products-container repeat(auto-fill, 270px)), which lays
   down a full 270px track regardless of the slot, so the widget fills it exactly. */
.page-deals .mh--carousel-track > .products-container {
	flex: 0 0 270px;
	scroll-snap-align: start;
}

/* Article widgets: bare per-article wrapper holding an a.cofa-single grid card
   (50px thumb + title/desc); wider than a product card to fit the title. */
.page-deals .mh--carousel-track > .mh--carousel-article-item {
	flex: 0 0 300px;
	scroll-snap-align: start;
}

.cofc-slider {
	border: 2px solid #EEF3FA;
	padding:15px;
	background: #fff;
	border-radius: 5px;
}

.cofc-slider .coll img {
	width:auto;
	margin:auto;
}

.cofc-slider--title {
	font-family: 'Work Sans';
	font-size:15px;
	font-weight: bold;
	margin-bottom:12px;
}

@media screen and (min-width: 1000px) {
	.cofc-slider--title {
		margin-left:35px;
	}
}

a.cofc-slider--title {
	color: #333;
	text-decoration:none;
	margin-bottom:20px;
}

a.cofc-slider--title:hover {
	text-decoration: underline;
}

.cofc-slider--title {
	font-family: 'Work Sans';
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 12px;
}

a.cofc-slider--title {
	color: #333;
	text-decoration: none;
}

a.cofc-slider--title:hover {
	text-decoration: underline;
}

a.cofc-slider--title-link {
	padding-left:5px;
	padding-right:5px;
	color: #3498DB;
	text-decoration: underline;
}

a.cofc-slider--title-link:hover {
	color: #287FB8;
}

/* page styles */

.products-container .product-image img, .products-container .collection-image img {
	margin:auto;
}

.landing-banner img {
	width:100%;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.landing-banner img.desktop {
	display:block;
}

.landing-banner img.mobile {
	display:none;
}

@media screen and (max-width: 767px) {
	.landing-banner img.desktop {
		display:none;
	}

	.landing-banner img.mobile {
		display:block;
	}
}

.landing-section {
	margin-bottom:20px;
}

.landing-banner {
	width:100%;
	display:block;
}

.landing-banner img {
	object-fit: cover;
	width:100%;
}

ul.landing-nav {
	list-style:none;
	background: #F7F9F9;
	text-align:center;
	margin-top:0;
	margin-bottom:0;
	border-radius:5px;
	padding:5px;
}

@media (hover: none) {
	/* mobile devices scroll */
	ul.landing-nav {
		list-style: none;
		background: #F7F9F9;
		text-align: center;
		padding:0;
		margin-top: 0;
		margin-bottom: 0;
		border-radius: 5px;
		height: 45px;
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
		position: relative;
		background: fixed linear-gradient(90deg, rgba(0,0,0,0) 95%, rgb(255 255 255) 100%);
	}
}

ul.landing-nav .landing-nav-browse {
	color: #344a5fab;
}

.landing-nav li a {
	display: inline-block;
	padding: 10px 7px;
	font-family: 'Montserrat', serif;
	color: #3498DB;
	text-decoration: underline;
}

.landing-nav li a:hover {
	color: #287FB8;
}

.landing-nav li {
	display:inline-block;
}

.landing-slider {
	background: #0081EE url('https://lh3.googleusercontent.com/BRid1o8dSjYQGiVTXiMtw9vlXHVsWQVSw7jOB-s4l3VFHK0QzVYgsS3F3KgiY7mqP0mR9HCB83Gwhk31klf4qQMnke8=s200') repeat;
	display: grid;
	border-radius: 5px;
}

@media screen and (min-width: 767px) {
	.landing-slider {
		margin-bottom: 20px;
	}
}

@media screen and (min-width: 900px) {
	.landing-slider {
		grid-template-columns: 350px 1fr;
	}
}

.landing-slider .cofc-slider {
	margin: 20px;
	border:none;
}

@media screen and (min-width: 900px) {
	.landing-slider .cofc-slider {
		margin: 20px 0 20px 20px;
		border-bottom-right-radius: 0;
		border-top-right-radius: 0;
	}
}

.landing-slider-title {
	color: #fff;
	display:flex;
	justify-content:center;
	align-items:center;
	font-weight: bold;
	font-family: 'Montserrat', serif;
	padding:20px;
}

.landing-slider-title img {
	width: 80%;
}

.landing-featured {
	display: grid;
	grid-column-gap: 25px;
	grid-row-gap: 20px;
	padding:20px;
}

@media screen and (min-width: 1000px) {
	.landing-featured {
		padding:0;
	}
}

.landing-featured a {
	display:block;
}

.landing-featured img {
	border-radius:5px;
	width:100%;
}

@media screen and (min-width: 900px) {
	.landing-featured-1 {
		grid-template-columns: 1fr 1fr;
	}

	.landing-featured-2 {
		/*grid-template-columns: 1fr 2fr;*/
		grid-template-columns: 1fr 1fr;
	}

	.landing-featured-3 {
		/*grid-template-columns: 2fr 1fr;*/
		grid-template-columns: 1fr 1fr;
	}

	.landing-featured-4 {
		/*grid-template-columns: 2fr 1fr;*/
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.landing-section-title {
	font-family: 'Montserrat', serif;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
}

.landing-explore {
	margin-top:30px;
	margin-bottom:30px;
}

.landing-explore .grid {
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	display: grid;
	padding:0 20px;
}

@media screen and (min-width: 767px) {
	.landing-explore .grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (min-width: 890px) {
	.landing-explore .grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (min-width: 1200px) {
	.landing-explore .grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.landing-explore a {
	display:block;
	text-align: center;
	text-decoration: none;
	background: #fff;
	border-radius: 7px;
	transition: transform .2s; /* Animation */
	border: 2px solid #EEF3FA;
	padding-bottom:15px;
}

.landing-explore a:hover {
	text-decoration: none;
}

.landing-explore a:hover img {
	transform: scale(1.04); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.landing-explore a:hover .explore-title {
	text-decoration: underline;
}

.landing-explore img {
	margin-bottom:12px;
	width:100%;
	border-radius:5px;
}

.landing-explore .explore-title {
	font-weight: bold;
	font-family:'Montserrat';
	font-size:15px;
	margin-bottom:10px;
	color: #065798;
	padding: 0 15px 0;
}

.landing-explore .explore-desc {
	font-size:13px;
	margin-bottom:4px;
	color: #868686;
	padding: 0 15px 0;
}

.cofa-slider {
	background: #fff;
	margin-bottom:40px;
	display:grid;
	grid-template-columns: 32px minmax(0, 1fr) 32px;
	overflow: hidden;
}

.cofa-slider--title {
	font-family: 'Work Sans';
	font-size:15px;
	font-weight: bold;
	padding:20px;
}

.cofa--image {
	padding:10px 0;
}

.cofa--image img {
	margin:auto;
	border-radius:5px;
	width:125px;
}


.cofa-single:hover img {
	border-color: #F7F9F9;
}

.cofa--title {
	padding: 10px 20px 5px 15px;
	position: relative;
	color: #333;
	font-size:13px;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	display: flex;
	align-items: center;
}

.cofa-single,
a.cofa-single {
	display:block;
	display: grid !important;
	grid-template-columns: 50px 1fr;
}

.cofa-single:focus,
a.cofa-single:focus {
	outline:none;
}

/* overrides */

/*.page-deals.feature-pw2022a .products-container .product-single-container {*/
/*	background-color: #fff;*/
/*}*/