@charset "UTF-8";
/*
|--------------------------------------------------------------------------
| Home Template
|--------------------------------------------------------------------------
*/

/* Hero section
--------------------------------------------- */

.home-hero {
	--wrapper-width: 1240px;
	background-color: var(--color-orange);
	
	@media (min-width: 1010px) {
	height: 500px;
}
	@media (min-width: 1355px) {
	height: 35vw;
}
}

.home-hero .wrapper {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	padding-top: 0;
	padding-bottom: 0;
}

.faq-accordion {
    padding: 0 1rem !important;
}

.faq-intro {
    font-size: 1.2rem !important;
}

@media (min-width: 1024px) {
	.home-hero .wrapper {
		display: flex;
	}	
}

.home-hero__content {
	max-width: 400px;
	padding-top: 90px;
	padding-right: 32px;
	padding-bottom: 48px;
	position: relative;
	
	@media (min-width: 1750px) {
	padding-top: 150px;
}
	
	@media (max-width: 1150px) {
	margin:auto:
}
}

.home-hero__title {
	line-height: 0.86;
}

.home-hero__title .eyebrow {
	color: var(--color-dark-brown);
	display: block;
	font-family: var(--font-family-serif);
	font-size: 44px;
	font-weight: 700;
	max-width: 145px;
}

.home-hero__title .brand {
	display: block;
	font-family: var(--font-family-knockout-47bantamweight);
	font-size: 120px;
	font-weight: 400;
	text-transform: uppercase;
}

.home-hero__title .tagline {
	display: block;
	font-family: var(--font-family-sans-serif-alt);
	font-size: 54px;
	font-weight: 900;
	text-transform: uppercase;
}

.home-hero__product-image {
	position: absolute;
	top: 32px;
	left: 150px;
	
	@media (min-width: 1750px) {
	top: 75px;
}
}

.home-hero__media {
	flex-grow: 1;
	margin-right: calc( ( ( ( 100vw - ( var(--wrapper-width) - ( var(--wrapper-edge-padding)*2 ) ) ) / 2 ) *-1) + -1px);
	position: relative;
	
	@media (min-width: 1010px) {
	height: 500px;
}
	@media (min-width: 1355px) {
	height: 35vw;
}
}

.home-hero__media video {
	object-fit: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	 object-position: top center; 
}

/* Bakes section
--------------------------------------------- */

.home-bakes__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
	.home-bakes__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.home-bakes__media {
	display: flex;
	justify-content: flex-end;
}

.home-bakes__media figure {
	width: 50vw;
	min-width: 50vw;
	
	@media screen and (max-width:1024px) {
    	width: 100%;
	}
}

.home-bakes__media img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.home-bakes__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	font-size: 15px;
	letter-spacing: 0.1em;
	/*max-width: 480px;*/
	padding: 80px 0;
	padding-right: 0;
	text-align: center;
	
	@media screen and (max-width:1024px) {
    	padding: 40px 0px;
	}
}

.home-bakes__title {
	font-family: var(--font-family-serif);
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
}

.home-bakes__title span {
	font-size: 95px;
	display: block;
}

.home-bakes__content p {
	margin-inline: auto;
	max-width: 335px;
}



/* Grills section
--------------------------------------------- */

.home-grills {
	background-color: var(--color-brown);
	color: var(--color-white);
}

.home-grills__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
	.home-grills__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.home-grills__media {
	display: flex;
	justify-content: flex-start;
}

.home-grills__media figure {
	width: 50vw;
	min-width: 50vw;
	
	@media screen and (max-width:1024px) {
    	width: 100%;
	}
}

.home-grills__media img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.home-grills__content {
	    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
    letter-spacing: 0.1em;
    padding: 80px 0;
    padding-left: 0;
    position: relative;
    text-align: center;
    align-items: center;
	
	@media screen and (max-width:1024px) {
    	padding: 80px 0;
	}
}

.home-grills__title {
	color: var(--color-orange);
	font-family: var(--font-family-serif);
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	
	@media screen and (max-width:1024px) {
    	text-align: center;
	}
}

