@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
body {
    color: var(--primary-color);
    font-family: 'Ubuntu', sans-serif !important;
    background-color: var(--primary-color) !important;
}

body.home {
    height: 100%;
}

body.catalog .content .main {
    padding-top: 80px;
}

.box-shadow {
    -webkit-box-shadow: 0px 0px 15px rgb(119, 112, 105);
    box-shadow: 0px 0px 15px rgb(119, 112, 105);
}

a:hover {
    color: none;
    text-decoration: none;
}

ul.breadcrumb {
    background-color: #ceced0;
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0;
}

ul.breadcrumb li {
    display: inline-block;
    text-transform: capitalize;
    font-size: 13px;
    margin-right: 3px;
    padding-right: 13px;
    position: relative;
    line-height: 1.5;
}

ul.breadcrumb li {
    position: relative;
}

ul.breadcrumb li a {
    color: #721c45;
}

ul.breadcrumb li:before {
    position: absolute;
    content: "/";
    right: 0;
    top: 50%;
    transform: translatey(-50%);
}

ul.breadcrumb li:last-child {
    margin-right: 0;
}

ul.breadcrumb li:last-child:before {
    display: none;
}

/* Menu */
.blur {
    filter: blur(25px);
    animation-name: example;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.medium-img {
    overflow: hidden;
}

.no-blur {
    filter: blur(0);
    transition: filter .5s .5s ease-in;
}

.top_bar {
    position: relative;
    padding: 15px 0;
}

#toggle-menu {
    top: 70px;
    left: 0px;
    padding: 10px 15px 4px;
    line-height: 1.5;
    text-decoration: none;
    font-size: 19px;
    z-index: 10;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-left: none;
    background: var(--primary-color);
    color: #fff;
    -webkit-box-shadow: 2px 0px 15px rgb(119, 112, 105);
    box-shadow: 2px 0px 15px rgb(119, 112, 105);
}

.header_top ul li {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

body .main_button {
    border: 1px solid #efdfe5;
    -webkit-box-shadow: 0px 0px 15px rgb(214, 207, 210);
    box-shadow: 0px 0px 15px rgb(214, 207, 210);
}

body .main_header {
    background: var(--primary-color);
}

.product {
    background: #f3f3f3;
    color: var(--primary-color);
}

.kvkk_cookie_policy {
    background: linear-gradient(60deg, var(--primary-color) 0%, #7d6a4d 100%);
}

body ul#menu li.active:after {

    border-right-color: #ED8A1D;
}

#toggle-menu .text {
    display: inline-block;
    /*float: left;*/
    line-height: 10px;
    height: 21px;
    font-weight: bold;
    vertical-align: middle;
}

#menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    padding: 0px;
    margin: 0;
    height: 100%;
    list-style: none;
    overflow-y: scroll;
    z-index: 10;
    /* Make sure the z-index is lower than the #page */
}

ul#menu li {
    position: relative;
}

ul#menu li ul {
    display: none;
}



ul#menu li i{
    display: none;
}

ul#menu li:not(.active) i{
    color: #fff;
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 10px;
    display: block;
}


ul#menu li a img {
    display: inline-block;
    max-width: 40px;
}

ul#menu li a span.name {
    padding-left: 10px;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    color: #ffffff;
}

#menu a {
    display: flex;
    font-size: 13px;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    padding: 15px;
    flex-flow: row;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    position: relative
}

#menu li.active>a {
    border-right: 3px solid #ececec;
    flex-direction: column;
    justify-content: initial;
    align-items: center;
    border-right-color: #ED8A1D;
}

#menu li.active>a span.name {
    margin-top: 10px;
    padding: 0;
    text-align: center;
    height: 40px;
    color: #ffffff;
}

ul#menu li.active>a img {
    filter: unset;
}

#menu li.active>a:after {
    right: 0;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-right-color: var(--primary-color);
    border-width: 5px;
    margin-top: -6px;
}

#menu li.active:after {
    right: 3px;
    top: 60px;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0, 0, 0, 0);
    border-right-color: #958A82;
    border-width: 5px;
    margin-top: -6px;
}

#menu li.active ul {
    display: block;
}

/* Animations */
/*body.catalog .catalog_container {
    padding-left:15px;
    padding-right:15px;
}*/
body.catalog .main {
    padding-top: 20px;
    padding-bottom: 20px;
}

#page {
    position: relative;
    z-index: 20;
    padding-bottom: 40px;
}

#page, #menu {
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}

