/* ========== Default Body ========== */

body {
    color: #5b5247;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 400;
    overflow-x: hidden;
    padding: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #5b5247;
    font-family: "Cormorant", sans-serif;
    font-weight: 500;
    margin: 0 0 20px;
}

h1:last-of-type,
h2:last-of-type,
h3:last-of-type,
h4:last-of-type,
h5:last-of-type,
h6:last-of-type {
    margin: 0;
}

a,
p {
    color: #5b5247;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    text-decoration: none !important;
}

a:visited,
a:focus,
a:focus-visible {
    color: #5b5247;
    outline: none;
}

p:last-of-type {
    margin: 0;
}

ul li {
    font-family: "Lato", sans-serif;
    font-size: 15px;
}

.jy-container {
    color: #5b5247;
    margin: auto;
    max-width: 1600px;
    position: relative;
}

.jy-3my {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.jy-3my + .jy-3my {
    margin-top: 1rem;
}

.jy-4my {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.jy-4my + .jy-4my {
    margin-top: 2rem;
}

button {
    font-family: "Lato", sans-serif;
}

button.jy-button {
    background-color: transparent;
    border: 1px solid #c5996a;
    border-radius: 50px;
    color: #c5996a;
    display: inline-block;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
    z-index: 1;
}

button.jy-button::after {
    background-color: #9e7e5d;
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
    width: 100%;
    z-index: -1;
}

button.jy-button:hover {
    border-color: #9e7e5d;
    color: #ffffff;
}

button.jy-button:hover::after {
    transform: scaleX(1);
}

button.jy-button.jy-brown-1 {
    background-color: #faf3ec;
    color: #c5996a;
}

button.jy-button.jy-brown-2 {
    background-color: #c5996a;
    color: #ffffff !important;
}

button.jy-button.jy-green-1 {
    background-color: #797a40;
    border: 1px solid #797a40;
    color: #ffffff !important;
}

button.jy-button.jy-green-1:after {
    background-color: #4f501d;
}

@media all and (max-width: 991px) {
    .jy-4my {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
}

aside#secondary {
	display: none;
}

/* ========== Base Styling ========== */

.post,
.page {
    margin-bottom: 0;
}

::selection {
    background-color: #797a40;
    color: #fdfaf6;
}

::-moz-selection {
    background-color: #797a40;
    color: #fdfaf6;
}

*:focus-visible {
    outline: none;
    outline-offset: 4px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fdfaf6;
}

::-webkit-scrollbar-thumb {
    background-color: #797a40;
    border: 2px solid #fdfaf6;
    border-radius: 10px;
}

/* ========== Basics Animation ========== */

.jy-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.jy-fade-up.is-visible {
    animation: jyFadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes jyFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Top Bar / Marquee ========== */

.jy-marquee-container {
    background-color: #797a40;
    box-sizing: border-box;
    color: #fff;
    overflow: hidden;
    padding: 8px 0;
    width: 100%;
}

.jy-marquee-track {
    animation: scroll-left 40s linear infinite;
    display: flex;
    width: max-content;
}

.jy-marquee-content {
    display: flex;
    gap: 80px;
    padding-right: 50px;
}

.jy-marquee-content span {
    font-size: 14px;
}

h1.entry-title {
    display: none;
}

/*.jy-marquee-container:hover .jy-marquee-track {
    animation-play-state: paused;
}*/

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========== WooCommerce ========== */

.woocommerce-error {
    background-color: #e56548;
    margin: 0;
    padding: 0;
}

.woocommerce-error li {
    color: #ffffff;
    list-style-type: none;
    padding: 5px 10px;
}

.woocommerce-message {
    background-color: #27ab6d !important;
    color: #ffffff;
    font-size: 14px;
    padding: 5px 10px;
}

.woocommerce-info {
    color: #ffffff;
    font-size: 14px;
    padding: 5px 10px;
}

/* ========== Header ========== */

.top-header {
    margin: auto;
    max-width: 1600px;
    padding: 20px 10px;
    width: 100%;
}

.top-header .header-menu {
    align-items: center;
    display: flex;
    height: 100%;
}

.top-header ul#primary-menu {
    align-items: center;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.top-header ul#primary-menu li {
    list-style-type: none;
}

.top-header ul#primary-menu li a {
    color: #c5996a;
    display: inline-block;
    font-size: 15px;
    outline: none;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 1;
}

.top-header ul#primary-menu li a::after {
    background-color: #c5996a4f;
    bottom: 0px;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    z-index: -1;
}

.top-header ul#primary-menu li a:hover::after {
    transform: scaleX(1);
}

.top-header ul#primary-menu li.current-menu-item a::after {
    transform: scaleX(1);
}

.top-header .site-logo {
    align-items: center;
    display: flex;
    height: 100%;
    text-align: center;
    width: 100%;
}

.top-header .site-logo a {
    width: 100%;
}

.top-header .site-logo img {
    margin: auto;
    max-width: 260px;
    width: 100%;
}

.header-menu .res-menu,
.header-off-menu {
    align-items: center;
    display: flex;
    height: 100%;
}

.header-menu .res-menu,
.header-off-menu ul {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    width: 100%;
}

.header-menu .res-menu {
    justify-content: flex-start;
}

.header-menu .res-menu li,
.header-off-menu ul li {
    list-style-type: none;
}

.header-menu .res-menu li img,
.header-off-menu ul li img {
    margin: 0;
    max-width: 23px;
    width: 100%;
}

.header-menu .res-menu li a.jy-cart-toggle span,
.header-off-menu ul li a.jy-cart-toggle span {
    align-items: center;
    background-color: #c5996a;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    font-size: 10px;
    height: 16px;
    justify-content: center;
    position: absolute;
    right: -5px;
    top: -5px;
    width: 16px;
}

.header-off-menu ul li button.jy-button {
    border: 1px solid #c5996a;
    color: #c5996a !important;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    width: 140px;
}

.header-off-menu ul li button:hover {
    color: #fdfaf6 !important;
}

.header-off-menu ul li button.jy-button:after {
    background-color: #c5996a;
}

