@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
}

.btn_gold {
    text-decoration: none;
    padding: 12px;
}

/* -----utility classes----- */

:root {
    --white: #fff;
    --black: #000;
    --very_dark_blue_a: #131921;
    --very_dark_blue_b: #232F3E;
    --btn_gold: #E08908;
    --btn_light_gold: #FF9900;
    --dark_a: #222222;
    --dark_b: #1E1E1E;
    --silver_a: #909090;
    --silver_b: #B0B0B0;
    --blue_a: #146EB4;
    --border_radius_10: 10px;
    --border_radius_8: 8px;
    --orange_a: #E58F0E;
    --orange_b: #E08908;
    --green: #54C51E;
    --dark_blue: #243141;
    --red_color: #B92431;
    --green_color: #1F9245;
}

.c_pointer {
    cursor: pointer;
}

.txt_silver_b {
    color: var(--silver_b);
}

.px_md {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.fs_18 {
    font-size: 18px !important;
}

.fs_12 {
    font-size: 12px !important;
}

.r__after::after {
    display: none;
}

.txt_white {
    color: var(--bs-white);
}

.txt_white:hover {
    color: var(--bs-white);
}

.link_decoration {
    text-decoration: none;
}

.link_decoration:hover {
    text-decoration: underline;
}

.flip_icon {
    transform: rotateY(-180deg);
}

.txt_silver {
    color: var(--silver_b);
}

.btn_gold,
.btn_gold_outline,
.btn_light_gold {
    width: fit-content;
    background: var(--btn_gold);
    color: var(--very_dark_blue_a);
    padding: 4px 25px;
    min-height: 46px;
    min-width: 46px;
    border: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.btn_gold_outline {
    background: transparent;
    color: var(--btn_gold);
    border: 1px solid var(--btn_gold);
}

.btn_gold:hover,
.btn_gold_outline:hover {
    background: var(--btn_gold);
    color: var(--very_dark_blue_a);
}

.btn_light_gold {
    background: var(--btn_light_gold);
}


/* ----- */

.site_nav .top {
    background: var(--very_dark_blue_b);
    color: var(--white);
}

.site_nav .middle {
    background: var(--very_dark_blue_a);
}

.nav_collapse {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.btn_nav_gold {
    background: var(--btn_gold);
    color: var(--very_dark_blue_a);
    padding: 4px 10px;
    min-height: 46px;
    min-width: 46px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.btn_nav_gold:hover {
    background: var(--btn_gold);
}

.site_nav .middle .dropdown-menu {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.site_nav .middle .dropdown-item.active {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.site_nav .middle .dropdown-item.active,
.site_nav .middle .dropdown-item:active,
.site_nav .middle .dropdown-item:hover {
    color: var(--btn_gold);
    background: transparent;
}

.nav_search {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    background: var(--white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.nav_search .btn_nav_gold::after {
    background-image: url("../images/__after_arrow.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 24px;
    height: 24px;
    margin: 0;
    margin-right: 5px;
    border: none;
}

.nav_search input {
    flex: 1;
    margin-left: 6px;
    margin-right: 6px;
    border: none;
    outline: none;
    background: none;
}

.site_logo img {
    max-width: 110px;
}

.site_nav .bottom {
    background: var(--very_dark_blue_b);
}

.btn_darkblueSm {
    width: fit-content;
    background: var(--very_dark_blue_a);
    color: var(--white);
    width: 38px;
    aspect-ratio: 1 / 1;
    padding: 4px;
    border: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: -5px 19px 8px rgba(0, 0, 0, 0.01), -3px 11px 7px rgba(0, 0, 0, 0.05), -1px 5px 5px rgba(0, 0, 0, 0.09), 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.site_nav .bottom .bottom_links a {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.site_nav .bottom .bottom_links a:hover {
    color: var(--btn_gold) !important;
}

/* navbar_toggler */
.navbar_toggler,
.navbar_toggler:focus {
    border: none;
    background: var(--btn_gold);
    aspect-ratio: 1 / .9;
    box-shadow: none;
    outline: none;
}

#offcanvas {
    background: #6D4B17;
}

.navClose {
    background: #D9D9D9;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

#offcanvas ul {
    list-style: none;
    padding-left: 10px;
    padding-right: 30px;
}

#offcanvas ul li a,
#offcanvas ul li button {
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
    padding: 30px 0;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid var(--white);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

#offcanvas ul li a:hover,
#offcanvas ul li button:hover {
    color: #E58F0E;
}

/* homeHero */
.homeHeroSlider .swiper-slide {
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    background: #F6F7F9;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.homeHeroSlider .swiper-slide .slideBG_md,
.homeHeroSlider .swiper-slide .slideBG {
    width: 75%;
    z-index: 1;
    bottom: 0;
    top: auto;
    position: absolute;
}

.homeHeroSlider .swiper-slide .slideBG_md {
    display: none;
}

.homeHeroSlider .swiper-slide .right {
    min-height: 300px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    padding-right: 70px;
    margin-left: auto;
}

.homeHeroSlider .swiper-slide .right::after {
    content: '';
    position: absolute;
    top: -140%;
    right: -20%;
    width: 70%;
    min-width: 800px;
    aspect-ratio: 1 / 1;
    border-radius: 1000px;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    -ms-border-radius: 1000px;
    -o-border-radius: 1000px;
    background: linear-gradient(300deg, #EE9104, #754B0B);
    z-index: -1;
}

/* sliderBtns */
.sliderBtns .swiper-button-prev::after,
.sliderBtns .swiper-button-next::after {
    display: none;
}

.sliderBtns .swiper-button-prev,
.sliderBtns .swiper-button-next {
    user-select: none;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 4px 4px rgba(51, 51, 51, 0.404);
}

.h_home_btns {
    position: relative;
}

.h_home_btns .swiper-pagination {
    display: flex;
    justify-content: center;
    position: unset;
}

.h_home_btns .swiper-pagination span {
    margin: 15px;
    width: 12px !important;
    height: 12px !important;
    background: #FF9900 !important;
    opacity: .5;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.h_home_btns .swiper-pagination span.swiper-pagination-bullet-active {
    width: 35px !important;
    opacity: 1 !important;
}

/* whatsapp_btn */
.whatsapp_btn {
    position: fixed;
    bottom: 25px;
    left: 50px;
    z-index: 10;
}

.whatsapp_btn .floating-wpp {
    position: relative;
    top: 0;
    left: 0;
}

.whatsapp_btn .floating-wpp-popup {
    left: 0;
    right: auto !important;
    z-index: 9;
    direction: ltr;
}

.floating-wpp .floating-wpp-input-message textarea {
    outline: none;
}

.whatsapp_btn .floating_text {
    background: rgb(37, 211, 102);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 15px 15px 15px 0;
    -webkit-border-radius: 15px 15px 15px 0;
    -moz-border-radius: 15px 15px 15px 0;
    -ms-border-radius: 15px 15px 15px 0;
    -o-border-radius: 15px 15px 15px 0;
}

/* main_slider */
.main_slider .swiper-slide {
    border: 2px solid #D9D9D9;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.main_slider .swiper-slide.swiper-slide-active {
    border-color: var(--btn_light_gold);
}

.main_slider .swiper-slide>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main_slider .swiper-slide .cat-image {
    padding: 20px;
    margin-bottom: 20px;
}

.main_slider .swiper-slide .cat-image,
.main_slider .swiper-slide .cat-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 400px;
    -webkit-border-radius: 400px;
    -moz-border-radius: 400px;
    -ms-border-radius: 400px;
    -o-border-radius: 400px;
}

.main_slider .swiper-slide .cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_slider .swiper-slide>span {
    font-weight: 600;
    display: block;
    margin-top: auto;
    background: var(--btn_light_gold);
    padding: 8px;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
}

/* FOOTER */
.footer_logo img {
    max-width: 150px;
}

.bg_dark_a {
    background: var(--dark_a);
}

.bg_dark_b {
    background: var(--dark_b);
}

.footer_icon>i {
    display: inline-block;
    margin-left: 15px;
    color: var(--silver_a);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.footer_icon>i:hover {
    transform: scale(1.10);
    -webkit-transform: scale(1.10);
    -moz-transform: scale(1.10);
    -ms-transform: scale(1.10);
    -o-transform: scale(1.10);
    color: var(--bs-white);
}

/* SINGLE PRODUCT PAGE 1 */
.highlight_tag {
    font-size: 0.9rem;
    padding: 8px 10px;
    border-radius: var(--border_radius_8);
    -webkit-border-radius: var(--border_radius_8);
    -moz-border-radius: var(--border_radius_8);
    -ms-border-radius: var(--border_radius_8);
    -o-border-radius: var(--border_radius_8);
    margin-right: 10px;
}

.highlight_tag.bg_blue {
    color: var(--bs-white);
    background: var(--blue_a);
}

.highlight_tag.bg_green {
    color: var(--bs-white);
    background: var(--green);
}

.single_product_icons i {
    color: var(--orange_a);
}

.prev_price {
    font-size: 1.2rem;
    margin-top: 5px;
    margin-right: 10px;
    position: relative;
    color: var(--silver_b);
    font-weight: 500;
}

.prev_price::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--silver_b);
}

.txt_green {
    color: var(--green);
}

.product_price_qty {
    display: flex;
}

.product_inner_box {
    width: 50%;
    display: flex;
    align-items: center;
}

.increment_decrement_btns_wrapper {
    display: flex;
    align-items: center;
}

.qty_inc_dec_btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border_radius_10);
    text-align: center;
    border: none;
    vertical-align: middle;
    background: var(--bs-white);
    box-shadow: -5px 19px 8px rgba(0, 0, 0, 0.01),
        -3px 11px 7px rgba(0, 0, 0, 0.05),
        -1px 5px 5px rgba(0, 0, 0, 0.09),
        0px 1px 3px rgba(0, 0, 0, 0.1),
        0px 0px 0px rgba(0, 0, 0, 0.1);
}

.qty_inc_dec_btn:active {
    background: #f7f7f7;
}

.btn_icon_wrapper {
    background: var(--bs-white);
    width: 24px;
    height: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border_radius_10);
    border: 2px solid var(--dark_blue);
    color: var(--dark_blue);
    font-size: 12px;
}

.qty_inc_dec_value {
    width: 50px;
    padding: 5px;
    text-align: center;
    font-size: 28px;
    color: var(--orange_a);
    font-weight: 600;
}

.btn_yellow_a {
    background: var(--orange_b);
    color: var(--dark_a);
    font-weight: bold;
    height: 50px;
    padding: 0 30px;
    border-radius: var(--border_radius_10);
    border: 1px solid var(--orange_b);
    font-size: 0.9rem;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    -webkit-border-radius: var(--border_radius_10);
    -moz-border-radius: var(--border_radius_10);
    -ms-border-radius: var(--border_radius_10);
    -o-border-radius: var(--border_radius_10);
}

.btn_yellow_a:hover {
    background: transparent;
    color: var(--dark_a);
    border: 1px solid var(--orange_a);
}

.product_color_btn {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border-radius: var(--border_radius_8);
    border: none;
}

.product_color_btn.darkblue {
    background: #192A43;
}

.product_color_btn.black {
    background: #333740;
}

.product_color_btn.red {
    background: #B92431;
}

.product_color_btn.greed {
    background: #1F9245;
}

.product_color_btn.purple {
    background: #8C187A;
}

.btn_blue {
    background: var(--blue_a);
    color: var(--bs-white);
    padding: 8px 10px;
    border: 1px solid var(--blue_a);
    border-radius: var(--border_radius_8);
    -webkit-border-radius: var(--border_radius_8);
    -moz-border-radius: var(--border_radius_8);
    -ms-border-radius: var(--border_radius_8);
    -o-border-radius: var(--border_radius_8);
    margin-left: 10px;
}

.information_i_wrapper {
    background: #F1F1F1;
    padding: 15px;
    padding-top: 30px;
    border-radius: var(--border_radius_10);
}

.info_input_wrapper {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.call_info_input_wrapper {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(1, 1fr);
}

.info_input_item {
    display: flex;
    padding: 15px;
    height: 50px;
    align-items: center;
    color: var(--silver_b);
    font-size: 1rem;
    border-radius: var(--border_radius_8);
    border: 1px solid transparent;
    position: relative;
}

.info_input_item::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    width: 20px;
    height: 20px;
    background: url("../images/drowpdown_select_arrow_icon.png") no-repeat;
    background-size: cover;
    background-position: center;
}

.info_input_item::placeholder {
    color: var(--silver_b);
}

.info_input_item:hover {
    outline: none;
}

.info_input_item:active,
.info_input_item:focus {
    outline: none;
    border: 1px solid var(--silver_a);
}

input.info_input_item {
    color: var(--dark_blue);
}

.call_info_input_item_wrapper {
    position: relative;
}

.call_info_input_item_wrapper>img {
    position: absolute;
    right: 0;
    z-index: 9;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.call_info_input_item {
    color: var(--black) !important;
    padding-right: 40px;
    width: 100%;
}

.call_info_input_item::placeholder {
    color: var(--black) !important;
}

.nice-select:after {
    display: none;
}

.nice-select .list {
    right: 0;
    height: 250px;
    overflow: overlay;
    z-index: 10;
}

.nice-select .list::-webkit-scrollbar {
    width: 5px;
}

.nice-select .list::-webkit-scrollbar-thumb {
    background-color: var(--silver_b);
    border-radius: var(--border_radius_8);
    -webkit-border-radius: var(--border_radius_8);
    -moz-border-radius: var(--border_radius_8);
    -ms-border-radius: var(--border_radius_8);
    -o-border-radius: var(--border_radius_8);
}

.nice-select .list li {
    text-align: right;
}

.section_heading{
    display: flex;
    justify-content: center;
    align-items: center;
}

.section_heading::before {
    content: "";
    display: inline-block;
    height: 18px;
    width: 35px;
    margin-left: 20px;
    background: url('../images/heading_before_element_arrows.png') no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.section_heading::after {
    content: "";
    display: inline-block;
    height: 18px;
    width: 35px;
    margin-right: 20px;
    background: url('../images/heading_after_element_arrows.png') no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.product_page_img_1>img {
    width: 100%;
    aspect-ratio: 1/.7;
    object-fit: cover;
    border-radius: var(--border_radius_10);
}

.userdrag_none {
    -webkit-user-drag: none;
}

.section_element_arrows {
    max-width: 400px;
    width: 86%;
}

.yellow_highlight_txt_g105 {
    background: #FF9900;
    height: 55px;
    clip-path: polygon(0 7%, 100% 0, 97% 25%, 100% 50%, 97% 75%, 100% 100%, 0 93%, 3% 70%, 0 50%, 3% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 30px;
    position: relative;
    color: var(--bs-white);
    font-weight: bold;
}

.yellow_highlight_txt_g105::before {
    content: "";
    position: absolute;
    top: 0;
    width: 95%;
    height: 100%;
    background: #E18300;
    clip-path: polygon(0 7%, 100% 0, 97% 25%, 100% 50%, 97% 75%, 100% 100%, 0 93%, 3% 70%, 0 50%, 3% 30%);
    z-index: -1;
}

/* wrap_slider */
.wrap_slider .swiper-slide,
.wrap_slider2 .swiper-slide,
.home_product_box {
    padding: 17px;
    max-width: 400px !important;
    border: 2px solid #D9D9D9;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.home_product_box,
.home_product_box:hover{
    display: block;
    color: unset;
    text-decoration: none;
}

.wrap_slider2 .swiper-slide {
    border: 2px solid var(--white);
}

.wrap_slider .swiper-slide.swiper-slide-active,
.wrap_slider2 .swiper-slide.swiper-slide-active,
.home_product_box:hover{
    border-color: var(--btn_light_gold);
}

.wrap_slider .swiper-slide img,
.wrap_slider2 .swiper-slide img,
.home_product_box img{
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 345px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.bgCream {
    background: #FBD397;
}

.bgCream .sliderBtns .swiper-button-prev {
    right: 4.5%;
    left: auto;
    user-select: none;
}

.bgCream .sliderBtns .swiper-button-next {
    left: 4.5%;
    right: auto;
    user-select: none;
}

/* product_box */
.product_box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-self: flex-start;
}

.product_box_left {
    width: calc(60% - 15px);
}

.product_box_right {
    position: sticky;
    top: 24px;
    width: calc(40% - 15px);
    height: 450px;
}

.like_product {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.like_product,
.like_product:hover {
    background: #FFEACB;
    box-shadow: -5px 19px 8px rgb(0 0 0 / 1%), -3px 11px 7px rgb(0 0 0 / 5%), -1px 5px 5px rgb(0 0 0 / 9%), 0px 1px 3px rgb(0 0 0 / 10%), 0px 0px 0px rgb(0 0 0 / 10%);
}

/* THANKS PAGE */
.txt_red_color {
    color: var(--red_color);
}

.txt_green_color {
    color: var(--green_color);
}

.txt_dark_b {
    color: var(--dark_b);
}

.txt_dark_b:hover {
    color: var(--dark_b);
}

.fw_900 {
    font-weight: 900;
}

.txt_dark_a {
    color: var(--dark_a);
}

.border_radius_15 {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.fs_10 {
    font-size: 10px;
}

/* CHECKOUT PAGE */
.checkout_page_top_sec {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout_page_top_sec>h2 {
    margin-bottom: 0;
}

.checkout_page_top_button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.txt_orange {
    color: var(--orange_a);
}

.border_radius_10 {
    border-radius: var(--border_radius_10);
    -webkit-border-radius: var(--border_radius_10);
    -moz-border-radius: var(--border_radius_10);
    -ms-border-radius: var(--border_radius_10);
    -o-border-radius: var(--border_radius_10);
}

/* main-box */
.main_box {
    position: relative;
}

/* cart-popup */
.cart_popup {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 550px;
    width: 100%;
    z-index: 99;
    opacity: 0;
    transform: translateY(25px);
    visibility: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
}

.cart_popup.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.cart_popup .p_top {
    background: #F4F4F4;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.cart_popup .p_bottom {
    background: #D9D9D9;
    padding: 20px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    min-height: 514px;
    max-height: 100vh;
    overflow: auto;
}

.cart_row {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    border: 1px solid var(--white);
    padding: 15px 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.cart_edit_btn,
.cart_del_btn {
    width: fit-content;
    color: var(--white);
    width: 40px;
    aspect-ratio: 1 / 1;
    padding: 4px;
    border: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: -5px 19px 8px rgba(0, 0, 0, 0.01), -3px 11px 7px rgba(0, 0, 0, 0.05), -1px 5px 5px rgba(0, 0, 0, 0.09), 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.cart_edit_btn {
    background: var(--very_dark_blue_a);
}

.cart_del_btn {
    background: #E21212;
}

.cart_row .p_middle {
    padding-left: 10px;
    padding-right: 10px;
    flex: 1;
}

.cart_count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-weight: 600;
    font-size: 20px;
    border-radius: 70px;
    -webkit-border-radius: 70px;
    -moz-border-radius: 70px;
    -ms-border-radius: 70px;
    -o-border-radius: 70px;
}

.cart-img {
    width: 36%;
}

.cart-img img {
    width: 100%;
}

/* checkout_table */
.checkout_table {
    padding: 8px;
    border: 2px solid #D9D9D9;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.checkout_t_head,
.checkout_t_row {
    display: flex;
}

.checkout_t_head .td_xs,
.checkout_t_head .td_sm,
.checkout_t_row .td_xs,
.checkout_t_row .td_sm {
    width: 18%;
    padding: 30px 15px;
    font-weight: 500;
}

.checkout_t_head .td_md,
.checkout_t_row .td_md {
    flex: 1;
    padding: 30px 15px;
    font-weight: 500;
}

.checkout_t_head .td_xs,
.checkout_t_row .td_xs {
    width: 12%;
}

.checkout_t_head>div:not(:first-child),
.checkout_t_row>div:not(:first-child) {
    border-right: 2px solid #D9D9D9;
}

.checkout_t_head>div {
    border-bottom: 2px solid #D9D9D9;
}

.checkout_t_row:not(:last-child) {
    border-bottom: 2px solid #D9D9D9;
}

.td_sm .increment_decrement_btns_wrapper .btn_icon_wrapper {
    background: var(--bs-white);
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.td_sm .increment_decrement_btns_wrapper .qty_inc_dec_btn {
    width: 40px;
    height: 40px;
}

.td_sm .increment_decrement_btns_wrapper .qty_inc_dec_value {
    font-size: 24px;
}

.checkout_p_img {
    max-width: 150px;
    width: 100%;
}

.td_min_height_40 {
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONFIRM ORDER PAGE */
@media (min-width: 769px) {
    .confirm_order_input_radio_2 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .confirm_order_input_radio_2 {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-top: 20px;
        min-width: 0px !important;

    }
}

.radio__box input[type="radio"]+label {
    color: var(--dark_blue);
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio__box input[type="radio"]+label::before {
    border: 1px solid var(--orange_a);
    content: ' ';
    display: inline-block;
    position: absolute;
    left: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    transition: border 0.15s ease-in-out;
}

.radio__box input[type="radio"]+label::after {
    border: 0px solid var(--orange_a);
    content: ' ';
    background: transparent;
    display: inline-block;
    margin-right: 5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    
    transition: border 0.15s ease-in-out;
}

.radio__box input[type="radio"] {
    display: none;
}

/* When button is active */
.radio__box input[type="radio"]:checked+label::after {
    background: var(--orange_a);
}

.radio__box input[type="radio"]:checked+label::before {
    border-color: var(--orange_a);
}

/* SIGN UP PAGE */
.input_silver_bg {
    background: #F1F1F1;
}

.forms_tabs_link {
    padding: 10px 25px;
    border: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    font-weight: 700;
}

.forms_tabs_link.active {
    font-weight: 800;
    border-bottom: 2px solid var(--orange_a);
}

.delivery_des_label {
    margin-left: 20px;
}


.input_checkbox_wrapper {
    position: relative;
    margin-bottom: 25px;
}

.input_checkbox_wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


.input_checkbox_wrapper label {
    user-select: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
}

.input_checkbox_wrapper p {
    cursor: pointer;
    user-select: none;
    margin-right: 30px;
    font-size: 14px !important;
}

.input_checkbox_wrapper .checkmark {
    position: absolute;
    top: 5%;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid var(--dark_blue);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.input_checkbox_wrapper input:checked~.checkmark {
    border-color: var(--orange_a);
}

.input_checkbox_wrapper .checkmark::after {
    content: "";
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.input_checkbox_wrapper input:checked~.checkmark:after {
    visibility: visible;
    opacity: 1 !important;
}

.input_checkbox_wrapper .checkmark:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 80%;
    background: url("../images/checkbox_icon.svg") no-repeat;
    background-size: 100% 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

/* DASHBOARD ORDERS PAGE */
.border_last_none:not(:last-child) {
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: 30px;
}

/* confirm-order */
.confirm_order_box {
    border: 2px solid #D9D9D9;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.confirm_order_box .top {
    padding: 15px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #D9D9D9;
}

.confirm_order_box .top .left_box {
    width: 60%;
}

.confirm_order_box .top .right_box {
    width: calc(40% - 20px);
    aspect-ratio: 1 / 1;
    border: 1px solid #D9D9D9;
    padding: 10px;
    position: relative;
}

.confirm_order_box .top .right_box .count_box {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 30px;
    height: 30px;
    background: var(--btn_gold);
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.confirm_order_box .bottom {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.confirm_order_box .bottom p .left {
    display: block;
    width: 130px;
    color: #1B1B1B;
    font-weight: 600;
    font-size: 18px;
}

.product_box_right2 {
    position: unset !important;
    top: 0 !important;
    left: 0 !important;
    height: auto !important;
}

/* dashboard_box */
.dashboard_box {
    display: flex;
    flex-direction: row-reverse;
}

.dashboard_left {
    flex: 1;
}

.dashboard_right {
    min-width: 320px;
    width: 23%;
    background: var(--very_dark_blue_b);
}

.dashboard_right ul li button {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 20px;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.dashboard_right ul li button .dashboard_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.dashboard_navBtn .dashboard_nav_arrow,
.dashboard_navBtn .i_active {
    display: none;
}

.dashboard_navBtn.active .dashboard_nav_arrow,
.dashboard_navBtn.active .i_active {
    display: block;
}

.dashboard_navBtn.active .i_normal {
    display: none;
}

.dashboard_navBtn.active {
    color: var(--orange_a);
}

.dashboard_navBtn.active .dashboard_icon {
    background: var(--orange_a);
}

/* SHIPPING DETAILS PAGE */
.add_new_title_btn {
    background: transparent;
    border: none;
}

.add_new_title_btn>img {
    margin-right: 10px;
    padding: 7px;
    background: var(--orange_a);
    border-radius: var(--border_radius_10);
}

.shipping_details_h_icon {
    width: 25px;
}

.edit_btn,
.delete_btn {
    padding: 8px 15px;
    margin: 0 5px;
    color: var(--bs-white);
    border-radius: var(--border_radius_8);
    text-decoration: none;
}

.edit_btn:hover,
.delete_btn:hover {
    color: var(--bs-white);
}

.edit_btn {
    background: #146EB4;
}

.delete_btn {
    background: #E21212;
}

/* CHANGE PASSWORD PAGE */
.modal_dismiss_icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D9D9D9;
    border: none;
}

.banner_wrapper {
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: var(--border_radius_10);
    z-index: -1;
    -webkit-border-radius: var(--border_radius_10);
    -moz-border-radius: var(--border_radius_10);
    -ms-border-radius: var(--border_radius_10);
    -o-border-radius: var(--border_radius_10);
    overflow: hidden;
}

.banner_bg_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile_banner_img_wrapper {
    background: #232F3E;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.profile_banner_img_wrapper_absolute_1 {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.profile_banner_img_wrapper_absolute_2 {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.profile_banner_img_wrapper input {
    display: none;
}

.profile_img {
    display: flex;
    justify-content: center;
    z-index: 9;
    position: relative;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    margin-top: -80px;
}

.profile_img>img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    object-position: center;
    border: 6px solid var(--bs-white);
    border-radius: 50%;
    filter: drop-shadow(0px 82px 33px rgba(0, 0, 0, 0.01)) drop-shadow(0px 46px 28px rgba(0, 0, 0, 0.05)) drop-shadow(0px 20px 20px rgba(0, 0, 0, 0.09)) drop-shadow(0px 5px 11px rgba(0, 0, 0, 0.1)) drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.1));
}

.profile_welcome_sec {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    padding-left: 30px;
    background: #131921;
    color: var(--bs-white);
}

/* dashboard_fav */
.dashboard_fav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
}

.dashboard_fav_box .like_product {
    top: 22px;
    right: 22px;
}

.dashboard_fav_box .btn_nav_gold {
    padding: 4px 10px;
    min-height: 40px;
    min-width: 40px;
}

.dashboard_fav_box .inner {
    border: 1px solid #D9D9D9;
    padding: 12px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.dashboard_fav_box .inner img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

/* complete_boxes */
.complete_boxes {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
}

.complete_boxes::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    border-bottom: 2px dashed #000;
    z-index: -1;
}

.complete_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.complete_box .top {
    width: 140px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(133.8deg, #D48A1C -23.09%, #FB9803 85.11%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.complete_box .top::after {
    content: '';
    width: 100%;
    height: 100%;
    background: url('../images/complete_frame.png') no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.complete_box .top img {
    width: 60%;
    position: relative;
    z-index: 2;
}

.complete_box .bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    text-align: center;
}

.complete_box .bottom span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    width: 25px;
    height: 25px;
    border: 2px solid var(--green);
    color: var(--green);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

/* CALL PAGE */
.callpage_grid_img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border_radius_10);
    -webkit-border-radius: var(--border_radius_10);
    -moz-border-radius: var(--border_radius_10);
    -ms-border-radius: var(--border_radius_10);
    -o-border-radius: var(--border_radius_10);
    margin-bottom: 20px;
}


.social_media_img_link {
    text-decoration: none;
    color: var(--black);
    margin-right: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.social_media_img_link:hover {
    text-decoration: none;
    color: var(--black);
}


.social_media_img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.social_media_txt {
    transform: rotate(-90deg);
    margin-top: 25px;
}

.productDescriptionStyler img {
    max-width: 50% !important;
    height: auto !important; /* Maintain aspect ratio */
}



.swiper-slide .right{
    z-index: 111 !important;
}
.custom_img{
    height: 300px !important;
}
@media screen and (max-width: 980px) {
    .custom_img{
        height: 250px !important;
    }
}
@media screen and (max-width: 800px) {
    .custom_img{
        height: 200px !important;
    }
}
@media screen and (max-width: 700px) {
    .custom_img{
        height: 150px !important;
    }
}
@media screen and (max-width: 600px) {
    .custom_img{
        height: 100px !important;
    }
}
.search-box{
    display: none;
    width: 100%;
    max-height: 400px;
    overflow: auto;
    position: absolute;
    z-index: 11111;
    background: white !important;
    top: 54px;
    left: 0;
    border-radius: 5px;
}
.search-box li{
    font-size: 18px;
    margin-bottom: 10px;
    padding: 20px;
}
.search-box li:hover{
    cursor: pointer;
    background: rgba(0,0,0,.1);
}
.search-box li img{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}
.search-box ul{
    list-style: none;
    padding: 0;
}

.cart_popup .p_bottom{
    min-height: unset !important;
}
.swiper-slide a{
    text-decoration: none;
    color: #000;
}
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    }

    #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

    @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
    }

    @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
    }

    @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
    }

    @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
    }


    @media only screen and (min-width: 601px) {
        .crom-featured-cats {
            height: 240px;
            width: 240px;
            justify-content: center;
            align-items: center;
        }
      
    }