/* Hide the menu unless it's animating or visible */
.animating #menu, .menu-visible #menu {
    display: block;
}

/***
* If the animating class is present then apply
* the CSS transition to #page over 250ms.
*/
.animating #page {
    transition: transform .25s ease-in-out;
    -webkit-transition: -webkit-transform .25s ease-in-out;
}

/***
* If the left class is present then transform
* the #page element 170px to the left.
*/
.animating.left #page {
    transform: translate3d(-170px, 0, 0);
    -webkit-transform: translate3d(-170px, 0, 0);
}

/***
* If the right class is present then transform
* the #page element 170px to the right.
*/
.animating.right #page {
    transform: translate3d(170px, 0, 0);
    -webkit-transform: translate3d(170px, 0, 0);
}

/***
* If the menu-visible class is present then
* shift the #page 170px from the right edge
* via position: absolute to keep it in the
* open position. When .animating, .left and
* .right classes are not present the CSS
* transform does not apply to #page.
*/
.menu-visible #page {
    left: 170px;
}

/* Icon 1 */

#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
    width: 30px;
    /* background: red; */
    height: 21px;
    position: relative;
    float: left;
    margin: 0;
    /*padding-top: 3px;*/
    display: flex;
    /* align-items: baseline; */
    justify-content: space-around;
    flex-direction: column;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
    /*display: block;*/
    /*position: absolute;*/
    height: 2px;
    width: 22px;
    background: #fefbf7;
    /*    border-radius: 9px;
        opacity: 1;
        left: 0;*/
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

/*#nav-icon1 span:nth-child(1) {
  top: 5.5px;
}

#nav-icon1 span:nth-child(2) {
  top: 10.6px;
}

#nav-icon1 span:nth-child(3) {
  top: 17.1px;
}*/

#nav-icon1.open span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
}

#nav-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#nav-icon1.open span:nth-child(3) {
    top: 10px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
}

