/* ======================= -------- Header -------- ========================== */
.header-slider {
	width: 100%;
	height: 580px;
}

.slick-initialized .header-slide.slick-slide {
	height: 550px;
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.header-slide:before {
    width: calc(100% + 2px);
    height: 19px;
    position: absolute;
    top: -1px;
    left: -1px;
    content: '';
    background-image: url(../images/border.svg);
    background-repeat: repeat-x;
    z-index: 3;
}

.header-slide:after {
    width: calc(100% + 2px);
    height: 19px;
    position: absolute;
    bottom: -1px;
    left: -1px;
    content: '';
    background-image: url(../images/border.svg);
    background-repeat: repeat-x;
    z-index: 3;
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.container-headerslide {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
	text-align: center;
	display: grid;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.container-headerslide * {
	position: relative;
	justify-self: start;
}


.container-headerslide .slide-img {
	order: 1;
	max-width: 620px;
	width: 100%;
	display: block;
	margin: 0 auto;
}

.container-headerslide .slide-img * {
	width: 100%;
	height: auto;
	display: block;
}

.container-headerslide hgroup {
	order: 2;
	margin: 20px 0 40px;
	width: 100%;
	max-width: 750px;
}

.container-headerslide hgroup h2 {
	font-size: 38px;
	line-height: 38px;
	color: #f9f9f9;
	text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.9); 
}

.container-headerslide .btn {
	order: 3;
	margin: 0 auto;
}

.header-slide .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.header-slide-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.header-slide-image * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}


/* HEADER DOTS */
.header-slider .slick-dots {
	position: absolute;
	bottom: 0px;
	margin: 0 auto;
	left: 0;
	right: 0;
	max-width: 1400px;
	width: calc(100% - 120px);
	height: 16px;
	display: flex!important;
}

.header-slider .slick-dots li {
    list-style: none;
    cursor: pointer;
    margin-right: 10px;
}

.header-slider .slick-dots li button {
    font-size: 0;
    padding: 0;
    cursor: pointer;
    border: 0;
    outline: none;
    background: transparent;
}

.header-slider .slick-dots li button:before {
 	font-family: 'sct';
    font-size: 16px;
	content: "\f005";
	color: #C1C1C1;
}

.header-slider .slick-dots li.slick-active button:before {
	content: "\f006";
	color: #05618F;
}


    /* Slider - FADE/ZOOM Image */
    @-webkit-keyframes SCT-fadeZoom {
        0% { opacity: 0; -webkit-transform: scale(0.2); transform: scale(0.2); }
        100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
    }

    @keyframes SCT-fadeZoom {
        0% { opacity: 0; -webkit-transform: scale(0.2); transform: scale(0.2); }
        100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
    }

    .slick-active .container-headerslide .slide-img {
        animation-name: SCT-fadeZoom;
        -webkit-animation-name: SCT-fadeZoom;
        animation-duration: 4s;
        opacity: 1;
    }



    /* Slider - FADE Up */
    @-webkit-keyframes SCT-fadeUp {
        0% { opacity: 0; -webkit-transform: translateY(50px); transform: translateY(50px); }
        50% { opacity: 0; -webkit-transform: translateY(50px); transform: translateY(50px); }
        100% { opacity: 1; -webkit-transform: none; transform: none; }
    }

    @keyframes SCT-fadeUp {
        0% { opacity: 0; -webkit-transform: translateY(50px); transform: translateY(50px); }
        50% { opacity: 0; -webkit-transform: translateY(50px); transform: translateY(50px); }
        100% { opacity: 1; -webkit-transform: none; transform: none; }
    }

    .slick-active .container-headerslide hgroup {
        animation-name: SCT-fadeUp;
        -webkit-animation-name: SCT-fadeUp;
        animation-duration: 3s;
        opacity: 1;
    }


    /* Slider - FADE Right Btn */
    @-webkit-keyframes SCT-fadeIn {
        0% {  opacity: 0; }
        60% { opacity: 0; }
        100% { opacity: 1; }
    }

    @keyframes SCT-fadeIn {
        0% {  opacity: 0; }
        60% { opacity: 0; }
        100% { opacity: 1; }
    }

    .slick-active .container-headerslide .btn {
        animation-name: SCT-fadeIn;
        -webkit-animation-name: SCT-fadeIn;
        animation-duration: 4s;
        opacity: 1;
    }


/* ======================= -------- Welcome -------- ========================== */
.section-welcome {
	text-align: center;
}

/* =============== ---- Reviews ---- ================== */
.customer-reviews {
	margin: 80px 0;
	text-align: left;
}

.customer-review {
	width: 100%;
	padding: 5px 0;
}

.customerreview-container {
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 65px 1fr;
	gap: 10px 10px;
}

.customerreview-container:before {
    grid-column: 1 / span 1; grid-row: 1 / span 1 ;
	font-family: 'Sct';
	content: '\f007';
	font-weight: 100;
	color: #05618f;
	font-size: 40px;
}

.customerreview-container header {
    grid-column: 2 / span 1; grid-row: 2 / span 1 ;
}

.customerreview-container header h3 {
    font-size: 28px;
}

.customerreview-container p {
    grid-column: 2 / span 1; grid-row: 1 / span 1 ;
    font-size: 20px;
    margin: 15px 0 0 0;
}


/* REVIEW DOTS */
.customer-reviews .slick-dots {
	position: relative;
	margin: 30px auto 0;
	max-width: 1400px;
	width: 100%;
	height: 5px;
	display: flex!important;
	justify-content: center;
}

.customer-reviews .slick-dots li {
    list-style: none;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
}

.customer-reviews .slick-dots li button {
    font-size: 0;
    cursor: pointer;
    border: 0;
    outline: none;
    width: 20px;
	height: 5px;
    margin: 0;
    padding: 0;
}

.customer-reviews .slick-dots li button { background-color: #c1c1c1; }
.customer-reviews .slick-dots li.slick-active button { background-color: #05618f; }

@-webkit-keyframes SCT-Bounce {
    0% { opacity: 0; -webkit-transform: scale(1); transform: scale(1) }
    70% { opacity: 1; -webkit-transform: scale(1.1); transform: scale(1.1) }
    100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1) }
}

@keyframes SCT-Bounce {
    0% { opacity: 0; -webkit-transform: scale(1); transform: scale(1) }
    70% { opacity: 1; -webkit-transform: scale(1.1); transform: scale(1.1) }
    100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1) }
}

