@font-face {
    font-family: SegoeUI;
    src: url(../fonts/SegoeUI/SegoeUI-400.woff2) format("woff2"),
    url(../fonts/SegoeUI/SegoeUI-400.woff) format("woff"),
    url(../fonts/SegoeUI/SegoeUI-400.ttf) format("ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: SegoeUI;
    src: url(../fonts/SegoeUI/SegoeUI-100.woff2) format("woff2"),
    url(../fonts/SegoeUI/SegoeUI-100.woff) format("woff"),
    url(../fonts/SegoeUI/SegoeUI-100.ttf) format("ttf");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: SegoeUI;
    src: url(../fonts/SegoeUI/SegoeUI-200.woff2) format("woff2"),
    url(../fonts/SegoeUI/SegoeUI-200.woff) format("woff"),
    url(../fonts/SegoeUI/SegoeUI-200.ttf) format("ttf");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: SegoeUI;
    src: url(../fonts/SegoeUI/SegoeUI-600.woff2) format("woff2"),
    url(../fonts/SegoeUI/SegoeUI-600.woff) format("woff"),
    url(../fonts/SegoeUI/SegoeUI-600.ttf) format("ttf");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: SegoeUI;
    src: url(../fonts/SegoeUI/SegoeUI-700.woff2) format("woff2"),
    url(../fonts/SegoeUI/SegoeUI-700.woff) format("woff"),
    url(../fonts/SegoeUI/SegoeUI-700.ttf) format("ttf");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


:root {
    --color1: #E7AD5C;
    --color2: #945012;
    --back: #fff;
    --font1: SegoeUI;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font1), serif;
    direction: ltr;
    background-color: var(--back);
    text-align: left;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--color2)
}

.ltr {
    direction: ltr;
}

.rtl {
    direction: rtl;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

@media (max-width: 767px) {
    .d-m-none {
        display: none !important;
    }

}

.col-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 992px) {
    .col-lg-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 767.98px) {

    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid,
    .navbar-expand-md > .container-lg,
    .navbar-expand-md > .container-md,
    .navbar-expand-md > .container-sm,
    .navbar-expand-md > .container-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.navbar-custom {
    font-family: var(--font1), serif;
    background-color: #000000c4;
    height: 107px;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 99;
    top: -100px;
    margin-top: 100px;
    transition: transform 0.5s ease-out, top 0.5s ease-out;
}

.navbar-custom.fixed {
    background: #000;
    top: 0;
    margin-top: 0;
    z-index: 1001;
    position: fixed;
}

.navbar-logo img {
    width: auto;
    height: 100px;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 20px;
    white-space: nowrap;
}

.nav-item a {
    display: flex;
    align-items: center;
    padding: 40px 10px;
    font-size: 17px;
    color: #fff;
    font-weight: 300;
}

.nav-item.dropdown {
    margin-top: -2px;
}

@media (min-width: 768px) {
    .nav-item a {
        display: inline-block;
    }

    .nav-item:not(.dropdown) a::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: var(--color1);
        transition: width .2s;
        border-radius: 5px;
        margin-top: 4px;
        margin-bottom: -4px;
    }

    .nav-item:not(.dropdown) a:hover::after {
        width: 100%;
        transition: width .3s;
    }
}

.nav-item a:hover {
    color: var(--color1) !important;
}


.navbar-btn-body {
    display: flex;
    align-items: center;
}

.navbar-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
    background: var(--color2);
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    margin-left: 15px;
    border-radius: 40px;
    line-height: 1;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-btn:hover {
    color: var(--color2);
    background: var(--color1);
}

.navbar-right {
    display: flex;
    align-items: center;
}

@media (max-width: 767.5px) {

    .navbar-custom {
        height: auto;
        padding: 15px 0;
    }

    .navbar-logo {
        margin-left: 0;
    }

    .navbar-logo img {
        width: 75px;
        height: auto;
        margin-left: 5px;
    }

    .navbar-btn {
        font-size: 16px;
        margin-left: 10px;
        width: 34px;
        height: 34px;
    }

    .navbar-nav {
        padding: 0;
    }

}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-logo {
        margin-left: 10px;
    }

    .nav-item {
        margin-left: 10px;
    }

    .nav-item a {
        font-size: 14px;
    }

}


.dropdown a::after {
    margin-top: -2px;
    margin-left: 10px;
    border: 0;
    font-family: "raya-icon";
    content: '\f107';
}

.dropdown ul li a::after {
    content: unset;
}

.dropdown .dropdown > a:after {
    display: block;
    content: " ";
    float: right;
    border: 0;
    font-family: "raya-icon";
    content: '\f105';
    margin-top: 0;
    margin-right: 0;
}

.dropdown ul {
    left: 0;
    z-index: 1000;
    display: none;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    color: #212529;
    text-align: right;
    list-style: none;
    background-color: var(--color1);
    background-clip: padding-box;
    position: absolute;
    border: 0;
    border-radius: 5px;
    margin-top: 0;
    border-radius: 5px;
    min-width: 200px;
    border-radius: 8px;
    font-size: 14px;
    transition: opacity 0.3s ease-in-out;
    left: 0;
    text-align: left;
}

.dropdown ul li a {
    color: #fff;
    font-size: 16px;
    display: block;
    white-space: nowrap;
    width: 100%;
    padding: 7px 14px;
    font-weight: normal;
}

.dropdown ul li a:hover {
    color: var(--color2) !important;
}


@media (min-width: 767.5px) {


    .dropdown ul::before {
        content: "";
        position: absolute;
        top: -10px;
        left: 15%;
        transform: translateX(-50%) rotate(180deg);
        border-top: 10px solid var(--color1);
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
    }

    .dropdown .dropdown ul::before {
        content: unset;
    }

    .dropdown .dropdown {
        position: relative;
    }

    .dropdown .dropdown > ul {
        top: 0;
        left: 100%;
    }

    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        z-index: -20;
        transition: background 0.1s ease, z-index 0s;
        transition-delay: 0.1s, 0.4s;
    }

    #overlay.active {
        visibility: visible;
        transition: background 0.1s ease, z-index 0s;
        transition-delay: 0s, 0s;
        background: rgba(72, 72, 72, 0.6);
        z-index: 100;
    }

    .dropdown .dropdown:hover > a:after {
        border-left-color: #000;
    }

    .dropdown .dropdown:hover > ul {
        display: block;
    }

    .dropdown:hover > ul {
        display: block;
    }
}

@media (max-width: 767.5px) {
    .dropdown ul::before {
        content: unset;
    }

    .dropdown a::after {
        content: '\f105';
        font-size: 16px;
    }

    .dropdown .dropdown > a:after {
        margin-top: -2px;
        font-size: 16px;
    }

    .offcanvas-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #000;
        z-index: 9999;
        transition: all 0.3s ease-in-out;
    }

    .dropdown ul {
        left: unset;
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #000;
        z-index: 9999;
        transition: all 0.3s ease-in-out;
        margin: 0;
        padding: 0;
        color: #fff;
    }

    .dropdown ul.active {
        left: 0;
    }

    .offcanvas-nav.active {
        left: 0;
    }


    .offcanvas-header {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        background-color: #000;
        padding: 0 15px;
        margin-bottom: 10px;
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.08);
        font-size: 16px;
    }


    .offcanvas-header .close {
        background: transparent;
        border: 0;
        color: #fff;
        font-size: 20px;
        opacity: 1;
    }

    .offcanvas-header .back {
        background: transparent;
        border: 0;
        color: #fff;
        font-size: 20px;
        opacity: 1;
        padding: 0;
    }

    .nav-item {
        padding: 10px 20px;
        margin: 0;
        display: flex;
    }

    .dropdown ul li a {
        padding: 10px 20px;
        color: #fff;
    }

    .nav-item a {
        padding: 0;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 14px;
        font-weight: normal;
    }

    .navbar-toggler {
        border: 0;
        margin: 0;
        padding: 0;
        color: #fff !important;
        display: flex;
    }
}


@media (min-width: 768px) {
    .offcanvas-header {
        display: none;
    }
}


.dropdown-new .dropdown-menu {
    margin: 0;
    padding: 10px;
    border-radius: 8px;
}

.dropdown-new a::after {
    display: none;
}

.navbar-btn-badge {
    background: var(--color2);
    width: 15px;
    height: 15px;
    position: absolute;
    left: -3px;
    top: -6px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-top: 3px;
}

.btn.btn-custom {
    background: var(--color1);
    color: #fff;
}

.btn.btn-custom:hover {
    opacity: 0.8;
}

.jconfirm-box {
    border-radius: 10px !important;
}


.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 450px;
    border-right: 1px solid rgba(0, 0, 0, .2);
    transform: translateX(-100%);
}

.offcanvas.show {
    transform: none;
}

.offcanvas-body {
    padding: 20px 0;
    height: 100%;
    overflow: auto;
}

.offcanvas-head {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}

.offcanvas-footer {
    padding: 15px;
    border-top: 1px solid #ccc;
}

.offcanvas-close {
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #444;
    padding: 0;
}


.basket-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    padding-top: 10px;
}

.basket-item:first-child {
    padding-top: unset;

}

.basket-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.basket-total-title {
    font-size: 14px;
    font-weight: 600;
}

.basket-item-img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.basket-item-info {
    margin-left: 15px;
    white-space: nowrap;
}

.basket-item-count {
    margin-top: 5px;
    display: flex;
    align-items: end;
}

.basket-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.basket-item-count span {
    color: var(--color1);
    font-size: 16px;
}

.basket-item-discount {
    color: #545454 !important;
    text-decoration: line-through;
    font-size: 14px !important;
}

.basket-link {
    background: var(--color1);
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid var(--color1);
    transition: 0.3s;
}