.go_home {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: #fff;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

/*.Menu */
html {
    height: 100%;
}

.content {
    background: #ececec !important;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

body.home .content {
    background: #ececec !important;
    height: 100%;
    min-height: unset;
    float: none;
}

.home .banner {
    background-image: url(../../dist/img/home_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    height: 50%;
    position: relative;
    margin-bottom: 60px;

}

.body_menu {
    z-index: 5;
    position: absolute;
    width: 100%;
    display: -webkit-box;
    /* ESKÃ„Â°: Android browser, eski IOS.  */
    display: -ms-flexbox;
    /* ARA: IE 10 */
    display: flex;
    /* YENÃ„Â°, Chrome, Firefox, IE11, IOS7  */
    margin-top: auto;
    align-items: center;
    height: 45%;
}

body.home .logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
    transform: translateY(50%);
}

body.home .logo img {
    width: 50%;
    max-width: 150px;
    border-radius: 20px;
    background-color: var(--primary-color);
    padding: 0 10px;
    box-shadow: 0px 0px 5px rgb(64, 56, 56);
    -webkit-box-shadow: 0px 0px 5px rgb(64, 56, 56);
}

img {
    max-width: 100%;
}

.home_menu_button {
    margin: 0 auto 20px;
    display: block;
}

.home_menu_button a {
    display: block;
    margin: 0 auto;
    color: #000;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--primary-color);
    font-weight: 300;
    color: #fff;
    font-size: 18px;
    padding-bottom: 10px;
    border-radius: 30px;
    border: none;
    -webkit-box-shadow: 0px 0px 15px rgb(214, 207, 210);
    box-shadow: 0px 0px 15px rgb(214, 207, 210);
    max-width: 165px;
}

.main_button {
    border: 1px solid #958A82;
    padding: 10px 5px 8px;
    margin-bottom: 20px;
    font-size: 12px;
    border-radius: 6px;
    color: #5a5148;
    font-weight: 600;
    -webkit-box-shadow: 0px 0px 15px rgb(205, 198, 189);
    box-shadow: 0px 0px 15px rgb(177, 161, 141);
}

/* Home */
.transform_uppercase {
    text-transform: uppercase;
}

.ta-center {
    text-align: center;
}

.menu-icon {
    display: inline-block;
    margin-right: 20px;
    position: relative;
}

.menu-icon:last-child {
    margin: 0;
}

.menu-icon img {
    width: 75px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 0px 0px 7px #fff;
    border: 2px solid var(--primary-color);
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    position: relative;
}

.menu-icon .image-wrapper {
    position: relative;
}

.menu-icon .image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.menu-icon:hover img {
    background: #b29364;
}

/* .menu-icon.menu img {
    width: 110px;
} */
.menu-icon span {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 20px;
}

@media only screen and (min-width: 600px) {
    .home .banner:after {
        display: none;
    }

    body.home .logo {
        bottom: -28px;
    }

    body.home .logo img {
        width: 50%;
        /* max-width: 100px; */
    }

    /*     .menu-icon.menu img {
            width: 200px;
        } */
    .menu-icon img {
        width: 110px;
    }
}

.product {
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.product .detail {
    padding: 0 10px;
}

.product .detail span.name {
    display: block;
    text-align: center;
}

.product .image img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Fix for carousel images to maintain proper size on resize */
.related_products .product .image img {
    min-height: 150px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Ensure carousel items maintain proper width */
.related_products .owl-carousel .owl-item {
    min-width: 200px;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 768px) {
    .related_products .product .image img {
        min-height: 120px;
    }
    
    .related_products .owl-carousel .owl-item {
        min-width: 150px;
    }
}

@media (max-width: 576px) {
    .related_products .product .image img {
        min-height: 100px;
    }
    
    .related_products .owl-carousel .owl-item {
        min-width: 120px;
    }
}

.product .detail>span {
    margin-top: 10px;
}

.product .detail span.name {
    font-size: 15px;
    display: block;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-transform: capitalize;
}

.product .detail span.price {
    display: block;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
}

ul.pagination {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 20px 0;
}

ul.pagination li {
    margin-right: 10px;
}

ul.pagination li a {
    color: #fff;
    padding: 10px 11px 5px;
    border-radius: 10px;
    color: #fff;
    background: var(--primary-color);
    text-align: center;
    vertical-align: middle;
    font-size: 14px;
    -webkit-box-shadow: 0px 0px 15px rgb(119, 112, 105);
    box-shadow: 0px 0px 15px rgb(119, 112, 105);
}

ul.pagination li.current a {
    background: var(--primary-color);
}

.main_header {
    max-height: 50px;
    background: linear-gradient(60deg, #3e3a3a 0%, #77614b 100%);
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.main_header .logo {
    text-align: center;
}

.main_header .logo img {
    max-height: 50px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 0 10px;
    background: var(--primary-color);
}

.main_header .go_back {
    position: absolute;
    top: 9px;
    right: -2px;
    background: var(--primary-color);
    color: #fff;
    /* border-radius: 50%; */
    padding: 8px;
    padding-bottom: 6px;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    -webkit-box-shadow: 2px 0px 10px rgb(119, 112, 105);
    box-shadow: 2px 0px 10px rgb(119, 112, 105);
}

.no-border-radius {
    border-radius: 0 !important;
}

body.catalog .header_top {
    top: 6px;
}

.product_detail {
    margin: 0 auto;
}

.product_detail .detail span.product_name {
    text-transform: capitalize;
    font-weight: bold;
    font-size: 20px;
}

.product_detail .detail {
    text-align: center;
    margin: 20px 0;
    color: #332525;
}

.product_detail .detail .bordered_area {
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding: 10px 30px 7px;
    position: relative;
    margin-bottom: 20px;
}

.product_detail .detail .bordered_area:before {
    content: "";
    position: absolute;
    top: -21px;
    left: calc(50% - 10px);
    border: solid transparent;
    border-color: rgba(0, 0, 0, 0);
    border-bottom-color: var(--primary-color);
    border-width: 10px;
    height: 0;
    width: 0;
    pointer-events: none;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.product_detail .detail .bordered_area:after {
    content: "";
    position: absolute;
    bottom: -21px;
    left: calc(50% - 10px);
    border: solid transparent;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: var(--primary-color);
    border-width: 10px;
    height: 0;
    width: 0;
    pointer-events: none;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.product_detail .detail span.product_name {
    text-transform: capitalize;
    margin: 0 auto;
    text-align: center;
}

.product_detail .detail span.product_price {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.product_detail .detail span.product_description {
    display: block;
    text-align: justify;
    padding: 0 10px;
    line-height: 1.5;
}

body.catalog h2 {
    font-weight: bold;
    font-size: 20px;
    color: #332525;
    text-transform: uppercase;
    margin: 20px 0;
    text-align: center;
}

.related_products {
    padding: 0 15px;
    max-width: 100%;
}

.related_products .product {
    margin-bottom: 0;
}

.related_products .owl-carousel .owl-stage-outer {
    padding-bottom: 30px;
}

/* Additional fixes for carousel responsiveness */
.related_products .owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.related_products .owl-carousel .owl-item {
    display: flex;
    flex-direction: column;
    height: auto;
}

.related_products .product {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related_products .product .image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.related_products .owl-carousel .owl-nav {
    top: 40%;
    outline: none;
}

.related_products .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .related_products .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    background: var(--primary-color) !important;
    line-height: 46px !important;
    outline: none;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    outline: none !important;
}

.related_products .owl-carousel.owl-theme .owl-dots .owl-dot:hover span, .owl-carousel.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-color) !important;
    outline: none !important;
}

.main.category h1 {
    display: block;
    width: 100%;
    color: #24211d;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    /* margin-top: 70px; */
    margin-bottom: 30px;
    z-index: 20;
    padding: 0 15px;
    line-height: 1.5;
}

.fancybox-inner {
    line-height: 2;
    text-align: justify;
}

.copyright {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #ececec;
    width: 100%;
    z-index: 199;
    color: #727372;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* line-height: 21px; */
    vertical-align: middle;
    font-size: 13px;
    box-shadow: 0px 0px 4px rgb(214, 207, 210);
}

.copyright img {
    width: 53px;
    display: inline;
}

a:hover {
    color: #000000 !important;
}

.category-box .image img {
    object-fit: cover !important;
    height: 145px !important;
    border: 0.5rem solid #fff !important;
}

.allergen img {
    width: 800px;
}

@media only screen and (max-width: 600px) {
    .allergen img {
        max-width: 100px !important;
    }
}


.marqueX{
    position: absolute;
    bottom: 38px;
    z-index: 10000;
    /* border: 1px solid #6D4C34; */
    padding: 7px 0px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    width:100%;
}


/* CSS Variables for consistent theming */
:root {
    --primary-color: #D4AF37;
    --secondary-color: #2d3748;
    --accent-color: #e74c3c;
    --text-color: #2d3748;
    --light-bg: #f8f9fa;
}

/* Nutritional Information Styles */
.nutrition-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.nutrition-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.nutrition-item strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.nutrition-item span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* RTL Support for Nutrition Items */
[dir="rtl"] .nutrition-item {
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

[dir="rtl"] .nutrition-item:hover {
    transform: translateX(-5px);
}

/* Exercise Information Styles */
.exercise-item {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.exercise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, var(--primary-color), #b8941f);
    color: white;
}

.exercise-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.exercise-item:hover i {
    color: white;
    transform: scale(1.1);
}

.exercise-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.exercise-item:hover strong {
    color: white;
}

.exercise-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.exercise-item:hover span {
    color: rgba(255,255,255,0.9);
}

/* Item Properties Styles */
.properties-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.property-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
    border: 2px solid transparent;
}

.property-badge i {
    font-size: 1.1rem;
}

/* Property Badge Types */
.property-badge.vegan {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
}

.property-badge.spicy {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    border-color: #dc3545;
}

.property-badge.chef-special {
    background: linear-gradient(135deg, var(--primary-color), #ffc107);
    color: white;
    border-color: var(--primary-color);
}

.property-badge.new {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
    color: white;
    border-color: #17a2b8;
}

.property-badge.featured {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: white;
    border-color: #6f42c1;
}

.property-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Allergen Styles */
.allergen {
    transition: all 0.3s ease;
}

.allergen:hover {
    transform: translateY(-5px);
}

.allergen img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.allergen:hover img {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.allergen .name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nutrition-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .nutrition-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .exercise-item {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .exercise-item i {
        font-size: 2rem;
    }
    
    .properties-grid {
        gap: 10px;
    }
    
    .property-badge {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .allergen img {
        width: 40px;
        height: 40px;
    }
    
    .allergen .name {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .nutrition-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .exercise-item {
        padding: 12px 8px;
    }
    
    .property-badge {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

#menu, .top_bar, .owl-carousel, .marque{
    direction: ltr!important;
}



.parent {
    width: 1000px;
    max-width: 100%;
    height: auto;
    margin: 100px auto;
    outline: 1px solid white;
    background: blue;
    overflow: hidden;
    visibility: hidden;
    transform: rotate(-115deg);
    position: relative;
}

.parent:before {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
}

.parent .child {
    width: 100%;
    height: 100%;
    background: #6FB3B1;
    transform: rotate(60deg);
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.parent .child .grandchild {
    width: inherit;
    height: 100%;
    background: #6FB3B1;
    visibility: visible;
    overflow: hidden;
    transform: rotate(60deg);
}

.parent .child .grandchild iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: inherit;
    height: inherit;
    visibility: visible;
}

.parent-video {
    position: absolute;
    left: -25%;
    right: 100%;
    top: 14%;
}

.parent-image {
    position: absolute;
    left: 26%;
    right: 100%;
    top: -20%;
}

.parent-image img {
    border-style: none;
    rotate: -5deg;
    object-fit: contain;
    width: 82%;
    right: 0%;
    position: absolute;
}

.parent-video video {
    border-style: none;
    rotate: -5deg;
    object-fit: contain;
    width: 58%;
    right: 17%;
    position: absolute;
    top: -26%;
}

@media (max-width: 575.98px) {
    .parent-video {
    position: absolute;
    left: -26%;
    right: 100%;
    top: -5%;
    }

    .parent-image {
    position: absolute;
    left: 26%;
    right: 100%;
    top: -31%;
    }

    .parent-image img {
    border-style: none;
    rotate: -5deg;
    object-fit: contain;
    width: 82%;
    right: 0%;
    position: absolute;
    }

    .parent-video video {
    border-style: none;
    rotate: -5deg;
    object-fit: contain;
    width: 58%;
    right: 17%;
    position: absolute;
    top: -26%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .parent-video {
    position: absolute;
    left: -25%;
    right: 100%;
    top: 14%;
    }

    .parent-image {
    position: absolute;
    left: 26%;
    right: 100%;
    top: -20%;
    }

    .parent-image img {
    border-style: none;
    rotate: -5deg;
    object-fit: contain;
    width: 82%;
    right: 0%;
    position: absolute;
    }

    .parent-video video {
    border-style: none;
    rotate: -5deg;
    object-fit: contain;
    width: 58%;
    right: 17%;
    position: absolute;
    top: -26%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .parent-video {
    position: absolute;
    left: -25%;
    right: 100%;
    top: 14%;
    }

    .parent-image {
    position: absolute;
    left: 27%;
    right: 100%;
    top: -21%;
    }

    .parent-image img {
    border-style: none;
    rotate: -5deg;
    object-fit: contain;
    width: 82%;
    right: 0%;
    position: absolute;
    }

    .parent-video video {
    border-style: none;
    rotate: -5deg;
    object-fit: contain;
    width: 58%;
    right: 17%;
    position: absolute;
    top: -26%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .parent-video {
    position: absolute;
    left: -25%;
    right: 100%;
    top: 14%;
    }

    .parent-image {
    position: absolute;
    left: 26%;
    right: 100%;
    top: -20%;
    }

    .parent-image img {
    border-style: none;
    rotate: -5deg;
    object-fit: contain;
    width: 82%;
    right: 0%;
    position: absolute;
    }

    .parent-video video {
    border-style: none;
    rotate: -5deg;
    object-fit: contain;
    width: 58%;
    right: 17%;
    position: absolute;
    top: -26%;
    }
}

@media (min-width: 1200px) {
    .parent {
    transform: rotate(-120deg);
    }

    .parent-video {
    position: absolute;
    left: 0%;
    right: 100%;
    top: -10%;
    }

    .parent-image {
    position: absolute;
    left: 48%;
    right: 100%;
    top: -10%;
    }

    .parent-image img {
    rotate: 0deg;
    }

    .parent-video video {
    rotate: 0deg;
    }
}

/* Price Info Container Styles */
.price-info-container {
    background: var(--primary-color);
    display: flex;
    color: #fff;
    font-family: "ITC Avant Garde Pro Mk", sans-serif;
}

.price-info-container .imageSection {
    width: 55%;
    display: flex;
}

.price-info-container .imageSection .image {
    width: 40%;
    display: flex;
}

.price-info-container .imageSection .image img {
    display: block;
    margin: auto;
    width: 100%;
}

.price-info-container .imageSection .datePrice {
    width: 60%;
    margin: auto;
}

.price-info-container .imageSection .datePrice p,
.price-info-container .imageSection .datePrice h3 {
    margin: 0;
    margin-bottom: 5px;
    text-align: center;
    margin-top: 5px;
    font-size: 12px;
}

.price-info-container .infoSection {
    width: 50%;
    padding-top: 15px;
    border-left: 2px solid var(--primary-color);
}

.price-info-container .infoSection p {
    margin: 0;
    margin-bottom: 5px;
    text-align: center;
    font-size: 11px;
}