.home-grills__title .highlight {
	display: inline-block;
	font-size: 95px;
	vertical-align: middle;
}

.home-grills__title .tool-spatula {
	position: relative;
}

.home-grills__title .tool-spatula svg {
	position: absolute;
	top: 16px;
	left: 0;
	width: 100%;
}

.home-grills__text {
	margin: 0 auto;
    max-width: 522px;
    padding-right: 183px;
    text-align: center;
	
	@media screen and (max-width:1024px) {
    	width: 100%;
		padding: 0 20px;
	}
}

.home-grills__text .btn {
	--btn-color: var(--color-white);
	margin-top: 20px;
}

/* Products section
--------------------------------------------- */

.home-products {
	background-color: var(--color-beige);
	padding-block: 96px;
	
	@media screen and (max-width:1024px) {
		padding-block: 40px;
	}
}

.home-products__header {
	margin-bottom: 48px;
	text-align: center;
}

.home-products__title {
	font-family: var(--font-family-serif);
	font-size: 44px;
	font-weight: 700;
	line-height: 1;
}

.home-products__content {
	position: relative;
}

.home-products__text {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
}

.home-products__content .btn {
	filter: drop-shadow(7px 7px 14px rgb(102 0 0 / 85%));
	border-radius: 0;
}

.home-products__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	line-height: 0.8;
	margin-top: 16px;
}

@media (min-width: 768px) {
	.home-products__footer {
		flex-direction: row;
		gap: 8px;
		line-height: 1.2;
		margin-top: 0;
	}
}

.home-products__footer .eyebrow {
	font-family: var(--font-family-sans-serif-alt);
	font-size: 28px;
	font-weight: 900;
	line-height: 0.8;
	margin-top: 8px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.home-products__footer .eyebrow {
		font-size: 32px;
		text-align: right;
	}
}

@media (min-width: 768px) {
	.home-products__footer .eyebrow span {
		display: block;
	}
}

.home-products__footer .highlight {
	color: var(--color-dark-brown);
	font-family: var(--font-family-phosphate-solid);
	font-size: 76px;
}

@media (min-width: 768px) {
	.home-products__footer .highlight {
		font-size: 116px;
	}
}

/* Recipes section
--------------------------------------------- */

/*** Tabs Buttons ***/
.home-recipes__tab-list {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	position: relative;
}

@media (min-width: 1024px) {
	.home-recipes__tab-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.tab-pointer {
    position: absolute;
    top: auto;
    left: 50%;
    width: 180px;
    transition: transform 0.4s ease, left 0.4s ease;
    transform: translate(-50%, 0);
    pointer-events: none;
    z-index: 999;
    bottom: -17px;
	
	@media screen and (max-width: 1023px) {
		display: none;
	}
}

.tab-pointer img {
	width: 100%;
	transition: transform 0.5s ease;
	transform-origin: center bottom; /* so it rotates like it's pointing */
}

.home-recipes__tab-btn {
	border: 0;
	font-family: var(--font-family-sans-serif-alt);
	font-size: 34px;
	font-weight: 700;
	line-height: 0.86;
	padding: 48px;
	text-transform: uppercase;
}

.home-recipes__tab-btn .highlight {
	display: block;
	font-size: 68px;
	font-weight: 900;
}

.home-recipes__tab-btn:focus,
.home-recipes__tab-btn:hover {
	cursor: pointer;
}

.home-recipes__tab-btn--sweet {
	background-color: var(--color-orange);
	color: var(--color-brown);
}

.home-recipes__tab-btn--savory {
	background-color: var(--color-brown);
	color: var(--color-orange);
}

/*** Tabs Panels ***/

.home-recipes__tab-panel {
	display: none;
	padding-block: 104px;
	
	@media screen and (max-width:1024px) {
		padding-block: 40px;
	}
}

.home-recipes__tab-panel[data-active="true"] {
	display: block;
}

.home-recipes__tab-panel--sweet {
	--link-color: var(--color-brown);

	background-color: var(--color-orange);
	color: var(--color-brown);
}

.home-recipes__tab-panel--savory {
	--link-color: var(--color-white);

	background-color: var(--color-brown);
	color: var(--color-orange);
}

/*** Recipes Grid ***/

.home-recipes__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 24px;
}

