/* ---NOTIFY SECTION--- */

.notify_section {
    display: none;
    padding: 2% 6%;
}

.notify_section.active {
    display: flex;
}

.notify_section .notify_contain {
    padding: 20px;
    border-radius: 10px;
    background: #efefef;
}

.notify_section .title_contain {
    display: flex;
    align-items: center;
}

.notify_section .title_contain svg {
    margin-right: 5px;
}

.notify_section .title_contain path,
.notify_section .title_contain circle {
    stroke: #ff2e00;
}

.notify_section .title_contain h2 {
    color: #ff2e00;
    font-size: 18px;
    font-weight: 700;
}

.notify_section .info_contain {
    padding-left: 25px;
}

.notify_section .info_contain p {
    font-weight: 600;
    margin: 0;
}

@media (max-width: 996px) {
    .notify_section {
        padding: 20px;
    }
    .notify_section .notify_contain {
        padding: 15px;
    }
    .notify_section .title_contain svg {
        transform: scale(.8);
        margin-right: 2px;
    }
    .notify_section .title_contain h2 {
        font-size: 16px;
    }
    .notify_section .info_contain {
        padding-left: 2px;
    }
    .notify_section .info_contain p {
        font-size: 12px;
    }
}

/* ---NAVIGATION SECTION */

.navigation_section {
    position: sticky;
    top: 0;
    padding: 0 8%;
    background: white;
    z-index: 1;
}

.navigation_section .navigation_contain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px 0;
}

.navigation_section .search_contain {
    display: none;
    /* display: flex; */
    align-items: center;
    cursor: pointer;
}

.navigation_section .search_contain input {
    width: 0;
    color:  var(--primary);
    font-weight: 500;
    border: 0;
    border-radius: 5px;
    padding: 5px 0;
    background: #efefef;
    transition: .25s;
}

.navigation_section .search_active input {
    width: 200px;
    padding: 5px 10px;
    margin-left: 10px;
}

.navigation_section .scroll_contain {
    position: relative;
    display: flex;
    align-items: center;
}

.navigation_section .scroll_active {
    margin: 0 15px;
}

.navigation_section .left_controll,
.navigation_section .right_controll {
    display: none;
    position: absolute;
    height: 100%;
    width: 30px;
    cursor: pointer;
}

.navigation_section .scroll_active .left_controll,
.navigation_section .scroll_active .right_controll {
    display: flex;
    align-items: center;
}

