/** Shopify CDN: Minification failed

Line 324:0 Unexpected "}"
Line 335:1 Expected identifier but found "]"
Line 361:2 Expected identifier but found "!"
Line 362:2 Expected identifier but found "!"
Line 364:2 Expected identifier but found "!"
Line 365:2 Expected identifier but found "!"
Line 367:2 Expected identifier but found "!"
Line 368:2 Expected identifier but found "!"
Line 1327:10 Expected identifier but found whitespace
Line 1327:22 Unexpected ";"
... and 2 more hidden warnings

**/
header.header.header--middle-left.header--mobile-center.page-width.header--has-menu.header--has-account {
	/* display: flex !important;
	justify-content: space-between; */
}

*:focus-visible {
	outline: unset;
	outline-offset: 0;
	box-shadow: unset;
}


.tab.plan-tab.active {
	opacity: 1;
}

.step-1-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.step-1-info .custom-button {
	display: inline-flex;
	align-items: center;
	background-color: #5B3A1A;
	/* Brown background */
	color: white;
	font-weight: bold;
	font-family: Arial, sans-serif;
	padding: 8px 12px;
	border-radius: 20px;
	border: none;
	cursor: pointer;
}

.step-1-info .custom-button span:nth-child(1) {
	font-weight: 800;
	font-size: 16px;
	font-family: "BricolageGrotesque_24pt_Condensed";
}

.step-1-info .custom-button span {
	margin-right: 5px;
	font-size: 8px;
}


#meal-kit-selector {
	margin: 0;
	padding: 0;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

#meal-kit-selector h2 {
	margin: 0;
	padding: 0;
	font-family: "BricolageGrotesque_24pt_Condensed" !important;
}

#meal-kit-selector .info-container {
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-width: max-content;
}

#meal-kit-selector .info-container .info-item {
	display: flex;
	align-items: center;
	gap: 4px;
}

#meal-kit-selector .info-container .info-item span.icon {
	display: none;
	align-items: center;
}

#meal-kit-selector .info-container .info-item p {
	font-family: Inter;
	font-weight: 600;
	line-height: 22px;
	letter-spacing: -0.5px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	font-size: clamp(0.75rem, 0.2813rem + 3vw, 1.125rem);
	padding: 0;
	margin: 0;
}

#meal-kit-selector .info-container .info-item .icon svg {
	width: 40px;
	height: 40px;
}

.date-label {
	font-size: 16px;
	font-weight: bold;
	color: #5b3a1a;
	display: block;
	margin-bottom: 8px;
}

.date-picker-container {
	display: flex;
	align-items: center;
border-radius: 16px;
    padding: 0 14px;
    background: #fff;
    position: relative;
    height: 59px;
    border: 2px solid #E1C5B7;
    width: 239px;
}

.calendar-icon {
	font-size: 25px;
	color: #5b3a1a;
	position: relative;
	z-index: 1;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
}

.date-input {
	border: none;
	outline: none;
	font-size: 16px;
	color: #5b3a1a;
	flex: 1;
	background: transparent;
	cursor: pointer;
}

.date-input::-webkit-calendar-picker-indicator {
	opacity: 0;
	width: 100%;
	cursor: pointer;
}

.dropdown-icon {
	display: flex;
	align-items: center;
}

.date-form label {
	    display: block;
    margin-bottom: 4px;
    font-size: 21px;
    font-weight: bold;
    line-height: 23px;
    letter-spacing: -0.01em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    font-family: "Bricolage Grotesque", sans-serif;
}

input[type=date] {
	width: 100%;
	padding: 12px 15px;
	font-size: 1em;
	border: 0px solid #DDD;
	border-radius: 8px;
	color: #333;
	transition: border-color .3s ease, box-shadow .3s ease;
}