.basket-link:hover {
    background-color: #fff;
    color: var(--color1);
}


.basket-item {
    padding: 15px;
}

.basket-total {
    margin-top: 0;
}

.offcanvas-title {
    font-weight: 600;
    color: #444;
    font-size: 18px;
}

#overlay-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -20;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0.1s, 0.4s;
}

#overlay-offcanvas.active {
    visibility: visible;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0s, 0s;
    background: rgba(72, 72, 72, 0.6);
    z-index: 1000;
}


@media (min-width: 991px) {

    .dropdown ul li a:hover {
        color: var(--color2) !important;
    }

    .navbar-category.dropdown ul {
        min-width: 300px;
        border-radius: 10px;
        border: 1px solid #ddd;
        background-color: #fff;
        padding: 4px 0;
    }

    .navbar-category.dropdown ul ul {
        margin-top: 0;
    }

    .navbar-category.dropdown ul ul ul {
        margin-top: 0;
    }

    .navbar-category.dropdown ul li {
        padding: 0 20px;
    }

    .navbar-category.dropdown ul li:last-child a {
        border-bottom: 0;
    }

    .navbar-category.dropdown .dropdown ul li a {
        border-bottom: solid 1px #dcdcdc;
    }


    .navbar-category.dropdown .dropdown ul {
        right: 100%;
    }

    .navbar-category.dropdown ul li a {
        font-size: 14px;
        font-weight: 500;
        color: #646464;
        font-size: 14px;
        padding: 10px 14px;
        border-bottom: solid 1px #dcdcdc;
    }

    .navbar-category.dropdown .dropdown > a:after {
        margin-top: 0;
    }

    .navbar-category.dropdown ul::before {
        content: unset;
    }

    .navbar-category.dropdown .dropdown ul {
        width: 700px;
        flex-wrap: wrap;
        direction: rtl;
        height: 360px;
        margin-top: -1px;
        overflow-y: auto;
        margin-right: -11px;
        border-radius: 10px 0 0 10px;
    }

    .navbar-category.dropdown .dropdown ul li a {
        font-weight: bold;
        padding: 10px 0;
        font-size: 14px;
    }

    .navbar-category.dropdown .dropdown ul ul li a {
        font-weight: normal;
    }

    .navbar-category.dropdown .dropdown ul li {
        width: 25%;
    }

    .navbar-category.dropdown .dropdown ul a::after {
        content: unset;
    }

    .navbar-category.dropdown .dropdown:hover > ul {
        display: flex;
    }

    .navbar-category.dropdown .dropdown ul ul {
        width: auto;
        position: relative;
        width: auto;
        min-width: auto;
        height: auto;
        display: flex;
        right: 0;
        flex-direction: column;
        box-shadow: unset;
        overflow: unset;
        border: 0;
        border-top: 1px solid #dbd9d9;
        border-radius: 0;
    }

    .navbar-category.dropdown .dropdown ul ul li {
        width: auto;
        padding: 0;
    }

    .navbar-category.dropdown .dropdown ul ul li a {
        border-bottom: 0;
    }

    .navbar-category.dropdown .dropdown {
        position: unset;
    }

    .mega-scroll {
        height: 350px;
        overflow-y: auto;
        direction: ltr;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .navbar-category.dropdown .dropdown ul {
        width: 250px;
    }

    .navbar-category.dropdown ul {
        min-width: 250px;
    }

    .navbar-category.dropdown .dropdown ul li {
        width: 33%;
    }

    .navbar-category.dropdown .dropdown ul {
        width: 550px;
    }
}


.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    padding: 10px;
}

.swiper-1 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-2 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-3 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-4 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-5 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-6 {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-pagination-bullet {
    border-radius: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color1);
}


.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
    font-weight: 600;
    color: #707070;
}

.swiper-button-next {
    width: 38px;
    height: 38px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27);
    background-color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

.swiper-button-prev {
    width: 38px;
    height: 38px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27);
    background-color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

.swiper-button-next:hover {
    background: var(--color1);
}

.swiper-button-prev:hover {
    background: var(--color1);
}

.swiper-button-next:hover::after {
    color: #fff;
}

.swiper-button-prev:hover::after {
    color: #fff;
}


.swiper-pagination-bullet-active {
    width: 20px;
}

@media (max-width: 767px) {
    .swiper-button-next {
        width: 30px;
        height: 30px;
        top: 55%;
    }

    .swiper-button-prev {
        width: 30px;
        height: 30px;
        top: 55%;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 12px;
    }
}


.myAnim1 {
    animation: myAnim1 10s linear 0s infinite normal forwards;
}

.myAnim2 {
    animation: myAnim2 15s linear 0s infinite normal forwards;
}

.myAnim2-2 {
    animation: myAnim2 30s linear 0s infinite normal forwards;
}

.myAnim3 {
    animation: myAnim3 10s linear 0s infinite normal forwards;
}

.myAnim4 {
    animation: myAnim4 10s linear 0s infinite normal forwards;
}

@keyframes myAnim1 {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 50% 0;
    }

    10% {
        transform: rotate(2deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(-4deg);
    }

    30%,
    50%,
    70% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-2deg);
    }

    90% {
        transform: rotate(2deg);
    }
}

@keyframes myAnim2 {

    0%,
    100% {
        transform: translateY(0);
    }

    10%,
    30%,
    50%,
    70% {
        transform: translateY(-8px);
    }

    20%,
    40%,
    60% {
        transform: translateY(8px);
    }

    80% {
        transform: translateY(6.4px);
    }

    90% {
        transform: translateY(-6.4px);
    }
}

@keyframes myAnim3 {

    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 50% 100%;
    }

    10% {
        transform: rotate(2deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(-4deg);
    }

    30%,
    50%,
    70% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-2deg);
    }

    90% {
        transform: rotate(2deg);
    }
}

@keyframes myAnim4 {
    0% {
        animation-timing-function: ease-out;
        transform: scale(1);
        transform-origin: center center;
    }

    10% {
        animation-timing-function: ease-in;
        transform: scale(0.91);
    }

    17% {
        animation-timing-function: ease-out;
        transform: scale(0.98);
    }

    33% {
        animation-timing-function: ease-in;
        transform: scale(0.87);
    }

    45% {
        animation-timing-function: ease-out;
        transform: scale(1);
    }
}


.home-wrap-1 {
    height: 655px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-wrap-1-inner {
    width: 100%;
    max-width: 685px;
    position: relative;
}

.home-wrap-1-btn-body {
    display: flex;
    align-items: center;
}

.home-wrap-1-btn {
    width: 50%;
    height: 50px;
    background: #fff;
    border: 0;
    border-radius: 20px;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color1);
    color: #000;
}

.home-wrap-1-btn:first-child {
    margin-right: 15px;
}

.home-wrap-1-btn.active {
    background: var(--color1);
}

.home-wrap-1-form {
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin-top: 15px;
    overflow: hidden;
}

.home-wrap-1-form input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    padding: 10px 20px;
}

.home-wrap-1-form button {
    height: 100%;
    width: 50px;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    color: var(--color2);
}

.home-wrap-2-item {
    width: 98%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 200px;
    margin-top: 6%;
    z-index: 1;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-wrap-2-item::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #1f1a15c4;
    display: block;
    right: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
}

.home-wrap-2-item:hover::before {
    background: #1f1a158c;
}

.home-wrap-2-icon {
    width: 80px;
    height: 70px;
    object-fit: contain;
}

.home-wrap-2-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color1);
    margin-top: 15px;
}

/*.home-wrap-3-img {*/
/*  width: 100%;*/
/*}*/

/*.home-wrap-3-info {*/
/*  padding: 0 20px;*/
/*  max-width: 1020px;*/
/*  margin: auto;*/
/*  text-align: center;*/
/*}*/

/*.home-wrap-3-img-body {*/
/*  position: relative;*/
/*}*/

/*.home-wrap-3-img-body::after,*/
/*.home-wrap-3-img-body::before {*/
/*  height: 40%;*/
/*  left: 0;*/
/*  z-index: 1;*/
/*  pointer-events: none;*/
/*  content: "";*/
/*  position: absolute;*/
/*}*/

/*.home-wrap-3-img-body::before {*/
/*  width: 100%;*/
/*  top: -4px;*/
/*  background-image: linear-gradient(to top, #0c0c2100 0, #fff 65%);*/
/*}*/

/*.home-wrap-3-img-body::after {*/
/*  width: 100%;*/
/*  bottom: -4px;*/
/*  background-image: linear-gradient(to bottom, #0c0c2100 0, #fff 75%);*/
/*}*/

/*.home-wrap-3-title {*/
/*  color: #322C21;*/
/*  font-size: 26px;*/
/*  text-align: left;*/
/*}*/

/*.home-wrap-3-text {*/
/*  color: #322C21;*/
/*  line-height: 2;*/
/*  font-size: 18px;*/
/*  font-weight: 300;*/
/*  margin-top: 35px;*/
/*  text-align: justify;*/
/*}*/

/*.home-wrap-3-link {*/
/*  color: #704305;*/
/*  font-size: 18px;*/
/*  margin-top: 30px;*/
/*  display: block;*/
/*  text-decoration: underline;*/
/*  font-weight: 600;*/
/*}*/

/*.home-wrap-3-link:hover {*/
/*  color: var(--color1);*/
/*  text-decoration: underline;*/
/*}*/

.card-product {
    display: block;
    transition: 0.3s;
    background: transparent;
    position: relative;
    padding: 15px;
    border-radius: 30px;
    text-align: left;

}

