@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
}

a {
    text-decoration: none !important;
}

:root {
    --main-color: #E7272D;
    --sub-color: #FFE119;
    --third-color: white;
    --smoke-color: #faf7f2;
}

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

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: var(--main-color);
}

/*top header style*/
header {
    background: var(--main-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 999;
}

.top-haeder {
    padding: 10px 0px;
    border-bottom: 1px solid #ffffff50;
}

.top-header-left .currency a,
.top-header-left .language a {
    outline: none;
    background: transparent;
    color: var(--third-color);
    border: none;
    font-size: 13px;
}

.top-header-left .currency .option-menu,
.language .option-menu {
    background-color: var(--third-color);
    width: 100%;
    clip-path: polygon(100% 100%, 0 100%, 0 10%, 44% 10%, 50% 0, 56% 10%, 100% 10%);
    padding-top: 11px;
    transform: translate(0px, 25px);
    opacity: 0;
    display: none;
}

.top-header-left .currency .option-menu li a,
.language .option-menu li a {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: .6s;
}

.top-header-left .currency .option-menu li,
.language .option-menu li {
    background-color: var(--third-color);
    text-align: center;
    padding: 5px 10px;
    transition: .6s;
    cursor: pointer;
}

.top-header-left .currency .option-menu li:hover,
.language .option-menu li:hover {
    transition: .6s;
}

.top-header-left .currency .option-menu li:hover a,
.language .option-menu li:hover a {
    transition: .6s;
    color: var(--main-color);
}


.top-header-left .currency>a,
.language>a {
    font-size: 13px;
    display: flex;
    color: var(--third-color);
    width: 100px;
    justify-content: space-between;
}

.language>a {
    width: 80px;
}

.top-header-left .currency>a span:nth-child(2),
.language>a span:nth-child(2) {
    display: block;
    margin-top: 2px;
}

.top-header-left .currency,
.top-header-left .language {
    position: relative;
}

.top-header-left .currency:hover .option-menu,
.language:hover .option-menu {
    animation: fade-up .5s ease-in-out forwards alternate;
    display: block;
}

@keyframes fade-up {
    0% {
        transform: translate(0px, 25px);
        opacity: 0;

    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

.top-header-left .currency .option,
.language .option {
    width: 150px;
    position: absolute;
    z-index: 9;
}

.top-header-right ul.user_option li a {
    color: var(--third-color);
    font-size: 14px;
    transition: .6s;
}

.top-header-right ul.user_option li a:hover {
    color: var(--sub-color);
    transition: .6s;
}

/*header style*/
.logo a h3 {
    font-size: 45px;
    color: var(--sub-color);
    margin-bottom: 0;
}

.logo a h3 span {
    color: var(--third-color);
}

.main-header {
    padding: 10px 0px;
    border-bottom: 1px solid #ffffff50;
}

.header_left .search-bar form.search-bar-form {
    position: relative;
    width: 300px;
    height: 45px;
}

.offcanvas2 .offcanvas-header>button:hover {
    background-color: var;
}

.offcanvas2 .offcanvas-header {
    background: var(--main-color);
}

.offcanvas2 {
    width: 300px !important;
}

.offcanvas2 button.btn-close {
    background: var(--sub-color) !important;
    color: var(--main-color) !important;
    transition: .6s;
}

.offcanvas2 button.btn-close:hover {
    background: var(--third-color) !important;
    transition: .6s;
}

.page_button {
    padding: 10px 25px;
    font-weight: 600;
    outline: none;
    border: none;
    background-color: var(--third-color);
    color: var(--main-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: .6s;
    font-size: 16px;
}

.page_button span {
    position: relative;
    z-index: 9;
}

.page_button::after {
    content: " ";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: var(--sub-color);
    display: block;
    left: 0;
    top: 0;
    transition: .6s;

}

.page_button:hover span {
    color: var(--main-color);
}

.page_button:hover::after {
    width: 100%;
}

.header_left .search-bar form.search-bar-form input {
    outline: none;
    border: 1px solid var(--sub-color);
    padding: 0px 15px;
    background: var(--third-color);
    font-size: 14px;
    width: 100%;
    height: 100%;
    color: #333;
    border-radius: 3px;
}

.header_left .search-bar form.search-bar-form input::placeholder {
    color: #333;
}

.header_left .search-bar form.search-bar-form button {
    position: absolute;
    outline: none;
    height: 100%;
    width: 45px;
    border: none;
    right: 0;
    background: var(--sub-color);
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    cursor: pointer;
    transition: .6s;
    color: var(--main-color);
}

.header_left .search-bar form.search-bar-form button:hover {
    color: var(--main-color);
    background: var(--sub-color);
    transition: .6s;
}

.header_left .shopping_option ul li a {
    width: 40px;
    height: 100%;
    display: block;
}

.bottom_header {
    border-bottom: 1px solid #ffffff50;
}

.bottom_header_wrapper {
    padding: 5px 0px;
}

.header_left .shopping_option ul {
    height: 40px;
}

.header_left .shopping_option ul {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.header_left .shopping_option ul li a {
    width: 45px;
    display: block;
    display: grid;
    place-items: center;
    height: 45px;
    background: var(--third-color);
    color: var(--main-color);
    border-radius: 3px;
    transition: .6s;
    font-size: 14px;
}

.header_left .shopping_option ul li a:hover {
    transition: .6s;
    background: var(--sub-color);
}

.header_left .shopping_option ul li:last-child .shop_div2 a {
    background: transparent;
    color: var(--third-color);
    border: none;
    width: 80px;
}

.header_left .shopping_option ul li:last-child a:hover .shopping_option ul li:nth-child(2) .shop_div a {
    background: var(--sub-color);
    color: var(--main-color);
    transition: .6s;
}

.header_left .shopping_option ul li:nth-child(2) .shop_div a:before {
    content: "0";
    position: absolute;
    width: 25px;
    display: grid;
    height: 25px;
    background: var(--sub-color);
    border-radius: 3px;
    color: var(--main-color);
    place-items: center;
    font-size: 14px;
    left: -13px;
    transition: .6s;
}

.header_left .shopping_option ul li:nth-child(2) a {
    position: relative;
}

.header_left .shopping_option ul li:nth-child(2) .shop_div:hover a:before {
    background: var(--third-color);
    color: var(--main-color);
}

.header_left .shopping_option ul li:nth-child(2) .shooping_overview .shopping_wrapper {
    width: 500px;
    height: 200px;
    background: var(--third-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    clip-path: polygon(0 97%, 0 7%, 89% 7%, 92% 0, 95% 7%, 100% 7%, 100% 100%);
}

.header_left .shopping_option ul li:nth-child(2) .shooping_overview {
    position: absolute;
    right: 0;
    display: none;
    transform: translate(0px, 20px);
    padding: 10px;
    padding-right: 0;
    padding-top: 5px;
    z-index: 99;
}

.header_left .shopping_option ul li:nth-child(2) {
    position: relative;
}

.header_left .shopping_option ul li:nth-child(2):hover .shooping_overview {
    display: block;
    animation: fade_shop .8s ease-in-out forwards alternate;
}

@keyframes fade_shop {
    0% {
        transform: translate(0px, 20px);
        opacity: 0;

    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

ul#desktop_menu .nav-item {
    margin-right: 10px;
}

ul#desktop_menu {
    padding: 10px 0px;
    flex-direction: row;
    gap: 20px;
    color: white;
    font-size: 14px;
    align-items: center;
}

.nav-link {
    color: var(--third-color) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.cart_info .cart_button .decrease {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.cart_info .cart_button .increase {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.cart_product .single_product.d-flex .cart_img {
    width: 110px;
    height: 110px;
    margin-right: 10px;
    border-radius: 100%;
    border: 2px solid var(--main-color);
    overflow: hidden;
    background: white;
}

.cart_product .single_product.d-flex .cart_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div#offcanvasRight {
    background-color: var(--third-color);
    color: var(--main-color);
    min-height: 100vh;
}

.offcanvas-header {
    border-bottom: 1px solid var(--main-color);
}

.cart_info .cart_star span {
    color: var(--main-color);
    font-weight: 500;
}

.cart_info h3 a {
    color: black;
    font-size: 22px;
    margin-bottom: 5px;
    transition: .6s;
}

.cart_info h3 a:hover {
    color: var(--main-color);
    transition: .6s;
}

.cart_info .cart_product_price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart_info .cart_button span {
    font-size: 12px;
    width: 25px;
    height: 100%;
    /* border-radius: 100%; */
    background: var(--sub-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart_info .cart_button input::-webkit-inner-spin-button,
.cart_info .cart_button input::-webkit-outer-spin-button,
.single_input input[type="number"]::-webkit-inner-spin-button,
.single_input input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
}

.cart_info .cart_button input {
    width: 50px;
    background: var(--main-color);
    outline: none;
    border: none;
    text-align: center;
    color: var(--sub-color);
    height: 35px;
    font-size: 16px;
    padding: 0px 10px;
}

.cart_info .cart_star {
    font-size: 11px;
    align-items: center;
    margin-bottom: 5px;
}

.cart_info .cart_star .review_count {
    margin-left: 5px;
}

.cart_info .cart_star {
    font-size: 11px;
    align-items: center;
    margin-bottom: 5px;
    color: #EFC80B;
}

.cart_info .cart_star .review_count {
    margin-left: 5px;
}

.offcanvas-header>button {
    background: var(--main-color) !important;
    opacity: 1;
    color: var(--sub-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    transition: .6s;
}

.offcanvas-header>button:hover {
    transition: .6s;
    background-color: var(--sub-color) !important;
    color: var(--main-color) !important;
    opacity: 1;
}

.cart_view {
    padding: 15px 0px;
    border-top: 1px solid var(--main-color);
}

.cart_product {
    padding: 20px 0px;
}

.cart_view .cart_count h3 {
    margin-bottom: 0;
    font-size: 22px;
}

.cart_view .cart_count .cart_total {
    font-size: 16px;
    font-weight: 500;
}

.cart_view .cart_view_button {
    margin-top: 15px;
    gap: 15px;
}

.cart_view .cart_view_button a {
    padding: 15px 35px;
    background: var(--sub-color);
    color: var(--main-color);
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: .6s;
    width: 100%;
    text-align: center;
}

.cart_view .cart_view_button a:hover {
    background: var(--main-color);
    color: var(--sub-color);
    transition: .6s;
}

.cart_view .cart_view_button a:last-child:hover {
    background: var(--sub-color);
    color: var(--main-color);
    transition: .6s;
}

.cart_view .cart_view_button a:last-child {
    background: var(--main-color);
    color: var(--sub-color);
    transition: .6s;
}

.button_side {
    display: flex;
}

.button_side a:hover span {
    color: var(--main-color);
    z-index: 9;
    position: relative;
    transition: .6s;
}

.button_side a::after {
    content: " ";
    background: var(--third-color);
    position: absolute;
    width: 0%;
    height: 100%;
    transition: .6s;
}

.button_side a:hover::after {
    width: 100%;
    transition: .6s;
}

.button_side a {
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    padding: 0 25px;
    color: var(--main-color);
    background-color: var(--sub-color);
    font-size: 16px;
    font-weight: 600;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    right: 0;
    transition: .6s;
}

.bottom_header_wrapper .button_side button {
    height: 45px;
    border: none;
    outline: none;
    width: 45px;
    font-size: 20px;
    background: var(--third-color);
    color: var(--main-color);
    border-radius: 3px;
    transition: .6s;
}

.bottom_header_wrapper .button_side button:hover {
    background: var(--sub-color);
    color: var(--main-color);
    transition: .6s;
}

/* header sticky animation */
header.sticky_animation {
    position: sticky;
    top: 0;
    transform: translate(0px, 20px);
    animation: sticky_anim 1s alternate forwards ease-in-out;
}

@keyframes sticky_anim {
    0% {
        transform: translate(0px, -110px);
        opacity: 0;
    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

/*small screen searchBar Style*/
.search_bar {
    background: var(--third-color);
    color: white;
    height: 100vh;
    width: 100%;
    overflow: auto;
    position: fixed;
    z-index: 999;
    transform: translate(0px, -100%);
}

.search_bar .search_bar_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
}

.search_bar .search_bar_wrapper .search_bar_header h2 {
    text-align: center;
    font-size: 35px;
    color: var(--main-color);
}

.search_bar .search_bar_wrapper .search_bar_header p {
    text-align: center;
    color: #666;
}

.search_bar .search_bar_wrapper .search_bar_body {
    width: 80%;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input {
    position: relative;
    height: 40px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid var(--main-color);
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input input {
    position: absolute;
    width: 100%;
    outline: none;
    border: 1px solid transparent;
    padding: 0px 50px;
    padding-right: 150px;
    font-size: 14px;
    height: 100%;
    border-radius: 5px;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input>span {
    display: block;
    width: 40px;
    height: 100%;
    background: transparent;
    z-index: 9;
    display: grid;
    place-items: center;
    color: #999;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn {
    height: 100%;
    z-index: 9;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn select.filter {
    outline: none;
    border: 1px solid transparent;
    height: 40px;
    width: 90px;
    cursor: pointer;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn button {
    width: 40px;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--third-color);
    background: var(--main-color);
    margin-left: 5px;
    border: none;
    outline: none;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn .search_option>span {
    color: var(--main-color);
    display: grid;
    place-items: center;
    margin-right: 5px;
}

.search_suggestion {
    margin-top: 30px;
    background: var(--main-color);
    padding: 20px 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transform: translate(0px, 70px);
    visibility: hidden;

}

@keyframes fade_top {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translate(0px, 70px);
    }

    100% {
        visibility: visible;
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

.search_suggestion .single_item {
    width: 100%;
    border-bottom: 1px solid var(--sub-color);
    padding: 4px 0px;
    background: var(--main-color);
    gap: 10px;
}

.search_suggestion .single_item .item_img {
    width: 15%;
    height: 40px;
    overflow: hidden;
}

.search_suggestion .single_item h3 {
    font-size: 16px;
    margin-bottom: 0px;
}

.search_suggestion .single_item {
    color: var(--third-color);
}

.search_suggestion .single_item .item_img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.search_suggestion li:first-child .single_item {
    border-top: 1px solid var(--sub-color);
}

.search_bar_wrapper .search_close {
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    background-color: var(--main-color);
    color: var(--sub-color);
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.search_icon {
    color: var(--main-color);
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: var(--third-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: .6s;
}

.search_icon:hover {
    background: var(--sub-color);
    transition: .6s;
}

@keyframes show_searchbar {
    0% {
        display: none;
        transform: translate(0px, -100%);
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@keyframes fade_down {
    0% {
        opacity: 1;
        transform: translate(0px, 0px);
    }

    100% {
        transform: translate(0px, -100%);
        opacity: 0;
    }

}

/*prelaoder style*/
.preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: var(--sub-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.spinner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 9px solid;
    border-color: var(--main-color) #0000;
    animation: spinner-0tkp9a 1s infinite;
}

@keyframes spinner-0tkp9a {
    to {
        transform: rotate(.5turn);
    }
}

.preloader h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 85px;
    letter-spacing: 10px;
    color: #0000002e;
    animation: text_anim 1s ease-in infinite alternate;
}

@keyframes text_anim {
    0% {
        transform: translate(-50%, -47%);
    }

    100% {
        transform: translate(-50%, -53%);
    }
}

.preloader svg {
    width: 150px;
}

.cookies_alert {
    position: fixed;
    bottom: 30px;
    left: -400%;
    background-color: var(--third-color);
    padding: 25px;
    z-index: 99999;
    width: 400px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@keyframes cookies_close {
    0% {
        left: 20px;
        opacity: 1;
    }

    100% {
        left: -400%;
        opacity: 0;
    }
}

@keyframes cookies_open {
    0% {
        left: -400%;
        opacity: 0;
    }

    100% {
        left: 20px;
        opacity: 1;
    }
}

.cookies_icon {
    display: block;
    font-size: 100px;
    color: #c79846;
    position: absolute;
    top: -68px;
    right: -50px;
}

.cookies_alert .cookies_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.cookies_alert .cookies_wrapper p {
    color: #333;
    font-size: 14px;
    line-height: 1.6rem;
}

.cookies_alert .cookies_wrapper button {
    outline: none;
    border: none;
    padding: 10px 25px;
    border-radius: 3px;
    background-color: var(--main-color);
    color: var(--third-color);
    font-size: 15px;
    cursor: pointer;
}

.cookies_alert .cookies_wrapper .close_btn {
    background-color: #333;
}

/* accordian style */
.accordion-container .accordion-title {
    position: relative;
    margin: 0;
    display: block;
    font-weight: normal;
    color: black;
    cursor: pointer;
}

.accordion-content {
    border: 1px solid var(--main-color);
    padding: 10px;
}

.accordion-container .accordion-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 12px;
    height: 2px;
    transform: rotate(90deg);
    background: black;
    transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 12px;
    height: 2px;
    background: black;
    transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
    transform: rotate(180deg);
    background: var(--third-color);
}

.accordion-container .accordion-title.open::after {
    opacity: 0;
    background: var(--third-color);
}

.accordion-content a {
    display: block;
    padding: 5px 0px;
    color: var(--main-color);
    transition: .6s;
}

.accordion-content a:hover {
    color: #333;
    transition: .6s;
}


.accordion-container .menu_item {
    color: var(--main-color);
    font-size: 16px;
    padding: 10px;
    width: 100%;
    display: block;
    transition: .6s;
}

.accordion-container .menu_item:hover {
    color: var(--third-color);
    transition: .6s;
    background: var(--main-color);
}

.accordion-container .accordion-title.open {
    background-color: var(--main-color);
    color: var(--third-color);
}

.accordion-container .accordion-title:hover::before {
    background: var(--third-color);
}

.accordion-container .accordion-title:hover::after {
    background: var(--third-color);
}

section#hero_section .side_option {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    z-index: 99;
    margin-right: 5px;
}

.side_option .single_option {
    width: 40px;
    height: 40px;
    background-color: var(--sub-color);
    color: var(--main-color);
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--main-color);
    border-radius: 5px;
    transition: .6s;
}

.side_option .single_option:hover {
    background-color: var(--third-color);
    transition: .6s;
}

.cart_product .single_product {
    position: relative;
}

.single_product .product_delete {
    background: var(--main-color);
    width: 20px;
    height: 20px;
    position: absolute;
    top: -10px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    font-size: 10px;
    cursor: pointer;
    transition: .6s;
    color: var(--sub-color);
}

.single_product .product_delete:hover {
    outline: 1px solid var(--sub-color);
    transition: .6s;
}

/* @media only screen and (max-width: 668px) {
    .top-header-wrapper {
        flex-direction: column;
        gap: 10px;
    }
} */
/* full header style end */
/*shop section style*/

.shop_wrapper .archive-header {
    margin-top: 20px;
    margin-bottom: 50px;
    background: linear-gradient(90deg, var(--main-color), transparent), url("/image/shop_bg2.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    padding: 30px 60px;
}

.shop_wrapper .archive-header h2 {
    font-size: 40px;
    color: white;
}

ul.tag_list {
    flex-wrap: wrap;
}

ul.tag_list li a {
    font-size: 13px;
    color: var(--main-color);
    padding: 5px 11px;
    background: var(--third-color);
    border-radius: 50px;
    display: flex;
    gap: 5px;
    align-items: center;
    transition: .6s;
    font-weight: 500;
}

ul.tag_list li a span {
    width: 15px;
    height: 15px;
    display: inline-block;
    background: #ededed;
    border-radius: 100%;
    position: relative;
    transition: .6s;
}

ul.tag_list li a span svg {
    font-size: 10px;
    color: #666;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

ul.tag_list li a:hover {
    transform: translate(0px, -5px);
    transition: .6s;
    color: #333;
}

.shop_wrapper .archive-header ul.breadcrumb_div {
    display: flex;
    gap: 25px;
    margin-bottom: 0;
}

.shop_wrapper .archive-header ul.breadcrumb_div li a {
    color: #c3c3c3;
    font-size: 15px;
    transition: .6s;
}

.shop_wrapper .archive-header ul.breadcrumb_div li:nth-child(2) a::before,
.shop_wrapper .archive-header ul.breadcrumb_div li:last-child a::before {
    content: ">";
    position: absolute;
    font-size: 16px;
    transform: translate(-17px, 0px);
}

.shop_wrapper .archive-header ul.breadcrumb_div li a:hover {
    color: var(--third-color);
    transition: .6s;
}

.shop_wrapper .archive-header ul.breadcrumb_div li:first-child a {
    color: var(--third-color);
}

/* aside style start */


aside .filter_price .price_inputs {
    align-items: center;
}

aside .filter_price .price_inputs .field {
    display: flex;
    align-items: center;
}

aside .filter_price .price_inputs .field input {
    width: 65px;
    font-size: 15px;
    padding: 5px;
    outline: none;
    appearance: none;
    border-radius: 3px;
    border: 1px solid #c3c3c3;
    text-align: center;
}

aside .filter_price .price_inputs .field input:focus {
    border: 1px solid var(--main-color);
}

aside .filter_price .price_inputs .field span {
    font-size: 15px;
    width: 40px;
    display: grid;
    place-items: center;
    background: #c3c3c3;
    height: 34px;
}

aside .filter_price .price_inputs .field input[type="number"]::-webkit-outer-spin-button,
aside .filter_price .price_inputs .field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

aside .filter_price .price_ragne {
    height: 5px;
    background-color: #c3c3c3;
    margin: 30px 0;
}

aside .filter_price .price_ragne .price_progress {
    height: 5px;
    background: var(--main-color);
    border-radius: 50px;
    position: absolute;
    left: 0;
    right: 0;

}

.filter_price .price_ragne {
    position: relative;
}


aside .filter_price .price_ragne .range_div {
    position: relative;
}

aside .filter_price .price_ragne .range_div input {
    position: absolute;
    height: 5px;
    width: 100%;
    background-color: var(--main-color);
    background: none;
    appearance: none;
    -moz-appearance: textfield;
    pointer-events: none;
    cursor: pointer;
}

aside .filter_price .price_ragne .range_div input::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    background: var(--main-color);
    border-radius: 100%;
    -webkit-appearance: none;
    pointer-events: auto;
}

aside .filter_price .price_ragne .range_div input::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: var(--main-color);
    border-radius: 100%;
    -moz-appearance: none;
    pointer-events: auto;
}

.product_area aside {
    width: 280px;
    position: relative;
}

.product_area aside .aside_wrapper {
    padding: 30px 15px;
    background: var(--smoke-color);
    position: relative;
    border-radius: 10px;
}

.product_area aside .aside_title h2 {
    font-size: 30px;
    color: #333;

}

.product_area aside .aside_title {
    margin-bottom: 20px;
}

.product_area aside .aside_title button {
    background: transparent;
    border: none;
    outline: none;
    color: var(--main-color);
    font-weight: 500;
    font-size: 16px;
    transition: .6s;
}

.product_area aside button:hover {
    transition: .6s;
    color: #333;
}

.product_area aside .category .single_category {
    display: flex;
    gap: 10px;
    align-items: center;
}

.category_wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product_area aside .category .single_category label {
    color: #333;
    font-size: 17px;
    transition: .6s;
}

.product_area aside .category .single_category label:hover {
    color: var(--main-color);
    transition: .6s;
}

.div_title {
    font-size: 22px;
    margin-bottom: 15px;
}

.tags .tags_wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags_wrapper a {
    padding: 5px 10px;
    background-color: transparent;
    font-size: 14px;
    border: 1px solid #777;
    border-radius: 50px;
    color: var(--main-color);
    transition: .6s;
}

.tags_wrapper a:hover {
    transition: .6s;
    color: var(--third-color);
    border: 1px solid var(--main-color);
    background: var(--main-color);
}

.price_head button {
    padding: 5px 25px;
    background-color: var(--main-color);
    color: var(--third-color);
    transition: .6s;
    border-radius: 50px;
    border: 1px solid transparent;
    outline: none;
    font-size: 14px;
    font-weight: 500;
}

.price_head button:hover {
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.price_head .div_title {
    margin-bottom: 0;
}

.price_head {
    margin-bottom: 20px;
}

.single_food .food_img {
    width: 30%;
}

.single_food .food_info {
    margin-left: 8px;
}

.single_food .food_info .food_rating svg {
    font-size: 11px;
    color: #F5C314;
}

.single_food .food_info .food_title a:hover {
    color: var(--main-color);
    transition: .6s;
}

.single_food .food_info .food_title a {
    font-size: 18px;
    margin: 5px 0px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
    transition: .6s;

}

.single_food .food_info .food_price {
    color: #333;
    font-weight: 600;
    margin: 5px 0px;
    margin-bottom: 0;
}

.side_bar_close {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    color: var(--third-color);
    background-color: var(--main-color);
    border-radius: 50%;
    font-size: 14px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: .6s;
}

.side_bar_close:hover {
    color: var(--third-color);
    background-color: #333;
    transition: .6s;
}

.shop_wrapper .archive-header .crumb_section {
    margin-bottom: 25px;
}

.shop_wrapper .archive-header .crumb_section .food_searchBar input {
    width: 100%;
    padding: 5px 40px;
    padding-right: 90px;
    border-radius: 5px;
    height: 100%;
    outline: none;
    border: 1px solid var(--third-color);
    color: #333;
}

.shop_wrapper .archive-header .crumb_section .food_searchBar button {
    padding: 5px 20px;
    border: none;
    outline: none;
    height: 100%;
    position: absolute;
    right: 0;
    background: var(--main-color);
    color: var(--third-color);
    font-size: 15px;
    font-weight: 500;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.shop_wrapper .archive-header .crumb_section .food_searchBar form {
    width: 100%;
    position: relative;
    height: 46px;
}

.food_searchBar {
    width: 480px;
}

.food_searchBar form .search_icon2 {
    background-color: transparent;
    height: 100%;
    display: grid;
    place-items: center;
    color: #999;
    position: absolute;
    left: 0;
    width: 40px;
}

.food_searchBar form .search_icon2 svg {
    transition: .6s;
}

.food_searchBar form .search_icon2 svg:last-child {
    opacity: 0;
    position: absolute;
    transform: translateX(10px);
    transition: .6s;
}

.search_bar_container {
    width: 100%;
    height: 100%;
}

.product_view .single_view {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    background: #ededed;
    color: #333;
    margin-right: 10px;
    cursor: pointer;
}

.product_view .single_view img {
    width: 44%;
}

.product_container {
    width: calc(100% - 300px);
}

.p_header_left>p {
    font-size: 15px;
    margin-right: 15px;
    color: #333;
}

.seal_input_select lable {
    font-size: 14px;
}

.seal_input_select label {
    font-size: 14px;
    color: #333;
}

.p-header-right {
    gap: 15px;
}

.p-header-right .pageShow_select .pageShow_select_btn p {
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
}

.p-header-right .pageShow_select .pageShow_select_btn,
.short_by_btn {
    padding: 5px 10px;
    background: var(--smoke-color);
    border-radius: 5px;
    cursor: pointer;
}

.p-header-right .short_by .short_by_btn p {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
}

.p-header-right .pageShow_select,
.short_by {
    position: relative;
}


.p-header-right .pageShow_select .pageShow_item_popup,
.short_list {
    position: absolute;
    bottom: 0;
    transform: translate(0, 100%);
    width: 100%;
    opacity: 0;
    z-index: 99;
    display: none;
}

@keyframes list_anim {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translate(0, 120%);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 100%);
    }
}

@keyframes list_anim_close {
    0% {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 100%);
    }

    100% {
        opacity: 0;
        visibility: hidden;
        transform: translate(0, 120%);

    }
}

.p-header-right .pageShow_select .pageShow_item_popup ul,
.short_list ul {
    background: var(--smoke-color);
    width: 100%;
    padding: 10px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.p-header-right .pageShow_select .pageShow_item_popup ul li:hover,
.short_list ul li:hover {
    background: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}

.p-header-right .pageShow_select .pageShow_item_popup ul li,
.short_list ul li {
    width: 100%;
    color: var(--main-color);
    font-size: 15px;
    font-weight: 500;
    transition: .6s;
    display: inline-block;
    padding: 5px 0px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.p-header-right .pageShow_select .pageShow_item_popup ul li a svg,
.short_list ul li a svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product_container_body .single_product {
    position: relative;
    height: 265px;
    background-color: var(--third-color);
    border-radius: 10px;
}

.product_container_body .single_product .product_overlay {
    position: absolute;
    width: 100%;
    right: 0;
    padding: 15px 10px;
    background: #e7272dde;
    bottom: 0;
    border-radius: 0px 0px 10px 10px;
    /* transform: translate(0px, 30px); */
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}

.product_rating svg {
    color: #F5C314;

}

.p-header-right .short_by {
    width: 176px;
}

.p-header-right .pageShow_select {
    width: 115px;
}

.product_container_body {
    background: var(--smoke-color);
    border-radius: 10px;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.product_container_body .single_product .product_img {
    width: 100%;
    margin: auto;
    height: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.product_container_body .single_product .product_img img {
    height: 100%;
    object-fit: contain;
}

.product_container_body .single_product .product_overlay .product_title {
    font-size: 15px;
    font-weight: 600;
    transition: .6s;
    margin-bottom: 2px;
}

.product_container_body .single_product .product_overlay .product_title a {
    color: var(--third-color);
}

.product_rating>p {
    color: var(--third-color);
    font-size: 12px;
    margin-bottom: 0;
}

.single_product .product_price {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    position: absolute;
    background-color: var(--main-color);
    color: var(--third-color);
    border-radius: 50%;
    font-size: 14px;
    right: 0;
}

.oerlay_header {
    margin-bottom: 5px;
}

.product_container_body .single_product .product_overlay .overlay_bottom span {
    font-size: 12px;
    background: var(--third-color);
    border-radius: 5px;
    color: var(--main-color);
    font-weight: 500;
    padding: 5px 0px;
    transition: .6s;
    text-align: center;
    cursor: pointer;
}

.product_container_body .single_product .product_overlay .overlay_bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    margin-top: 10px;
    width: 100%;
}

.product_container_body .single_product:hover .product_overlay {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    transition: .6s;
}

.product_container_body .single_product .product_overlay .overlay_bottom span:hover {
    background: var(--sub-color);
    transition: .6s;
}

.product_container_body .single_product .product_overlay .product_title a:hover {
    transition: .6s;
    color: var(--sub-color);
}

.sidebar_show {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--third-color);
    background-color: var(--main-color);
    place-items: center;
    font-size: 23px;
    font-weight: 600;
    display: none;
    margin-right: 10px;
    cursor: pointer;
}

.p-header-right .pageShow_select .pageShow_item_popup ul li svg,
.short_list ul li svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product_rating {
    font-size: 10px;
    margin-bottom: 15px;
}

.grid2_single_product {
    height: 300px !important;
}

.grid2_product_title {
    font-size: 20px !important;
}


/* for list view style */
.list_product_container_body {
    grid-template-columns: 1fr;
}

.list_single_product {
    display: flex;
}

.list_product_overlay {
    position: unset !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(0px, 0px);
    border-radius: 0px 10px 10px 0px !important;
    width: 150% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list_product_price {
    left: 10px;
    top: 10px;
}

.list_product_title {
    font-size: 24px !important;
}


/*product prassage*/
.list_product_rating_p {
    font-size: 16px !important;
}

/* for product rating */
.list_product_rating {
    margin-bottom: 15px !important;
    font-size: 16px !important;
}

/* for overlay bottom tag */
.list_overlay_bottom_a {
    font-size: 16px !important;
    height: 45px !important;
    display: grid !important;
    place-items: center !important;
}

/*list view style  end*/

/* pagination style */
.pagination_container {
    padding: 25px 15px;
}

.short_by p {
    color: #333;
    font-size: 16px;
    margin-bottom: 0;
}

/* quick view style */
.quick_view_popup {
    width: 100%;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 9999;
}

.quick_view_popup .popup_bg {
    background: #000000b3;
    width: 100%;
    position: absolute;
    height: 100%;
}
.quick_view_wrapper .close_quick_view:hover {
    background-color: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}
.quick_view_wrapper .close_quick_view{
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--main-color);
    background-color: var(--smoke-color);
    cursor: pointer;
    border-radius: 50%;
    transition: .6s;
}
.quick_view_popup .quick_view_wrapper {
    width: 720px;
    background: var(--third-color);
    z-index: 9;
    padding: 20px;
    height: 560px;
    border-radius: 10px;
    position: relative;
}
.quick_view_popup .quick_view_wrapper .right_side > a:hover {
    text-decoration: underline !important;
}
.quick_view_popup .quick_view_wrapper .right_side > a{
    font-size: 16px;
    color: #666;
}
.quick_view_popup .quick_view_wrapper .right_side .p_title {
    font-size: 25px;
    color: #333;
    font-weight: 600;
    margin-top: 5px;
}
.about_product .swiper-button-next2,
.swiper-button-next,
.swiper-button-prev,
.about_product .swiper-button-prev2 {
    width: 40px !important;
    height: 40px !important;
    background: var(--main-color) !important;
    border-radius: 50%;
}

.about_product .swiper-button-next2::after,
.swiper-button-next::after,
.swiper-button-prev::after,
.about_product .swiper-button-prev2::after {
    font-size: 18px !important;
    color: var(--third-color) !important;
    font-weight: 600;
}

.mySwiper3 .swiper-wrapper {
    padding: 30px 0px;
    padding-bottom: 50px;
}

.mySwiper3  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--main-color);
}
.mySwiper3 .swiper-slide {
    cursor: pointer;
}
.mySwiper2 .img_area {
    padding: 20px;
}
.quick_view_popup .quick_view_wrapper .right_side .quick_price {
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 10px;
}

.quick_view_popup .quick_view_wrapper .right_side .rating_info {
    padding: 10px 0px;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}
.quick_view_popup .quick_view_wrapper table.rating {
    width: 100%;
}

.quick_view_popup .quick_view_wrapper table.rating tr td {
    font-size: 16px;
}

.quick_view_popup .quick_view_wrapper table.rating tr td .rating_star {
    color: #EFCA00;
    font-size: 14px;
}

.quick_view_popup .quick_view_wrapper table.rating tr td {
    padding: 5px 0px;
}

.quick_view_popup .quick_view_wrapper p.product_des {
    font-size: 16px;
    color: #666;
    line-height: 1.6rem;
    padding: 10px 0px;
}

.quick_view_popup .quick_view_wrapper .quantity h4 {
    font-size: 20px;
    color: #333;
}
.quick_view_popup .quick_view_wrapper .quantity .quantity_wrapper span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background-color: #ededed;
    color: #333;
    cursor: pointer;
}
.quantity .quantity_wrapper input::-webkit-inner-spin-button,
.quantity .quantity_wrapper input::-webkit-outer-spin-button{
    appearance: none;
}
.quick_view_popup .quick_view_wrapper .quantity .quantity_wrapper input {
    width: 50px;
    height: 40px;
    outline: none;
    border: 1px solid #ededed;
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 5px
}
.quick_view_popup .quick_view_wrapper .add_btn a:hover {
    background: var(--third-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: .6s;
}
.quick_view_popup .quick_view_wrapper .add_btn a {
    display: grid;
    height: 45px;
    background: var(--main-color);
    border: 1px solid transparent;
    color: var(--third-color);
    place-items: center;
    margin-top: 15px;
    transition: .6s;
    border-radius: 10px;
}

.quick_view_popup .quick_view_wrapper .product_option_area ul li {
    font-size: 15px;
    padding: 5px 0px;
}












/* cart popup style */
.cart_button input::-webkit-inner-spin-button,
.cart_button input::-webkit-outer-spin-button {
    appearance: none;
}

.cart_popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.cart_popup .cart_popup_bg {
    position: absolute;
    width: 100%;
    background: #000000a6;
    bottom: 0;
    height: 100%;
}

.cart_popup .cart_wrapper {
    width: 720px;
    height: 550px;
    background: white;
    overflow: auto;
    border-radius: 5px;
    z-index: 9;
    padding: 25px 20px;
    position: relative;
    background: var(--smoke-color);
}

.cart_popup .cart_wrapper .cart_popup_close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: var(--main-color);
    color: var(--third-color);
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    transition: .6s;
    border: 1px solid transparent;
}

.cart_popup .cart_wrapper .message h3 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.cart_popup .cart_wrapper .message p {
    font-size: 15px;
    color: #334;
}

.cart_popup .cart_wrapper .message p svg {
    color: green;
    margin-right: 5px;
}

.cart_popup .cart_wrapper .cart_body {
    padding: 15px 0px;
    margin-bottom: 10px;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_left {
    gap: 10px;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_left .cart_img {
    width: 80px;
    padding: 6px;
    height: 80px;
    background: var(--third-color);
    border-radius: 100%;
    border: 2px solid var(--main-color);
    overflow: hidden;
}

.single_cart_product h4 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right {
    gap: 30px;
    width: 100%;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_product_price {
    font-size: 15px;
    font-weight: 500;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_button span {
    width: 25px;
    display: block;
    height: 25px;
    background: var(--main-color);
    color: var(--third-color);
    display: grid;
    place-items: center;
    font-size: 14px;
    height: 100%;
    cursor: pointer;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_button {
    display: flex;
    align-items: center;
    height: 30px;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_button input {
    outline: none;
    border: 1px solid var(--main-color);
    width: 35px;
    height: 100%;
    text-align: center;
    padding: 3px;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_product_remove {
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #333;
    background: #ededed;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: .6s;
}

.cart_details .cupon_area>h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.cart_details .cupon_area form.cupon_form {
    height: 40px;
    position: relative;
}

.cart_details .cupon_area form.cupon_form input {
    width: 100%;
    height: 100%;
    outline: none;
    border: 1px solid #666;
    border-radius: 5px;
    transition: .6s;
    padding: 0px 10px;
    font-size: 14px;
    color: #333;
}

.cart_details .cupon_area {
    width: 50%;
}

.cart_details {
    gap: 30px;
}

.cart_details .cupon_area form.cupon_form button {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0px 10px;
    outline: none;
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: var(--third-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px 5px 5px 0px;
}

.cart_details .cart_calculation>h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.cart_details .cart_calculation table.calculation_info tr td {
    font-size: 16px;
    padding: 3px 0px;
}

.cart_calculation {
    width: calc(100% - 50%);
}

.cart_calculation table.calculation_info {
    width: 100%;
    margin-bottom: 20px;
}

.cart_details .cart_calculation table.calculation_info tr td:last-child {
    text-align: right;
}

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

.calculation_btn a {
    font-size: 14px;
    font-weight: 500;
    background: var(--main-color);
    color: var(--third-color);
    padding: 10px 25px;
    border-radius: 10px;
    transition: .6s;
    border: 1px solid transparent;
}

.calculation_btn a:hover {
    background: var(--third-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: .6s;
}

.cart_bottom h3 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.cart_bottom {
    margin-top: 20px;
}

.cart_bottom .related_product {
    display: grid;
    grid-template-columns: auto auto;
}

.cart_bottom .related_product .single_r_product {
    gap: 20px;
}

.cart_bottom .related_product .single_r_product .related_p_img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    overflow: hidden;
    background: var(--third-color);
    padding: 10px;
}

.cart_bottom .related_product .single_r_product .related_p_img img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.cart_bottom .related_product .single_r_product .related_product_info h4 {
    font-size: 19px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.cart_bottom .related_product .single_r_product .related_product_info p {
    font-weight: 500;
    font-size: 15px;
}

.cart_bottom .related_product .single_r_product .related_product_info> button {
    outline: none;
    padding: 10px 20px;
    background: var(--main-color);
    color: var(--third-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    display: inline-block;
    margin-top: 15px;
    transition: .6s;
    border: 1px solid transparent;
}
.cart_bottom .related_product .single_r_product .related_product_info> button:hover {
    background: var(--three-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
}
.cart_bottom .related_product .single_r_product .related_product_info>a:hover {
    background: var(--third-color);
    color: var(--main-color);
    border: 1px solid;
    transition: .6s;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_product_remove:hover {
    background: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}

.cart_popup .cart_wrapper .cart_popup_close:hover {
    background: var(--third-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: .6s;
}

.cart_details .cupon_area form.cupon_form input:focus {
    border: 1px solid var(--main-color);
    transition: .6s;
}
.product_container_header {
    flex-wrap: wrap;
}

.p-header-right {
    flex-wrap: wrap;
}






/*shop section style end*/

/* footer style start */

/* footer style */
.social_link a {
    width: 40px;
    height: 40px;
    background-color: var(--third-color);
    color: var(--main-color);
    display: grid;
    place-items: center;
    font-size: 17px;
    border-radius: 50%;
    transition: .6s;
}

footer {
    background-color: #1A1A1A;
    padding: 80px 0px;
    position: relative;
    padding-top: 120px;
    margin-top: 250px;
}

.fire1 {
    width: calc(100vw - 1000px);
}

.fire1 img {
    width: 100%;
    object-fit: cover;
    height: 60px;
    object-position: center bottom;
    animation: fire_anim_down 1.5s linear infinite alternate;
    transform-origin: bottom;
    transition: .6s;
}

@keyframes fire_anim_down {
    0% {
        transform: rotateX(0deg);
    }

    100% {
        transform: rotateX(60deg);
    }
}

.footer_content .footer_content1 p {
    font-size: 15px;
    color: #c3c3c3;
    line-height: 1.6rem;
    margin: 20px 0px;
    margin-bottom: 30px;
}

.social_link a:hover {
    background: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}

.footer_content1 h3 {
    color: var(--main-color) !important;
}

.footer_content ul li a {
    font-size: 16px;
    color: #c3c3c3;
    transition: .6s;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.footer_content ul li a:hover {
    color: var(--main-color);
    transition: .6s;
}

.footer_content h3 {
    font-size: 25px;
    font-weight: 700;
    color: var(--third-color);
    margin-bottom: 30px;
}

.footer_content table {
    width: 100%;
}

.footer_content table tr td {
    width: 50%;
    color: var(--main-color);
    padding: 10px 0px;
    border-bottom: 1px solid var(--main-color);
    font-weight: 600;
}

.footer_content table tr td:last-child {
    text-align: right;
}

.newsletter {
    width: 1000px;
    background-color: var(--main-color);
    padding: 50px 50px;
    border-radius: 20px;
    margin: auto;
    position: absolute;
    left: 50%;
    top: -145px;
    transform: translate(-50%, 0px);
    z-index: 92;
}

.newsletter .newsletter_text {
    color: white;
}

.newsletter .newsletter_form {
    position: relative;
    width: 100%;
    height: 45px;
}

.newsletter .newsletter_form button {
    position: absolute;
    right: 0px;
    padding: 0px 20px;
    color: var(--main-color);
    height: 100%;
    outline: none;
    border: 1px solid transparent;
    background: var(--sub-color);
    font-size: 16px;
    font-weight: 600;
}

.newsletter .newsletter_form input {
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    outline: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}

.newsletter .newsletter_text h2 {
    font-size: 31px;
    font-weight: 700;
}

.newsletter .newsletter_text p {
    color: #ffffffc9;
    margin-bottom: 0;
    margin-top: 20px;
}

.fire_effect {
    position: absolute;
    z-index: 9;
    top: 0;
    width: 100%;
    transform: translate(0px, -100%);
    display: flex;
    justify-content: space-between;
}

.fire_effect .fire1:first-child {
    left: 0;
}

.fire_effect .fire1:last-child {
    right: 0;
}

.blog_section .blog_btn a:hover {
    outline-offset: 2px;
    transition: .6s;
}

.footer_content table tr td:first-child {
    width: 40%;
}

.list_wrapper {
    display: flex;
    gap: 100px;
}

.copyright_section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0px;
    width: 100%;
    background-color: var(--main-color);
}

.copyright_section .copyright_text p {
    color: var(--third-color);
    margin-bottom: 0;
    font-size: 14px;
}

/* footer style end */

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

    .food_searchBar {
        width: 400px;
    }

    .newsletter {
        width: 780px;
    }

    .fire1 {
        width: calc(100vw - 616px);
    }
}

@media only screen and (max-width: 991px) {
    .product_container_body {
        grid-template-columns: 1fr 1fr 1fr;
    }

    footer {
        padding-top: 170px;
    }

    .newsletter {
        width: 640px;
        margin-top: 20px;
    }

    .newsletter .newsletter_form {
        margin-top: 20px;
    }

}

@media only screen and (max-width: 850px) {
    .food_searchBar {
        width: 300px;
    }
}

@media only screen and (max-width: 767px) {
    .quick_view_popup .quick_view_wrapper{
        width: calc(100vw - 80px);
        overflow: scroll;
    }
    .product_container_body {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .search_bar_container {
        width: 100%;
        height: 100%;
        transform: scalex(0);
    }

    .food_searchBar form .search_icon2 {
        left: unset;
        right: 0;
        width: 45px;
        background: var(--third-color);
        border-radius: 5px;
        color: var(--main-color);
        cursor: pointer;
        transition: .6s;
    }

    .food_searchBar form .search_icon2:hover svg:first-child {
        opacity: 0;
        transition: .6s;
    }

    .food_searchBar form .search_icon2:hover svg:last-child {
        transform: translateX(0);
        transition: .6s;
        opacity: 1;

    }
}

@media only screen and (max-width: 700px) {
    .cart_popup .cart_wrapper {
        width: calc(100vw - 100px);
    }
    .cart_details{
        flex-direction: column;
    }
    .cart_details .cupon_area, .cart_calculation{
        width: 100%;
    }
    .cart_bottom .related_product{
        grid-template-columns: auto;
        gap: 20px;
    }

}

@media only screen and (max-width: 668px) {
    .cart_popup .cart_wrapper .cart_body .single_cart_product .cart_left .cart_img{
        width: 60px;
        height: 60px;
    }
    .single_cart_product h4{
        font-size: 16px;
        
    }
    .cart_details {
        margin-bottom: 35px;
    }
    .product_container_body {
        grid-template-columns: 1fr 1fr;
    }

    .top-header-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter {
        width: calc(100vw - 150px);
        padding: 40px 30px;
    }

    .newsletter .newsletter_text h2 {
        font-size: 22px;
    }

    .newsletter .newsletter_text h2,
    .newsletter .newsletter_text p {
        text-align: center;
    }
}

@media only screen and (max-width: 576px) {
    .fire1 {
        width: calc(100vw - 135px);
    }

    .newsletter .newsletter_text h2 {
        font-size: 18px;
    }

    .newsletter .newsletter_text p {
        font-size: 14px;
    }
}