.header-off-menu ul li button:before {
    background-color: #c5996a;
    content: " ";
    height: 15px;
    mask-image: url("../../../uploads/2026/07/jy-icon-plus.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-image: url("../../../uploads/2026/07/jy-icon-plus.svg");
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    width: 15px;
}

.header-off-menu ul li button:hover:before {
    background-color: #fdfaf6;
}

.header-off-menu ul li button:hover:before,
.offcanvas button.jy-button:hover:before {
    transform: translateY(-50%) rotate(90deg);
}

.offcanvas {
    background-color: #faf3ec;
}

.offcanvas.offcanvas-end {
    border-left: 0;
}

.offcanvas .offcanvas-header {
    align-items: center;
    display: flex;
    font-size: 13px;
    justify-content: space-between;
}

.offcanvas .offcanvas-header .offcanvas-title {
    color: #c5996a; 
	font-size: 15px;
    position: relative;
    text-transform: uppercase;
}

.offcanvas.jy-offcanvas .offcanvas-header .offcanvas-title:before {
    background-color: #c5996a;
    content: " ";
    height: 20px;

    mask-image: url("../../../uploads/2026/07/jy-icon-user.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;

    -webkit-mask-image: url("../../../uploads/2026/07/jy-icon-user.svg");
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;

    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
}

.offcanvas button.jy-button {
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    max-width: 140px;
    position: relative;
    width: 100%;
}

.jy-offcanvas .offcanvas-header button.jy-button:hover:after {
    background-color: #000000;
}

.jy-offcanvas .offcanvas-header button.jy-button::after {
    background-color: #000000;
}

.offcanvas button.jy-button:before {
    background-color: #ffffff;
    content: " ";
    height: 15px;
    mask-image: url("../../../uploads/2026/07/jy-icon-close.svg");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-image: url("../../../uploads/2026/07/jy-icon-close.svg");
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    width: 15px;
}

.offcanvas .offcanvas-body .recom-product {
    background-color: #ffcf9c42;
    padding: 15px;
}

.offcanvas .offcanvas-body .recom-product p {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px;
}

.offcanvas .offcanvas-body .recom-product .jy-recom-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    height: 120px;
    margin-bottom: 10px;
    width: 100%;
}

.offcanvas .offcanvas-body .recom-product .jy-recom-info {
    display: flex;
    flex-direction: column;
}

.offcanvas .offcanvas-body .recom-product .jy-recom-name {
    color: #4a4238;
    font-size: 14px;
    font-weight: 600;
}

.offcanvas .offcanvas-body .recom-product .jy-recom-price {
    color: #b28a5d;
    font-size: 14px;
    font-weight: 500;
}

.offcanvas .offcanvas-body .recom-product .jy-recom-slide {
    flex: 0 0 calc(50% - 10px);
}

.offcanvas .offcanvas-body .recom-product .jy-recom-slide a {
    display: block;
    text-decoration: none;
}

.offcanvas .offcanvas-body .recom-product .jy-recom-slide img.jy-halal-badge {
    left: 5px;
    top: 5px;
    width: 26px;
}

.jy-sold-out-badge {
    background-color: #ffffff; /* A sleek, dark color */
	border-radius: 4px;
    color: #222222;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
	pointer-events: none; /* Prevents the badge from blocking clicks to the product link */
	position: absolute;
    right: 15px; /* Puts it on the right so it doesn't overlap a left-aligned Halal logo */
	text-transform: uppercase;
	top: 15px;
    z-index: 10;
}

.offcanvas .offcanvas-body .recom-product .jy-recom-slider {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.offcanvas .offcanvas-body .recom-product .jy-recom-slider::-webkit-scrollbar {
    display: none;
}

.offcanvas .offcanvas-body .recom-product .recom-product {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 100%;
}

.offcanvas .offcanvas-body .recom-product .recom-title {
    color: #4a4238;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.offcanvas .offcanvas-body .off-menu {
    padding: 2rem 0;
}

.offcanvas .offcanvas-body .off-menu ul {
    margin: 0;
    padding: 0;
}

.offcanvas .offcanvas-body .off-menu ul li {
    margin: 0 0 13px;
    list-style-type: none;
}

.offcanvas .offcanvas-body .off-menu ul li:last-child {
    margin: 0;
}

.offcanvas .offcanvas-body .off-menu ul li a {
    color: #5b5247;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.offcanvas .offcanvas-body .halal-cert {
    border-top: 1px solid #5b5247;
}

.offcanvas .offcanvas-body .halal-cert {
    padding: 1.5rem 0;
}

.offcanvas .offcanvas-body .halal-cert p {
    color: #5b5247;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.halal-cert img {
    width: 50px;
}

@media all and (min-width: 1024px) {
    .offcanvas.offcanvas-end {
        max-width: 500px;
        width: 100%;
    }
}

@media all and (max-width: 991px) {
    .offcanvas .offcanvas-body .recom-product p,
    .offcanvas .offcanvas-body .off-menu ul li a,
    .offcanvas .offcanvas-body .halal-cert p {
        font-size: 16px;
    }

    .header-menu .menu-jyfood-lab-main-menu-container {
        display: none;
    }

    .header-menu .res-menu li img {
        width: 20px;
    }

    .header-off-menu ul li:first-child,
    .header-off-menu ul li:nth-child(2) {
        display: none;
    }

    .header-off-menu ul li button {
        font-size: 14px;
        padding: 5px 10px;
        width: 100px;
    }

    .header-off-menu ul li button:before {
        content: unset;
    }

    .offcanvas .offcanvas-body .recom-product .jy-recom-slide {
        flex: 0 0 55%;
        scroll-snap-align: start;
    }

    .offcanvas .offcanvas-body .recom-product .jy-recom-slider {
        gap: 15px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .offcanvas
        .offcanvas-body
        .recom-product
        .jy-recom-slider::-webkit-scrollbar {
        display: none;
    }
}

@media all and (min-width: 992px) {
    .header-menu .res-menu {
        display: none;
    }
}

@media all and (max-width: 767px) {
    .top-header .site-logo img {
        max-width: 180px;
    }

    .header-off-menu ul li button {
        font-size: 12px;
        width: 70px;
    }

    .header-off-menu ul li button.jy-button {
		font-size: 14px;
        width: 100%;
    }
	
	.offcanvas .offcanvas-body .off-menu ul li a {
		font-size: 14px;
	}
}

/* ========== Home ========== */

#jy-home-slider .slider-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 85vh;
}

.jy-button.jy-dynamic-btn {
    background-color: var(--custom-bg, #c5996a);
    border-radius: 50px;
	bottom: 5%;
    color: var(--custom-text, #5b5247);
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
	left: 0;
	margin: auto;
    max-width: 200px;
    padding: 10px;
	position: absolute;
	right: 0;
	text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

.jy-container h1 {
    color: #5b5247;
}

.jy-container h2 {
    color: #5b5247;
    font-size: 34px;
    font-weight: 500;
}

.highlight-product .jy-product-bs {
    padding: 0 20px;
    position: relative;
    text-align: center;
}

.highlight-product .jy-product-bs img.jy-halal-badge {
    left: 35px;
    top: 10px;
}

.highlight-product .jy-product-bs a {
    color: #5b5247;
}

.highlight-product .jy-product-bs .jy-product-bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	border-radius: 6px;
    height: 420px;
    margin: 0 0 15px;
}

.highlight-product .jy-product-bs .card-title {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.highlight-product .jy-product-bs .card-title:hover {
    color: #5b5247;
}

.highlight-product .jy-product-bs .jy-price {
    color: #c5996a;
    font-size: 15px;
}

.highlight-product .card a {
    max-width: 240px;
    width: 100%;
}

.highlight-product .card button {
    font-size: 15px;
    padding: 10px;
    width: 100%;
}

.jy-intro .jy-intro-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	border-radius: 6px;
    height: 800px;
    min-height: 200px;
}

.jy-intro .jy-intro-desc {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    text-align: center;
}

.jy-intro .jy-intro-desc p.date {
    text-align: right;
    width: 100%;
}

.jy-intro .jy-intro-desc h2 {
    color: #c49a6c;
    margin: 0 0 40px;
    padding: 0 20px;
    text-transform: uppercase;
}

.jy-intro .jy-intro-desc ul {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    justify-content: space-around;
    margin: 40px 0;
    padding: 0;
}

.jy-intro .jy-intro-desc ul li {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    list-style-type: none;
    padding: 20px;
    text-align: center;
    width: calc(100% / 3);
}

.jy-intro .jy-intro-desc ul li img {
    margin: 0 0 10px;
}

.jy-intro .jy-intro-desc p:last-child {
    margin: 20px auto;
}

.jy-basic-cta {
    background-color: #ede3db;
    padding: 2rem 15px;
    position: relative;
}

.jy-basic-cta:before {
    border-right: 1px solid #ffffff;
    content: " ";
    height: 100%;
    position: absolute;
    right: 50%;
    top: 0;
}

.jy-basic-cta .jy-cta-info {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
}

.jy-basic-cta .jy-cta-info a {
    max-width: 180px;
    width: 100%;
}

.jy-basic-cta .jy-cta-info button {
    font-size: 15px;
    padding: 10px;
    width: 100%;
}

.jy-google-review {
    background-color: #fdf5ef;
    padding: 40px 15px;
}

.jy-google-review h2 {
    margin: 0 0 2rem;
    text-align: center;
}

.ti-review-text-container.ti-review-content {
    font-size: 14px !important;
}

.insta-feed h2 {
    margin: 0 0 20px;
}

@media all and (max-width: 991px) {
    .jy-offcanvas .offcanvas-header button {
        font-size: 14px;
        padding: 5px 10px;
        width: 100px;
    }

    .jy-offcanvas button.jy-button:before {
        content: unset;
    }

    #jy-home-slider .slider-img {
        height: 40vh;
    }

    .highlight-product .jy-product-bs {
        padding: 0 15px;
    }

    .highlight-product .jy-product-bs .jy-product-bg-img {
        height: 360px;
    }

    .highlight-product p br {
        display: none;
    }

    .jy-basic-cta .jy-cta-info {
        flex-direction: column;
        height: 20vh;
        justify-content: space-around;
        text-align: center;
    }

    .jy-button.jy-dynamic-btn,
    .highlight-product .card button,
    .jy-basic-cta .jy-cta-info button {
        font-size: 14px;
        padding: 8px;
    }

    .highlight-product .card button {
        max-width: 200px;
    }

    .jy-intro .jy-intro-bg {
        height: 400px;
        margin: 0 0 2rem;
    }

    .jy-container h2 {
        font-size: 26px;
    }

    .jy-basic-cta {
        padding: 1rem 15px;
    }

    .jy-basic-cta:before {
        transform: rotate(90deg);
    }

    .jy-intro .jy-intro-desc h2 {
        margin: 0;
    }

    .jy-intro .jy-intro-desc ul {
        margin: 20px 0;
    }

    .jy-intro .jy-intro-desc ul li img {
        margin: 0;
        max-width: 40px;
        width: 100%;
    }

    .jy-intro .jy-intro-desc p:last-child {
        font-size: 14px;
        margin: 10px 0 5px;
    }
}

@media all and (max-width: 767px) {
    #jy-home-slider .slider-img {
        height: 45vh;
    }

    .highlight-product .jy-product-bs .jy-product-bg-img {
        height: 240px;
    }

    .jy-basic-cta .jy-cta-info {
        display: flex;
        flex-direction: column;
        height: 20vh;
        justify-content: space-around;
    }

    .jy-basic-cta .jy-cta-info p {
        margin: 0 0 10px;
        text-align: center;
    }

    .highlight-product .jy-product-bs .jy-price {
        font-size: 13px;
    }
	
	.jy-button.jy-dynamic-btn {
		max-width: 160px;
	}
	
	.highlight-product .jy-product-bs {
        padding: 0 10px;
    }
}

@media all and (max-width: 565px) {
    .highlight-product .jy-product-bs {
        padding: 0;
    }

    /*.highlight-product .jy-product-bs .jy-product-bg-img {
        height: 160px;
    }*/

    .highlight-product .row {
        justify-content: center;
    }

    .jy-intro .jy-intro-desc ul {
        flex-direction: column;
        justify-content: center;
    }

    .jy-intro .jy-intro-desc ul li {
        padding: 10px;
        width: 100%;
    }
}

/* ========== About ========== */

.page-head-bg {
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    min-height: 200px;
    position: relative;
}

.page-head-bg:before {
    background-color: #fdfaf6d9;
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
}

.page-head-bg h1 {
    margin: 0 0 10px;
    text-transform: uppercase;
}

.page-head-bg p {
    font-family: "Cormorant", sans-serif;
    font-size: 20px;
    line-height: 1.4;
}

.jy-info-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-info img,
.meet-chef img {
	border-radius: 6px;
}

.about-info .info {
    padding: 0 10rem 0 0;
}

.about-info .info h2 {
    color: #c49a6c;
    margin: 0 0 20px;
    text-transform: none;
}

.about-info .info-image {
    background-color: #ede3db;
    margin: 4rem 0 0 auto;
    width: 90%;
}

.about-info .info-image .jy-info-swiper {
	border-radius: 6px;
    padding: 20px;
    width: 100%;
}

.about-info .info-image .jy-info-swiper .swiper-pagination-bullet-active {
    background: #4a4238;
}

.about-info .info-image .jy-info-swiper .swiper-slide img {
    height: auto;
    object-fit: cover;
    width: 100%;
}

.page-info-chef {
    background-color: #ede3db;
    padding: 3rem 0 5rem;
    text-align: center;
}

.page-info-chef h2 {
    margin: 0 0 2rem;
    text-transform: unset;
}

.page-info-chef img {
    margin-bottom: 2rem;
    width: 100px;
}

.page-info-chef p {
    margin: auto;
    max-width: 700px;
    width: 100%;
}

.meet-chef {
    margin: 3rem 0 0;
}

.meet-chef .chef-info {
    padding: 0 20px;
    position: relative;
    text-align: left;
}

.meet-chef .chef-info h2 {
    font-size: 30px;
}

.meet-chef .chef-info img {
    margin: 0 0 10px;
    width: 100%;
}

.meet-chef .chef-info h2 {
    line-height: 1.1;
    margin: 0 0 10px;
}

@media all and (max-width: 991px) {
    .about-info .info {
        padding: 0;
    }

    .about-info .info-image {
        margin: 1rem 0 0;
        width: 100%;
    }

    .about-info img {
        margin: 0 0 20px;
    }

    .page-info-chef img {
        margin: 0 0 20px;
    }
}

@media all and (max-width: 767px) {
    .about-info .info-image {
        margin: 2rem 0 0;
    }

    .meet-chef .chef-info {
        margin: 0 0 1.5rem;
        text-align: center;
    }

    .about-info img,
    .meet-chef .chef-info img {
        margin: 0 auto 10px;
        width: 100%;
    }
}

/* ========== Career / Event ========== */

.jy-event-sec h2,
.jy-career-sec h2 {
    margin: 0 0 20px;
    text-align: center;
    text-transform: none;
}

.jy-event-sec p,
.jy-career-sec p {
    margin: auto;
    max-width: 700px;
    text-align: center;
    width: 100%;
}

.jy-event-sec .row:last-child,
.jy-career-sec .row:last-child {
    margin: 4rem 0 0;
}

.jy-event-sec .jy-event-service {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.jy-event-sec .jy-event-service li {
    background-color: #faf3ec;
    border: 1px solid #c5996a;
    border-radius: 50px;
    color: #c5996a;
    cursor: pointer;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    list-style: none;
    padding: 10px 20px;
    text-align: center;
}

.jy-event-desc h2 {
    margin: 10px 0 20px;
    text-transform: none;
}

.jy-event-desc p {
    margin: 0 0 50px;
}

.jy-event-desc a button {
    max-width: 240px;
    width: 100%;
}

.page-event-form {
    background-color: #ede3db;
    padding: 3rem 0 5rem;
}

.page-event-form h2 {
    margin: 0 0 40px;
    text-align: center;
    text-transform: none;
}

.page-event-form .jy-event-swiper {
    padding-bottom: 40px !important;
    width: 100%;
}

.page-event-form .jy-slide-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    width: 100%;
}

.page-event-form .page-event-slider {
    width: 100%;
}

.page-event-form .jy-event-swiper .swiper-pagination-bullet-active {
    background: #4a4238;
}

.page-event-form p {
    text-align: center;
}

.page-event-form p a {
    color: #5b5247;
    font-weight: 700;
}

.event-form,
.career-form {
    margin: 3rem auto 0;
    max-width: 700px;
}

.career-form form span.selection {
    background-color: #ffffff;
}

.career-benefit-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    margin: auto;
    max-width: 1000px;
    padding: 0;
    width: 100%;
}

.career-benefit-item {
    align-items: center;
    background-color: #faf3ec;
    border: 1px solid #c5996a;
    border-radius: 50px;
    color: #c5996a;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    justify-content: center;
    padding: 16px 20px;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.career-benefit-item:hover {
    background-color: #c5996a;
    color: #faf3ec;
    transform: translateY(-2px);
}

.career-open-position {
    margin: 4rem 0 0;
}

.career-open-position .accordion {
    background-color: #fdfaf6;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.21);
}

.career-open-position .accordion .accordion-header {
    max-width: 100%;
}

.career-open-position .accordion .accordion-header button {
    background-color: #fdfaf6;
}

.career-open-position .accordion .accordion-header button:focus {
    border-top-left-radius: unset !important;
    border-top-right-radius: unset !important;
    box-shadow: none;
}

.career-open-position .accordion-item {
    background-color: #fdfaf6;
    border: none;
    border-bottom: 1px solid #5b5247;
    border-radius: 0 !important;
}

.career-open-position .accordion-collapse {
    border-top: 1px solid #5b5247;
}

.career-open-position .career-job-details ul {
    margin: 10px 0 20px 20px;
    padding: 0;
}

.page-career-form {
    margin-bottom: 5rem;
}

@media all and (max-width: 991px) {
    .page-event-form .jy-slide-bg {
        height: 200px;
    }

    .jy-event-sec .jy-event-service {
        flex-direction: column;
        gap: 10px;
    }

    .jy-event-sec .row:last-child,
    .jy-career-sec .row:last-child {
        margin: 2rem 0 0;
    }

    .jy-career-sec h2 br {
        display: none;
    }

    .jy-event-sec .jy-event-service li {
        font-size: 14px;
        width: 100%;
    }

    .jy-event-desc a button {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .career-benefit-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .career-benefit-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media all and (max-width: 767px) {
    .career-benefit-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media all and (max-width: 565px) {
    .career-benefit-item {
        padding: 10px;
    }
}

/* ========== Contact ========== */

.contact-info {
    text-align: center;
}

.contact-form {
    margin: 2rem auto auto;
}

.contact-form label {
    text-align: left;
}

.contact-maps {
    background-color: #ede3db;
    padding: 3rem 0 5rem;
}

.contact-maps h2 {
    margin: 0 0 15px;
    text-align: center;
}

.contact-maps iframe {
    margin: 0 0 30px;
}

.contact-maps .address {
    margin: 0 0 15px;
}

.contact-maps h4 {
    border-bottom: 1px solid #5b5247;
    font-weight: 700;
    margin: 0 0 10px;
    width: fit-content;
}

.contact-maps .direction ul {
    align-items: center;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.contact-maps .direction ul li {
    list-style-type: none;
}

.contact-maps .direction ul li img {
    width: 32px;
}

.contact-maps .pick-up {
    margin: 0 0 15px;
}

.contact-maps .pick-up p {
    margin: 0 0 5px;
}

.contact-maps .notes h5 {
    border-bottom: 1px solid #5b5247;
    font-weight: 700;
    width: fit-content;
}

.contact-maps .notes ul {
    margin: 10px 0;
}

.contact-maps .notes ul li p {
    font-weight: 700;
}

.contact-maps .notes p {
    font-style: italic;
}

@media all and (max-width: 767px) {
    .contact-maps {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .contact-maps .direction {
        margin: 0 0 15px;
    }
}

/* ========== Shop ========== */

.shop-header .shop-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	border-radius: 6px;
    height: 450px;
}

.shop-header .shop-dec {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 0 20px 8rem 0;
}

.shop-header .shop-dec h1 {
    color: #5b5247;
    font-size: 38px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.shop-filter {
    background-color: #ede3db;
    padding: 15px 0;
}

.shop-filter .jy-product-tags-filter {
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 0;
    padding: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.shop-filter .jy-product-tags-filter::-webkit-scrollbar {
    display: none;
}

.shop-filter .jy-product-tags-filter li {
    flex-shrink: 0;
    list-style-type: none;
}

.shop-filter .jy-product-tags-filter a {
    color: #5b5247;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    padding-bottom: 2px;
    position: relative;
    text-decoration: none;
    z-index: 1;
}

.shop-filter .jy-product-tags-filter a::after {
    background-color: #c5996a87;
    bottom: 2px;
    content: "";
    left: 0;
    height: 10px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease-in-out;
    width: 100%;
    z-index: -1;
}

.shop-filter .jy-product-tags-filter a:hover::after,
.shop-filter .jy-product-tags-filter a.active::after {
    transform: scaleX(1);
}

@media all and (max-width: 991px) {
    .shop-filter .jy-product-tags-filter {
        justify-content: flex-start;
        padding-right: 50px;
    }

    .shop-filter .jy-tags-wrapper::after {
        align-items: center;
        animation: swipeHintCircle 1.5s infinite;
        background-color: #c5996a;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(91, 82, 71, 0.3);
        color: #ffffff;
        content: "\276F";
        display: flex;
        font-size: 15px;
        font-weight: 900;
        height: 32px;
        justify-content: center;
        padding-left: 20px;
        padding-right: 15px;
        pointer-events: none;
        position: absolute;
        right: 15px;
        top: 0;
        width: 32px;
        z-index: 10;
    }
}

@keyframes swipeHint {
    0%,
    100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(-5px);
        opacity: 1;
    }
}

@keyframes swipeHintCircle {
    0%,
    100% {
        transform: translateX(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-6px);
        opacity: 1;
    }
}

.shop-notice {
    /* background-color: #ede3db;
    padding: 30px 15px; */
    text-align: center;
}

.shop-items h2 {
    color: #c5996a;
    font-size: 36px;
    margin: 0 0 15px;
    text-transform: capitalize;
}

img.jy-halal-badge {
    background-color: #ffffff;
    border-radius: 50px;
    left: 15px;
    position: absolute;
    top: 15px;
    width: 40px;
}

.shop-items .jy-product-bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	border-radius: 6px;
    display: flex;
    height: 420px;
}

.shop-items .jy-product-card h5 a {
    text-transform: capitalize;
}

.shop-items .jy-product-card h5 a,
.shop-items .jy-product-card .jy-price {
    font-family: "Lato", sans-serif;
    font-size: 15px;
}

.details-page nav.woocommerce-breadcrumb {
    color: #5b5247;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.details-page nav.woocommerce-breadcrumb a {
    color: #5b5247;
    font-family: "Lato", sans-serif;
}

table.variations {
    margin: 15px 0;
}

table.variations td.value select {
	border-radius: 8px;
	font-size: 15px;
	max-width: 70%;
	padding: 12px;
	width: 100%;
}

table.variations td.value a.reset_variations {
	color: #ff0000;
	font-size: 15px;
	padding: 0 0 0 8px;
}

.woocommerce-variation-price {
	color: #c49a6c;
    font-size: 22px;
	font-weight: 600;
}

@media all and (max-width: 991px) {
    .shop-header .shop-dec h1 {
        font-size: 30px;
    }

    .shop-items .jy-product-bg-img {
        height: 360px;
    }
}

@media all and (max-width: 767px) {
    .shop-header .shop-dec {
        padding: 20px 15px;
        text-align: center;
    }

    .shop-notice {
        padding: 15px;
    }

    .shop-items h2 {
        font-size: 32px;
    }

    .shop-items .jy-product-bg-img {
        height: 240px;
    }

    .shop-items .jy-product-card .jy-price {
        font-size: 13px;
    }

    .shop-items .col {
        margin: 22px 0 0;
        padding: 0 5px;
    }

    .shop-items .jy-product-card .p-2 {
        margin: 0 0 10px;
        padding: 0 !important;
    }

    img.jy-halal-badge {
        left: 10px;
        top: 10px;
    }

    .highlight-product .jy-product-bs img.jy-halal-badge {
        left: 25px;
    }
	
	img.jy-halal-badge {
		width: 30px;
	}
}

@media all and (max-width: 565px) {
    .highlight-product .jy-product-bs img.jy-halal-badge {
        left: 15px;
        width: 30px;
    }
}

/*@media all and (max-width: 565px) {
    .shop-items .jy-product-bg-img {
        height: 160px;
    }
}*/

/* ========== Product Details ========== */

img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
    border-radius: 6px;
}

form.cart .before-add-to-cart {
    background-color: #ede3db;
	border-radius: 6px;
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
    padding: 15px;
    width: 100%;
}

form.cart .fpf-fields input[type="hidden"] {
    display: none;
}
form.cart .fpf-fields label .optional,
form.cart .fpf-fields label .required {
    display: none;
}

form.cart .fpf-fields .fpf-field,
form.cart .fpf-fields .form-row {
    margin: 0;
    padding: 0;
}

form.cart .fpf-fields .fpf-field,
form.cart .fpf-fields .fpf-totals {
    grid-column: span 2;
}

/* form.cart .fpf-fields .fpf-fpfdate {
    grid-column: span 1;
}

form.cart .fpf-fields .fpf-fpfdate + .fpf-select {
    grid-column: span 1;
} */

form.cart .fpf-fields label {
    color: #5b5247;
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

form.cart .fpf-fields input[type="text"],
form.cart .fpf-fields select,
form.cart .fpf-fields textarea {
    background-color: #ffffff;
    border: none;
    border-radius: 6px;
    box-shadow: none;
    box-sizing: border-box;
    color: #333333;
    font-size: 14px;
    padding: 10px;
    width: 100%;
}

form.cart .fpf-fields input[type="text"]:focus-visible,
form.cart .fpf-fields select:focus-visible,
form.cart .fpf-fields textarea:focus-visible {
    outline: none;
}

form.cart .fpf-fields textarea {
    height: 100px;
}

form.cart .fpf-fields select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B5247' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 16px;
    cursor: pointer;
}

form.cart .woobt-products {
    /* border: 1px solid #dfc6ab;
    border-color: 1px solid #dfc6ab; */
    padding: 20px 0;
}

form.cart .woobt-item-text.woobt-item-text-type-h2 {
    border: none;
    color: #c5996a;
    margin: 0 0 15px;
    padding: 0;
}

form.cart .woobt-item-text.woobt-item-text-type-h2 h2 {
    font-size: 24px;
}

form.cart .woobt-product-together {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    position: relative;
}

form.cart .woobt-thumb {
    flex: 0 0 140px !important;
    margin-right: 20px;
    order: 1;
    width: 100% !important;
}

form.cart .woobt-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

form.cart .woobt-title {
    display: flex;
    flex: 1;
    flex-direction: column;
    max-width: 100%;
    order: 2;
    padding-right: 150px;
}

form.cart .woobt-title a {
	color: #5b5247 !important;
}

form.cart .woobt-title-inner span {
    color: #4a4238;
    font-size: 15px;
    font-weight: 500;
}

.woobt-products .woobt-product .woobt-price .amount {
	color: #e4b187;
	font-size: 14px;
}

form.cart .woobt-description {
    color: #666666;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 5px;
}

form.cart .woobt-description h4 {
    display: none;
}

form.cart .woobt-description h5 {
    font-size: 16px;
    margin: 5px 0;
}

form.cart .woobt-price {
    color: #4a4238;
    font-weight: 600;
    position: absolute;
    right: 20px;
    top: 20px;
}

form.cart .woobt-quantity {
    display: none;
    flex: 0 0 40px !important;
    order: 4;
    margin-top: 15px;
    width: 100%;
}

form.cart .woobt-quantity-input {
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    display: inline-flex;
    height: 40px;
    overflow: hidden;
}

form.cart .woobt-quantity-input-minus,
form.cart .woobt-quantity-input-plus {
    align-items: center;
    border: none;
    color: #5b5247;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    justify-content: center;
    transition: background 0.2s;
    width: 40px;
    user-select: none;
}

form.cart .woobt-quantity-input-minus:hover,
form.cart .woobt-quantity-input-plus:hover {
    background-color: #eae5dd;
}

form.cart .woobt-quantity-input .quantity {
    margin: 0 !important;
}

form.cart .woobt-quantity-input input.qty {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #4a4238 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 0 !important;
    text-align: center;
    width: 40px !important;
    appearance: textfield;
}

form.cart .woobt-quantity-input input.qty::-webkit-outer-spin-button,
form.cart .woobt-quantity-input input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

form.cart .woobt-choose {
    order: 3;
    margin-top: 20px;
    width: 100%;
}

form.cart .woobt-choose > label,
form.cart .woobt-choose > input,
form.cart .woobt-choose > .checkmark {
    display: none !important;
}

.jy-product-summary .woobt-wrap .woobt-text {
    color: #5b5247;
    font-weight: 500;
    margin: 0 0 5px;
}

.jy-product-summary .woobt-wrap .woobt-total.woobt-text {
    color: #c5996a;
    font-size: 24px;
    margin: 0;
}

.jy-product-summary
    .woobt-wrap
    .woobt-total.woobt-text
    span.woocommerce-Price-amount.amount {
    font-weight: 800;
}

form.cart .quantity {
    margin: 0 0 10px;
}

form.cart .quantity input {
    border: 1px solid #eae5dd;
    height: 40px;
    text-align: center;
}

form.cart button.single_add_to_cart_button {
    background-color: #c5996a;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    margin: auto;
    max-width: 220px;
    padding: 10px;
    text-transform: uppercase;
    width: 100%;
}

.jy-main-description {
    padding: 2rem 0;
}

.jy-product-summary .product_meta {
    display: none;
}

.jy-fbt-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.jy-fbt-btn {
    align-items: center;
    color: #5b5247;
    cursor: pointer;
    display: flex;
    flex: 1;
    font-size: 14px;
    gap: 12px;
    justify-content: flex-start;
    /* padding: 10px; */
    transition: all 0.2s ease;
}

.jy-fbt-no {
    position: absolute !important;
    pointer-events: none !important;
    opacity: 0 !important;
    z-index: -999;
}

.jy-fbt-yes {
    cursor: pointer;
    transition: all 0.3s ease;
}

.jy-fbt-btn.active {
    /* background: #d8cebe; */
    font-weight: 600;
}

.jy-radio-circle {
    background: #ffffff;
    border: 1px solid #e4b187;
    border-radius: 50%;
    display: block;
    height: 18px;
    width: 18px;
    transition: all 0.2s ease;
}

.jy-fbt-btn.active .jy-radio-circle {
    border: 5px solid #e4b187;
    background: #5b5247;
}

.jy-product-summary h1.product_title.entry-title {
    color: #5b5247;
    font-size: 34px;
    text-transform: uppercase;
}

.jy-product-summary h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0 !important;
}

.woocommerce-product-details__short-description p {
    margin: 0 0 10px;
}

.jy-product-summary p.price {
    color: #c49a6c;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
}

.jy-product-gallery-slider {
    /*padding: 0 40px 0 0;*/
    width: 100%;
}

.jy-product-gallery-slider .swiper-button-next,
.jy-product-gallery-slider .swiper-button-prev {
    color: #5b5247;
}

.jy-main-swiper {
    height: 700px;
    margin: 10px 50px 0 0;
    overflow: hidden;
    width: 100%;
}

.jy-main-swiper .jy-slide-img {
	border-radius: 6px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.jy-thumb-swiper {
    box-sizing: border-box;
    height: 250px;
    padding: 0 0 10px;
}

.jy-thumb-swiper .swiper-slide {
    cursor: pointer;
    height: 100%;
    opacity: 0.5;
    overflow: hidden;
}

.jy-thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.jy-thumb-swiper .jy-thumb-img {
	border-radius: 6px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.jy-product-info-module {
    /* background-color: #fef0e1; */
    margin: 20px 0;
}

.jy-product-info-module .jy-info-grid {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
}

.jy-product-info-module .jy-info-grid .jy-grid-item {
    align-items: flex-start;
    display: flex;
    margin: 0 0 10px;
}

.jy-product-info-module .jy-info-grid .jy-grid-item img {
    margin: 0 10px 0 0;
    width: 20px;
}

.jy-product-info-module .jy-info-grid .jy-info-text {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
}

.jy-product-info-module .jy-info-grid .jy-info-text ul {
	margin: 0 0 10px;
}

.jy-product-info-module .jy-info-grid .jy-info-text ul li {
	font-size: 14px;
}

.jy-product-info-module .jy-mockup-accordion {
    margin: 20px 0 0;
}

.jy-product-info-module .jy-mockup-accordion .accordion-item {
    border: none;
    border-radius: 0;
}

.jy-product-info-module .jy-mockup-accordion .accordion-item button {
    background-color: #ede3db;
    border-radius: 6px !important;
    color: #5b5247;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    padding: 10px;
}

.jy-product-info-module .jy-mockup-accordion .accordion-item button:focus {
    box-shadow: none;
}

.jy-product-info-module .jy-mockup-accordion .accordion-body {
    background-color: #f9f2eb;
    color: #5b5247;
    font-size: 14px;
    padding: 10px;
}

.jy-product-info-module .jy-mockup-accordion .accordion-body p {
    margin: 0 0 5px;
}

.jy-product-info-module .jy-mockup-accordion .accordion-body ul {
    margin: 0 0 15px 0;
}

.jy-product-info-module .jy-mockup-accordion .accordion-body ul li {
    font-family: "Lato", sans-serif;
	font-size: 14px;
}

.jy-product-info-module .jy-info-grid .jy-info-text strong {
	font-size: 13.5px;
    line-height: 1.3;
	padding: 0 8px 0 0;
}

.jy-product-info-module .jy-info-grid .jy-info-text p {
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
}

.jy-product-info-module .jy-info-disclaimer {
    color: #5b5247;
    font-size: 12px;
    text-align: center;
}

@media all and (min-width: 992px) {
    .jy-product-gallery {
        align-self: flex-start;
        position: -webkit-sticky;
        position: sticky;
        top: 40px;
        z-index: 10;
    }
}

@media all and (max-width: 991px) {
    .details-page nav.woocommerce-breadcrumb {
        margin: 0 0 15px;
    }

    .jy-product-gallery-slider {
        /*border-bottom: 1px solid #5b5247;*/
        margin: 0 0 20px;
        padding: 0;
    }

    .jy-product-gallery .jy-main-swiper {
        margin: 0 0 15px;
    }

    .jy-product-summary h1.product_title.entry-title {
        margin: 0 0 10px;
    }

    .jy-product-info-module .jy-info-grid {
        grid-template-columns: unset;
    }

    .jy-product-info-module .jy-info-grid .jy-grid-item {
        align-items: flex-start;
        margin: 0 0 20px;
    }

    .jy-product-info-module .jy-mockup-accordion {
        margin: 10px 0 0;
    }
}

@media (max-width: 767px) {
	.jy-product-summary h3 {
		font-size: 24px;
		line-height: 1.1;
		margin: 0 0 5px !important;
	}
	
    .fpf-fields .fpf-fpfdate,
    .fpf-fields .fpf-fpfdate + .fpf-select {
        grid-column: span 2;
    }

    form.cart .woobt-thumb {
        width: 100px !important;
        margin-right: 15px;
    }

    .jy-fbt-buttons {
		align-content: flex-start;
        flex-direction: row;
        gap: 10px;
    }

    .jy-fbt-yes {
        /* justify-content: center; */
    }

    .woobt-products .woobt-product .woobt-quantity {
        text-align: center;
    }

    form.cart .woobt-item-text.woobt-item-text-type-h2 {
        margin: 0 0 5px;
    }

    form.cart .woobt-item-text.woobt-item-text-type-h2 h2 {
        text-align: center;
    }

    .woobt-wrap-responsive .woobt-products .woobt-product {
		flex-direction: row;
        padding: 10px 0;
		text-align: left;
    }

    form.cart .fpf-fields label {
        font-size: 14px;
    }

    .woobt-wrap-responsive .woobt-products .woobt-product > div {
        width: 100% !important;
    }
	
	.woobt-wrap-responsive .woobt-products .woobt-product .woobt-price {
		order: 2;
	}

    form.cart .woobt-price {
        order: 1;
        position: relative;
        right: 0;
        text-align: center !important;
        top: 0;
    }
	
	.woobt-wrap-responsive .woobt-products .woobt-product .woobt-thumb {
		flex-basis: unset !important;
	}
	
	.woobt-wrap-responsive .woobt-products .woobt-product .woobt-title {
		padding-right: 10% !important;
	}

    .woobt-products .woobt-product .woobt-quantity,
    form.cart .quantity input,
    form.cart .quantity,
    form.cart button.single_add_to_cart_button {
        max-width: 100%;
        width: 100%;
    }

    .woobt-wrap-responsive .woobt-products .woobt-product .woobt-thumb img {
        width: 100px;
    }

    .jy-main-swiper {
        height: 420px;
    }

    .jy-thumb-swiper {
        height: 160px;
    }
	
	.woobt-wrap-responsive .woobt-products .woobt-product .woobt-thumb {
		width: auto !important;
	}
	
	.container.jy-container.details-page {
		padding: 0 20px !important;
	}
}

@media all and (max-width: 565px) {
    form.cart .before-add-to-cart {
        display: block;
        grid-template-columns: unset;
    }

    form.cart .fpf-fields .fpf-fpfdate,
    form.cart .fpf-fields .fpf-fpfdate + .fpf-select {
        grid-column: 0;
    }

    form.cart .before-add-to-cart .fpf-field {
        margin: 0 0 10px;
    }
	
	.woobt-wrap-responsive .woobt-products .woobt-product .woobt-title {
        padding-right: 5% !important;
    }
	
	.jy-product-info-module .jy-info-disclaimer {
		font-size: 10px;
	}
}

/* ===== FAQ ===== */

.faq-info nav a.nav-link {
    color: #5b5247;
    font-size: 14px;
    padding: 8px 15px;
    text-transform: uppercase;
}

.faq-info nav a.nav-link.active {
    color: #c5996a;
    font-weight: 600;
}

.faq-info .faq-section-block:nth-child(even) {
}

.faq-info .accordion {
    border-radius: 0;
    --bs-accordion-bg: unset;
    --bs-accordion-border-color: none;
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
}

.faq-info .accordion-item {
    border: 1px solid #ede3db;
}

.faq-info .accordion-header p {
}

.faq-info .accordion-header button {
    color: #5b5247;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.faq-info .accordion-body {
    border-bottom: 3px solid #ede3db;
    color: #5b5247a3;
}

.faq-info .accordion-body p {
    color: #5b5247a3;
    font-size: 14px;
}

.faq-info .accordion-body ul {
    margin: 0;
}

.faq-info .faq-section-block:nth-child(even) .accordion {
    /* --bs-accordion-bg: #e2d6cd; */
}

.faq-info .accordion-item:first-of-type > .accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.faq-info .accordion-button {
    font-size: 18px;
    font-weight: 500;
}

.faq-info .accordion-button:focus {
    box-shadow: none;
}

.faq-info .accordion-button:not(.collapsed) {
    background-color: unset;
    border-bottom: 1px solid #ede3db;
}

@media (max-width: 767px) {
    .faq-mobile-nav {
        -ms-overflow-style: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 20px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        z-index: 1020;
    }

    .faq-mobile-nav::-webkit-scrollbar {
        display: none;
    }

    .faq-info .accordion-header button {
        padding: 15px 10px;
    }
}

/* ========== Mini Cart ========== */

.widget_shopping_cart_content {
    background-color: #ffffff;
    color: #5b5247;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    height: 100%;
}

ul.woocommerce-mini-cart {
    flex-grow: 1;
    list-style: none !important;
    margin: 0 !important;
    overflow-y: auto;
    padding: 0 !important;
}

ul.woocommerce-mini-cart li.mini_cart_item {
    align-items: flex-start;
    border-bottom: 1px solid #eae5dd !important;
    display: flex;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 20px 0 !important;
    position: relative;
}

ul.woocommerce-mini-cart li.mini_cart_item a.remove {
    background: transparent !important;
    color: #ccc !important;
    font-size: 20px !important;
    font-weight: 300;
    height: auto !important;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 20px;
    width: auto !important;
}

ul.woocommerce-mini-cart li.mini_cart_item a.remove:hover {
    color: #e2401c !important;
}

.jy-cart-item-image {
    flex-shrink: 0;
    margin-right: 20px;
    width: 90px;
}

.jy-cart-item-image img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    height: 90px;
    width: 100%;
}

.jy-cart-bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 120px;
}

.jy-cart-item-image {
    flex-shrink: 0;
    margin-right: 10px;
    width: 100px;
}

.jy-cart-item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-right: 25px;
}

.jy-cart-item-info a.jy-cart-title {
    color: #4a4238;
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    text-decoration: none;
}

.jy-cart-item-info a.jy-cart-title img.jy-checkout-img {
    display: none;
}

.jy-cart-item-info dl.variation {
    color: #666666;
    font-size: 12px;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
}

.jy-cart-item-info dl.variation dt {
    color: #4a4238;
    font-weight: 600;
    margin-bottom: 2px;
}

.jy-cart-item-info dl.variation dd {
    margin: 0 0 5px 0;
}

.jy-cart-item-info dl.variation dt,
.jy-cart-item-info dl.variation dd {
    display: inline-block;
}

.jy-cart-item-info dl.variation dt p,
.jy-cart-item-info dl.variation dd p {
    font-size: 12px;
}

.jy-cart-item-info dl.variation p {
    margin: 0;
}

.jy-cart-item-info .quantity {
    color: #b28a5d;
    font-size: 14px;
    font-weight: 500;
    margin-top: auto;
}

.woocommerce-mini-cart__total {
    background-color: #ffffff;
    border-top: 1px solid #eae5dd !important;
    color: #4a4238;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    justify-content: space-between;
    margin: 0 !important;
    margin-top: auto !important;
    padding: 20px 0 10px 0 !important;
    position: relative;
    z-index: 10;
}

.woocommerce-mini-cart__buttons {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 !important;
    padding: 0 0 15px 0 !important;
    position: relative;
    z-index: 10;
}

.woocommerce-mini-cart__buttons a.button:not(.checkout) {
    background-color: #4a413899 !important;
    color: #ffffff !important;
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px !important;
    text-align: center;
    text-transform: none;
    transition: background-color 0.2s ease;
    width: 100%;
}

.woocommerce-mini-cart__buttons a.checkout {
    background-color: #4a4238 !important;
    color: #ffffff !important;
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px !important;
    text-align: center;
    text-transform: none;
    transition: background-color 0.2s ease;
    width: 100%;
}

.woocommerce-mini-cart__buttons a.checkout:hover {
    background-color: #332d26 !important;
}

.woocommerce-mini-cart__empty-message {
    color: #888888;
    padding: 30px 0;
    text-align: center;
}

@media (max-width: 768px) {
    /* ul.woocommerce-mini-cart li.mini_cart_item {
        flex-direction: column;
    } */

    .jy-cart-bg-img {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 150px;
    }

    .jy-cart-item-image {
        margin-bottom: 15px;
        margin-right: 10px;
        /* width: 100%; */
    }

    .jy-cart-item-info {
        padding-right: 0;
        width: 100%;
    }
}

/* ========== Post ========== */

article h1.jy-post-title {
    border-bottom: 1px solid #5b5247;
    padding: 0 0 10px;
    text-align: center;
}

.jy-post-content h1:last-of-type,
.jy-post-content h2:last-of-type,
.jy-post-content h3:last-of-type,
.jy-post-content h4:last-of-type,
.jy-post-content h5:last-of-type,
.jy-post-content h6:last-of-type {
    margin: 0 0 8px;
}

article p a {
    color: #5b5247;
    font-weight: 700;
}

/* ========== Footer ========== */

.jy-footer {
    background-color: #797a40;
    padding: 3rem 15px;
}

.jy-footer ul.social-media {
    align-items: center;
    display: flex;
    gap: 15px;
    margin: 20px 0 0;
    padding: 0;
}

.jy-footer ul.social-media li {
    list-style-type: none;
}

.jy-footer ul.social-media li img {
    width: 26px;
}

.jy-footer .footer-logo {
    max-width: 240px;
    width: 100%;
}

.jy-footer .footer-info h4 {
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.jy-footer .footer-info h4:nth-of-type(2) {
    margin: 30px 0 10px;
}

.jy-footer .footer-info p,
.jy-footer .footer-info p a {
    color: #ffffff;
    margin: 0 0 5px;
}

.jy-footer .footer-menu,
.jy-footer .footer-cert {
    text-align: right;
}

.jy-footer .footer-menu h4 {
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.jy-footer .footer-menu ul {
    margin: 0;
    padding: 0;
}

.jy-footer .footer-menu ul li {
    list-style-type: none;
    margin: 0 0 5px;
}

.jy-footer .footer-menu ul li a {
    color: #ffffff;
}

.jy-footer .footer-cert h4 {
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.jy-footer .footer-cert img {
    margin: 0 0 0 auto;
    max-width: 45px;
    width: 100%;
}

.jy-footer .jy-copy-right {
    padding: 4rem 0 0;
}

.jy-footer .jy-copy-right p {
    color: #ffffff;
}

.jy-footer .jy-copy-right .footer-docs ul {
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.jy-footer .jy-copy-right .footer-docs ul li {
    list-style-type: none;
}

.jy-footer .jy-copy-right .footer-docs ul li a {
    color: #ffffff;
}

@media all and (max-width: 991px) {
    .jy-footer {
        padding: 2rem 15px;
    }

    .jy-footer .footer-logo {
        max-width: 220px;
    }

    .jy-footer ul.social-media {
        margin: 20px 0 30px;
    }

    .jy-footer ul.social-media li img {
        width: 24px;
    }

    .jy-footer .footer-info h4,
    .jy-footer .footer-menu h4 {
        font-size: 16px;
    }

    .jy-footer .footer-cert,
    .jy-footer .footer-menu {
        margin: 20px 0 0;
        text-align: left;
    }

    .jy-footer .footer-cert img {
        max-width: 50px;
    }

    .menu-jyfood-lab-docs-container {
        margin: 20px 0 10px;
    }

    .jy-footer .jy-copy-right .footer-docs ul {
        justify-content: center;
    }

    .jy-footer .jy-copy-right .footer-docs ul li a {
        font-size: 14px;
    }

    .jy-footer .jy-copy-right p {
        text-align: center;
    }
}

@media all and (max-width: 767px) {
    .menu-jyfood-lab-docs-container {
        margin: 20px 0;
    }

    .jy-footer .jy-copy-right .footer-docs ul {
        display: block;
    }

    .jy-footer .jy-copy-right .footer-docs ul li {
        text-align: center;
    }

    .jy-footer .jy-copy-right .footer-docs ul li a {
        font-size: 14px;
    }
}

/* ========== Forminator Form ========== */

.forminator-row {
    margin: 0 0 10px !important;
}

.forminator-row input,
.forminator-row span,
.forminator-row textarea {
    border: none;
    border-style: none !important;
    font-family: "Lato", sans-serif;
    font-size: 14px !important;
}

.forminator-row input:focus,
.forminator-row select:focus,
.forminator-row textarea:focus {
    box-shadow: none;
    outline: none !important;
}

.forminator-select
    span.forminator-select-dropdown.forminator-dropdown--default.forminator-select-dropdown--below {
    background-color: #fff;
}

.forminator-select-dropdown-container--open
    .forminator-custom-form-282.forminator-dropdown--default
    .select2-results
    .select2-results__options
    .select2-results__option.select2-results__option--highlighted,
.forminator-ui#forminator-module-282.forminator-design--default
    .forminator-select2
    + .forminator-select
    .selection
    .select2-selection--single[role="combobox"]:focus {
    outline: none !important;
    outline-offset: none !important;
}

.forminator-select-dropdown-container--open
    .forminator-custom-form-282.forminator-dropdown--default
    .select2-results
    .select2-results__options
    .select2-results__option,
.forminator-select-dropdown-container--open
    .forminator-dropdown--multiple.forminator-custom-form-282.forminator-dropdown--default
    .select2-results
    .select2-results__options
    .select2-results__option
    span {
    font-size: 14px !important;
}

.forminator-row label {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin: 0 0 5px !important;
}

.forminator-ui .forminator-row.forminator-row-last {
    margin: 2rem 0 0 !important;
    text-align: center;
}

.forminator-ui .forminator-row.forminator-row-last button {
    background-color: #faf3ec !important;
    border: 1px solid #c5996a !important;
    border-radius: 50px !important;
    color: #c5996a;
    display: inline-block;
    max-width: 200px !important;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
    width: 100% !important;
    z-index: 1;
}

.forminator-ui .forminator-row.forminator-row-last button::after {
    background-color: #9e7e5d;
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
    width: 100%;
    z-index: -1;
}

.forminator-ui .forminator-row.forminator-row-last button:hover {
    border-color: #9e7e5d;
    color: #ffffff;
}

.forminator-ui .forminator-row.forminator-row-last button:hover::after {
    transform: scaleX(1);
}

.forminator-ui .forminator-error-message {
    background-color: #9e7e5d !important;
    color: #ffffff !important;
    font-family: "Lato", sans-serif;
    font-size: 12px !important;
}

.pac-container {
    z-index: 99999 !important;
}

/* ========== Checkout ========== */

#ship-to-different-address,
.woocommerce-billing-fields h3 {
    display: none !important;
}

.woocommerce-checkout .checkout .shipping_address {
    display: block !important;
}

.woocommerce-checkout-review-order td.product-name {
    padding: 15px 0 !important;
    vertical-align: middle;
}

.woocommerce-checkout-review-order-table td.product-name {
    align-items: start;
    column-gap: 15px;
    display: grid;
    grid-template-columns: 65px 1fr;
    grid-template-areas:
        "img info"
        "img var";
    row-gap: 2px;
}

span.jy-checkout-qty-badge {
    white-space: nowrap;
}

.jy-checkout-product-wrapper {
    align-items: center;
    display: flex;
    gap: 15px;
}

.jy-checkout-img {
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    grid-area: img;
    margin-top: 2px;
    object-fit: cover;
}

.jy-checkout-product-info {
    align-items: center;
    display: flex;
    grid-area: info;
    justify-content: space-between;
    width: 100%;
}

.woocommerce-checkout-review-order-table dl.variation {
    color: #737373;
    font-size: 12px;
    grid-area: var;
    line-height: 1.4;
    margin: 0 !important;
}

.jy-checkout-product-info .product-quantity {
    color: #888;
    font-size: 0.85em;
    font-weight: 400;
    margin-top: 4px;
}

.woocommerce-checkout .form-row {
    margin-bottom: 8px;
    position: relative;
}

.woocommerce-checkout .form-row input::placeholder,
.woocommerce-checkout .form-row textarea::placeholder {
    color: transparent !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    background-color: transparent !important;
    border-radius: 0 !important;
    border: 1px solid #d9d9d9 !important;
    box-shadow: none !important;
    font-size: 16px !important;
    height: 56px !important;
    padding: 24px 16px 8px 16px !important;
    transition: border-color 0.2s;
    width: 100%;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.woocommerce-checkout .form-row input.input-text:focus {
    border-color: #222 !important;
    outline: none !important;
}

.woocommerce-checkout .form-row label {
    color: #737373;
    font-size: 15px;
    left: 16px;
    line-height: 1;
    margin: 0;
    pointer-events: none;
    position: absolute;
    transition: all 0.2s ease-out;
    top: 20px;
    z-index: 10;
}

.woocommerce-checkout .form-row .select2-container .select2-selection--single {
    background-color: transparent !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 8px !important;
    height: 56px !important;
}

.woocommerce-checkout
    .form-row
    .select2-container
    .select2-selection__rendered {
    color: #222 !important;
    line-height: 22px !important;
    padding-bottom: 8px !important;
    padding-left: 16px !important;
    /*padding-top: 24px !important; */
}

.woocommerce-checkout
    .form-row
    .select2-container
    .select2-selection__placeholder {
    color: transparent !important;
}

.woocommerce-checkout .form-row .select2-container .select2-selection__arrow {
    height: 54px !important;
    right: 12px !important;
}

.woocommerce-checkout .form-row label {
    z-index: 100 !important;
}

.woocommerce-checkout .form-row label .required {
    color: #e22120;
}

.woocommerce-checkout .form-row.jy-float-label label {
    font-size: 11px;
    color: #737373;
    top: 8px;
}

.woocommerce-checkout .form-row .select2-container .select2-selection--single {
    border: 1px solid #d9d9d9 !important;
    border-radius: 0 !important;
    height: 56px !important;
    padding-top: 14px !important;
}

.woocommerce-checkout
    .form-row
    .select2-container
    .select2-selection__rendered {
    line-height: 38px !important;
    /*padding-left: 8px !important;*/
}

.woocommerce-checkout .form-row .select2-container .select2-selection__arrow {
    height: 54px !important;
    right: 10px !important;
}

form.checkout p.form-row {
    display: flex;
    flex-direction: column;
}

form.checkout p.form-row span input {
    width: 100%;
}

form.checkout h3 {
    margin: 0 0 15px;
}

form.checkout .jy-checkout-section .jy-payment-wrapper {
    background-color: #ffffff;
    padding: 10px;
}

form.checkout
    .jy-checkout-section
    .jy-payment-wrapper
    ul.wc_payment_methods.payment_methods.methods {
    margin: 0;
    padding: 0;
}

form.checkout
    .jy-checkout-section
    .jy-payment-wrapper
    ul.wc_payment_methods.payment_methods.methods
    li {
    list-style-type: none;
}

form.checkout
    .jy-checkout-section
    .jy-payment-wrapper
    ul.wc_payment_methods.payment_methods.methods
    li
    label
    img {
    margin: 0 0 10px !important;
    max-width: 300px;
    width: 100%;
}

p#shipping_state_field {
    margin-bottom: 13px;
}

p#shipping_state_field,
p#billing_state_field {
    width: 100%;
}

.billing-options label {
    font-family: "Lato", sans-serif;
    font-size: 15px;
}

td.product-total {
    max-width: 15%;
    /*     width: 100%; */
}

.woocommerce-checkout-review-order-table thead {
    display: none;
}

.woocommerce-checkout-review-order-table {
    border: none !important;
    margin: 0 !important;
    width: 100%;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    background: transparent !important;
    border: none !important;
    padding: 16px 0 !important;
}

.woocommerce-checkout-review-order-table .cart_item {
    border-bottom: 1px solid #eaeaea;
}

.woocommerce-checkout-review-order-table td.product-total {
    color: #333;
    font-weight: 500;
    text-align: right;
    vertical-align: middle;
}

.woocommerce-checkout-review-order-table dl.variation {
    color: #737373;
	display: flex;
	flex-direction: column;
    font-size: 13px;
    line-height: 1.4;
    margin: 8px 0 0 80px;
}

.woocommerce-checkout-review-order-table dl.variation dt,
.woocommerce-checkout-review-order-table dl.variation dd {
    display: inline-block;
    font-weight: normal;
    margin: 0 4px 4px 0;
}

.woocommerce-checkout-review-order-table dl.variation dd p {
    color: #555;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
}

.woocommerce-checkout-review-order-table tfoot th {
    color: #555;
    font-weight: normal;
    text-align: left;
}

.woocommerce-checkout-review-order-table tfoot td {
    text-align: right;
}

.checkout-sidebar {
    background-color: #c5996a0f;
}

.checkout-sidebar h3 {
    margin: 0 !important;
}

.woocommerce-checkout-review-order tr td,
.woocommerce-checkout-review-order tr th {
    font-family: "Lato", sans-serif;
    font-size: 14px;
}

.woocommerce-checkout-review-order-table .order-total .amount {
    color: #222;
    font-size: 1.4rem;
    font-weight: 700;
}

.woocommerce-checkout-review-order-table .order-total td,
.woocommerce-checkout-review-order-table .order-total th {
    border-top: 1px solid #ddd !important;
    padding-top: 24px !important;
}

.woocommerce-checkout-review-order-table .order-total th {
    color: #222;
    font-size: 1.1rem;
    font-weight: 600;
}

.woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals {
    width: 100%;
}

.woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals td {
    text-align: left;
    padding-top: 24px !important;
}

/*.woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals th {
    display: none !important;
}*/

#shipping_method {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

#shipping_method li {
    align-items: center;
    /* background-color: #fff; */
    border-bottom: 1px solid #d9d9d9;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    margin: 0 !;
    padding: 16px;
    transition: all 0.2s ease;
    width: 100%;
}

#shipping_method li:last-child {
	border-bottom: unset;
}

.cart_totals.calculated_shipping #shipping_method li {
    margin: 0 0 0 auto !important;
    max-width: 400px;
}

#shipping_method li:has(input:checked) {
    background-color: #fafafa;
    border-color: #222;
}

#shipping_method li:last-child {
    margin-bottom: 0;
}

#shipping_method input[type="radio"] {
    accent-color: #222;
    cursor: pointer;
    margin: 0 12px 0 0;
    transform: scale(1.2);
}

