@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

:root {
    --header-color: #222222;
    --background: #f8f8f8 !important;
    --text-gray: #666666 !important;
    --theme-color: #D00034;
    --header-color-light: #2f2f2f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-125 {
    padding-top: 125px;
}

.pb-125 {
    padding-bottom: 125px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pl-140 {
    padding-left: 140px;
}

.pr-140 {
    padding-right: 140px;
}

.text-grey {
    color: var(--dark-grey)
}

.text-red {
    color: var(--secondary)
}

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'SF Pro Display', sans-serif !important;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    background: var(--background) !important;
}

body.menu-active {
    overflow: hidden;
}

main {
    min-height: calc(100dvh - 175px);
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.pointer {
    cursor: pointer;
}

a,
a:hover {
    text-decoration: none !important;
    transition: 400ms !important;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}



/* header */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: var(--background);
    height: 75px;
    transition: 400ms;
    /*transition-delay: 800ms;*/
}

a.prev-button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 22px;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #fff !important;
}

.menu-active header {
    height: 100%;
    transition: 400ms;
}

.header {
    height: 75px;
    background: var(--header-color);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 99;
    position: relative;
}

a.header-logo img {
    width: 100%;
    height: 35px;
    object-fit: contain;
    transition: 400ms;
}

.menu-active a.header-logo img {
    height: 50px;
    transform: translateY(10px);
    transition: 400ms;
}

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

button.menu-button {
    border: none;
    background: none;
    height: 100%;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    flex-direction: column;
}

button.menu-button span {
    background: white;
    height: 2px;
    margin: 3px 0;
    border-radius: 5px;
    transition: 600ms;
}

button.menu-button .line-sm {
    width: 13px;
}

button.menu-button .line-md {
    width: 18px;
}

body.menu-active button.menu-button .line-sm {
    width: 18px;
    transform-origin: left;
    transform: rotate(45deg) translate(-2px, 0px);
    transition: 600ms;
}

body.menu-active button.menu-button .line-md {
    width: 18px;
    transform-origin: left;
    transform: rotate(-45deg) translate(-3px, 1px);
    transition: 600ms;
}


.menu-title {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--header-color);
    border-radius: 0;
    /* border-radius: 0 0 40px 40px; */
    transform: translateY(-100%);
    z-index: 9;
    position: relative;
    transition: 600ms;
}

.menu-active .menu-title {
    transform: translateY(-1px);
    border-radius: 0 0 40px 40px;
    transition: 600ms;
}

.menu-title span {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}


.header-menu {
    pointer-events: none !important
}

.menu-active .header-menu {
    pointer-events: unset !important
}


.header-menu-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: calc(100% - 75px);
    padding: 50px 35px;
    transition: 600ms;
    /*transition-delay: 400ms;*/
    transform: translateY(calc(-100% - 75px));
}

.menu-active .header-menu-content {
    transition: 600ms;
    /*transition-delay: 400ms;*/
    transform: translateY(0);
}

.header-menu-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.header-menu-content ul li a {
    width: 100%;
    height: 50px;
    background: #fff;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    padding-left: 25px;
    padding-right: 15px;
    border-radius: 12px;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    transition: 400ms;
}

.header-menu-content ul li a:hover {
    color: #fff;
    background: var(--theme-color);
    transition: 400ms;
}

.header-menu-content ul li {
    margin: 10px 0;
}

a.header-cart {
    margin-right: 5px;
    position: relative;
}