input[type="date"]:focus {
	outline: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	background: transparent;
	bottom: 0;
	color: transparent;
	cursor: pointer;
	height: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

input[type="date"]::placeholder {
	color: #AAA;
	font-style: italic;
}

.calendar-icon svg {
	width: 25px;
	height: 25px;
}

/* Meal Kits Grid */
.meal-kit-grid {
	display: grid;
	gap: 15px;
	margin-bottom: 20px;
	grid-template-columns: repeat(1, 1fr);
}

.meals-img {
	display: flex;
	align-items: center;
	gap: 30px;
}

.meal-kit {
	background-color: #fff;
	border-radius: 12px;
	padding: 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	border: 2px solid #EDEDED;
}

.meal-kit.highlight:before {
	content: '';
	background-color: #19372269;
	height: 100%;
	width: 100%;
	position: absolute;
}

.meal-kit img {
	max-width: 244px;
	border-radius: 10px;
	width: 100%;
	min-width: 75px;
}

.meal-name {
	font-family: BricolageGrotesque_24pt_Condensed !important;
	width: max-content;
	font-size: 16px;
	max-width: 150px;
	font-weight: 600;
	line-height: 16.2px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
}

.meals-btn {
	display: flex;
	align-items: center;
}

.meal-kit button {
	CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
	background-color: transparent;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: .9em;
	display: flex;
	flex-direction: row-reverse;
	gap: 5px;
	align-items: center;
}

.tab.plan-tab,
.tab.Checkout-tab {
	opacity: 0.5;
}

/* Selected Meal Kits */
#selected-meal-kits {
	margin-top: 20px;
}

#selected-meal-kits h4 {
	font-size: 1.2em;
	margin-bottom: 10px;
}

#selected-meal-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

#selected-meal-list li {
  display: flex
;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFDF5;
    padding: 14px;
    border-radius: 17px;
    margin-bottom: 20px;
    border: 2px solid #FFF0CC;
    width: 359px;
    margin: 20px auto;
}
}

.img-data-info {
	gap: 10px;
	display: flex;
	width: 100%;
  align-items: center;
}

.main-product-list {
	width: 100%;
	];
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 15px;
}

.day-info {
	color: #583624;
	font-family: "BricolageGrotesque_24pt_Condensed" !important;
	font-size: 20px;
	font-weight: 700;
	line-height: 23px;
	letter-spacing: -0.01em;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
}


.main-product-list .productt-img-data {
	width: 160px;
}

.main-product-list .productt-img-data img {
	width: 100% !important;
	 !i;
	 !;
	height: 100% !important;
	 !i;
	 !;
	max-width: 200px !important;
	 !i;
	 !;
	border-radius: 28px;
}

.product-title-info {
flex: 1;
    
    padding: 5px 10px;
    border-radius: 7.4px;
    color: #111719;
    font-family: "BricolageGrotesque_24pt_Condensed" !important;
    height: max-content;
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

/* Submit Button */
button[type="submit"] {
width: 100%;
    color: #FFF;
    text-transform: uppercase;
    height: 60px;
    position: fixed;
    bottom: 0;
    background-color: #ffb400;
    border: none;
    border-radius: 10px;
    padding: 10px 28px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

button[type="submit"]:hover {
	background-color: #ffb400;
}

/* */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 20px;
	border-radius: 8px;
	width: 80%;
	max-width: 600px;
}

.close {
	float: right;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover {
	color: red;
}

.closeicon {
	display: none;
}

button.select-meal.additemactive .plusicon {
	display: none;
}

button.select-meal.additemactive .closeicon {
	display: block;
}

.number-display {

    width: 44px;
    height: 26px;
    border-radius: 5.78px;
    border: unset;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: unset;
    font-size: 16px;
    font-weight: bold;
}

span#remaining-count {
color: #FF7701;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

button#checkout {
    position: unset ! IMPORTANT;
}

div#selection-status {
display: flex
;
    align-items: center;
    justify-content: center;
      /* background-color: #f9e090; */
    border: none;
    border-radius: 10px;
    padding: 3px 15px 0px 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    opacity: 1;
    color: #000;
    line-height: auto;
    letter-spacing: -.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    gap: 0;
    /* position: fixed; */
    left: 0;
    width: 100%;
    bottom: 0;
    font-family: "BricolageGrotesque_24pt_Condensed" !important;
    flex-direction: column;
      z-index: 9999999999999;
  pointer-events: none;
}