#shipping_method label {
    color: #333;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    width: 100%;
}

.jy-before-checkout-area .woocommerce-error,
.jy-before-checkout-area .woocommerce-info,
.jy-before-checkout-area .woocommerce-message {
    align-items: center;
    background-color: #f8f8f8 !important;
    border: 1px solid #e5e5e5 !important;
    border-top: 1px solid #e5e5e5 !important;
    box-shadow: none !important;
    color: #555;
    display: flex;
    padding: 16px 20px !important;
    margin: 0 0 20px;
}

.jy-before-checkout-area .woocommerce-info::before,
.jy-before-checkout-area .woocommerce-message::before {
    display: none !important;
}

.jy-before-checkout-area .woocommerce-info a {
    color: #222 !important;
    font-weight: 600;
    margin-left: 6px;
    text-decoration: underline;
}

.jy-before-checkout-area .checkout_coupon,
.jy-before-checkout-area .woocommerce-form-login {
    background-color: #fff;
    border: 1px solid #e5e5e5 !important;
    border-radius: 8px;
    margin-top: 12px;
    padding: 24px !important;
}

.jy-before-checkout-area .checkout_coupon {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 20px;
}

.jy-before-checkout-area .checkout_coupon p:first-child {
    margin-bottom: 8px;
    width: 100%;
}