.navigation_section .left_controll {
    justify-content: flex-start;
    left: 0;
    background: linear-gradient(to right, white 40%, #ffffff00 100%);
}

.navigation_section .right_controll {
    justify-content: flex-end;
    right: 0;
    background: linear-gradient(to left, white 40%, #ffffff00 100%);
}

.navigation_section .left_controll svg,
.navigation_section .right_controll svg {
    transition: .25s;
}

.navigation_section .left_controll:hover svg,
.navigation_section .right_controll:hover svg {
    transform: scale(1.2);
}

.navigation_section .categories_list {
    max-width: 650px;
    overflow-x: scroll;
    white-space: nowrap;
    padding: 10px;
}

.navigation_section .scroll_active .categories_list{
    padding: 10px 20px;
}

.navigation_section .categories_list::-webkit-scrollbar {
    display: none;
}

.navigation_section .categories_list button {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    margin-right: 10px;
    align-items: center;
    border: 0;
    border-radius: 5px;
    background: white;
    box-shadow: 0 2px 5px 0 #6d8dad4f;
    scroll-snap-align: start;
    transition: .25s;
}

.navigation_section .categories_list button:hover,
.navigation_section .categories_list .category_active {
    color: white;
    background: var(--primary);
}
.navigation_section .cart_contain {
    margin-left: auto;
    z-index: 1;
}

.navigation_section .cart_contain button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    border: 0;
    background: var(--primary);
    box-shadow: 0 2px 5px 0 #6d8dad4f;
    transition: .25s;
}

.navigation_section .cart_contain button {
    position: relative;
    margin: 5px 10px 5px 15px;
}

.navigation_section .cart_counter {
    content: "";
    top: -25%;
    right: -25%;
    font-size: 12px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 2px solid white;
    background: var(--second);
    animation: cart_notify 2s infinite;
}

@keyframes cart_notify {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.1) rotate(-20deg);
    }
    10% {
        transform: scale(1);
    }
    90% {
        transform: scale(1) rotate(0);
    }
    95% {
        transform: scale(1.1) rotate(20deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

.navigation_section .cart_contain button:hover {
    background: white;
    transform: translateY(-4px);
}

.navigation_section .cart_contain button:hover path {
    fill: var(--primary);
}

@media (max-width: 996px) {
    .navigation_section {
        padding: 0;
    }
    .navigation_section .navigation_contain {
        flex-direction: column;
    }
    .navigation_section .scroll_contain {
        width: 100%;
    }
    .navigation_section .scroll_active {
        margin: 0;
    }
    .navigation_section .left_controll,
    .navigation_section .right_controll {
        display: none;
    }
    .navigation_section .categories_list {
        max-width: 500px;
        padding: 10px 0 20px 20px;
    }
    .navigation_section .categories_list button {
        font-size: 12px;
        padding: 10px;
    }
    .navigation_section .categories_list button:last-child {
        margin-right: 20px;
    }
    .navigation_section .cart_contain {
        position: fixed;
        bottom: 20px;
        right: 10px;
    }
}

/* ---MENU SECTION--- */

/* Products Style */

.menu_section .products_contain {
    padding: 20px;
    margin: 2% 6%;
    border-radius: 20px;
    box-shadow: 0 15px 40px 0 #6d8dad80;
}

.menu_section .category_contain {
    margin-bottom: 10px;
}

.menu_section .category_title {
    padding: 15px 15px 5px 15px;
}

.menu_section .category_title h2 {
    font-size: 22px;
    font-weight: 700;
}

.menu_section .category_products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.menu_section .no_photo {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.menu_section .product_item {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 10px;
    margin: 15px;
    box-shadow: 0 5px 25px 0 #6d8dad3b;
    overflow: hidden;
    transition: .25s;
}

.menu_section .product_item:hover {
    cursor: pointer;
    transform: translateY(-4px);
    box-shadow: 0 5px 25px 0 #6d8dad5e !important;
}

.menu_section .media_contain {
    position: relative;
    width: 100px;
    height: 100px;
    padding: 10px;
}

.menu_section .sale_media {
    display: none;
    width: 50px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 2px;
    border-radius: 0 5px 0 5px;
    background: var(--second);
}

.menu_section .sale_product .sale_media {
    display: block;
}

.menu_section .media_contain img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px 0 #6d8dad80;
}

.menu_section .product_item:hover .media_contain {
    box-shadow: none;
}

.menu_section .no_photo .product_item {
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 #6d8dad3f;
    overflow: hidden;
    transition: .25s;
}

.menu_section .no_photo .media_contain {
    display: none;
}

.menu_section .product_item .info_contain {
    width: 65%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.menu_section .no_photo .info_contain {
    width: 100%;
}

.menu_section .product_prices {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: flex-end;
    align-items: center;
}

.menu_section .sale_product_price {
    display: none;
    position: relative;
    width: 80px;
    color: #bcbcbc;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.menu_section .sale_product .sale_product_price {
    display: block;
}

.menu_section .sale_product_price::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 78%;
    height: 2px;
    border-radius: 2px;
    background: var(--second);
}

.menu_section .product_price {
    width: 80px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    padding: 2px 5px;
    border-bottom-left-radius: 15px;
    background: var(--primary);
}

.menu_section .product_item .content_contain {
    padding: 5px 15px 5px 0px;
}

.menu_section .no_photo .content_contain {
    padding: 5px 15px;
}

.menu_section .product_item .product_title {
    max-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 3px;
}

.menu_section .product_item .product_description {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    display: block;
    width: 100%;
    max-height: 40px;
    overflow: hidden;
}

.menu_section .product_item .product_description::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 20px;
    background: linear-gradient(to right, #ffffff00, #ffffff);
}

@media (max-width: 996px) {
    .menu_section .products_contain {
        padding: 0 20px 20px 20px;
        margin: 0;
        box-shadow: none;
    }

    .menu_section .category_contain {
        margin-bottom: 70px;
    }

    .menu_section .category_title {
        padding: 0;
        margin-bottom: 5px;
    }

    .menu_section .category_title h2 {
        font-size: 18px;
    }

    .menu_section .category_products {
        grid-template-columns: repeat(1, 1fr);
    }

    .menu_section .no_photo {
        grid-template-columns: repeat(1, 1fr);
    }

    .menu_section .product_item {
        margin: 10px 0;
    }

    .menu_section .media_contain {
        width: 100px;
        height: 100px;
    }

    .menu_section .sale_media {
        font-size: 10px;
    }

    .menu_section .product_item .info_contain {
        width: 70%;
    }

    .menu_section .no_photo .info_contain {
        width: 100%;
    }

    .menu_section .sale_product_price {
        font-size: 14px;
    }

    .menu_section .product_price {
        font-size: 14px;
    }

    .menu_section .product_item .content_contain {
        padding: 10px 10px 5px 5px;
    }

    .menu_section .no_photo .content_contain {
        padding: 10px 15px;
    }

    .menu_section .product_item .product_title {
        font-size: 14px;
    }

    .menu_section .product_item .product_description {
        font-size: 11px;
        max-height: 37px;
    }

    .menu_section .product_item .product_description::before {
        width: 100%;
    }
}

/* ---SINGLE PRODUCT SECTION--- */

/* Single Product Popup */

.single_product_section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: .25s;
}

.single_product_section_active {
    opacity: 1;
    visibility: visible;
}

.single_product_section .backdrop_product {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000ae;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}

.single_product_section_active .backdrop_product {
    opacity: 1;
    visibility: visible;
}

.single_product_section .single_product_contain {
    position: relative;
    height: fit-content;
    background: white;
    border-radius: 20px;
    z-index: 3;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.single_product_section .single_product_contain::-webkit-scrollbar {
    display: none;
}
  
/* Hide scrollbar for IE, Edge and Firefox */
.single_product_section .single_product_contain {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.single_product_section .close_contain {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.single_product_section .close_contain button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 0;
    background: var(--primary);
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 2px 10px 0 #6d8dad80;
}

.single_product_section .close_contain button:hover {
    background: white;
}

.single_product_section .close_contain button:hover path {
    fill: var(--primary);
}

.single_product_contain .product_contain {
    padding: 20px;
}

.single_product_section .sale_text,
.single_product_section .old_price,
.single_product_section .divider {
    display: none;
}

.single_product_section .media_contain {
    position: relative;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 20px 0 #6d8dad80;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.single_product_section .media_contain img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.single_product_section .sale_product .sale_text {
    display: block !important;
    position: absolute;
    bottom: 0;
    padding: 5px 25px;
    border-radius: 0 10px 0 10px;
    color: white;
    background: var(--second);
    z-index: 2;
}

.single_product_section .product_head {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 5px 0;
}

.single_product_section .product_head h2 {
    font-size: 22px;
    font-weight: 700;
}

.single_product_section .product_head .product_prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 50%;
    height: fit-content;
}

.single_product_section .product_head .product_prices .old_price,
.single_product_section .product_head .product_prices .divider {
    display: none;
}

.single_product_section .product_head .product_prices .product_price {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}

.single_product_section .sale_product .old_price {
    display: block !important;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #bcbcbc;
}

.single_product_section .sale_product .old_price::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 120%;
    height: 2px;
    border-radius: 2px;
    background: var(--second);
}

.single_product_section .sale_product .divider {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 15px;
    height: 100%;
    width: 3px;
    border-radius: 2px;
    color: transparent;
    background: var(--primary);
}

.single_product_section .product_description {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 14px;
}

@media (max-width: 996px) {
    .single_product_section .close_contain button {
        width: 40px;
        height: 40px;
    }
    .single_product_section .close_contain svg {
        transform: scale(.8);
    }
    /* .single_product_section .media_contain {
        width: 100%;
        height: 300px;
    } */
    .single_product_section .product_head h2 {
        font-size: 20px;
    }
    .single_product_section .product_description {
        font-size: 13px;
    }
}

/* Variable Product */

.single_product_section .variable_product {
    width: 900px;
}

.single_product_section .variable_product .product_contain {
    display: grid;
    grid-template-columns: 45% 55%;
}

.single_product_section .variable_product .media_contain img {
    display: block;
}

.single_product_section .variations_contain {
    max-height: 600px;
    overflow-Y: scroll;
    padding: 15px;
    border-radius: 10px 0 0 10px;
    margin-left: 20px;
    background: #e7e7e7;
}

.single_product_section ::-webkit-scrollbar {
    width: 5px;
    transform: translateX(100px);
}

.single_product_section ::-webkit-scrollbar-track {
    background: #e7e7e7;
}

.single_product_section ::-webkit-scrollbar-thumb {
    background: #8181813a;
    border-radius: 4px;
}

.single_product_section .type_variable {
    margin-bottom: 10px;
}

.single_product_section .variable_head h2 {
    font-size: 18px;
    font-weight: 600;
}

.single_product_section .variable_description {
    font-size: 14px;
    font-weight: 500;
}

.single_product_section .options_contain {
    margin: 0 10px;
}

.single_product_contain .radio_contain {
    display: flex;
    flex-wrap: wrap;
}

.single_product_section .checkbox_contain {
    display: flex;
    flex-wrap: wrap;
}

.single_product_contain .option_contain {
    margin-right: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.single_product_contain [type="radio"] {
    position: relative;
    appearance: none;
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 50%;
    background: white;
}

.single_product_contain [type="radio"]:checked {
    appearance: none;
}

.single_product_contain [type="radio"]::before {
    display: none;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    transition: .25s;
}

.single_product_contain [type="radio"]:checked::before {
    display: block;
    animation: .5s checked01 forwards;
}

.single_product_contain [type="checkbox"] {
    position: relative;
    appearance: none;
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 3px;
    background: white;
}

.single_product_contain [type="checkbox"]:checked {
    appearance: none;
}

.single_product_contain [type="checkbox"]::before {
    display: none;
    content: url('../media/shop/icons/check.svg');
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border: 1px solid var(--primary);
    padding: 2px;
    background: var(--primary);
    z-index: 2;
    transition: .25s;
}

.single_product_contain [type="checkbox"]:checked::before {
    display: block;
    animation: .5s checked02 forwards;
}

.single_product_contain label {
    font-size: 14px;
    padding: 5px;
    cursor: pointer;
}

@keyframes checked01 {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes checked02 {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(.75);
    }
}

@media (max-width: 996px) {
    .single_product_section {
        align-items: flex-start;
        padding-top: 5vh;
    }

    .single_product_contain {
        max-height: 85vh;
        overflow-y: auto;
    }

    .single_product_section .variable_product {
        width: 360px;
    }

    .single_product_section .variable_product .product_contain {
        grid-template-columns: 100%;
    }

    .single_product_section .variations_contain {
        max-height: 350px;
        margin-left: 0;
    }

    .single_product_section .type_variable {
        margin-bottom: 10px;
    }

    .single_product_section .variable_head h2 {
        font-size: 15px;
    }

    .single_product_section .variable_description {
        font-size: 13px;
    }

    .single_product_contain label {
        font-size: 13px;
    }
}

/* Normal Product */

.single_product_section .normal_product {
    width: 450px;
}

.single_product_section .normal_product .type_variable {
    display: none;
}

.single_product_section .normal_product .variations_contain {
    max-height: inherit;
    overflow-Y: inherit;
    margin-left: 0;
}

@media (max-width: 996px) {
    .single_product_section .normal_product {
        width: 360px;
    }
}

/* Simple Product */

.single_product_section .simple_product {
    position: relative;
    width: 450px;
}

.single_product_section .simple_product .media_contain {
    position: inherit;
    height: fit-content;
    
}

.single_product_section .simple_product .media_contain img {
    display: none;
}

.single_product_section .sale_product .sale_text {
    bottom: inherit;
    top: 0;
    left: 0;
    border-radius: 10px 0 10px 0;
}

.single_product_section .simple_product .product_head {
    margin-top: 30px;
}

.single_product_section .simple_product .type_variable {
    display: none;
}

.single_product_section .simple_product .variations_contain {
    max-height: inherit;
    overflow-Y: inherit;
    margin-left: 0;
}

@media (max-width: 996px) {
    .single_product_section .simple_product {
        width: 360px;
    }

    .single_product_section .simple_product .product_head {
        margin-top: 15px;
    }
}

/* Simple Variable Product */

.single_product_section .simple_variable_product {
    width: 500px;
}

.single_product_section .simple_variable_product .media_contain {
    position: inherit;
    height: fit-content;
    display: none;
}

.single_product_section .simple_variable_product .media_contain img {
    display: none;
}

.single_product_section .simple_variable_product .media_contain img.active {
    display: block;
}

.single_product_section .simple_variable_product .sale_text {
    bottom: inherit;
    top: 0;
    left: 0;
    border-radius: 10px 0 10px 0;
}

.single_product_section .simple_variable_product .product_head {
    margin-top: 15px;
}

.single_product_section .simple_variable_product .variations_contain {
    max-height: 450px;
    margin-left: 0;
}

@media (max-width: 996px) {
    .single_product_section .simple_variable_product {
        width: 360px;
    }

    .single_product_section .simple_variable_product .product_head {
        margin-top: 15px;
    }

    .single_product_section .simple_variable_product .variations_contain {
        max-height: 350px;
    }
}

/* Customer Request */

.single_product_section .request_head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.single_product_section .request_head path {
    stroke: var(--primary);
}

.single_product_section .request_head h2 {
    font-size: 20px;
    font-weight: 600;
    margin-left: 5px;
}

.single_product_section .request_contain {
    margin: 0 10px;
}

.single_product_section .request_contain p {
    font-weight: 500;
}

.single_product_section .request_contain textarea {
    color: var(--primary);
    font-weight: 500;
    max-width: 100%;
    min-width: 100%;
    min-height: 80px;
    max-height: 80px;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 #6d8dad46;
    transition: .25s;
}

.single_product_section .request_contain textarea:hover,
.single_product_section .request_contain textarea:focus-visible {
    outline: 0;
    box-shadow: 0 2px 10px 0 #6d8dad95;
}

.single_product_section .request_contain ::placeholder {
    color: var(--primary) !important;
    font-weight: 500;
    opacity: .5;
}

@media (max-width: 996px) {
    .single_product_section .request_head svg {
        transform: scale(.8);
    }

    .single_product_section .request_head h2 {
        font-size: 16px;
    }

    .single_product_section .request_contain p {
        font-size: 13px;
    }

    .single_product_section .request_contain textarea {
        margin-top: 5px;
    }
}

/* Single Product Buttons */

.single_product_section .buttons_contain {
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
}

.single_product_contain .quantinty_contain {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.single_product_contain .less_button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transition: .1s;
}

.single_product_contain .less_button:hover {
    cursor: pointer;
    background: var(--primary);
}

.single_product_contain .less_button:hover path {
    fill: white;
}

.single_product_contain .quantity_product {
    width: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin: 0 5px;
    border: 0;
    border-radius: 5px;
}

.single_product_contain .quantity_product:focus-visible {
    outline: 0;
    box-shadow: 0 2px 10px 0 #6d8dad95;
}

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

.single_product_contain .plus_button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: var(--primary);
    transition: .1s;
}

.single_product_contain .plus_button:hover {
    cursor: pointer;
    background: white;
}

.single_product_contain .plus_button:hover path {
    fill: var(--primary);
}

.single_product_contain .add_to_cart_button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    padding: 15px 40px;
    border-top-left-radius: 20px;
    background: var(--primary);
    box-shadow: 0 -2px 15px 0 #6d8dad80;
    border-bottom-right-radius: 20px;
    transition: .25s;
}