@media (min-width: 1024px) {
	.home-recipes__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.underline-wrap {
	position: relative;
	display: inline-block;
}
.underline-svg {
	position: absolute;
	left: 50%;
	bottom: -12px;
	width: 100%;
	height: 25px;
	transform: translateX(-50%);
}

.underline-svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 120%;
  height: 25px;
  pointer-events: none;
}

.underline-svg path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.5s ease;
}

.home-recipes__grid article:hover .underline-svg path {
  stroke-dashoffset: 0;
}

.home-recipes article img {
	aspect-ratio: 1;
	object-fit: cover;
}

.home-recipes article h3 {
	color: var(--link-color);
	font-family: var(--font-family-sans-serif);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-top: 8px;
	text-align: center;
	position: relative;
}

.home-recipes article h3 a {
	color: var(--link-color);
}

.home-recipes__footer {
	margin-top: 48px;
	text-align: center;
}

/* About section
--------------------------------------------- */

.home-about {
	padding-top: 160px;
	padding-bottom: 108px;
	position: relative;
}

.home-about__bg {
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	max-width: 50%;
	
	@media screen and (max-width:1024px) {
		max-width: 100%;
	}
}

.home-about .card-recipe {
	margin-inline: auto;
}



/*
|--------------------------------------------------------------------------
| Products Template
|--------------------------------------------------------------------------
*/

body.page-template-products {
	background-color: var(--color-beige);
}

/* Hero section
--------------------------------------------- */

.products-hero {
	padding-top: 32px;
}

.products-hero__title {
	color: var(--color-dark-brown);
	font-family: var(--font-family-phosphate-solid);
	font-size: 87px;
	font-weight: 400;
	line-height: 0.86;
	text-align: center;
	padding-bottom: 35px;
	
	@media screen and (max-width:1024px) {
		font-size: 18vw;
	}
}

/* Products Grid section
--------------------------------------------- */


.products-grid {
	margin-top: -24px;
	padding-bottom: 64px;
}

.products-grid .wrapper {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 16px;
}

@media (min-width: 1024px) {
	.products-grid .wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}	
}

.products-grid__card img {
	display: block;
	margin-inline: auto;
	margin-bottom: 16px;
	max-height: 500px;
}

.products-grid__card h3 {
	font-family: var(--font-family-sans-serif-alt);
	font-size: 44px;
	font-weight: 900;
	line-height: 0.86;
	margin-inline: auto;
	max-width: 400px;
	text-align: center;
	text-transform: uppercase;
}



/*
|--------------------------------------------------------------------------
| History Template
|--------------------------------------------------------------------------
*/

body.page-template-history {
	background-color: var(--color-beige);
}

/* Hero section
--------------------------------------------- */

.history-hero {
	--wrapper-width: 1200px;

	padding-block: 24px;
}

.history-hero__columns {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
	.history-hero__columns {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		align-items: center;
		gap: 16px;
	}	
}

.history-hero__title {
	font-family: var(--font-family-knockout-47bantamweight);
	font-size: 218px;
	font-weight: 400;
	line-height: 0.86;
	text-transform: uppercase;
	
	@media screen and (max-width:1024px) {
		    font-size: 34vw;
	}
}

.history-hero__title .highlight {
	background-color: var(--color-brown);
	color: var(--color-orange);
	display: block;
	font-family: var(--font-family-sans-serif-alt);
	font-size: 96px;
	font-weight: 900;
	padding: 6px;
	width: fit-content;
	@media screen and (max-width:1024px) {
		    font-size: 15vw;
	}
}

/* Content section
--------------------------------------------- */

.history-content {
	padding-block: 32px;
}



/*
|--------------------------------------------------------------------------
| Recipes Template
|--------------------------------------------------------------------------
*/