.jy-before-checkout-area .checkout_coupon p.form-row-first {
    flex: 1;
    margin: 0;
}

.jy-before-checkout-area .checkout_coupon p.form-row-last {
    margin: 0;
    width: auto;
}

.jy-before-checkout-area .checkout_coupon input.input-text {
    border: 1px solid #d9d9d9 !important;
    border-radius: 6px !important;
    height: 48px !important;
    padding: 0 16px !important;
}

.jy-before-checkout-area .checkout_coupon button.button {
    background-color: #222 !important;
    border-radius: 6px !important;
    color: #fff !important;
    font-weight: 600;
    height: 48px !important;
    padding: 0 24px !important;
}

.jy-error-msg-content .woocommerce-error {
    background-color: unset;
}

.jy-error-msg-content .woocommerce-error li {
    border-bottom: 1px solid #cccccc;
    margin: 0 0 5px;
}

.jy-error-msg-content .woocommerce-error li,
.jy-error-msg-content .woocommerce-error li a {
    color: #e2401c;
    font-size: 16px;
    padding: 0 0 5px;
}

.jy-error-msg-content .woocommerce-error li:last-child {
    border-bottom: unset;
    padding: 0;
}

.woocommerce-checkout .woocommerce-notices-wrapper {
    margin: auto;
    max-width: 1000px;
}