.single_product_contain .add_to_cart_button:hover {
    cursor: pointer;
    background: white;
}

.single_product_contain .add_to_cart_button h2,
.single_product_contain .add_to_cart_button .add_product_price {
    color: white;
    font-size: 20px;
    font-weight: 500;
}

.single_product_contain .add_to_cart_button:hover h2,
.single_product_contain .add_to_cart_button:hover .add_product_price {
    color: var(--primary);
}

.single_product_contain .add_to_cart_button .divider {
    display: block;
    height: 100%;
    width: 3px;
    border-radius: 3px;
    background: var(--primary);
    filter: brightness(1.2);
    margin: 0 15px;
    transition: .25s;
}

.single_product_contain .add_to_cart_button:hover .divider {
    background: gray;
    opacity: .3;
}

@media (max-width: 995px) {
    .single_product_contain .less_button {
        height: 25px;
        width: 25px;
    }

    .single_product_contain .quantity_product {
        width: 40px;
        font-size: 16px;
    }

    .single_product_contain .plus_button {
        height: 25px;
        width: 25px;
    }

    .single_product_contain .add_to_cart_button {
        margin-left: 10px;
        padding: 15px;
    }

    .single_product_contain .add_to_cart_button h2,
    .single_product_contain .add_to_cart_button .add_product_price {
        font-size: 16px;
    }

    .single_product_contain .add_to_cart_button .divider {
        width: 2px;
    }
}