.product-option {
	position: relative;
}

.product-option input[type=date] {
	width: 100%;
	padding: 12px 15px;
	font-size: 1em;
	border: 0px solid #DDD;
	border-radius: 8px;
	color: #333;
	transition: border-color .3s ease, box-shadow .3s ease;
	background-color: #EDEDED;
}

img.cart-item__image {
	border-radius: 20px !important;
}

/* */
/* Modal styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 20px;
	border-radius: 8px;
	width: 80%;
	max-width: 600px;
	position: relative;
}

.close {
	position: absolute;
	right: 10px;
	top: 5px;
	color: #aaa;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover {
	color: #000;
}

.product-info-data {
	display: flex;
	flex-direction: row-reverse;
}


.product-details img {
	max-width: 100%;
	height: auto;
	width: 50%;
	border-radius: 12px;
	object-fit: contain;
	max-height: 280px;
}

.add-to-cart-btn {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 4px;
}

.add-to-cart-btn:hover {
	background-color: #0056b3;
}

.quick-view-trigger-btn {
	width: 85px;
	height: 85px;
	backdrop-filter: blur(2px);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	cursor: pointer;
}

.quick-view-trigger-btn svg {
	width: 26px;
	height: 26px;
}

.select-meal svg,
.select-meal-remove svg {
	width: 40px;
	height: 40px;
}

/* */
.tabs {
	display: flex;
	justify-content: space-between;
	border-radius: 20px;
	overflow: hidden;
	gap: 20px;
}

.tab {
	background-color: #fdeebb;
	display: flex;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: -.01em;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s ease;
	flex: 1;
	font-family: "BricolageGrotesque_24pt_Condensed" !important;
	gap: 4px;
	font-size: clamp(0.75rem, 0.2813rem + 3vw, 1.125rem);
}

.tab svg {
	width: 20px;
	height: 20px;
}

.active {
	/* background-color: #FFB400; */
	color: #583624;
}

.meals-container {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
}

.meal {
	padding: 10px;
	border: 2px solid #ccc;
	cursor: pointer;
	transition: 0.3s;
}

.meal.selected {
	border-color: #FFB400;
	background-color: #FFF5D1;
}

#statusMessage {
	margin-top: 20px;
	font-size: 18px;
}

/* */
.date-form,
.add-list-data {
	/* display: none; */
}

.product-img-data {
	width: 160px;
}

.product-img-data img {
	width: 100%;
	border-radius: 15px;
	min-width: 110px;
	min-height: 110px;
}