.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
    padding: 10px;
}

.jyfood-delivery-table {
    font-size: 15px;
}

.jyfood-delivery-table th {
    background-color: #fafafa;
    border-bottom: 2px solid #eaeaea;
    color: #888;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    text-transform: uppercase;
}

.jyfood-delivery-table td {
    border-bottom: 1px solid #f5f5f5;
    color: #333;
    padding: 14px 24px;
    vertical-align: middle;
}

.jyfood-delivery-table tr:last-child td {
    border-bottom: none;
}

.jyfood-delivery-table .jy-free-tier {
    color: #797a40;
    font-weight: 600;
}

@media all and (max-width: 500px) {
    .woocommerce-checkout-review-order-table td.product-name {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .jy-checkout-product-info {
        margin: 0 0 -20px;
        font-weight: 700;
    }

    td.product-total {
        width: unset;
    }
}

/* ========== Cart ========== */

.woocommerce .jyfood-cart-wrapper {
    margin: auto auto 20px;
    max-width: 1600px;
    position: relative;
}

.woocommerce .jyfood-cart-wrapper .shop_table {
    border: none;
    border-collapse: collapse;
    width: 100%;
}

.woocommerce .jyfood-cart-wrapper .shop_table th {
    border-bottom: 2px solid #eaeaea;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 16px 12px;
    text-align: left;
    text-transform: uppercase;
}

.woocommerce .jyfood-cart-wrapper .shop_table td {
    border-bottom: 1px solid #f2f2f2;
    padding: 12px;
    vertical-align: middle;
}

.woocommerce .jyfood-cart-wrapper .product-name a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.woocommerce .jyfood-cart-wrapper .product-name .variation dt {
    font-size: 14px;
}

.woocommerce .jyfood-cart-wrapper .product-name a:hover {
    color: #000;
}

.woocommerce .jyfood-cart-wrapper .qty {
    border: 1px solid #ddd;
    font-size: 1rem;
    padding: 10px;
    text-align: center;
    width: 65px;
}

.woocommerce .jyfood-cart-wrapper .coupon .input-text {
    border: 1px solid #ddd;
    font-size: 14px;
    margin-right: 10px;
    padding: 12px 15px;
    width: calc(100% / 2);
}

.woocommerce .jyfood-cart-wrapper .coupon button {
    font-size: 14px;
}

.woocommerce .jyfood-cart-wrapper .button {
    background-color: #f2f2f2;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    transition: all 0.2s ease;
}

.woocommerce .jyfood-cart-wrapper .button:hover {
    background-color: #e2e2e2;
}

.cart-collaterals {
	background-color: #c5996a0f;
	border-radius: 8px;
	box-shadow: 0px 0px 15px 5px rgba(128,128,128,0.28);
	-webkit-box-shadow: 0px 0px 15px 5px rgba(128,128,128,0.28); 
    padding: 15px;
}

.woocommerce .jyfood-cart-wrapper .cart-collaterals h2 {
    border-bottom: 2px solid #eaeaea;
    font-size: 1.4rem;
    margin-bottom: 24px;
    padding: 14px 12px;
    text-transform: uppercase;
}

.woocommerce .jyfood-cart-wrapper .cart-collaterals .shop_table {
    margin-bottom: 30px;
}

.woocommerce .jyfood-cart-wrapper .cart-collaterals .shop_table th,
.woocommerce .jyfood-cart-wrapper .cart-collaterals .shop_table td {
    border-bottom: 1px solid #f2f2f2;
    padding: 16px 0;
}

.woocommerce .jyfood-cart-wrapper .cart-collaterals .shop_table th {
    font-size: 14px;
}

.woocommerce .jyfood-cart-wrapper .checkout-button {
    background-color: #111;
    color: #fff;
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
    width: 100%;
}

.woocommerce .jyfood-cart-wrapper .checkout-button:hover {
    background-color: #333;
}

.shop_table.shop_table_responsive .cart-subtotal td,
.shop_table.shop_table_responsive .order-total td,
.shop_table.shop_table_responsive .woocommerce-shipping-totals.shipping td {
    text-align: right;
}

.shop_table.shop_table_responsive .woocommerce-shipping-totals.shipping ul#shipping_method {
	display: none;
}