/*
|--------------------------------------------------------------------------
| Locations (Where to Buy) Template
|--------------------------------------------------------------------------
*/

/* Hero section
--------------------------------------------- */

.locations-hero {
	background-color: var(--color-brown);
	padding-block: 32px;
}

.locations-hero .wrapper {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 48px;
}


@media (min-width: 1024px) {
	.locations-hero .wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: center;
	}	
}

.locations-hero__title {
	color: var(--color-white);
	font-weight: 400;
	line-height: 0.86;
}

.locations-hero__title .eyebrow {
	font-family: var(--font-family-sans-serif-alt);
	font-size: 78px;
	font-weight: 900;
	text-transform: uppercase
	
	@media screen and (max-width:1024px) {
		    font-size: 15vw;
	}
}

.locations-hero__title .eyebrow span {
	font-size: 1.1em;
	
	@media screen and (max-width:1024px) {
		    font-size: 20vw;
	}
}

.locations-hero__title .brand {
	color: var(--color-orange);
	font-family: var(--font-family-knockout-47bantamweight);
	font-size: 176px;
	line-height: 0.76;
	text-transform: uppercase;
	
	@media screen and (max-width:1024px) {
		    font-size: 31vw;
	}
}

.locations-hero__title .tagline {
	color: var(--color-orange);
	font-family: var(--font-family-knockout-47bantamweight);
	font-size: 62px;
	text-transform: uppercase;
	
	@media screen and (max-width:1024px) {
		    font-size: 23vw;
	}
}

/*
|--------------------------------------------------------------------------
| Contact Template
|--------------------------------------------------------------------------
*/

/* Hero section
--------------------------------------------- */

.contact-hero {
	--wrapper-width: 1200px;

	padding-top: 48px;
	padding-bottom: 24px;
}

.contact-hero__title {
	font-family: var(--font-family-knockout-47bantamweight);
	font-size: 170px;
	font-weight: 400;
	line-height: 0.86;
	text-align: center;
	text-transform: uppercase;
}

.contact-hero__title .highlight {
	background-color: var(--color-brown);
	color: var(--color-orange);
	display: block;
	font-family: var(--font-family-sans-serif-alt);
	font-size: 114px;
	font-weight: 900;
	margin-inline: auto;
	padding: 6px;
	width: fit-content;
	
		@media screen and (max-width:1024px) {
		    font-size: 20vw;
	}
}

.contact-hero__title .has-vertical-text {
	padding-left: 50px;
	position: relative;
}

.contact-hero__title .vertical-text {
	display: block;
	font-family: var(--font-family-serif);
	font-size: 54px;
	position: absolute;
	top: 0;
	left: 0;
	text-transform: lowercase;
	transform: rotate(-90deg) translate(-100%, 100%);
	transform-origin: bottom left;
	width: fit-content;
	
	@media screen and (max-width:1024px) {
		font-size: 54px;
		position: relative;
		top: 0;
    	left: 0;
		transform: none;
		transform-origin: initial;
		width: auto;
		text-align: center;
		
	}
}

.contact-content {
	margin-bottom: 32px;
}



/*
|--------------------------------------------------------------------------
| Single Product Template
|--------------------------------------------------------------------------
*/

/* Hero section
--------------------------------------------- */

.single-product .product-hero {
	height: 500px;
	position: relative;
	
	@media screen and (max-width:1024px) {
		height: 140px;
	}
}