/* ---CART SECTION--- */

/* Side Cart Styles */

.cart_section .cart_contain {
    position: relative;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    transform: translate(100%, 0);
    width: 400px;
    height: 100vh;
    border-top-left-radius: 25px;
    background: var(--primary);
    z-index: 99;
    transition: .25s;
}

.cart_open .cart_contain {
    transform: translate(0, 0);
}

.cart_section .backdrop_cart {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000ae;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 2;
}

.cart_open .backdrop_cart {
    opacity: 1;
    visibility: visible;
}

.cart_section .close_contain {
    position: absolute;
    top: 0;
    right: 0;
}

.cart_section .close_contain button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border: 0;
    background: white;
    border-bottom-left-radius: 15px;
    box-shadow: 0px 2px 10px 0 #0000001b;
}

.cart_section .close_contain button:hover {
    background: var(--primary);
}

.cart_section .close_contain button svg {
    transform: scale(.8);
}

.cart_section .close_contain button path {
    fill: var(--primary);
}

.cart_section .close_contain button:hover path {
    fill: white;
}

.cart_section .title_contain {
    display: flex;
    padding: 30px 20px 10px 20px;
}

.cart_section .title_contain svg {
    margin-right: 10px;
}

.cart_section .title_contain h2 {
    font-size: 22px;
    font-weight: 600;
    color: white;
}