.customer-reviews .slick-active .customerreview-container:before {
    animation-name: SCT-Bounce;
    -webkit-animation-name: SCT-Bounce;
    animation-duration: 1s;
    opacity: 1
}



/* =============== ---- Product Categories ---- ================== */
.product-categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
    width: 100%;
}

.product-category {
	width: calc(100% / 4 - 60px);
	margin-bottom: 30px;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px 20px;
	display: grid;
    grid-template-columns: 1fr 110px;
    gap: 15px 20px;
    justify-content: center;
}

.product-category:hover {
    box-shadow: 5px 8px #d6d5d4;
}

.product-category h3 {
    grid-column: 1 / span 1; grid-row: 1 / span 2 ;
    color: #f9f9f9;
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-family: Jonze, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 18px;
	line-height: 20px;
	padding: 10px;
}

.product-category svg {
    grid-column: 1 / span 1; grid-row: 1 / span 2 ;
    width: 100%;
    align-self: center;
}

.product-category span {
    grid-column: 2 / span 1; grid-row: 1 / span 1 ;
    text-align: center;
    align-self: end;
}

.product-category span i {
    font-size: 16px;
    color: #ffc107;
    margin-right: 5px;
    display: inline-block;
}

.product-category span i:last-child {
    margin-right: 0;
}

.product-category .btn-small {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
    align-self: start;
}