.shop_table.shop_table_responsive .woocommerce-shipping-totals.shipping ul#shipping_method li {
    padding: 12px;
}

.shop_table.shop_table_responsive .woocommerce-shipping-totals.shipping td p {
    margin: 10px 0 0;
}

.return-to-shop {
    text-align: center;
}

.return-to-shop p {
    margin: 0 0 20px;
}

.cou-update-btn {
    display: flex;
    justify-content: space-between;
}

tr.woocommerce-cart-form__cart-item.cart_item dd.variation-DeliveryDayPick-upDay {
	margin-right: 0;
}

@media all and (max-width: 767px) {
    .cou-update-btn {
        flex-direction: column;
        justify-content: center;
    }

    .cou-update-btn .coupon {
        display: flex;
    }

    .cou-update-btn .coupon input {
        width:;
    }

    .woocommerce .jyfood-cart-wrapper .coupon .button {
        margin: 0;
    }

    .woocommerce .jyfood-cart-wrapper .button {
        margin: 15px 0 0;
    }
	
	tr.woocommerce-cart-form__cart-item.cart_item dd.variation-DeliveryDayPick-upDay,
	tr.woocommerce-cart-form__cart-item.cart_item dd.variation-DeliveryTimePick-upTime,
	tr.woocommerce-cart-form__cart-item.cart_item dd.variation-BirthdayKit {
		margin-right: 0;
	}
	
	.woocommerce .jyfood-cart-wrapper .product-name .variation dt,
	tr.woocommerce-cart-form__cart-item.cart_item dd.variation-DeliveryDayPick-upDay p {
		font-size: 12px;
	}
	
	.woocommerce .jyfood-cart-wrapper .qty {
		border-radius: 8px;
		padding: 10px;
		width: 100%;
	}
}