.cart_section .cart_items {
    max-height: 500px;
    overflow-y: scroll;
    padding: 20px;
}

.cart_section .cart_items::-webkit-scrollbar {
    width: 5px;
}

.cart_section .cart_items::-webkit-scrollbar-track {
    background: transparent;
}

.cart_section .cart_items::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 4px;
}

.cart_section .cart_item {
    width: 100%;
    min-height: 80px;
    /*max-height: 80px;*/
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px 0 #00000080;
}

.cart_section .cart_item:last-child {
    margin-bottom: 0;
}

.cart_section .product_contain {
    display: flex;
}

.cart_section .media_contain {
    position: relative;
    padding: 10px;
    width: 80px;
    height: 80px;
}

.cart_section .no_photo .media_contain {
    display: none;
}

.cart_section .media_contain img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.cart_section .info_contain {
    padding: 10px 5px;
    overflow-y: scroll;
    max-height: 100px;
}

.cart_section .no_photo .info_contain {
    padding: 15px 10px 10px 15px;
}

.cart_section .cart_item ::-webkit-scrollbar {
    width: 5px;
    transform: translateX(100px);
}

.cart_section .cart_item ::-webkit-scrollbar-track {
    background: transparent;
}

.cart_section .cart_item ::-webkit-scrollbar-thumb {
    background: #8181813a;
    border-radius: 4px;
}