.info-pro-data {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.date-change {
	position: relative;
}

.meals-img-list {
	position: relative;
	display: flex;
	align-items: center;
}

.meals-img-list.new-class-name:before {
	content: "";
	background-color: #19372269;
	height: 100%;
	width: 100%;
	position: absolute;
	border-radius: 12px;
}

.info-pro-data .date-change input[type=date] {
	width: 100%;
	font-size: 14px;
	border: 1px solid #EDEDED;
	transition: border-color .3s ease, box-shadow .3s ease;
	background-color: #fffef1;
	padding: 14px 10px;
	border-radius: 7.4px;
	color: #583624;
}

.quantity-selector {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #583624;
	border-radius: 12px;
	width: 90%;
	height: 45px;
	background-color: #fffbe6;
}

.quantity-selector button {
	border: none;
	background: none;
	font-size: 20px;
	cursor: pointer;
	color: #8b4513;
	width: 40px;
	height: 45px;
}

.quantity-selector button:disabled {
	color: #ccc;
	cursor: not-allowed;
}

.quantity-selector input {
	border: none;
	width: 30px;
	text-align: center;
	font-size: 16px;
	color: #8B4513;
	background: none;
}

.quantity-selector input:focus {
	outline: none;
}

.product-option {
	display: none;
}

button.btn-popup {
	width: 100%;
	height: 62px;
	border-radius: 12px;
	border: 0;
	background-color: #583624;
	color: #FFDC61;
	font-family: "BricolageGrotesque_24pt_Condensed" !important;
	font-size: clamp(1.25rem, 0.8594rem + 2.5vw, 1.5625rem);
	font-weight: 700;
	line-height: 23px;
	letter-spacing: -0.01em;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;

}

.product-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

@media screen and (max-width: 786px) {

  .customaddbtn {
    font-size: 20px;
  }

	#meal-kit-selector h2 {
		margin: 0;
		padding: 0;
		font-family: "BricolageGrotesque_24pt_Condensed" !important;
		color: #583624;
		font-size: 36px;
		font-weight: 600;
		line-height: 41.4px;
		letter-spacing: -0.01em;
		text-align: left;
		text-underline-position: from-font;
		text-decoration-skip-ink: none;
		text-transform: capitalize;
		max-width: 273px;
	}

	#meal-kit-selector .info-container .info-item p {
		font-family: Inter;
		font-weight: 600;
		line-height: 22px;
		letter-spacing: -.5px;
		text-align: left;
		text-underline-position: from-font;
		text-decoration-skip-ink: none;
		font-size: 14px;
		padding: 0;
		margin: 0;
	}

	.meal-kit {
		gap: 0px;
	}

	.tab {
		height: 29px;
		font-size: 10px;
		font-weight: 600;
		line-height: 11.5px;
		letter-spacing: -0.01em;
		text-align: left;
		text-underline-position: from-font;
		text-decoration-skip-ink: none;

	}

	.tabs {

		gap: 5px;
	}

	.tab svg {
		width: 10px;
		height: 10px;
	}

	.meals-img {
		gap: 12px;
	}

	.quick-view-trigger-btn {
		width: 26px;
		height: 26px;
		backdrop-filter: blur(2px);
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.quick-view-trigger-btn {
		width: 26px;
		height: 26px;
	}

	.plusicon {
		display: flex;
		align-items: center;
	}

	.select-meal svg {
		width: 26px;
		height: 26px;
	}

	.meal-kit button {

		padding: 0;

	}

	.closeicon {
		align-items: center;
	}

	.produt-meal-time-make {
		display: flex;
		align-items: center;
		text-transform: uppercase;
		font-family: Inter;
		font-size: 8px;
		font-weight: 600;
		line-height: 19.5px;
		text-align: left;
		text-underline-position: from-font;
		text-decoration-skip-ink: none;
	}

	/* .meals-btn {
		display: flex;
		align-items: center;
		padding: 0 5px;
		gap: 5px;
	}

	.meal-kit img {
		max-width: 75px;
		border-radius: 10px;
		width: 100%;
		min-width: 75px;
	}
 */

  .customaddbtn {
    width: 120px;
  }
	.main-product-list {
		padding: 5px;
	}

	#meal-kit-selector .info-container .info-item .icon svg {
		width: 24px;
		height: 24px;
	}

	#quick-view-modal .modal {
		display: none;
		position: fixed;
		z-index: 1000;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		background-color: #00000080;
	}

	#quick-view-modal .modal-content {
		background-color: #fff;
		margin: 0;
		padding: 20px;
		border-radius: 15px;
		width: 100%;
		max-width: 100%;
		/* position: absolute; */
		bottom: 0;
		z-index: 99;
	}

	.select-meal svg,
	.select-meal-remove svg {
		width: 26px;
		height: 26px;
	}
}

.closeicons {
	display: flex;
	align-items: center;
}

button.select-meal-remove {
	/* display: none; */
}