span.header-cart-count {
    color: #fff;
    font-size: 7px;
    position: absolute;
    right: 0px;
    top: 2.5px;
    font-weight: 100;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* header */


/* main */

main {
    margin-top: 75px;
    padding: 25px 0;
}

/* main */


/* search */

form.search-form {
    display: flex;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px 15px;
}

form.search-form input {
    width: 95%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

form.search-form button {
    border: none !important;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 20px;
    color: #d5d5d5;
    transition: 400ms;
}

form.search-form:has(input:focus) button {
    color: var(--theme-color);
    transition: 400ms;
}

form.search-form input,
form.search-form input::placeholder {
    font-size: 14px;
    color: #d5d5d5;
}

form.search-form input {
    color: var(--text-gray);
}

.search {
    margin-bottom: 25px;
}

/* search */

/* item */

.m-resize {
    margin-left: -.5rem !important;
    margin-right: -.5rem !important;
}

a.list-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    color: #3d3533 !important;
}

a.list-item .image img {
    height: 120px;
    width: 100%;
    object-fit: cover;
}

a.list-item .image {
    width: 100%;
}

a.list-item .content {
    padding: 10px 15px 20px 15px;
}

a.list-item .title {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px !important;
    display: block;
    margin-bottom: 10px;
    height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

a.list-item .price {
    display: flex;
    align-items: flex-end;
}

a.list-item .price .current {
    font-size: 14px;
    font-weight: bold;
    color: var(--theme-color);
    margin-right: 5px;
    line-height: 1;
}

a.list-item .price .old {
    font-size: 10px;
    font-weight: 500;
    color: #bbbbbb;
    text-decoration: line-through;
    line-height: 1;
}

/* item */

/* item-lg */

.item-lg a.list-item .image img {
    height: 150px;
}

.item-lg a.list-item .title {
    font-size: 14px;
    line-height: 18px !important;
    height: 36px;
}

.item-lg a.list-item .content {
    padding: 10px 15px 5px 15px;
}

.item-lg a.list-item .price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.item-lg a.list-item .price .current {
    margin-right: 0px;
    margin-left: 5px;
    font-size: 16px;
}

.item-lg a.list-item .price .old {
    font-size: 12px;
}

/* item-lg */


/* item-sm */

.item-sm a.list-item .image img {
    height: 105px;
}

.item-sm a.list-item .content {
    padding: 10px 15px 5px 15px;
}

/* item-sm */

/* dark-item */

.dark-item a.list-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    justify-content: flex-end;
}

.item-lg.dark-item a.list-item {
    height: 200px;
}

.item-sm.dark-item a.list-item {
    height: 150px;
}

.dark-item a.list-item .title {
    margin-bottom: 5px;
}

.dark-item a.list-item:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 75%;
    background: linear-gradient(0deg, #000000c9, transparent);
}

.dark-item a.list-item img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    position: absolute;
}

.dark-item a.list-item .content {
    width: 100%;
}

.dark-item a.list-item .title {
    color: #fff;
    z-index: 9;
    position: relative;
}


/* dark-item */


/* popular-slider */

/* .popular-slider {
    padding-left: 15px;
} */

.owl-stage {
    padding-left: 0px !important;
}

.popular-slider .owl-dots {
    display: flex !important;
    height: 35px;
    justify-content: center;
    align-items: center;
}

.popular-slider .owl-dots button {
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background: #d9d9d9 !important;
    margin: 0 2px;
    transition: 400ms;
}

.popular-slider .owl-dots button.active {
    background: var(--theme-color) !important;
    transition: 400ms;
}

/* popular-slider */

/* footer */

footer {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    border-radius: 12px 12px 0 0;
    /*height: 115px;*/
    /*padding-top: 15px;*/
    min-height: 100px;
    padding: 10px 0;
}

.footer-content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-socials .title {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
}

.footer-socials ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin-top: 8px;
    margin-bottom: 5px;
}

.footer-socials ul a {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    margin: 0 5px;
    color: var(--theme-color);
    font-size: 14px;
}

/* footer */


/* list-page */

.list-title h1 {
    font-size: 18px;
    font-weight: bold;
    color: #1C1310;
    margin: 0 !important;
}

.list-title {
    margin: 15px 0 10px 0;
}

/* list-page */


/* detail-page */

main:has(.detail-page) {
    margin: 0;
    padding: 0;
}