.cat-pork svg { fill: #d2347f; }
.cat-peanuts svg { fill: #d28d3f; }
.cat-cashews svg { fill: #e4a824; }
.cat-fudge svg { fill: #715c2c; }
.cat-css svg { fill: #e86025; }
.cat-keto svg { fill: #547472; }
.cat-subscription svg { fill: #2471a3; }
.cat-gifts svg { fill: #a82324; }


/* ======================= -------- Popular Choices -------- ========================== */
.section-popular-choices {
	text-align: center;
}

/*
.products {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 0 60px;
	margin-bottom: 80px; 
}

.product {
	position: relative;
	background-color: #fff;
	border-radius: 5px;
	padding: 40px;
	width: 100%;
}

.product:hover {
    box-shadow: 5px 8px #d6d5d4;
}


.product article {
	display: grid;
	gap: 50px 0;
}

.product-details {
	order: 2;
	text-align: right;
}

.product-details hgroup * {
	display: block;
}

.product-title {
	font-size: 22px;
	line-height: 22px;
    font-weight: 600;
}

.product-attributes {
	font-size: 20px;
    font-weight: 300;
}

.product-price {
    font-family: kepler-std, serif;
	font-size: 22px;
    font-weight: 600;
    color: #05618f;
    margin-top: 10px;
}

.product-image {
	order: 1;
	display: block;
	text-decoration: none;
}

.product-image picture, .product-image picture * {
	width: 100%;
	display: block;
	height: auto;
}

.product-basket {
	order: 3;
	text-decoration: none;
	position: absolute;
	font-size: 28px;
	padding-top: 3px;
	bottom: -25px;
	left: -25px;
	width: 50px;
	height: 50px;
	background-color: #05618f;
	color: #f9f9f9;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
}

.product-basket:hover {
    transform: scale(1.08);
}


.product-new {
	position: absolute;
	top: 15px;
	right: 15px;
	overflow: hidden;
	width: 60px;
	height: 60px;
}

.product-new:before {
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
    color: #da2525;
	font-family: 'Sct';
	content: '\f009';
	font-weight: 100;
	font-size: 60px;
}

.product-new:after {
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
    color: #f9f9f9;
    content: 'New';
    font-family: kepler-std, serif;
	font-size: 20px;
	text-transform: uppercase;
    font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: center;
}
*/

/* ======================= -------- 7.0  Media Queries -------- ========================== */
@media (max-width: 1500px) {
    /* Categories */
	.product-category { width: calc(100% / 4 - 40px); }
}

@media (max-width: 1400px) {
    /* Categories */
	.product-category {
		width: calc(100% / 4 - 20px);
		background-color: #fff;
		border-radius: 10px;
		padding: 15px 15px;
		display: grid;
		grid-template-columns: 1fr 105px;
		gap: 15px 10px;
	}
}

@media (max-width: 1250px) {
    /* Categories */
	.product-category {
		width: calc(100% / 3 - 30px);
		padding: 20px 20px;
		grid-template-columns: 1fr 110px;
		gap: 15px 20px;
	}
}

@media (max-width: 1050px) {
    /* Header Banner */
	.header-slider { height: 480px; }
	.slick-initialized .header-slide.slick-slide { height: 450px; }
	.container-headerslide hgroup { margin: 20px 0 30px; }
	.container-headerslide hgroup h2 { font-size: 34px; line-height: 34px; }
	.container-headerslide .slide-img { max-width: 420px; }

    /* Categories */
	.product-category {
		width: calc(100% / 3 - 20px);
		padding: 15px 15px;



		grid-template-columns: 1fr 105px;
		gap: 15px 15px;
	}
}

@media (max-width: 990px) {
    /* Categories */
	.product-categories {
		max-width: 700px;
		margin: 0 auto 80px auto;
	}

	.product-category {
		width: calc(100% / 2 - 20px);
		padding: 20px 20px;
		grid-template-columns: 1fr 110px;
		gap: 15px 20px;
	}
}

@media (max-width: 850px) {
    /* Header Banner */
	.container-headerslide hgroup h2 { font-size: 28px; line-height: 28px; }

    /* Reviews */
	.customer-reviews { margin: 40px 0; }
	.customerreview-container { grid-template-columns: 55px 1fr; }
	.customerreview-container:before { font-size: 34px; }
	.customerreview-container header h3 { font-size: 22px; }
	.customerreview-container p { font-size: 16px;  margin: 15px 0 0 0; }
}

@media (max-width: 750px) {
    /* Categories */
	.product-category {
		width: calc(100% / 3 - 15px);
		padding: 15px 15px;
		grid-template-columns: 1fr;
		gap: 12px 10px;
	}

	.product-category h3 { grid-column: 1 / span 1; grid-row: 1 / span 1 ; }
	.product-category svg { grid-column: 1 / span 1; grid-row: 1 / span 1 ; }
	.product-category span { grid-column: 1 / span 1; grid-row: 2 / span 1 ; }
	.product-category .btn-small { grid-column: 1 / span 1; grid-row: 3 / span 1; }
}

@media (max-width: 650px) {
    .slick-active .container-headerslide .slide-img, .slick-active .container-headerslide hgroup, .slick-active .container-headerslide .btn {
        animation-name: unset;
        -webkit-animation-name: unset;
        animation-duration: unset;
    }
}

@media (max-width: 550px) {
    /* Header Banner */
	.header-slider { height: 350px; }
	.slick-initialized .header-slide.slick-slide { height: 350px; }
	.container-headerslide hgroup { margin: 15px 0 20px; }
	.container-headerslide .slide-img { max-width: 380px; }

    /* Categories */
    .product-categories {
    	max-width: 400px;
    }

	.product-category {
		width: calc(100% / 2 - 20px);
	}
}

@media (max-width: 450px) {
	.section-welcome .header-underline h2:before { display: none; }

    /* Reviews */
	.customer-reviews { margin: 30px 0; }
	.customerreview-container { grid-template-columns: 45px 1fr; }
	.customerreview-container:before { font-size: 28px; }
	.customerreview-container header h3 { font-size: 20px; }

    /* Categories */
	.product-category {
		width: calc(100% / 2 - 10px);
	}
}

@media (max-width: 390px) {
    /* Categories */
	.product-categories { margin-bottom: 20px; }
	.product-category {
		width: 100%;
		margin-bottom: 20px;
		padding: 20px 15px;
		grid-template-columns: 1fr 120px;
		gap: 15px 15px;
	}

	.product-category h3 { grid-column: 1 / span 1; grid-row: 1 / span 2 ; padding: 5px; }
	.product-category svg { grid-column: 1 / span 1; grid-row: 1 / span 2 ; }
	.product-category span { grid-column: 2 / span 1; grid-row: 1 / span 1 ; }
	.product-category span i { font-size: 15px; margin-right: 3px; }
	.product-category .btn-small { grid-column: 2 / span 1; grid-row: 2 / span 1; }
}

@media (max-width: 340px) {
    /* Categories */
	.product-category { grid-template-columns: 1fr 90px; }
}