.number-display {
	/* display: none; */
}


#meal-kit-form button[type=submit] {
       padding: 1px 0px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: -.01em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    gap: 10px;
    width: 100%;
    font-family: "BricolageGrotesque_24pt_Condensed" !important;
    color: #6b3e38;
    pointer-events: none;
    left: 0;
    z-index: 9999999999999999999999999999999;
    position: fixed;
    background: #f9e090;
}

#week-start {
	appearance: none;
	background-color: #f5f5f7;
	border: 1px solid #d1d1d6;
	border-radius: 12px;
	padding: 12px 0px;
	font-size: 16px;
	color: #1d1d1f;
	font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Helvetica Neue', sans-serif;
	outline: none;
	width: 100%;
	transition: all 0.3s ease-in-out;
}

.date-picker-container {
	display: flex;
	align-items: center;
	background: #fff;
}

#week-start {
	border: none;
	background: transparent;
	outline: none;
	font-size: 16px;
	color: #7c6958;
	width: 100%;
}

#week-start::placeholder {
	color: #b5a093;
	/* Muted brown text */
}


.date-picker-container:hover,
.date-picker-container:focus-within {
	border-color: #d1c1b3;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.img-popup-item {
	flex: 1;
}

h3#quick-view-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 20.7px;
	letter-spacing: -0.01em;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	width: 125px;
}

.img-mini-text {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 9px;
}

.img-mini-text span {
	font-family: Inter;
	font-size: 10px;
	font-weight: 800;
	line-height: 19.5px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	text-transform: uppercase;
}

#meal-kit-selector .quantity-item h2 {
	font-family: Inter !important;
	font-size: 12px;
	font-weight: 600;
	line-height: 19.5px;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
}

.quantity-item {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

/*  */
#loader {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #00000082;
	padding: 20px;
	border-radius: 0px;
	z-index: 1000;
	height: 100%;
	width: 100%;
	backdrop-filter: blur(2px);
	color: #fff;
	pointer-events: none;
}

#loader .sub-loader {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto 10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

span.message-text3 {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	background-color: #f9e090;
	font-size: 20px;
	font-weight: 700;
	line-height: 23px;
	letter-spacing: -.01em;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	gap: 10px;
	position: fixed;
	left: 0;
	width: 100%;
	bottom: 0;
	font-family: "BricolageGrotesque_24pt_Condensed" !important;
}

#selection-status svg {
	position: fixed;
	right: -140px;
	width: 100%;
	bottom: 20px;
}

.active-message div#selection-status {
	background-color: #FFCC2A;
}

select#mondayDropdown {
	width: 100%;
	height: 50px;
	border: 0;
	padding: 0 20px;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
	text-overflow: '';
}

.date-select {
	width: 100%;
    background-color: #fffef1;
    padding: 14px 10px;
    border-radius: 7.4px;
    color: #000000;
    font-family: BricolageGrotesque_24pt_Condensed !important;
    height: max-content;
    border: 1px solid #E1C5B7;
    font-size: 21px;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  height: 54px;
}


button#back-btn {
	height: 35px;
	border-radius: 12px;
	background-color: #ffcc2a;
	border: 0;
	padding: 0 15px 0px 25px;
	font-size: 12px;
	font-weight: 600;
	line-height: 35px;
	letter-spacing: -.01em;
	text-align: left;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	font-family: BricolageGrotesque_24pt_Condensed !important;
	color: #583624;
	margin: 0 0 0 auto;
	width: 100%;
	max-width: max-content;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 65px;
	right: 15px;
	z-index: 999;
	cursor: pointer;
}

button#back-btn:before {
	content: "";
	font-size: 12px;
	position: absolute;
	left: 10px;
	z-index: 11;
	top: 13px;
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #583624;
	border-left: 2px solid #583624;
	transform: rotate(320deg);
}

.meal-filter {
	margin-bottom: 12px;
}