.detail-content .line {
    width: 115px;
    height: 2px;
    background: #D9D9D9;
    transform: translate(-50%, -25px);
    left: 50%;
    position: absolute;
}

.detail-page .detail-big-image img {
    width: 100%;
    height: 70dvh;
    object-fit: cover;
}

.detail-page .detail-content {
    background: #fff;
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    min-height: calc(30dvh + 40px);
    padding: 50px 25px 100px 25px;
    position: relative;
    z-index: 9;
}

.detail-page .detail-content .title {
    font-size: 20px;
    font-weight: bold;
    color: #1C1310;
    margin: 0;
}

.detail-page .detail-content .description {
    margin-top: 15px;
    margin-bottom: 10px;
}

.detail-page .detail-content .description p {
    color: #1C1310;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

.theme-button,
a.go-previous {
    background: var(--theme-color);
    width: 100%;
    height: 55px;
    border-radius: 12px;
    border: none !important;
    outline: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff !important;
    margin-top: 25px;
}

.detail-page .detail-content .price {
    display: flex;
    align-items: flex-end;
}

.detail-page .detail-content .price .current {
    font-size: 24px;
    font-weight: bold;
    color: var(--theme-color);
    margin-right: 10px;
    line-height: 1;
}

.detail-page .detail-content .price .old {
    font-size: 18px;
    font-weight: 500;
    color: #bbbbbb;
    text-decoration: line-through;
    line-height: 1;
}

.add-cart-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    z-index: 9;
    background: #fff;
    box-shadow: 0px 2px 48px #00000038;
    display: flex;
    align-items: center;
}

button.theme-button.add-cart-button {
    margin: 0;
}

.quantity-area {
    display: flex;
    height: 55px;
    background: #F8F8F8;
    border-radius: 12px;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.quantity-area input {
    width: 35%;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.quantity-area button {
    border: none !important;
    outline: none !important;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    color: #fff !important;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 0 !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
}

.quantity-area button.passive {
    background: #C6C6C6;
}

/* detail-page */

/* filters */

div#filters {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    overflow: auto;
    margin-bottom: 10px;
}

button.filter-button {
    border: none;
    background: #fff;
    outline: none;
    height: 35px;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    white-space: nowrap;
}

button.filter-button:not(:last-child) {
    margin-right: 10px;
}

button.filter-button.selected {
    color: #fff;
    background: var(--theme-color);
}


::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

body {
    -webkit-overflow-scrolling: touch;
}

/* filters */


/* language */
.header-lang .other-langs ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.other-langs {
    position: absolute;
    margin-top: 5px;
    background: var(--header-color-light);
    border-radius: 4px;
    padding: 5px;
    opacity: 0;
    transition: 400ms;
}

.header-lang.active .other-langs {
    opacity: 1;
    transition: 400ms;
}

.active-lang {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--header-color-light);
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
}

.active-lang .icon {
    margin-left: 5px;
}

.header-lang img:not(.icon) {
    width: 21px;
    height: 21px;
    object-fit: cover;
    border-radius: 3px;
}

.other-langs li:not(:last-child) {
    padding-bottom: 4px;
}

.other-langs li a {
    display: flex;
    align-items: center;
    justify-content: center;

}

/* language */

/* 404 */

.error-image {
    margin: 35px 0;
}

.error-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    text-align: center;
}

.error-content .title {
    font-size: 18px;
    font-weight: 900;
    color: #1C1310;
    margin-bottom: 10px;
}

.error-content .description p {
    color: #1C1310;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    max-width: 375px;
}

.error-content a.go-previous {
    margin: 50px 0;
    max-width: 400px;
}


/* 404 */

/* splash */

#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--header-color);
    z-index: 999999;
    top: 0;
}

div#splash-content .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

div#splash-content .content .logo {
    height: calc(50dvh + 40px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

div#splash-content .content .logo img {
    height: 40px;
}