.single-product .product-hero__bg {
	object-fit: cover;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* Details section
--------------------------------------------- */

.single-product .product-details {
	background-color: var(--color-orange);
	color: var(--color-foreground);
	position: relative;
}

.single-product .product-details--accent-green {
	--color-foreground: var(--color-dark-brown);
	background-color: var(--color-green);
}

.single-product .product-details__bg {
	position: absolute;
	left: auto;
	right: 0;
	bottom: 0;
}

.single-product .product-details--layout-reverse .product-details__bg {
	left: 0;
	right: auto;
	transform: scaleX(-1);
}

.single-product .product-details__columns {
	display: flex;
	flex-direction: column;
	gap: 48px;
	position: relative;
	z-index: 9;
}
.product-details__size-wrap {
	margin: 20px 0;
	padding: 0;

}
.product-details__size {
	font-family: var(--font-family-sans-serif);
    font-weight: 900;
    font-size: 18px;
    list-style: none;
    background: #ffffff;
    display: inline-block;
    padding: 15px 34px;
    line-height: 1;
	margin-right: 15px;
	filter: drop-shadow(7px 7px 5px rgb(125 9 13 / 25%));
}

@media (min-width: 1024px) {
	.single-product .product-details__columns {
		flex-direction: row;
		gap: 0;
		transform: translateY(-400px);
	}

	.single-product .product-details--layout-reverse .product-details__columns {
		flex-direction: row-reverse;
	}
}

@media (min-width: 1024px) {
	.single-product .product-details__column {
		flex: 1 0 50%;
	}
}

/* Information Column
--------------------------------------------- */

@media (min-width: 1024px) {
	.single-product .product-details__column--info {
		padding-left: 55px;
	}
}

.single-product .product-details__title {
	color: var(--color-white);
	font-family: var(--font-family-sans-serif-alt);
	font-size: 94px;
	font-weight: 900;
	filter: drop-shadow(7px 7px 5px rgb(0 0 0 / 75%));
	line-height: 0.86;
	margin-top: 64px;
	margin-bottom: 64px;
	text-transform: uppercase;
	
	@media screen and (max-width:1024px) {
		font-size: 15vw;
	}
}

@media (min-width: 1024px) {
	.single-product .product-details__title {
		margin-left: -55px;
	}
}

.single-product .product-details__nutrition-facts {
	margin-bottom: 48px;
}

.single-product .product-details__nutrition-facts-table-wrapper {
	position: relative;
}
.product-details__nutrition-facts-table-wrapper img {
	filter: drop-shadow(7px 7px 5px rgb(125 9 13 / 25%));
}
.single-product .product-details__nutrition-facts-table-wrapper .drop {
	position: absolute;
	left: -110px;
	bottom: 0;
}

.single-product .product-details__nutrition-facts-text {
	font-size: 16px;
	line-height: 1.375;
	max-width: 340px;
}

.single-product .product-details__ingredients-title {
	font-family: var(--font-family-sans-serif-alt);
	font-size: 44px;
	font-weight: 900;
	line-height: 0.86;
	text-transform: uppercase;
}

.single-product .product-details__ingredients-text {
	margin-bottom: 64px;
}

.single-product .product-details__ingredients-badges {
	display: flex;
	align-items: center;
	gap: 32px;
}

/* Summary Column
--------------------------------------------- */

.single-product .product-details__image {
	margin-bottom: 24px;
}

.single-product .product-details__description {
	margin-bottom: 80px;
}

.single-product .product-details__description-title {
	font-family: var(--font-family-sans-serif-alt);
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.single-product .product-details__description-short {
	font-family: var(--font-family-knockout-47bantamweight);
	font-size: 62px;
	line-height: 0.86;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.single-product .product-details__description-text {
	font-size: 16px;
	line-height: 1.375;
	max-width: 67%;
	
	@media screen and (max-width:1024px) {
		max-width: 100%;
	}
}

.single-product .product-details__notice {
	font-family: var(--font-family-knockout-47bantamweight);
	font-size: 94px;
	line-height: 0.86;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.single-product .product-details__notice .highlight {
	display: block;
	font-family: var(--font-family-sans-serif-alt);
	font-size: 98px;
	font-weight: 900;
	line-height: 0.86;
	text-transform: uppercase;
}

.single-product .product-details__molasses-drops {
	max-width: 69%;
	position: relative;
}

.single-product .product-details__molasses-drops img {
	position: absolute;
	right: 0;
}

/* Cross-Sell
--------------------------------------------- */

.single-product .product-cross-sell {
	--color-background: var(--color-green);
	--color-foreground: var(--color-dark-brown);
	--ribbon-fill: var(--color-orange);
	--ribbon-tail-fill: #e5a711;
	--ribbon-stroke: var(--color-brown);
	--ribbon-text-color: var(--color-brown);
	--btn-bg-color: var(--color-orange);
	--btn-border-color: var(--color-orange);
	--btn-color: var(--color-brown);

	background-color: var(--color-background);
	color: var(--color-foreground);
}

.single-product .product-cross-sell--accent-green {
	--color-background: var(--color-orange);
	--color-foreground: var(--color-brown);
	--ribbon-fill: var(--color-brown);
	--ribbon-tail-fill: var(--color-brown);
	--ribbon-stroke: var(--color-orange);
	--ribbon-text-color: var(--color-orange);
	--btn-bg-color: var(--color-brown);
	--btn-border-color: var(--color-brown);
	--btn-color: var(--color-orange);
}

.single-product .product-cross-sell__card {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

@media (min-width: 1024px) {
	.single-product .product-cross-sell__card {
		flex-direction: row;
		justify-content: center;
		gap: 0;
		        align-items: center;
	}

	.single-product .product-cross-sell--layout-reverse .product-cross-sell__card {
		flex-direction: row-reverse;
	}
}

.single-product .product-cross-sell__card-content {
	flex: 1;
	padding-block: 80px;
	text-align: center;
	max-width: 430px;
}

.single-product .product-cross-sell__card-ribbon {
	margin-bottom: 16px;
	position: relative;
}

.single-product .product-cross-sell__card-ribbon svg {
	filter: drop-shadow(7px 10px 4px rgb(125 9 13 / 33%));
	max-width: 370px;
}

.single-product .product-cross-sell__card-ribbon span {
	color: var(--ribbon-text-color);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
	position: absolute;
	top: 45px;
	left: 50%;
	transform: translateX(-50%);
}

.single-product .product-cross-sell__card-title {
	font-family: var(--font-family-serif);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
}

.single-product .product-cross-sell__card-text {
	font-size: 15px;
	margin-inline: auto;
	margin-bottom: 16px;
	max-width: 350px;
}

.single-product .product-cross-sell__card-image {
	flex: 1;
	margin-top: -180px;
	position: relative;
	z-index: 9;
	max-width: 430px;
}

.single-product .product-cross-sell__card-image img {
	max-width: 380px;
}

/* Recipes CTA
--------------------------------------------- */

.single-product .product-recipes-cta {
	display: flex;
}

.single-product .product-recipes-cta__column {
	flex: 1;
}

.single-product .product-recipes-cta__column--image {
	position: relative;
}

.single-product .product-recipes-cta__column--image img {
	object-fit: cover;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.single-product .product-recipes-cta__column--content {
	--color-foreground: var(--color-white);
	background-color: var(--color-brown);
	color: var(--color-white);
	max-width: 455px;
	padding: 80px 64px;
	
	@media screen and (max-width:1024px) {
		padding: 40px
	}
}

.single-product .product-recipes-cta__title {
	font-family: var(--font-family-serif);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
}

.single-product .product-recipes-cta__text {
	font-size: 15px;
	margin-bottom: 48px;
}

.single-product .product-recipes-cta__action {
	text-align: center;
}


/*
|--------------------------------------------------------------------------
| Recipes Template
|--------------------------------------------------------------------------
*/

/* Hero section
--------------------------------------------- */

.recipes-hero {
	padding-top: 300px;
	padding-bottom: 150px;
	position: relative;
}

.recipes-hero .wrapper {
	display: flex;
	align-items: center;
	height: 100%;
}

.recipes-hero__bg {
	object-fit: cover;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.recipes-hero__title {
	color: var(--color-white);
	font-family: var(--font-family-sans-serif-alt);
	font-size: 82px;
	font-weight: 900;
	line-height: 0.86;
	position: relative;
	text-transform: uppercase;
	z-index: 9;
	
	@media screen and (max-width:767px) {
		font-size: 20vw;
	}
}