.card-product-img-body {
    background: #eee;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.card-product-img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    transition: 0.3s;
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-product-img-body:hover .card-product-img {
    transform: scale(1.1);
}

.card-product-title {
    font-size: 20px;
    font-weight: 400;
    color: #322C21;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    transition: 0.3s;
    height: 48px;
    line-height: 1.2;
}

.card-product-inner {
    padding: 10px;
}

.card-product-item {
    color: #704305;
    margin-bottom: 5px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.card-product-item span {
    color: #322C21;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 5px;
}

.card-product-price {
    font-size: 20px;
    font-weight: 600;
    color: #704305;
}

.card-product-off {
    font-size: 18px;
    color: #666;
    text-decoration: line-through;
    margin-left: 15px;
}


.card-product-flex {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.card-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border: 1px solid #322C21;
    border-radius: 20px;
    font-size: 16px;
    color: #322C21;
    margin-top: 5px;
    transition: 0.5s;
}

.card-product:hover {
    background: var(--color1);
}

.card-product:hover .card-product-item {
    color: #704305;
}

.card-product:hover .card-product-btn {
    background: #322C21;
    color: #fff;
}


.home-wrap-row {
    position: relative;
}

.home-wrap-row .swiper-button-next {
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: unset;
    padding-top: 20px;
}

.home-wrap-row .swiper-button-prev {
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: unset;
    padding-top: 20px;
}


.home-wrap-row .swiper-button-next::after {
    color: var(--color1);
    font-size: 20px;
}

.home-wrap-row .swiper-button-prev::after {
    color: var(--color1);
    font-size: 20px;
}


.home-wrap-title {
    padding-top: 60px;
    padding-bottom: 30px;
    text-align: center;
    color: #322C21;
    font-size: 26px;
    line-height: 1;
}

.home-wrap-4 {
    background: #322C21;
    margin-top: 60px;
    padding-bottom: 60px;
}

.home-wrap-4 .home-wrap-title {
    color: #fff;
    font-weight: 600;
}


.home-wrap-4 .card-product-title {
    color: #fff;
}

.home-wrap-4 .card-product-price {
    color: #fff;
}

.home-wrap-4 .card-product-item {
    color: var(--color1);
}

.home-wrap-4 .card-product-item span {
    color: #fff;
}

.home-wrap-4 .card-product-btn {
    border-color: var(--color1);
    color: var(--color1);
}


.home-wrap-5 {
    position: relative;
    overflow: hidden;
    display: flex;
}

.home-wrap-5-item {
    width: 100%;
    height: 290px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-wrap-5-title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px #00000040;
}

.home-wrap-5-text {
    font-size: 18px;
    margin-top: 10px;
    color: var(--color1);
    text-decoration: underline;
}

.home-wrap-5-text:hover {
    color: var(--color2);
}

.home-wrap-5-cover {
    background: linear-gradient(90deg, #322C21 0%, rgba(152, 134, 100, 0) 100%);
    height: 100%;
    padding: 45px;
    text-align: left;
}

.banner-home {
    width: 100%;
    margin-top: 60px;
}

.card-store {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    transition: 0.3s;
    color: #000;
    border-radius: 20px;
}

.card-store-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    max-width: 170px;
    max-height: 170px;
    min-height: 170px;
    object-fit: cover;
    box-shadow: 0 4px 10px 0 #00000040;
}

.card-store-title {
    font-size: 17px;
    font-weight: 400;
    margin-top: 20px;
}

.card-store-rate {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: var(--color1);
    transition: 0.3s;
}

.card-store:hover {
    background: #EDE6D9;
}

.card-store:hover .card-store-btn {
    background: var(--color1);
    border-color: var(--color1);
    color: #000;
}

.home-banner {
    width: 100%;
    margin-top: 50px;
}

.card-store-btn {
    border: 1px solid #322C21;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-top: 15px;
    border-radius: 20px;
    transition: 0.3s;
}

.home-wrap-8-box {
    background: #F6F2EC;
    padding: 25px;
    border-radius: 6px;
}

.home-wrap-8-box .swiper-pagination {
    position: relative;
    bottom: 0;
}

.blog-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #6C6666;
    padding: 15px;
    transition: 0.3s;
}

.blog-item:last-child {
    border-bottom: 0;
}

.blog-item-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-item-title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    transition: 0.3s;
}

.blog-item-date {
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #6C6666;
}

.blog-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 15px;
}

.blog-item-info {
    width: 100%;
}

.blog-item-text {
    font-size: 15px;
    color: #6C6666;
    margin-top: 11px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.blog-item:hover {
    border-radius: 6px;
    background: var(--color1);
}

.blog-item:hover .blog-item-title {
    color: #fff;
}

.blog-item:hover .blog-item-text {
    color: #fff;
}

.blog-item:hover .blog-item-date {
    color: #fff;
}


.blog-wrapper-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}


.blog-wrapper-date {
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #6C6666;
}