div#meal-filters {
	display: flex;
	align-items: center;
	gap: 20px;
}

#meal-filters {
	display: flex;
	gap: 10px;
}

#meal-filters {
	display: flex;
	gap: 10px;
	align-items: center;
}

.meal-filter {
	display: flex;
	flex-direction: column;
}

.meal-filter label {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

/* 
.meal-filter select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 18px 8px 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    color: #333;
   
  text-align:center;
}
*/
.meal-filter {
	position: relative;
}

/* .meal-filter select {
    width: auto;
    min-width: max-content;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #FF7701;
    border-radius: 12px;
    padding: 8px 18px 8px 30px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    color: #583624;
    text-align: center;
}
.meal-filter select:focus {
    width: auto; /* Expand width based on content */
min-width: max-content;
/* Ensure it fits the largest option */
}

*/
/* Prevent options from wrapping */
/* .meal-filter select option {
    white-space: nowrap;
    padding: 5px;
} */

/* .meal-filter:after {
    content: "";
    font-size: 12px;
    position: absolute;
    left: 18px;
    z-index: 11;
    top: 9px;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #583624;
    border-left: 2px solid #583624;
    transform: rotate(225deg);
} */
/* .meal-filter select:focus {
  border-color: #999;
}
 */
/* div#meal-tag-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}
#meal-kit-selector div#meal-tag-buttons h2.tag-btn {
    color: #583624;
    cursor: pointer;
    border: 1px solid #583624;
    border-radius: 20px;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.15;
    transition: all .2s;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    height: 30px;
    width: 90px;
    font-family: Inter, sans-serif !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
#meal-kit-selector div#meal-tag-buttons h2.tag-btn.active {
    background-color: #ffb400;
    color: #583624;
} */


.step-1 {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.step-2 {
	flex-direction: column;
	gap: 14px;
}


p#quick-view-description .how-to-cook-container .how-to-cook-header h2 {
	font-size: 12px;
	font-family: Inter !important;
}

.recipe-link span {
	margin-bottom: -5px;
}

.plusicon {
	display: flex;
	align-items: center;
}

p#quick-view-description .how-to-cook-container .icon img {
	height: 26px;
	width: 26px;
}

p#quick-view-description .how-to-cook-container .how-to-cook-header .recipe-links a.recipe-link span img {
	height: 30px;
}

@media screen and (min-width: 786px) {
	.tab {
		height: 40px;
	}



}


div#meal-filters {
	gap: 10px;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.meal-filterss {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
	gap: 10px;
	flex-wrap: wrap;
}

div#meal-type-filter {
	display: flex;
	align-items: center;
	gap: 10px;
}

#meal-kit-selector h2.filter-tab {
	font-family: Inter !important;
	 !i;
	 !;
	font-weight: 600;
	font-size: 10px;
	line-height: 22px;
	letter-spacing: -0.5px;
	/* width: 71px; */
	height: 31px;
	border-radius: 12px;
	border-width: 1px;
	border: 1px solid #FF7701;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;

	background-color: #fff;
	padding: 0 15px;
}

#meal-kit-selector h2.filter-tab.active {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	background-color: #FF7701;
}

#meal-kit-selector h2.clear-button {
	font-family: Inter !important;
	font-weight: 600;
	font-size: 10px;
	line-height: 22px;
	letter-spacing: -0.5px;

	height: 31px;
	border-radius: 12px;
	border-width: 1px;
	border: 1px solid #EDEDED;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0 15px;
	background-color: #fff;
}


/* Base styles for the select element */
.meal-filter {
	display: inline-block;
	position: relative;
}

.dynamic-width {
	min-width: 50px;
	appearance: none;
	font-family: Inter !important;
	font-size: 10px;
	line-height: 30px;
	letter-spacing: -0.5px;
	height: 30px;
	border-radius: 12px;
	border-width: 1px;
	border: 1px solid #FF7701;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background-color: #fff;
	text-indent: 10px;
}