/* ========== Account ========== */

.woocommerce-account .entry-content .woocommerce {
    display: flex;
    justify-content: center;
    margin: auto;
    max-width: 1600px;
}

.woocommerce-account
    .entry-content
    .woocommerce
    nav.woocommerce-MyAccount-navigation {
    max-width: 400px;
    width: 100%;
}

.woocommerce-account
    .entry-content
    .woocommerce
    .woocommerce-MyAccount-content {
    max-width: 1200px;
    width: 100%;
}

.woocommerce-account
    .entry-content
    .woocommerce
    nav.woocommerce-MyAccount-navigation
    ul {
    margin: 0 50px 0 auto;
    padding: 0;
}

.woocommerce-account
    .entry-content
    .woocommerce
    nav.woocommerce-MyAccount-navigation
    ul
    li {
    border: 1px solid #ede3db;
    border-bottom: 0;
    list-style: none;
    padding: 12px;
    transition: 0.2s;
}

.woocommerce-account
    .entry-content
    .woocommerce
    nav.woocommerce-MyAccount-navigation
    ul
    li:last-child {
    border-bottom: 1px solid #ede3db;
}

.woocommerce-account
    .entry-content
    .woocommerce
    nav.woocommerce-MyAccount-navigation
    ul
    li:hover {
    background-color: #ede3db;
}