.cart_section .product_cart_name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    padding-bottom: 3px;
    max-width: 140px;
    max-height: 100px;
    overflow: hidden;
}

.cart_section .no_photo .product_cart_name {
    max-width: 200px;
}

.cart_section .edit_contain {
    display: flex;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}

.cart_section .edit_contain:hover path,
.cart_section .edit_contain:hover p {
    stroke: var(--primary);
    color: var(--primary);
}

.cart_section .edit_contain p {
    width: fit-content;
    margin-left: 5px;
}

.cart_section .values_contain {
    margin-left: auto;
}

.cart_section .values_contain .price_contain {
    display: flex;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 0 10px 0 10px;
    background: var(--primary);
}

.cart_section .values_contain .product_cart_price {
    color: white;
    font-size: 14px;
}

.cart_section .values_contain .quantinty_contain {
    padding: 10px 10px 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cart_section .values_contain .quantinty_contain .less_button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transition: .25s;
}

.cart_section .values_contain .quantinty_contain .less_button:hover {
    background: var(--primary);
    cursor: pointer;
}

.cart_section .values_contain .quantinty_contain .less_button:hover path {
    fill: white;
}

.cart_section .values_contain .quantinty_contain .trash_button {
    height: 25px;
    width: 25px;
    border: 0;
    border-radius: 50%;
    transition: .25s;
}