.blog-wrapper-title {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

.blog-wrapper-title:hover {
    color: var(--color1);
}

.blog-wrapper-text {
    font-size: 15px;
    color: #6C6666;
    margin-top: 11px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
}

.blog-wrapper-img {
    width: 100%;
    height: 309px;
    object-fit: cover;
}

.banner-end {
    margin-bottom: -60px;
}

@media (max-width: 767px) {

    .home-wrap-row .swiper-button-next {
        padding-top: 20px;
    }

    .home-wrap-row .swiper-button-prev {
        padding-top: 20px;
    }

    .home-wrap-row .swiper-button-next::after {
        font-size: 16px;
    }

    .home-wrap-row .swiper-button-prev::after {
        font-size: 16px;
    }

    .home-wrap-1 {
        height: 350px;
        padding: 25px;
        padding-bottom: 0;
    }

    .home-wrap-1-btn {
        height: 38px;
        font-size: 14px;
    }

    .home-wrap-1-form {
        height: 42px;
        font-size: 14px;
    }

    .home-wrap-2-item {
        height: 160px;
    }

    .home-wrap-2-icon {
        width: 60px;
        height: 50px;
    }

    .home-wrap-2-title {
        font-size: 14px;
        margin-top: 10px;
    }

    .home-wrap-3-title {
        font-size: 18px;
    }

    .home-wrap-3-text {
        font-size: 14px;
        margin-top: 10px;
    }

    .home-wrap-3-link {
        font-size: 14px;
        margin-top: 15px;
    }

    .home-wrap-4 {
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .home-wrap-title {
        padding-top: 30px;
        padding-bottom: 15px;
        font-size: 18px;
    }

    .card-product {
        padding: 5px;
        border-radius: 20px;
    }

    .card-product-img {
        height: 150px;
    }

    .card-product-inner {
        padding: 10px;
    }

    .card-product-title {
        font-size: 14px;
        height: 35px;
    }

    .card-product-item {
        font-size: 14px;
    }

    .card-product-price {
        font-size: 15px;
    }

    .card-product-flex {
        margin-top: 10px;
    }

    .card-product-btn {
        height: 40px;
        font-size: 14px;
    }

    .home-wrap-5-cover {
        padding: 20px;
    }

    .home-wrap-5-item {
        height: 160px;
    }

    .home-wrap-5-title {
        font-size: 20px;
    }

    .home-wrap-5-text {
        font-size: 16px;
        margin-top: 5px;
    }

    .banner-home {
        margin-top: 30px;
    }

    .card-store-btn {
        height: 38px;
        font-size: 14px;
    }

    .card-store-img {
        max-width: 100px;
        max-height: 100px;
        min-height: auto;
    }

    .card-store-title {
        font-size: 14px;
    }

    .home-wrap-8-box {
        padding: 15px;
    }

    .blog-item {
        padding: 10px;
        text-align: left;
    }

    .blog-item-title {
        font-size: 14px;
    }

    .blog-item-date {
        font-size: 12px;
        white-space: nowrap;
    }

    .blog-wrapper-img {
        width: 100%;
        height: 160px;
    }

    .blog-wrapper-title {
        font-size: 14px;
    }

    .blog-wrapper-text {
        font-size: 14px;
        text-align: left;
    }
}

.footer-top {
    background: #694322;
    margin-top: 70px;
    padding: 40px 0;
}

.footer-top-text {
    font-size: 40px;
    font-weight: 900;
    text-align: left;
    color: #fff;
}


.footer-top-form {
    display: flex;
    align-items: center;
    justify-content: start;
}

.footer-top-form {
    display: flex;
    align-items: center;
    justify-content: start;
    border-radius: 25px;
    height: 50px;
    width: 100%;
    background: #fff;
    max-width: 500px;
}

.footer-top-form button {
    height: 100%;
    outline: none;
    border: 0;
    background: var(--color1);
    color: #000;
    min-width: 140px;
    border-radius: 25px;
    transition: 0.3s;
}

.footer-top-form button:hover {
    background: #FFF0C0;
    color: #000;
}

.footer-top-form input {
    height: 100%;
    border: 0;
    padding-left: 15px;
    outline: none;
    width: 100%;
    border-radius: 25px;
}


.footer {
    padding: 100px 0;
    background-color: #EFEEE4;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-header {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.footer-ul {
    list-style: none;
    padding: 0;
    color: #000;
}

.footer-ul i {
    color: var(--back);
    min-width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    transition: 0.3s;
    border-radius: 50px;
    margin-right: 15px;
    background: var(--color1);
}

.footer-ul a {
    color: #000;
    display: flex;
    text-align: left;
    margin-bottom: 15px;
}

.footer-ul a span {
    display: block;
    direction: ltr;
}

.footer-ul a:hover {
    color: var(--color2);
}

.footer-logo {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 150px;
}

.footer-text {
    color: #000;
    font-size: 16px;
    line-height: 2;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    text-align: left;

}

.footer-namad {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-namad img {
    background: #fff;
    max-width: 150px;
    padding: 10px;
    border-radius: 15px;
}

.footer-bottom {
    background: var(--color1);
    padding: 25px 0;
    color: #000;
    font-size: 15px;
}

.footer-bottom a {
    color: #000;
}

.footer-bottom a:hover {
    color: var(--color2);
}

.footer-bottom-item {
    color: #000;
    font-size: 15px;
    height: 100%;
    display: flex;
    align-items: center;
}

.footer-bottom-item span {
    margin: 0 3px;
}

.footer-social {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.footer-social a {
    width: 35px;
    height: 35px;
    margin: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    padding-top: 6px;
    transition: 0.3s;
    border-radius: 50px;
}


.footer-social .icon-instagram {
    padding-top: 1px;
    padding-right: 2px;
}

.footer-social .icon-telegram {
    font-size: 14px;
}

.footer-social .icon-phone {
    padding-top: 3px;
}

.footer-social a:hover {
    background: var(--color2);
    color: #fff;
}


@media (max-width: 767px) {
    .footer-header {
        font-size: 16px;
    }

    .banner-end {
        margin-bottom: -30px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-top {
        margin-top: 35px;
        padding: 30px 0;
    }

    .footer-top-text {
        font-size: 20px;
    }

    .footer-top-form {
        height: 46px;
        margin-top: 15px;
        font-size: 14px;
    }

    .footer-top-form button {
        min-width: 100px;
    }

    .footer-logo img {
        width: 70px;
    }

    .footer-text {
        font-size: 13px;
        text-align: justify;
        margin-top: 10px;
    }

    .footer-ul {
        margin-top: 25px;
        font-size: 14px;
    }

    .footer-bottom-item {
        color: #000;
        font-size: 12px;
        text-align: center;
        justify-content: center;
    }

    .footer-ul a {
        margin-bottom: 10px;
    }

    .footer-ul i {
        min-width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footer-namad img {
        width: 100px;
    }

    .footer-social {
        margin-top: 5px;
    }

    .footer-bottom {
        padding: 10px 0;
    }
}


.banner-wrapper {
    width: 100%;
}

.banner-end {
    width: 100%;
    margin-bottom: -70px;
    margin-top: 70px;
}

@media (max-width: 767px) {
    .banner-wrapper {
        height: 200px;
        object-fit: cover;
        object-position: left;
    }

    .banner-end {
        margin-bottom: -35px;
        margin-top: 35px;
    }

}


.breadcrumb-item + .breadcrumb-item {
    padding-right: 0;
    padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-left: 0;
    padding-right: .5rem;
}


.breadcrumb {
    font-size: 14px;
    margin: 0;
    padding: 0;
    background: transparent;
    margin-top: 20px;
    margin-bottom: 25px;
}

li.breadcrumb-item a {
    color: #7D7D7D;
}

.breadcrumb-item.active a {
    color: var(--color1);
}

li.breadcrumb-item a:hover {
    color: var(--color1);
}

@media (max-width: 767px) {
    li.breadcrumb-item {
        white-space: nowrap;
    }

    .breadcrumb {
        font-size: 12px;
        flex-wrap: nowrap;
        overflow: auto;
        margin-bottom: 20px;
    }
}


.pagination {
    justify-content: center;
    padding-top: 40px;
    margin-bottom: 0;
    padding-bottom: 40px;
    padding-left: 0;
}

.page-link {
    width: 38px;
    height: 38px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #323232;
    margin: 0 5px;
    background: unset;
    background: transparent;
    border-radius: 10px !important;
    transition: 0.3s;
    border: 1px solid #00000040;
    line-height: 1;
}

a.page-link:hover {
    background: var(--color1);
    color: #fff;
}

.page-item:first-child .page-link {
    margin-right: 5px;
}

span.page-link:hover {
    background: #fff;
    color: var(--color2);
}

.page-link:focus {
    box-shadow: unset;
}

.page-item.active .page-link {
    color: #fff;
    background-color: var(--color2);
    border-color: var(--color2);
}

.page-item-title .page-link {
    width: auto;
    height: auto;
    font-size: 14px;
    color: #323232;
    font-family: var(--font1);
}

.page-item-title .page-link {
    width: auto;
    height: 38px;
    font-size: 14px;
    color: #323232;
    font-family: var(--font1);
}

.page-item-title .page-link:hover {
    background: var(--color1);
    color: #fff;
}

@media (max-width: 767px) {
    .pagination {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .page-link {
        margin: 0;
    }

    .page-link span {
        display: none;
    }


    .page-item-title {
        display: none;
    }

    .page-link {
        width: 30px;
        height: 30px;
        margin: 0 3px;
    }
}


.sort-body {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.sort-title {
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
}

.sort-item-flex {
    display: flex;
}

.sort-item {
    border: 1px solid transparent;
    background: #fff;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 30px;
    transition: 0.3s;
}

.sort-item.active {
    background: var(--color1);
    border-color: var(--color1);
    color: #fff;
}

@media (max-width: 767px) {
    .sort-title {
        font-size: 12px;
        white-space: nowrap;
        margin-left: 10px;
    }

    .sort-item-flex {
        overflow: auto;
    }

    .sort-item {
        height: 28px;
        font-size: 12px;
        padding: 5px 10px;
        white-space: nowrap;
    }

    .sort-body {
        margin-bottom: 5px;
    }

}

.sort-item:hover {
    cursor: pointer;
}

.sort-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.sort-switch span {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin: 0;
}

input[type="checkbox"].switch {
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 3em;
    height: 1.5em;
    background: #ddd;
    border-radius: 3em;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    opacity: 1;
    right: auto !important;
    left: auto !important;
    position: relative;
}

input[type="checkbox"].switch:after {
    position: absolute;
    content: "";
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 0.25em rgba(0, 0, 0, .3);
    box-shadow: 0 0 0.25em rgba(0, 0, 0, .3);
    -webkit-transform: scale(.7);
    transform: scale(.7);
    left: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

input[type="checkbox"].switch:checked {
    background: var(--color1);
}

input[type="checkbox"].switch:checked:after {
    left: calc(100% - 1.5em);
}

input[type="checkbox"].switch:after {
    position: absolute;
    content: "";
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 0.25em rgba(0, 0, 0, .3);
    box-shadow: 0 0 0.25em rgba(0, 0, 0, .3);
    -webkit-transform: scale(.7);
    transform: scale(.7);
    left: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


.list-product .row {
    margin-left: -7px;
    margin-right: -7px;
}

.list-product .col-6 {
    padding-left: 5px;
    padding-right: 5px;
}

.list-product .card-product-img {
    height: 157px;
}

.list-product .card-product {
    padding: 10px;
}

.list-product .card-product-inner {
    padding: 10px;
}

.head-title {
    font-size: 16px;
    color: var(--color2);
    margin-top: 15px;
    margin-bottom: 20px;
}

.head-title strong {
    font-weight: 800;
    color: var(--color1);
}

.filter-box {
    border-radius: 20px;
    background: #f9f9f9;
    border: 1px solid #00000026;
    padding: 20px;
}

.filter-box .home-wrap-1-form {
    border: 1px solid #979797;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.filter-text {
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    color: var(--color2);
}

.filter-row {
    padding: 15px 0;
    border-bottom: 2px solid #E6EAED;
}

.filter-row:last-child {
    border-bottom: 0;
}

.filter-search {
    display: flex;
    background: #FFFFFF80;
    height: 40px;
    margin-top: 15px;
    align-items: center;
    border-radius: 6px;
    padding: 0 10px;
    border: 1px solid #323232
}

.filter-search input {
    background: transparent;
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    font-size: 12px;
    font-weight: 600;
}

.filter-search button {
    background: transparent;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    color: #787878;
    margin-top: 5px;
    font-size: 14px;
}

.filter-btn-collapce {
    color: #9E5F07;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 11px 15px;
}

.filter-btn-collapce:not(.collapsed):after {
    transform: rotate(180deg);
}

.filter-btn-collapce:after {
    content: '\f107';
    font-family: "raya-icon";
    transition: 0.3s;
    font-size: 18px;
}

.filter-check-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--color2);
}

.filter-check-item div {
    display: flex;
    align-items: center;
}

.filter-check-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--color2);
    margin-right: 10px;
    margin-left: 10px;
    cursor: pointer;
}

.filter-tag-body {
    display: flex;
    flex-wrap: wrap;
}

.filter-row-box {
    border: 1px solid #9E5F07;
    border-radius: 20px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.filter-tag {
    border: 1px solid var(--color1);
    font-size: 13px;
    color: var(--color2);
    border-radius: 20px;
    padding: 2px 8px;
    margin-top: 15px;
    margin-left: 10px;
    transition: 0.3s;
}

.filter-tag:hover {
    background: var(--color1);
    color: #fff;
}


@media (max-width: 767px) {
    .list-product .card-product-img {
        height: 120px;
    }

    .list-product .card-product {
        padding: 5px;
    }

    .head-title {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 15px;
    }


    .filter-search {
        background: #eee;
    }

    .filter-box {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        z-index: 9999;
        transform: translateX(+100%);
        transition: 0.5s;
        width: 70%;
        background: #fff;
        border-radius: 0;
        overflow: auto;
    }

    .filter-box.active {
        transform: translateX(0);
    }

    .filter-btn-mobile {
    }

    .show-more {
        margin-top: 25px;
    }

    .show-more-content {
        font-size: 12px;
        text-align: justify;
        max-height: 140px;
    }

    .home-wrapper.custom {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .home-wrapper.custom .home-wrapper-title {
        font-size: 14px;
    }
}


@media (min-width: 768px) {
    .filter-sticky {
        position: sticky;
        top: 135px;
    }

    .filter-btn-mobile {
        display: none;
    }
}

.product-main {
    text-align: left;
}

.product-main .card-product-item {
    margin-top: 15px;
}

.product-img-body {
    display: flex;
    flex-direction: column;
}

.product-main-img {
    background-color: #fff;
    border: 1px solid #eee;
    text-align: center;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.product-other-img {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: -15px;
}

.product-other-img a {
    width: 100%;
}

.product-other-img img {
    display: flex;
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    border: solid 1px #eee !important;
    background-color: #fff !important;
}

.mz-thumb-selected img {
    border: solid 1px var(--color1) !important;
    filter: unset !important;
}

.product-other-img .owl-next {
    position: absolute;
    left: 0;
    top: 30%;
    z-index: 9;
    border-radius: 40px !important;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27) !important;
    background-color: #fff !important;
    color: #000 !important;
    width: 38px;
    height: 38px;
}

.product-other-img .owl-prev {
    position: absolute;
    right: 0;
    top: 30%;
    z-index: 9;
    border-radius: 40px !important;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27) !important;
    background-color: #fff !important;
    color: #000 !important;
    width: 38px;
    height: 38px;
}

.product-other-img .owl-next span {
    display: none;
}

.product-other-img .owl-prev span {
    display: none;
}

.product-other-img .owl-next:after {
    content: " ";
    font-family: "raya-icon";
    content: '\f104';
    font-size: 18px;
}

.product-other-img .owl-prev:after {
    content: " ";
    font-family: "raya-icon";
    content: '\f105';
    font-size: 18px;
}

.owl-theme .owl-nav .disabled {
    opacity: 0;
}

@media (max-width: 767px) {
    .product-other-img img {
        height: 80px;
    }

    .product-other-img .owl-next {
        top: 22%;
    }

    .product-other-img .owl-prev {
        top: 22%;
    }
}

.mz-hint-message {
    font-family: var(--font1);
}

.mz-hint-message::before {
    content: unset;
}

.mz-hint-message {
    display: inline-block;
    background: rgba(49, 51, 61, 0.7);
    border-radius: 2em;
    padding: .7em 1.1em;
    font-family: var(--font1);
}

a#productImgae > .mz-figure > img {
    height: 500px !important;
    max-height: 500px !important;
    object-fit: cover !important;
    max-width: 100% !important;
}

.MagicZoom > img,
.mz-figure > img {
    height: 500px !important;
    max-height: 500px !important;
    object-fit: cover !important;
    max-width: 100% !important;
}

.MagicZoom {
    width: 100%;
}

.MagicZoom figure {
    width: 100%;
}

@media (max-width: 767px) {
    a#productImgae > .mz-figure > img {
        height: 200px !important;
        max-height: 200px !important;
        object-fit: cover !important;
    }

    .MagicZoom > img,
    .mz-figure > img {
        height: 200px !important;
        max-height: 200px !important;
        object-fit: cover !important;
    }
}


.product-main {
    background: #fff;
    margin-top: 25px;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #322C21;
}

.product-title h1 {
    font-size: 32px;
    font-weight: 700;
}

.product-title h2 {
    font-size: 32px;
    font-weight: 700;
}

.product-flex {
    display: flex;
    align-items: center;
}

.product-flex-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.product-info span {
    color: #000;
}

.product-star {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.product-star i {
    color: var(--color1);
    display: flex;
    font-size: 18px;
}

.product-star span {
    margin-right: 10px;
    color: #717171;
}

.product-info-title {
    font-size: 18px;
    color: #000;
    margin-left: 10px;
}

.product-main-flex {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.product-price {
    font-size: 30px;
    font-weight: 600;
    color: #704305;
}

.product-price-off {
    font-size: 22px;
    color: #666;
    text-decoration: line-through;
    margin-left: 25px;
}

.product-order-count {
    display: flex;
    align-items: center;
    max-width: 140px;
    height: 42px;
    border-radius: 5px;
}

.product-order-count input {
    width: 100%;
    text-align: center;
    height: 100%;
    border: 0;
    outline: none;
    cursor: unset;
    font-size: 21px;
    font-weight: 600;
    border-bottom: 2px solid var(--color2);
}

.product-order-count button {
    width: 100%;
    text-align: center;
    height: 100%;
    background: transparent;
    border: 0;
    padding-top: 5px;
    font-size: 14px;
}

.product-price-title {
    font-size: 26px;
    font-weight: 600;
    color: #000;
}

.product-price-before {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    color: var(--color2);
    text-decoration: line-through;
}

.product-price-main {
    font-size: 25px;
    font-weight: 500;
    color: #000;
    margin-top: 5px;
}

.product-info-btn button {
    background: transparent;
    border: 0;
    font-size: 21px;
    color: #808080;
    margin-left: 10px;
    transition: 0.3s;
}

.product-info-btn button:hover {
    color: var(--color2);
}

.product-price-main i {
    font-size: 18px;
}

.product-btn-add {
    height: 60px;
    color: #322C21;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    width: 100%;
    transition: 0.3s;
    margin-top: 20px;
    border: 1px solid #322C21;
    border-radius: 10px;
    background: transparent;
}

.product-btn-add:hover {
    background: var(--color2);
    color: #fff;
}

.product-info-btn {
    display: flex;
    align-items: center;
}

.p-info-body {
    margin-top: 30px;
}

.p-info-item {
    color: #000;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 300;
    display: flex;
}

.p-info-item span {
    font-weight: 500;
    display: block;
    margin-right: 5px;
}

.product-content h2 {
    font-weight: bold;
    font-size: 26px;
}

.product-content h3 {
    font-weight: bold;
    font-size: 24px;
}

.product-content h4 {
    font-weight: bold;
    font-size: 22px;
}

.product-content p {
    text-align: justify;
    margin-top: 20px;
    line-height: 1.8;
}

.product-mute-box {
    background: #F5F5F5;
    padding: 25px;
    margin-top: 25px;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .product-main-img {
        border-radius: 15px;
    }

    .product-star i {
        font-size: 16px;
    }

    .product-mute-box {
        padding: 20px;
        margin-top: 15px;
        margin-bottom: 0;
    }

    .product-mute-title {
        font-size: 14px;
    }

    .product-price {
        font-size: 20px;
    }

    .product-price-off {
        font-size: 18px;
        margin-left: 15px;
    }


    .product-mute-text {
        font-size: 14px;
        text-align: justify;
        letter-spacing: -0.5px;
        margin-top: 0;
    }

    .product-flex-body {
        margin-top: 15px;
    }

    .product-star {
        margin-right: auto;
        font-size: 14px;
    }

    .product-main {
        margin-top: 20px;
    }

    .product-other-img .owl-prev {
        width: 28px;
        height: 28px;
    }

    .product-other-img .owl-next {
        width: 28px;
        height: 28px;
    }

    .product-title h1 {
        font-size: 16px;
    }

    .product-title {
        margin-top: 0;
        font-size: 16px;
    }

    .product-flex {
        margin-top: 10px;
    }

    .btn-share {
        font-size: 18px;
        margin-right: 10px;
    }

    .btn-like {
        font-size: 18px;
    }

    .product-info-btn button {
        font-size: 16px;
        margin: 0;
    }

    .product-flex-item:last-child {
        display: flex;
        justify-content: end;
        width: 100%;
    }

    .p-info-body {
        margin-top: 20px;
    }

    .p-info-item {
        font-size: 16px;
        margin-top: 10px;
    }

    .p-info-item span {
        font-size: 14px;
    }

    .product-main-flex {
        margin-top: 10px;
    }

    .product-info-title {
        font-size: 16px;
        align-items: center;
    }

    .product-price-main {
        font-size: 20px;
        margin-top: 0;
    }

    .product-order-count {
        max-width: 105px;
        height: 36px;
    }

    .product-btn-add {
        height: 40px;
        font-size: 14px;
        margin-top: 15px;
    }

    .product-content h2 {
        font-size: 20px;
    }

    .product-content h3 {
        font-size: 18px;
    }

    .product-content h4 {
        font-size: 16px;
    }

    .product-content p {
        margin-top: 10px;
    }
}


.product-tab {
    margin-top: 80px;
    text-align: left;
}

.product-tab .nav {
    display: flex;
    flex-wrap: nowrap;
    background: #f3f3f3;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.product-nav-item {
    background: #F3F3F3;
    height: 71px;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 19px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    border-bottom: 1px solid #00000040;
}

.tab-content {
    border: 1px solid #00000040;
    border-top: 0;
    padding: 30px;
    border-radius: 0 0 10px 10px;
}

.product-nav-item.active {
    background: #fff;
    border: 1px solid #00000040;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.product-content {
    text-align: justify;
    line-height: 2;
    font-size: 16px;
}


.product-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.product-content th,
.product-content td {
    padding: 8px;
    text-align: left;
}

.product-content tr:nth-child(even) {
    background: #F6F6F6;
}

.product-content th {
    background-color: #f2f2f2;
}

@media (max-width: 767px) {
    .product-star {
        margin-top: 15px;
    }

    .product-title {
        font-size: 22px;
        margin-top: 15px;
    }

    ّ .product-text {
        font-size: 16px;
        margin-top: 10px;
    }

    .product-info {
        font-size: 14px;
        margin-top: 15px;
    }

    .product-left {
        flex-direction: column-reverse;
    }

    .product-left-bottom {
        display: flex;
        flex-direction: column-reverse;
    }

    .product-btn-body {
        margin-top: 10px;
    }

    .product-btn {
        margin-left: 5px;
    }

    .product-text {
        font-size: 16px;
        margin-top: 10px;
    }

    .product-nav-item {
        height: 50px;
        font-size: 14px;
    }

    .product-tab {
        margin-top: 25px;
    }

    .tab-content {
        padding: 15px;
    }

    .product-desc {
        font-size: 14px;
    }

    .store-body {
        overflow: auto;
    }

    .product-content {
        text-align: justify;
        line-height: 2;
        font-size: 12px;
    }

}

.comment-form-rate {
    display: flex;
    align-items: center;
    justify-content: end;
}

.comment-form-rate-star {
    margin-right: 15px;
    margin-left: 15px;
    direction: ltr;
}

.comment-form-rate-text {
    font-size: 16px;
    text-align: center;
    color: #505050;
}

.wrapper-star input {
    display: none;
}

.wrapper-star label {
    margin: 0;
}

i.icon-star-empty {
    color: #7D7D7D;
}

i.icon-star {
    color: #f9bc00;
}

.com-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.com-box-text {
    font-weight: 300;
    margin-top: 10px;
    color: #000;
}

.com-box-form {
    display: flex;
    flex-direction: column;
}

.com-box-form input {
    height: 50px;
    background: #F0EDE5;
    border: 1px solid transparent;
    margin-top: 5px;
    padding: 10px;
    outline-color: var(--color1);
    border-radius: 10px;
}

.com-box-form textarea {
    background: #F0EDE5;
    border: 1px solid transparent;
    margin-top: 5px;
    padding: 10px;
    outline-color: var(--color1);
    border-radius: 10px;
}

.com-box-form label {
    font-size: 18px;
}

.com-box-code input {
    background: #F0EDE5;
    border: 0;
    height: 40px;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
    outline-color: var(--color1);
    width: 100%;
    max-width: 150px;
}

.com-box-code img {
    width: 140px;
}

.com-box-code {
    display: flex;
    align-items: center;
    white-space: nowrap;
}


.com-box-submit {
    height: 50px;
    background: var(--color1);
    border: 1px solid var(--color1);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    width: 100%;
    border-radius: 50px;
    transition: 0.3s;
    margin-top: 15px;
}

.com-box-submit:hover {
    background: #000;
    color: #fff;
}


@media (max-width: 767px) {
    .com-box-title {
        font-size: 16px;
    }

    .com-box-text {
        margin-top: 10px;
        font-size: 14px;
    }

    .com-box-form label {
        font-size: 14px;
    }

    .com-box-form input {
        height: 40px;
        margin-top: 0;
    }

    .com-box-mute {
        font-size: 12px;
    }

    .comment-form-rate-text {
        font-size: 14px;
    }

    .com-box-recode {
        margin-top: 10px;
        font-size: 14px;
        display: block;
    }


    .com-box-submit {
        height: 38px;
        padding: 8px;
        margin-top: 10px;
        margin-top: 0;
    }

}


.product-tab.custom .tab-content {
    border-radius: 0 0 30px 30px;
}

.product-tab.custom .nav {
    border-radius: 30px 30px 0 0;
}

.product-tab.custom .product-nav-item.active {
    border-radius: 30px 30px 0 0;
}

.seller-social {
    display: flex;
    align-items: center;
}

.seller-social a {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    background: var(--color2);
}

.seller-social a:hover {
    background: var(--color1);
}

.icon-telegram {
    font-size: 13px;
    padding-right: 5px;
}

.seller-wrap-1 {
    background: linear-gradient(84.88deg, #FFFAEF 0.72%, #FDD194 100.87%);
    border-radius: 30px;
    padding: 50px;
    margin-top: 40px;
}

.seller-wrap-1-flex {
    display: flex;
    align-items: center;
}

.seller-wrap-1-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    max-width: 188px;
    max-height: 188px;
    object-fit: cover;
    box-shadow: 0 4px 10px 0 #00000040;
}

.seller-wrap-1-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color2);
    margin-left: 35px;
}

.seller-wrap-1-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.seller-wrap-1-item {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
}

.seller-category {
    margin-top: 30px;
}

.seller-category .nav {
    background: transparent;
    justify-content: center;
}

.seller-category .tab-content {
    padding: 0;
    border: 0;
    margin-top: 50px;
}

.product-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border-radius: 30px;
    width: 15%;
    cursor: pointer;
}

.product-cat-item span {
    font-size: 18px;
    margin-top: 10px;
    color: #000;
}

.product-cat-item img {
    width: 70px;
}

.product-cat-item.active {
    background: var(--color1);
    color: #000;
}

.gallery-item img {
    width: 100%;
    height: 330px;
    border-radius: 30px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item img:hover {
    opacity: 0.7;
}

.seller-wrap-3 {
    margin-top: 30px;
}

.seller-step {
    height: 140px;
    border: 14px solid var(--color1);
    border-radius: 50%;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: #945012;
    padding-bottom: 10px;
    margin: auto;
}

.seller-arrow {
    max-height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    max-width: 100%;
}

.seller-wrap-4 .col-4.col-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.seller-wrap-4 {
    margin-top: 60px;
    background: #F6F2EC;
    padding: 50px;
    margin-right: -31px;
    margin-left: -31px;
}

.seller-wrap-4-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.seller-wrap-4-text {
    font-size: 17px;
    margin-top: 15px;
    margin-bottom: 25px;
}


.responsive-map {
    overflow: hidden;
    padding-bottom: 363px;
    position: relative;
    height: 0;
    border-radius: 20px;
    height: 100%;
}

.responsive-map iframe {
    left: 0;
    top: 0;
    height: 363px;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 4px 14px 0 #00000040;
}

.seller-wrap-5-title {
    margin-top: 50px;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

.seller-wrap-5-box {
    border: 1px solid #00000026;
    border-radius: 20px;
}

.seller-wrap-5-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 50px;
}

.seller-wrap-5-item {
    color: #000;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.seller-wrap-5-item i {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    background: var(--color2);
}

.seller-wrap-2-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.seller-wrap-2-text {
    font-size: 17px;
    font-weight: 300;
}


@media (max-width: 767px) {

    .seller-wrap-1 {
        padding: 20px;
        margin-top: 20px;
    }

    .seller-wrap-1-img {
        max-width: 80px;
        max-height: 80px;
    }

    .seller-wrap-1-title {
        font-size: 16px;
        margin-left: 15px;
    }


    .seller-wrap-1-info {
        margin-top: 15px;
    }

    .seller-wrap-1-item {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .product-tab.custom .tab-content {
        border-radius: 0 0 15px 15px;
    }

    .product-tab.custom .nav {
        border-radius: 15px 15px 0 0;
    }

    .product-tab.custom .product-nav-item.active {
        border-radius: 15px 15px 0 0;
    }

    .seller-category .nav {
        flex-wrap: wrap;
    }

    .product-cat-item {
        padding: 15px;
        width: 25%;
    }

    .product-cat-item img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .product-cat-item span {
        font-size: 14px;
    }

    .seller-category {
        margin-top: 0;
    }

    .seller-category .tab-content {
        margin-top: 20px;
    }

    .card-product-off {
        font-size: 14px;
    }

    .seller-wrap-2-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .seller-wrap-2-text {
        font-size: 14px;
    }

    .gallery-item img {
        height: 180px;
        border-radius: 15px;
    }

    .seller-wrap-3 {
        margin-top: 20px;
    }

    .seller-wrap-4 {
        margin-top: 30px;
        padding: 20px;
        margin-right: -16px;
        margin-left: -16px;
    }

    .seller-wrap-4-title {
        font-size: 16px;
    }

    .seller-wrap-4-text {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .seller-step {
        width: 70px;
        height: 70px;
        border: 8px solid var(--color1);
        font-size: 14px;
    }

    .seller-wrap-4 .col-4.col-lg {
        margin-top: 20px;
    }

    .seller-wrap-5-title {
        margin-top: 25px;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .seller-wrap-5-info {
        padding: 20px;
    }

    .seller-wrap-5-item i {
        min-width: 35px;
    }

    .seller-wrap-5-item {
        font-size: 14px;
    }


    .responsive-map {
        padding-bottom: 180px;
    }

    .responsive-map iframe {
        height: 180px;
    }

    .seller-arrow {
        width: 58px;
        margin-top: 25px;
    }
}


.card-news {
    display: block;
    background: #fff;
    text-align: left;
}

.card-news-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 30px;
}

.card-news-inner {
    padding: 20px;
    background: #fff;
}

.card-news-title {
    color: #000;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    font-size: 18px;
    font-weight: bold;
    height: 52px;
    transition: .3s;
}

.card-news-title:hover {
    color: var(--color1);
}

.card-news-date {
    color: var(--color1);
    font-size: 14px;
    margin-top: 8px;
}

.card-news-text {
    color: #8C8C8C;
    font-size: 15px;
    font-weight: 400;
    margin-top: 10px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    height: 65px;
}

.banner-wrapper-text {
    font-size: 36px;
    color: #000;
    font-weight: bold;
}

.banner-wrapper-item-body {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: var(--color2);
}

.banner-wrapper-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.banner-wrapper-item img {
    margin-right: 5px;
}


@media (max-width: 767px) {

    .card-news-title {
        font-size: 16px;
        height: auto;
        -webkit-line-clamp: 1;
    }

    .card-news-inner {
        padding: 15px;
    }

    .card-news-date {
        font-size: 14px;
    }

    .card-news-text {
        font-size: 14px;
        -webkit-line-clamp: 2;
        height: 42px;
    }

    .card-news-img {
        height: 160px;
        border-radius: 15px;
    }

}


.blog-box {
    background: #fff;
    padding: 25px;
    border-radius: 30px;
    border: 1px solid #00000026;
}

.blog-img {
    max-width: 100%;
    display: block;
    margin: auto;
    margin-bottom: 15px;
    margin-top: 20px;
}

.blog-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}


.blog-content {
    margin-top: 15px;
}

.blog-content p {
    font-size: 16px;
    line-height: 2.14;
    text-align: justify;
    color: #000;
}

.blog-content img {
    max-width: 100%;
    display: block;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 15px;
}

.blog-content video {
    width: 100%;
    max-width: 100%;
    background: #000;
    max-height: 300px;
}

.blog-content table,
td,
th {
    border: solid 1px #c8c8c8;
    text-align: center;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
}


.blog-title h1 {
    font-size: 26px;
    font-weight: 700;
}

.blog-title h2 {
    font-size: 26px;
    font-weight: 700;
}

.blog-info {
    font-size: 18px;
    margin-top: 20px;
}

.blog-mute {
    color: #999999;
    font-size: 16px;
    margin-top: 15px;
}

.blog-box-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    line-height: 1;
}

.blog-box-text {
    color: #8C8C8C;
    font-size: 16px;
    font-weight: 400;
    margin-top: 15px;
}


.blog-mini {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.blog-mini-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 8px;

}

.blog-mini-title {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.blog-mini-date {
    font-size: 13px;
    color: #507E2C;
    margin-top: 10px;
}

.blog-item-2 {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 17px;
    font-weight: 300;
    color: #000;
    border-bottom: 1px solid #00000033;
    padding-bottom: 20px;
}

.blog-item-2:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.relative-title {
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 28px;
    color: #000;
}

@media (max-width: 767px) {

    .blog-content p {
        font-size: 13px;
    }

    .blog-box {
        margin-top: 17px;
    }

    .blog-title {
        font-size: 18px;
        margin-top: 0;
    }

    .blog-title h1 {
        font-size: 20px;
    }

    .blog-title h2 {
        font-size: 20px;
    }

    .blog-info {
        font-size: 16px;
        margin-top: 15px;
    }

    .blog-mute {
        color: #999999;
        font-size: 14px;
    }

    .blog-box {
        padding: 15px;
    }

    .blog-content {
        margin-top: 5px;
    }

    .blog-box-title {
        font-size: 18px;
    }

    .blog-mini-img {
        width: 70px;
        height: 70px;
    }

    .blog-mini-title {
        font-size: 14px;
    }

    .blog-item {
        margin-top: 15px;
        font-size: 15px;
        padding-bottom: 15px;
    }

    .relative-title {
        margin-top: 25px;
        margin-bottom: 15px;
        font-size: 20px;
    }

    .banner-wrapper-item {
        margin-right: 15px;
        font-size: 14px;
    }
}


.comment-item {
    margin-top: 25px;
    border-bottom: 1px solid #DBDBDB;
    padding-bottom: 20px;
}

.comment-item:last-child {
    border: 0;
    padding-bottom: 0;
}

.comment-item-info {
    display: flex;
    align-items: center;
}

.comment-item-info i {
    background: #C9C9C9;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

.comment-item-user {
    font-size: 16px;
    font-weight: 600;
    color: #7A7A7A;
    margin-left: 10px;
}

.comment-item-date {
    font-size: 14px;
    color: #7A7A7A;
    margin-left: 10px;
}

.comment-item-text {
    font-size: 14px;
    margin-top: 15px;
}

.comment-item-action {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.comment-item-action button {
    margin: 0;
    padding: 0;
    line-height: 1;
    margin-left: 15px;
    border: 0;
    background: transparent;
    color: #7A7A7A;
    display: flex;
    align-items: center;
}

.comment-item-action button:hover {
    color: #000;
}

.comment-form-replay {
    margin-top: 15px;
}

.btn-replay.active {
    color: var(--color2);
}

.comment-form-replay textarea {
    width: 100%;
    border-radius: 6px;
    background: #fff;
    padding: 10px;
    border: 1px solid #00000040;
    font-size: 14px;
    outline-color: var(--color2);
    margin-bottom: 0;
}

.comment-form-replay input {
    width: 100%;
    border-radius: 6px;
    background: #fff;
    padding: 10px;
    border: 1px solid #00000040;
    font-size: 14px;
    margin-top: 15px;
    outline-color: var(--color2);
}


.comment-form-replay button {
    width: 100%;
    border-radius: 10px;
    background: var(--color1);
    border: 1px solid var(--color1);
    padding: 10px;
    font-size: 14px;
    margin-top: 15px;
    color: #fff;
    transition: 0.3s;
}

.comment-form-replay button:hover {
    background: transparent;
    color: var(--color1);
}

.btn-fave.active {
    color: var(--color1);
}


.comment-form textarea {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #00000040;
    padding: 10px;
    font-size: 14px;
    outline-color: var(--color2);
    margin-bottom: 0;
    margin-top: 20px;
}

.comment-form input {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #00000040;
    padding: 10px;
    font-size: 14px;
    margin-top: 15px;
    outline-color: var(--color2);
}


.comment-form button {
    width: 100%;
    border-radius: 10px;
    background: var(--color1);
    border: 1px solid var(--color1);
    padding: 10px;
    font-size: 14px;
    margin-top: 15px;
    color: #fff;
    transition: 0.3s;
}

.comment-form button:hover {
    background: transparent;
    color: var(--color1);
}

.comment-answer {
    margin-top: 25px;
    border-top: 1px solid #DBDBDB;
    padding-top: 20px;
    display: flex;
    align-items: center;
    margin-right: 30px;
}


.comment-answer-user {
    font-size: 14px;
    margin-left: 10px;
}

.comment-answer-text {
    font-size: 14px;
}

.comment-answer i {
    background: #C9C9C9;
    color: #fff;
    width: 30px;
    min-width: 30px;
    height: 30px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    margin-left: 15px;
}

.product-comment-title {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}


.comment-form-rate {
    display: flex;
    align-items: center;
    justify-content: end;
}

.comment-form-rate-star {
    margin-right: 15px;
    margin-left: 15px;
    direction: ltr;
}

.comment-form-rate-text {
    font-size: 16px;
    text-align: center;
    color: #505050;
}

.wrapper-star input {
    display: none;
}

.wrapper-star label {
    margin: 0;
    cursor: pointer;
}

i.icon-star-empty {
    color: #7D7D7D;
}

i.icon-star {
    color: #f9bc00;
}

.contact-map {
    overflow: hidden;
    position: relative;
    height: 0;
    height: 480px;
    width: 100%;
    background: #F4F4F4;
}

.contact-map iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.contact-box {
    padding: 25px;
    background: #fff;
    border: 1px solid #00000026;
    border-radius: 30px;
}

.contact-item {
    padding: 25px;
    background: #fff;
    display: flex;
    align-items: center;
    min-height: 160px;
    margin-top: 25px;
    border: 1px solid #00000026;
    border-radius: 30px;
}

.contact-item:first-child {
    margin-top: 0;
}

.contact-item i {
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C68A37;
    font-size: 28px;
    color: #fff;
    border-radius: 40px;
    margin-right: 20px;
}

.contact-item-title {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

a.contact-item-title:hover {
    color: var(--color1);
}

@media (max-width: 767px) {
    .contact-map {
        height: 180px;
    }

    .contact-box {
        padding: 15px;
    }

    .contact-item i {
        min-width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }

    .contact-item-title {
        font-size: 16px;
    }

    .contact-item {
        padding: 15px;
        min-height: auto;
        margin-top: 15px;
    }
}


.contact-us-form-title {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--color1);
    padding-bottom: 5px;
    color: var(--color2);
}

.contact-us-form input {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;

    background-clip: padding-box;
    border: 1px solid #eee;

    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    outline: none;
    border-radius: 20px;
    background: #F0EDE5;
    height: 50px;
}

.contact-us-form textarea {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-clip: padding-box;
    border: 1px solid #eee;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    outline: none;
    border-radius: 20px;
    background-color: #F0EDE5;
}


.contact-us-form label {
    font-size: 16px;
    font-weight: 500;
    text-align: right;
    color: #979797;
}

.contact-us-form input:focus {
    border-color: var(--color2);
}

.contact-us-form textarea:focus {
    border-color: var(--color2);
}

.contact-us-form button {
    background: var(--color1);
    border: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding: 5px 30px;
    border-radius: 20px;
    transition: 0.3s;
    height: 50px;
}

.contact-us-form button:hover {
    background: transparent;
    color: var(--color2);
}

.contact-box-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.contact-info-text {
    text-align: justify;
    font-size: 17px;
    font-weight: 300;
    line-height: 2;
}

@media (max-width: 767px) {
    .contact-info-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact-box-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact-info-text {
        font-size: 13px;
    }

    .responsive-map {
        padding-bottom: 200px;
    }

    .responsive-map iframe {
        height: 200px;
    }

    .contact-box {
        padding: 15px;
    }

    .contact-box-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .contact-us-form label {
        font-size: 14px;
    }

    .contact-us-form button {
        height: 36px;
        width: auto;
        font-size: 12px;
    }

}

.bakers-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.bakers-tab {
    display: flex;
    flex-wrap: wrap;
}

.bakers-tab a {
    margin-right: 10px;
    padding: 12px 30px;
    color: #322C21;
    border-radius: 20px;
}

.bakers-tab a.active {
    background: #E7AD5C;
}

.bakers-search {
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin-top: 15px;
    overflow: hidden;
    border: 1px solid #979797;
    width: 100%;
    max-width: 500px;
}

.bakers-search input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    padding: 10px 20px;
}

.bakers-search button {
    height: 100%;
    width: 50px;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    color: var(--color2);
}

.card-baker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-baker-banner {
    width: 100%;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
}

.card-baker-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    max-width: 155px;
    max-height: 155px;
    object-fit: cover;
    box-shadow: 0 4px 10px 0 #00000040;
    margin-top: -50px;
}

.card-baker-title {
    font-size: 18px;
    font-weight: 400;
    margin-top: 20px;
    color: #322C21;
}

.card-baker-rate {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: var(--color1);
    transition: 0.3s;
}

.card-baker-btn {
    border: 1px solid #322C21;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin-top: 20px;
    border-radius: 20px;
    max-width: 162px;
    color: #322C21;
    transition: 0.5s;
}


.card-baker-btn:hover {
    background: var(--color1);
    border-color: var(--color1);
    color: #000;
}

@media (max-width: 767px) {

    .bakers-flex {
        margin-top: 20px;
        flex-direction: column-reverse;
        margin-bottom: 20px;
    }

    .bakers-tab a {
        margin-right: 5px;
        padding: 10px 25px;
        margin-top: 15px;
        font-size: 14px;
    }

    .card-baker {
        padding-bottom: 15px;
    }

    .card-baker-img {
        margin-top: -75px;
    }

    .card-baker-img {
        max-width: 130px;
        max-height: 130px;
    }
}


.order-body {
    margin-top: 105px;
    background: #F9F8F7;
    margin-bottom: -70px;
}

.order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 30px;
}

.order-mute {
    color: #7C7C7C;
    font-size: 17px;
    font-weight: 400;
}

.order-item-img {
    width: 143px;
    height: 110px;
    border-radius: 20px;
    object-fit: contain;
}

.order-item-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #00000033;
    padding-bottom: 30px;
    margin-top: 30px;
}

.order-item:last-child {
    border-bottom: 0;
}

.order-title {
    font-size: 17px;
    font-weight: bold;
    color: #322C21;
}

.order-item-count {
    display: flex;
    align-items: center;
    max-width: 140px;
    height: 42px;
    border: 1px solid #00000040;
    border-radius: 50px;
    background: #fff;
}

.order-item-count button {
    width: 100%;
    text-align: center;
    height: 100%;
    background: transparent;
    border: 0;
    font-size: 14px;
}

.order-item-count input {
    width: 100%;
    text-align: center;
    height: 100%;
    border: 0;
    outline: none;
    cursor: unset;
    font-size: 20px;
    background: transparent;
}

.order-item-price {
    font-size: 20px;
    font-weight: 700;
    color: #322C21;
}

.order-item-off {
    font-size: 18px;
    color: #666;
    text-decoration: line-through;
}

.order-item-delete {
    background: transparent;
    width: 40px;
    height: 40px;
    border: 0;
    color: #BFBFBF;
}

.order-side {
    background: #fff;
    height: 100%;
    padding: 40px;
    text-align: center;
}

.order-side-title {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    margin-bottom: 35px;
}

.order-btn-1 {
    height: 50px;
    width: 100%;
    border: 1px solid #00000033;
    background: #F0EDE5;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.order-btn-2 {
    height: 50px;
    width: 100%;
    border-radius: 20px;
    background: #C68A37;
    border: 0;
    font-weight: 600;
    transition: 0.3s;
}

.order-btn-3 {
    width: 100%;
    height: 50px;
    border-radius: 20px;
    margin-top: 20px;
    background: #322C21;
    color: #fff;
    border: 0;
    transition: 0.3s;
}


.order-btn-1:hover {
    opacity: 0.7;
}

.order-btn-2:hover {
    opacity: 0.7;
}

.order-btn-3:hover {
    opacity: 0.7;
}

.order-input {
    border: 1px solid #322C21;
    width: 100%;
    height: 50px;
    border-radius: 20px;
    margin-top: 20px;
    outline-color: var(--color1);
    padding: 10px;
}

.order-select {
    height: 50px;
    width: 100%;
    border: 1px solid #00000033;
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    outline-color: var(--color2);
    margin-top: 10px;
}

.order-space {
    font-size: 21px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 15px;
}

.order-border {
    border: 1px solid #00000033;
    margin: 30px 0;
}

.order-flex {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.h-sm-100 {
    height: unset;
}

@media (max-width: 767px) {
    .h-sm-100 {
        height: 100%;
    }

    .order-body {
        margin-top: 70px;
        margin-bottom: -35px;
    }

    .order-item {
        flex-wrap: wrap;
        padding-bottom: 15px;
        margin-top: 15px;
    }

    .order-item-count {
        max-width: 110px;
        height: 40px;
    }

    .order-item-img {
        width: 80px;
        height: 80px;
    }

    .order-title {
        font-size: 14px;
    }

    .order-title {
        font-size: 14px;
    }

    .order-item-off {
        font-size: 16px;
    }


}


.modal-login .modal-content {
    border-radius: 16px;
}

.modal-login-input {
    height: 56px;
    width: 100%;
    background: #fff;
    border: 1px solid #C4C7C7;
    padding: 10px;
    border-radius: 16px;
    outline-color: var(--color1);
    margin-top: 30px;
}

.modal-login .modal-dialog {
}

.modal-login .modal-body {
    padding: 40px;
}

.btn-default {
    background: var(--color1);
    border: 1px solid var(--color1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-default:hover {
    background: transparent;
    color: var(--color1);
}

.modal-login-logo {
    text-align: center;
}

.modal-login-logo img {
    height: 100px;
}

.modal-login-title {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
}

.modal-login-text {
    margin-top: 5px;
}

.modal-login-btn {
    width: 100%;
    margin-top: 15px;
    height: 48px;
    border-radius: 40px;
    transition: 0.3s;
    background: var(--color1);
    border: 1px solid var(--color1);
    color: #fff;
}

.modal-login-btn:hover {
    background: transparent;
    color: var(--color1);
}

.modal-login-btn-2 {
    width: 100%;
    margin-top: 15px;
    height: 48px;
    border-radius: 40px;
    transition: 0.3s;
    background: #FAE9E8;
    border: 1px solid #FAE9E8;
    color: #000;
}

.modal-login-btn-2:hover {
    background: #000;
    color: #fff;
}

.modal-login-mute {
    margin-top: 30px;
    font-size: 13px;
}

.modal-login .close {
    font-size: 30px;
    position: absolute;
    left: 20px;
    top: 20px;
}

.modal-login-msg {
    margin-top: 5px;
    font-size: 14px;
    color: var(--color1);
}

.modal-login-badge {
    font-size: 14px;
    background: #FAE9E8;
    display: flex;
    align-items: center;
    color: #E34D24;
    padding: 5px 10px;
    border-radius: 30px;
    transition: 0.3s;
    margin-top: 10px;
    cursor: pointer;
}

.modal-login-badge:hover {
    background: #E34D24;
    color: #FAE9E8;
}

.modal-login-btn-mute {
    background: transparent;
    border: 0;
    font-size: 14px;
    color: #2A9ACE;
    margin-top: 10px;
}

.modal-login-btn-mute:hover {
    color: var(--color1);
}

.otp-body {
    display: flex;
    align-items: center;
    direction: ltr;
    justify-content: center;
    margin-top: 30px;
}

.otp {
    width: 100%;
    max-width: 98px;
    height: 88px;
    border: 1px solid #C4C7C7;
    border-radius: 16px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #444748;
    outline-color: var(--color1);
    direction: ltr;
    margin: 0 5px;
}

div#timer {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

div#timer span {
    width: 30px;
    display: block;
    margin-left: 5px;
}

#send-otp {
    color: #2A9ACE;
    margin: auto;
    margin-top: 30px;
    background: transparent;
    border: 0;
}

.tab-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.tab-info .nav {
    justify-content: right;
    background: #EFF1F1;
    padding: 5px;
    border-radius: 14px;
    width: 100%;
}

.tab-info .nav a {
    border-radius: 12px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 10px 4px;
    color: #000;
    cursor: pointer;
    font-weight: 400;
}

.tab-info .nav a.active {
    background: var(--color1);
    color: #fff;
    font-weight: 600;
}

.tab-info .tab-content {
    margin-top: 20px;

}


.modal-header {
    font-size: 1.2em;
}

.modal-footer {
    justify-content: flex-end;
}


.basket-alert-btn {
    width: 98%;
}

#product-basket-image {
    width: 95px;
}

#product-basket-title {
    font-size: 14px;
    font-weight: bold;
}

#exampleModalLabel {
    color: var(--color1);
}

#productModal {
    top: 25%;
}

.border-basket {
    border: 1px solid #ff6e00 !important;
    padding: 10px;
    border-radius: 10px;
}

.basket-additives {
    width: 110px;
    display: grid;
    text-align: right;
}


.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.search-modal-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) scale(0.9);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 90%;
    max-width: 550px;
}