.woocommerce-account
    .entry-content
    .woocommerce
    nav.woocommerce-MyAccount-navigation
    ul
    li.is-active {
    background-color: #ede3db;
}

.woocommerce-account
    .entry-content
    .woocommerce
    nav.woocommerce-MyAccount-navigation
    ul
    li
    a {
    color: #5b5247;
    display: flex;
    width: 100%;
}

.woocommerce-account
    .entry-content
    .woocommerce
    .woocommerce-MyAccount-content
    th {
    padding: 12px;
}

.woocommerce-account
    .entry-content
    .woocommerce
    .woocommerce-MyAccount-content
    thead {
    background-color: #ede3db;
}

.woocommerce-address-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.woocommerce-address-fields__field-wrapper .form-row {
    padding: 0 10px;
    margin-bottom: 10px;
    width: 100%;
}

.woocommerce-address-fields__field-wrapper .form-row-first,
.woocommerce-address-fields__field-wrapper .form-row-last {
    float: none !important;
    width: 50%;
}

.woocommerce-address-fields__field-wrapper .form-row-wide {
    float: none !important;
    width: 100%;
}

.woocommerce-address-fields__field-wrapper label {
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.woocommerce-address-fields__field-wrapper label .required {
    color: #e74c3c;
    text-decoration: none;
}

.woocommerce-address-fields__field-wrapper .input-text,
.woocommerce-address-fields__field-wrapper select {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: none;
    color: #333;
    font-size: 14px;
    padding: 12px;
    transition: all 0.2s ease;
    width: 100%;
}

.woocommerce-address-fields__field-wrapper .input-text:focus {
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
    outline: none;
}

.woocommerce-address-fields__field-wrapper
    .select2-container
    .select2-selection--single {
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    height: 52px;
}

.woocommerce-address-fields__field-wrapper
    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 50px;
    right: 10px;
}

.woocommerce-address-fields__field-wrapper
    .select2-container--focus
    .select2-selection--single {
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
}

@media (max-width: 768px) {
    .woocommerce-address-fields__field-wrapper .form-row-first,
    .woocommerce-address-fields__field-wrapper .form-row-last {
        width: 100%;
    }
}

.woocommerce-EditAccountForm {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.woocommerce-EditAccountForm .clear {
    display: none;
}

.woocommerce-EditAccountForm .form-row {
    float: none !important;
    margin-bottom: 10px;
    padding: 0 10px;
    width: 100%;
}

.woocommerce-EditAccountForm .form-row-first,
.woocommerce-EditAccountForm .form-row-last {
    width: 50%;
}

.woocommerce-EditAccountForm label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.woocommerce-EditAccountForm label .required {
    color: #e74c3c;
    text-decoration: none;
}

.woocommerce-EditAccountForm .input-text {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: none;
    color: #333;
    font-size: 14px;
    padding: 12px;
    transition: all 0.2s ease;
    width: 100%;
}

.woocommerce-EditAccountForm .input-text:focus {
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
    outline: none;
}

.woocommerce-EditAccountForm #account_display_name_description {
    color: #888;
    display: block;
    font-size: 0.85rem;
    margin-top: 8px;
}

.woocommerce-EditAccountForm fieldset {
    border: none;
    margin-bottom: 10px;
    margin-top: 20px;
    padding: 0 10px;
    width: 100%;
}

.woocommerce-EditAccountForm fieldset legend {
    border-bottom: 1px solid #eaeaea;
    color: #111;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    width: 100%;
}

.woocommerce-EditAccountForm > p:last-of-type {
    margin-top: 10px;
    padding: 0 10px;
    width: 100%;
}

.woocommerce-EditAccountForm .woocommerce-Button {
    background-color: #111;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    padding: 16px 30px;
    transition: background-color 0.2s ease;
}

.woocommerce-EditAccountForm .woocommerce-Button:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .woocommerce-account .entry-content .woocommerce {
        flex-direction: column;
        padding: 15px;
    }

    .woocommerce-account
        .entry-content
        .woocommerce
        nav.woocommerce-MyAccount-navigation {
        max-width: 100%;
    }

    .woocommerce-account
        .entry-content
        .woocommerce
        nav.woocommerce-MyAccount-navigation
        ul {
        margin: 0 0 40px;
    }

    .woocommerce-account
        .entry-content
        .woocommerce
        .woocommerce-MyAccount-content {
        max-width: 100%;
    }

    .woocommerce-EditAccountForm .form-row-first,
    .woocommerce-EditAccountForm .form-row-last {
        width: 100%;
    }
}

/* ========== WooCommerce Order Received ========== */

/* Custom Thank You */

.woocommerce-order {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin: 50px auto;
    max-width: 800px;
    padding: 40px 30px;
}

.woocommerce-order ul.woocommerce-order-overview {
    border-left: 2px solid #f7f7f7;
    border-top: 2px solid #f7f7f7;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.woocommerce-order ul.woocommerce-order-overview li {
    border-bottom: 2px solid #f7f7f7;
    border-right: 2px solid #f7f7f7;
    color: #888;
    flex: 1 1 200px;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 12px;
    text-transform: uppercase;
}

.woocommerce-order ul.woocommerce-order-overview li strong {
    color: #333;
    display: block;
    font-size: 15px;
    letter-spacing: normal;
    text-transform: none;
}

/* Failed Payment Styling */

.woocommerce-order .woocommerce-notice--error {
    background-color: #fffafb;
    border: 1px solid #ffccd5;
    border-left: 4px solid #d9534f;
    border-radius: 4px;
    color: #d9534f;
    margin-bottom: 20px;
    padding: 15px 20px;
}

.woocommerce-order .button.pay {
    background-color: #c5996a;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    display: inline-block;
    font-weight: 600;
    padding: 12px 30px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.woocommerce-order .button.pay:hover {
    color: #ffffff;
    opacity: 0.85;
}

/* ========== Order Details Table ========== */

.woocommerce-order-details {
    margin-top: 40px;
}

.woocommerce-order-details__title {
    color: #c5996a;
    font-size: 34px;
    margin-bottom: 10px !important;
}

.woocommerce-table--order-details {
    background-color: #ffffff;
    border-collapse: collapse;
    margin-bottom: 40px;
    width: 100%;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    border: 1px solid #eaeaea;
    font-size: 15px;
    padding: 12px;
    text-align: left;
    vertical-align: middle;
}

.woocommerce-table--order-details thead th {
    background-color: #fafafa;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    padding: 12px;
    text-transform: uppercase;
}

.woocommerce-table--order-details tfoot th {
    background-color: #fafafa;
    color: #555;
    text-align: right;
}

.woocommerce-table--order-details tfoot td {
    color: #333;
    font-weight: 600;
}

/* Order Details - Customer */

.woocommerce-customer-details {
    margin-top: 40px;
}

.woocommerce-columns--addresses {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    gap: 15px;
}

.woocommerce-columns--addresses div {
    width: calc(100% - 51%);
}

.woocommerce-column--billing-address,
.woocommerce-column--shipping-address {
    background-color: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    padding: 15px;
    width: 100%;
}

.woocommerce-column__title {
    border-bottom: 1px solid #eaeaea;
    color: #c5996a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.woocommerce-customer-details address {
    color: #555;
    font-size: 14px;
    font-style: normal;
    line-height: 1.8;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
    color: #333;
    font-weight: 600;
    margin-top: 10px;
}

td.woocommerce-table__product-name.product-name {
    display: flex;
    flex-direction: column;
}

td.woocommerce-table__product-name.product-name ul {
    margin: 0;
    padding: 0;
}

td.woocommerce-table__product-name.product-name ul li {
    font-size: 14px;
    list-style: none;
    margin: 0 0 3px;
}

td.woocommerce-table__product-name.product-name ul li p {
    font-size: 14px;
}

@media all and (max-width: 767px) {
    .woocommerce-columns--addresses {
        flex-direction: column;
    }

    .woocommerce-columns--addresses div {
        width: 100%;
    }
}

@media all and (max-width: 767px) {
    .woocommerce-cart-form__cart-item.cart_item {
		align-items: center;
		border-bottom: 1px solid #e2e2e2;
        display: grid !important;
		gap: 15px;
        grid-template-columns: 30px 110px 1fr; 
        grid-template-rows: auto auto auto auto;
        padding: 15px 0;
    }
	
    .woocommerce-cart-form__cart-item.cart_item td {
		border: none !important;
        display: block !important;
        padding: 0 !important;
        text-align: left !important;
		width: 100% !important;
    }

    .woocommerce-cart-form__cart-item.cart_item .product-remove {
        grid-column: 1;
        grid-row: 1 / 5;
        text-align: center !important;
    }

    .woocommerce-cart-form__cart-item.cart_item .product-thumbnail {
        grid-column: 2;
        grid-row: 1 / 5;
		height: 100%;
    }

    .woocommerce-cart-form__cart-item.cart_item .product-name {
        grid-column: 3;
        grid-row: 1;
    }
    
    .woocommerce-cart-form__cart-item.cart_item .product-price {
        grid-column: 3;
        grid-row: 2;
    }
    
    .woocommerce-cart-form__cart-item.cart_item .product-quantity {
        grid-column: 3;
        grid-row: 3;
        margin-top: 10px;
    }
    
    .woocommerce-cart-form__cart-item.cart_item .product-subtotal {
        grid-column: 3;
        grid-row: 4;
        margin-top: 5px;
    }

    .woocommerce-cart-form__cart-item.cart_item td::before {
        display: none !important;
    }
    
    .woocommerce-cart-form__cart-item.cart_item .product-thumbnail img {
		border-radius: 5px;
        height: auto;
		width: 100%;
    }
}

/* ========== Single Post ========== */

.single-post li {
	font-family: "Lato", sans-serif;
	font-size: 14px;
}

/* ========== It's to temporary style the payex checkbox ========== */

.woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px; /* Adds clean spacing between the box and the text */
    cursor: pointer;
    position: relative;
    z-index: 99; /* Forces the entire clickable area to the very top layer */
    margin-bottom: 20px;
}

/* 2. Force the native checkbox to be visible and functional */
.woocommerce-terms-and-conditions-wrapper input#terms {
    opacity: 1 !important; /* Prevents the theme from hiding it */
    position: relative !important;
    display: inline-block !important;
    width: 18px !important; /* Sets a consistent, tappable size */
    height: 18px !important;
    margin-top: 4px; /* Aligns the box nicely with the first line of text */
    pointer-events: auto !important; /* Overrides any block preventing clicks */
    flex-shrink: 0; /* Prevents the box from squishing on mobile screens */
}