.cart_section .values_contain .quantinty_contain .trash_button:hover {
    background: transparent;
}

.cart_section .values_contain .quantinty_contain .trash_button:hover path {
    fill: var(--second);
}

.cart_section .values_contain .quantity_product {
    width: 35px;
    margin: 0 5px;
    text-align: center;
    border: 0;
    border-radius: 5px;
}

.cart_section .values_contain .quantity_product:focus-visible {
    outline: 0;
    box-shadow: 0 2px 10px 0 #6d8dad95;
}

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

.cart_section .values_contain .quantinty_contain .plus_button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: var(--primary);
    transition: .25s;
}

.cart_section .values_contain .quantinty_contain .plus_button:hover {
    background: white;
    cursor: pointer;
}

.cart_section .values_contain .quantinty_contain .plus_button:hover path {
    fill: var(--primary);
}

.cart_section hr {
    height: 3px;
    margin: 20px;
    border: 0;
    border-radius: 3px;
    background: var(--primary);
    filter: brightness(1.2);
}

.cart_section .firts_hr {
    margin: 0 20px 20px 20px;
}

.cart_section .request_contain {
    padding: 0 20px;
}

.cart_section .request_title {
    display: flex;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}

.cart_section .request_title h2 {
    font-size: 15px;
    font-weight: 400;
    color: white;
    margin: 0 10px;
}

.cart_section .request_title button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: white;
}

.cart_section .request_title button svg {
    transform: scale(.6);
}

.cart_section .request_title button path {
    fill: var(--primary)
}

.cart_section .cart_comment_contain {
    height: 0;
    overflow: hidden;
    transition: .25s;
}

.cart_section .cart_comment_contain_open {
    height: 100px;
}

.cart_section .cart_comment_contain textarea {
    width: 100%;
    margin-top: 15px;
}

.cart_section .cart_comment_contain textarea {
    color: white;
    font-weight: 400;
    max-width: 100%;
    min-width: 100%;
    min-height: 80px;
    max-height: 80px;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    background: #ffffff35;
    box-shadow: 0 0 5px 0 #6d8dad46;
    transition: .25s;
}

.cart_section .cart_comment_contain textarea:hover,
.cart_section .cart_comment_contain textarea:focus-visible {
    outline: 0;
    background: #ffffff4e;
}

.cart_section .cart_comment_contain ::placeholder {
    color: #ffffffd8 !important;
    font-weight: 400;
    opacity: .5;
}

.cart_section .cart_comment_contain textarea::-webkit-scrollbar {
    width: 5px;
}

.cart_section .cart_comment_contain textarea::-webkit-scrollbar-track {
    background: transparent;
}

.cart_section .cart_comment_contain textarea::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 4px;
}

.cart_section .coupon_contain {
    padding: 0 20px;
}

.cart_section .coupon_title {
    display: flex;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}

.cart_section .coupon_title h2 {
    font-size: 15px;
    font-weight: 400;
    color: white;
    margin: 0 10px;
}

.cart_section .coupon_title button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: white;
}

.cart_section .coupon_title button svg {
    transform: scale(.6);
}

.cart_section .coupon_title button path {
    fill: var(--primary)
}

.cart_section .cart_ticket_contain {
    height: 0;
    margin-top: 15px;
    overflow: hidden;
    transition: .25s;
}

.cart_section .cart_ticket_contain_open {
    height: 60px;
}

.cart_section .cart_ticket_contain input {
    width: 50%;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    background: #ffffff35;
    box-shadow: 0 0 5px 0 #6d8dad46;
    transition: .25s;
}