div#splash-content .content .animation {
    height: calc(50dvh - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* splash */


/* food-features */

.includes {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.includes .item:last-child {
    margin-right: 0;
}

.includes .item {
    flex: 0 0 calc((100% / 5) - (5px - (5px / 5)));
    box-sizing: border-box;
    margin-right: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: #F8F8F8;
    min-height: 75px;
    height: auto;
    border-radius: 8px;
    position: relative;
    aspect-ratio: 58 / 75;
}

.food-features {
    margin-top: 25px;
}


.includes .item .item-image {
    display: flex;
    align-items: flex-start;
}

.includes .item .item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.includes .item .item-image img {
    height: 28px;
    width: 100%;
    object-fit: contain;
}

.includes .item .item-content * {
    font-size: 10px;
    line-height: 1;
}

.includes .item .item-content strong {
    font-weight: 600;
}

.includes .item .item-content span {
    font-weight: 300;
}

.includes .item.not-included .item-content * {
    color: #666666;
}

.includes .item.included .item-content * {
    color: var(--theme-color);
}


.nutritional-values {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
    margin-top: 10px;
}

.nutritional-values .item:last-child {
    margin-right: 0;
}


.nutritional-values .item {
    flex: 0 0 calc((100% / 5) - (5px - (5px / 5)));
    box-sizing: border-box;
    margin-right: 5px;
    background: #F8F8F8;
    min-height: 75px;
    height: auto;
    border-radius: 8px;
    position: relative;
    aspect-ratio: 58 / 75;
    overflow: hidden;
}

.nutritional-values .item * {
    z-index: 9;
}

.nutritional-values .item.per-portion-item {
    background: #666666;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.nutritional-values .item.per-portion-item * {
    color: #fff;
}

.nutritional-values .item.per-portion-item span.portion-value {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.nutritional-values .item.per-portion-item span.unit {
    font-size: 10px;
    font-weight: lighter;
}

.nutritional-values .item.per-portion-item span.portion-title {
    font-size: 8px;
    font-weight: 400;
}

.nutritional-values .item .value span.portion-value {
    font-size: 18px;
    font-weight: bold;
    color: #666666;
}

.nutritional-values .item .value span.unit {
    font-size: 10px;
    font-weight: lighter;
    color: #666666;
}

.nutritional-values .item .item-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nutritional-values .item .nutrition span {
    color: #B9B9B9;
    font-size: 8px;
    font-weight: 100;
}

.nutritional-values .item .nutrition,
.nutritional-values .item .percentage {
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nutritional-values .item .percentage span {
    color: #666666;
    font-size: 12px;
    font-weight: 500;
}

.item-content-after .content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.item-content-after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    height: 96%;
    background: var(--theme-color);
}

.item-content-after .content * {
    color: #fff !important;
}

.item.nutrition-value-item .value {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    line-height: 1;
}

.slider-dots {
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-dots .dot {
    height: 5px;
    width: 5px;
    border-radius: 100%;
    background: #d9d9d9 !important;
    margin: 0 2px;
    transition: 400ms;
}

.slider-dots .dot.active {
    background: var(--theme-color) !important;
}

/* food-features */

/* cart */

.cart-content {
    min-height: calc(100dvh - 420px);
}

.cart-item {
    display: flex;
    background: #fff;
    height: 110px;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
}

.cart-item .item-image {
    max-width: 33%;
    width: 100%;
}

.cart-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item .item-content {
    padding: 10px 10px 10px 15px;
    width: 67%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item .item-title {
    max-width: 90%;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1C1310 !important;
}

.content-top {
    display: flex;
    align-content: flex-start;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

button.remove-item {
    height: 10px;
    width: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none !important;
    margin: 0;
    padding: 0;
}

.content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item .quantity-area {
    height: 35px;
    width: 75px;
}

.cart-item .quantity-area button {
    width: 16px;
    height: 16px;
    font-size: 15px;
}

.cart-item .quantity-area input {
    font-size: 14px;
    width: 35%;
}

.cart-item .price span {
    color: var(--theme-color);
    font-size: 16px;
    font-weight: bold;
}

.cart-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cart-bottom .cart-total-line {
    height: 1px;
    width: 60px;
    background: #D9D9D9;
    margin: 10px 0;
}

.cart-total {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cart-total span:not(.total-price) {
    font-size: 16px;
    font-weight: 400;
    color: #C6C6C6;
}

.cart-total .total-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-color);
}

div#orderConfirmation {
    z-index: 999999;
}

.modal-backdrop.show {
    opacity: .7 !important;
    z-index: 99999 !important;
}

.modal-dialog {
    margin: 1.5rem !important;
}

.modal-content {
    border: none !important;
    outline: none !important;
    border-radius: 18px !important;
    overflow: hidden;
    background: var(--theme-color) !important;
}

.modal-top {
    padding: 20px 25px;
}

.modal-top .modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.modal-top button.close {
    opacity: 1 !important;
}

.modal-top button img {
    width: 13px;
}

.order-modal-content {
    padding: 25px;
    background: #fff !important;
    border-radius: 18px !important;
}

p.order-modal-text {
    font-size: 14px;
    line-height: 1.4;
    color: #1C1310;
}

.order-modal-content .order-confirmation-input {
    background: #F8F8F8;
    width: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    height: 55px;
    border-radius: 12px;
    padding: 15px;
    font-size: 13px;
    color: #1C1310;
    margin-bottom: 20px;
}

.order-modal-content textarea.order-confirmation-input {
    min-height: 100px;
}

.order-modal-content .order-confirmation-input::placeholder {
    font-size: 13px;
    color: #B9B9B9;
}

.order-modal-content button {
    margin: 0;
}

/* cart */

/* order-success */

.button-passive {
    background: #B9B9B9;
}

.order-success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    text-align: center;
    padding-top: 50px;
}

.order-success-content img {
    margin-bottom: 25px;
    width: 130px;
    object-fit: contain;
}

.order-success-content span {
    font-size: 24px;
    font-weight: bold;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.order-success-content p {
    color: #1C1310;
    padding: 0 25px;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
}

.order-success-content .theme-button {
    margin-top: 20px !important;
}

/* order-success */


/* color-selector */

.color-selector {
    position: fixed;
    right: 0;
    top: 90px;
    z-index: 999;
}

button.palette-button {
    border: none;
    background: var(--theme-color);
    border-radius: 10px 0 0 10px;
    color: #fff;
    font-size: 15px;
    padding: 5px 10px;
    box-shadow: 0px 0px 20px #00000036;
}

.color-palettes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 35px;
    background: #ffffff;
    padding: 0 5px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 0px 20px #00000036;
    margin-top: 7px;
    transition: 400ms;
    transform: translatex(100%);
}

.color-selector.active .color-palettes {
    transform: translatex(0);
    transition: 400ms;
}

.color-palettes button {
    height: 15px;
    margin: 5px 0;
    width: 100%;
    border-radius: 5px;
    border: none !important;
    display: flex;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative;
}

.color-palettes button div {
    width: 50%;
    height: 100%;
}

.color-1 {
    border-right: 1px solid #ffffff;
}

/* color-selector */

.swal2-container {
    z-index: 999999;
}

.footer-company img {
    width: 100%;
    height: 30px;
    object-fit: contain;
}

span.company-message-text {
    font-size: 14px;
    color: #878787;
}

.company-message-content {
    margin-top: 15px;
}

/* WelcomePage */

.color-selector:not(.active) .color-palettes {
    box-shadow: none;
}

.color-selector:not(.active) {
    pointer-events: none !important;
}

button.palette-button {
    pointer-events: all !important;
}

/** welcome-page-slider **/
main:has(.page-slider) {
    margin-top: 50px;
}

.page-slider {
    height: 300px;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 12px 12px;
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.page-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-slider * {
    height: 100%;
}

.page-slider .owl-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    z-index: 99;
    bottom: 0;
    align-items: center;
    padding: 0 20px;
    pointer-events: none;
}

.page-slider .owl-nav button {
    background: #ffffff73 !important;
    width: 25px;
    height: 25px;
    display: flex;
    border-radius: 100%;
    align-content: center;
    justify-content: center;
    align-items: center;
    pointer-events: all !important;
}

.page-slider .owl-nav button span {
    color: #fff;
    line-height: 22px;
    font-size: 18px;
}

.page-slider .owl-stage-outer {
    position: relative;
}

.page-slider .owl-stage-outer:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #00000000, #00000059, #000000);
    pointer-events: none !important;
}

.page-slider .owl-dots {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    left: 0;
    width: 100%;
    height: 15px;
    z-index: 99;
}

.page-slider .owl-dots button {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #FFFFFF !important;
    margin: 0 2.5px;
    opacity: .5;
    transition: 600ms;
}

.page-slider .owl-dots button.active {
    background: var(--theme-color) !important;
    opacity: 1;
    transition: 600ms;
}

/** welcome-page-slider End **/


/** welcome-home-items **/
.home-item {
    background: #F2F2F2;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
    min-height: 95px;
    position: relative;
    overflow: hidden;
}

.home-items-content [class^="col-"] {
    padding: 0 7.5px;
}

.home-item span {
    font-size: 11px;
    color: #44444E;
}

.home-item img {
    height: 40px;
    object-fit: contain;
    margin-bottom: 9px;
}

.home-items-title h2 {
    font-size: 20px;
    font-weight: bold;
    color: #44444E;
    margin-bottom: 20px;
}

.home-item:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 10px;
    background: #EEEEEE;
}

.home-items-content {
    min-height: calc(100dvh - 584px);
}

/** welcome-home-items End **/

/** welcome-Footer **/
.welcome-footer-content {
    display: block;
}

.welcome-footer-content .footer-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.welcome-footer-content .footer-items ul li a .footer-item-image {
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.welcome-footer-content .footer-items ul li a {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.welcome-footer-content .footer-items span {
    color: #fff;
    font-size: 12px;
}

.welcome-footer-content .footer-items li:not(:last-child):after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 35px;
    background: var(--theme-color);
    filter: brightness(0.7);
    top: 5px;
    right: 0;
    transform: scaleX(0.5);
}

.welcome-footer-content .footer-items li {
    position: relative;
    width: 100%;
}

.welcome-footer-content .footer-item-image svg circle,
.welcome-footer-content .footer-item-image svg path {
    fill: var(--theme-color);
}

footer:has(.welcome-footer-content) {
    min-height: 130px;
}

footer:has(.welcome-footer-content) .footer-company {
    margin-top: 10px;
}

/** welcome-Footer End **/


/** welcome-page-list **/

.page-list .list-title h1 {
    font-size: 20px;
    font-weight: bold;
    color: #44444e;
    margin: 0 !important;
}

a.page-list-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    background: #F2F2F2;
}

a.page-list-item .list-image {
    width: 100px;
    height: 110px;
    position: relative;
}

a.page-list-item .list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item-content {
    width: calc(100% - 100px);
    padding: 10px
}

.list-item-content span {
    font-size: 13px;
    line-height: 1.2 !important;
    color: #222222;
    font-weight: 500;
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

.list-item-content p {
    font-size: 12px;
    color: #656565;
    line-height: 1 !important;
}

/** welcome-page-list End **/


/** welcome-detail-page **/
.detail-page-content {
    min-height: calc(100dvh - 540px);
}

.detail-page-content .title {
    font-size: 24px;
    font-weight: bold;
    color: #1C1310;
    margin: 0;
}

.detail-page-content .description p {
    color: #575757;
    font-size: 17px;
    font-weight: normal;
    margin-top: 15px;
}

/** welcome-detail-page End **/