.search-modal-overlay.active,
.search-modal-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-wrapper.active {
    transform: translate(-50%, -50%) scale(1);
}

.search-modal-wrapper .home-wrap-1-inner {
    position: relative !important;
    z-index: auto !important;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-btn.search-modal-trigger {
    font-size: 1.2rem;
}

.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.toast.success {
    background: #2ecc71;
}

.toast.error {
    background: #e74c3c;
}

.toast.info {
    background: #3498db;
}

.toast.warning {
    background: #f39c12;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


.home-wrap-3 {
    margin-top: 10px;
}

.home-wrap-3-img-body {
    position: relative;
    width: 100%;

    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://iranyo.com/uploads/slides/7.webp?v=1756822744);

    background-size: cover;
    background-position: center center;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    min-height: 290px;
    box-sizing: border-box;
}

.home-wrap-3-info {
    max-width: 1020px;
    width: 100%;
    text-align: left;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.home-wrap-3-title {
    color: #ffffff;
    font-size: 2.2rem;
    text-align: left;
    font-weight: bold;
    margin-bottom: 1rem;

    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.home-wrap-3-info > div[style] {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    text-align: inherit !important;
}

.home-wrap-3-info p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #f0f0f0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);

    max-width: 650px;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .home-wrap-3-img-body {
        padding: 3rem 1rem;
        min-height: 250px;
    }

    .home-wrap-3-info {
        text-align: center;
    }

    .home-wrap-3-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .home-wrap-3-info p {
        font-size: 1rem;
        max-width: 100%;
    }
}