/* Optional: Add custom arrow using pseudo-elements */
.dynamic-width {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 12px;
}


.popup-form {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.form-container {
	background: white;
	padding: 20px;
	border-radius: 8px;
	max-width: 500px;
	position: relative;
	width: 90%;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
}

.close-btn:hover {
	color: red;
}

.popup-contact-form {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

form#mealForm {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* input#fullName,
input#email,
input#phone {
    height: 40px;
    border-radius: 12px;
    border: 1px solid #EDEDED;
} */

/* input#number {
    width: 100%;
    background-color: #fffef1;
    padding: 14px 10px;
    border-radius: 7.4px;
    color: #583624;
    font-family: BricolageGrotesque_24pt_Condensed !important;
    height: max-content;
    border: 1px solid #EDEDED;
    font-size: 12.69px;
    font-weight: 700;
    line-height: 14.81px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
 */

section#shopify-section-template--25247345082441__174045698240f01f4c {
	top: 0;
	position: fixed;
	background-color: #0000004d;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	backdrop-filter: blur(10px);
	z-index: 9;
}

div#AZDFXRkJnR0J1cTV4L__forms_inline_nAJLJF {
	background-color: #fff;
	padding: 20px;
}


/*  */
/* Button to trigger popup */
.open-popup {
	background-color: #6b4e32;
	color: white;
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

/* Popup container */
.popup-loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	display: flex;
	z-index: 99;
}

/* Popup box */




.select-popup-data a.site-logo {
	display: flex;
	align-items: center;
}




/* Close button */
.close-popup {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 18px;
	cursor: pointer;
	color: #333;
}

.section-items {
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

.option-items {

	flex: 1;
}

h2 {
	text-align: center;
	color: #333;
}

#mealPopup .section {
	border: 1px solid #583624;
	border-radius: 16px;
	padding: 15px;
	margin-bottom: 15px;
}


.info-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 10px;
    line-height: 11px;
    letter-spacing: 0px;
    font-family: Inter;
    margin-bottom: 8px;
    flex-direction: column;
    gap: 5px;
}



.option-btn.selected {
	/* border: 1px solid; */
}




span.price-info {
    font-family: Inter;
    font-weight: 500;
    font-style: italic;
    font-size: 10px;
    line-height: 11px;
    letter-spacing: 0px;
}
.step-1 {
    display: flex;
    flex-direction: column;
}

.step-1-info .custom-button span {
    margin-right: 5px;
    font-size: 12px;
}

@media screen and (min-width: 786px) {
div#wholesome-products,div#comfort-products,#express-products,#express4-products,#wholesome4-products,#comfort4-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    display: grid;
}
}

div#date-change-day {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  margin-top: 10px;
}
.date-change {
    position: relative;
    flex: 1;
}

.time-slot {
    flex: 1;
}

select.time-select {
     width: 100%;
    background-color: #fffef1;
    padding: 14px 10px;
    border-radius: 7.4px;
    color: #000;
    font-family: BricolageGrotesque_24pt_Condensed !important;
    height: max-content;
    border: 1px solid #E1C5B7;
    font-size: 21px;
    font-weight: 500;
    line-height: auto;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  height: 54px;
}

.dayselectionlabel {
    position: absolute;
    top: -13px;
    background: #fffdf5;
    left: 15px;
    padding: 0px 10px;
    color: #000000;
    font-size: 18px;
      font-family: "Bricolage Grotesque", sans-serif;
  border-radius: 12px;
}
.time-slot {
    flex: 1;
    position: relative;
}
.timeselectionlabel {
    position: absolute;
    top: -13px;
    background: #fffdf5;
    left: 15px;
    padding: 0px 10px;
    color: #000000;
    font-size: 18px;
      font-family: "Bricolage Grotesque", sans-serif;
}


#df-btn-cont .df-btn {
    bottom: 77px !important;
}