.cart_section .cart_ticket_contain .error_input {
    color: #cc0000;
    font-size: 12px;
    display: none;
}

.cart_section .cart_ticket_contain .error_input.active {
    display: block;
}

.cart_section .cart_ticket_contain input:hover,
.cart_section .cart_ticket_contain input:focus-visible {
    outline: 0;
    background: #ffffff4e;
}

.cart_section .cart_ticket_contain ::placeholder {
    color: #ffffffd8 !important;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0;
    opacity: .5;
}

.cart_section .cart_ticket_contain button {
    width: 30%;
    color: var(--primary);
    font-weight: 600;
    border: 0;
    padding: 10px;
    border-radius: 10px 10px 10px 0;
    background: white;
}

.cart_section .cart_ticket_contain button:hover {
    color: white;
    background: #ffffff4e;
}

.cart_section .total_cart_contain {
    margin-top: auto;
    padding: 0 20px 20px 20px;
}

.cart_section .total_cart_contain>div {
    display: flex;
    justify-content: space-between;
}

.cart_section .total_cart_contain p {
    color: white;
}

.cart_section .buttons_cart_contain {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.cart_section .empty_cart {
    display: flex;
    align-items: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border: 0;
    background: transparent;
}

.cart_section .empty_cart svg {
    margin-left: 5px;
}

.cart_section .empty_cart path {
    fill: white;
    transition: .25s;
}

.cart_section .checkout_cart {
    width: 100%;
    padding: 10px 0;
    margin-top: 15px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    background: white;
}

.cart_section .checkout_cart:hover {
    color: white;
    background: #ffffff4e;
}

@media (max-width: 996px) {
    .cart_section .cart_contain {
        top: inherit;
        bottom: 0;
        transform: translate(0, 100%);
        width: 100vw;
        height: 95%;
        border-radius: 20px 20px 0 0;
    }

    .cart_open .cart_contain {
        transform: translate(0, 0);
    }

    .cart_section .close_contain button {
        width: 30px;
        height: 30px;
        border-radius: 0 20px 0 10px;
    }

    .cart_section .close_contain button svg {
        transform: scale(.7);
    }

    .cart_section .title_contain svg {
        margin-right: 10px;
    }

    .cart_section .title_contain h2 {
        font-size: 20px;
    }

    .cart_section .product_cart_name {
        font-size: 14px;
        margin-bottom: 0;
    }

    .cart_section .values_contain .quantinty_contain .less_button {
        height: 20px;
        width: 20px;
    }

    .cart_section .values_contain .quantinty_contain .less_button svg {
        transform: scale(.8);
    }

    .cart_section .values_contain .quantinty_contain .trash_button {
        height: 20px;
        width: 20px;
    }

    .cart_section .values_contain .quantinty_contain .trash_button svg {
        transform: scale(.8);
    }

    .cart_section .values_contain .quantinty_contain .plus_button {
        height: 20px;
        width: 20px;
    }

    .cart_section .values_contain .quantinty_contain .plus_button svg {
        transform: scale(.8);
    }

    .cart_section hr {
        height: 2px;
    }

    .cart_section .request_title h2 {
        font-size: 14px;
    }

    .cart_section .coupon_title h2 {
        font-size: 14px;
    }
    
    .cart_section .cart_ticket_contain_open {
        height: 50px;
    }
}

.utensils_container {
    display: none;
}

.utensils_container.active {
    display: block;
}

.utensils_container > div {
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.utensils_container > div svg {
    width: 15px;
}

.utensils_container > div h2 {
    font-size: 15px;
    font-weight: 400;
    color: white;
    margin: 0 10px;
}

.utensils_container > div input[type="checkbox"] {
    position: relative;
    appearance: none;
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 3px;
    background: white;
}

.utensils_container > div input[type="checkbox"]:checked {
    appearance: none;
}

.utensils_container > div input[type="checkbox"]::before {
    display: none;
    content: url('../../../img/svg/check.svg');
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 4px;
    border: 1px solid var(--primary);
    padding: 2px;
    background: var(--second);
    z-index: 2;
    transition: .25s;
}

.utensils_container > div input[type="checkbox"]:checked::before {
    display: block;
}