body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto
}


/* animations start */

.fade-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease-out, transform .6s ease-out;
    will-change: opacity, transform
}

.fade-anim.is-visible {
    opacity: 1;
    transform: translateY(0)
}


.fade-anim.slow {
    transition-duration: .9s
}

.fade-anim.fast {
    transition-duration: .35s
}


/* header animation start */

@keyframes slideFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* prepare header for intro */
.wr_header_wrapper.header-intro .wr_logo img,
.wr_header_wrapper.header-intro .wr_desktop_nav,
.wr_header_wrapper.header-intro .row.align-items-center.d-flex.d-lg-none {
    opacity: 0;
    transform: translateY(-30px);
    will-change: transform, opacity;
}

/* play animations when .is-animated is added */
.wr_header_wrapper.header-intro.is-animated .wr_logo img {
    animation: slideFromTop .6s cubic-bezier(.2, .8, .2, 1) .03s forwards;
}

.wr_header_wrapper.header-intro.is-animated .wr_desktop_nav {
    animation: slideFromTop .62s cubic-bezier(.2, .8, .2, 1) .22s forwards;
}

.wr_header_wrapper.header-intro.is-animated .row.align-items-center.d-flex.d-lg-none {
    animation: slideFromTop .62s cubic-bezier(.2, .8, .2, 1) .22s forwards;
}

/* optional: slightly different scale effect for logo */
.wr_header_wrapper.header-intro.is-animated .wr_logo img {
    transform-origin: center;
    animation-name: slideFromTop, logoScale;
    animation-duration: .6s, .45s;
    animation-delay: .03s, .03s;
    animation-fill-mode: forwards, forwards;
}

@keyframes logoScale {
    from {
        transform: translateY(-30px) scale(.98);
    }

    60% {
        transform: translateY(-6px) scale(1.02);
    }

    to {
        transform: translateY(0) scale(1);
    }
}

.wr_header_wrapper.header-intro .wr_header_icons_desktop,
.wr_header_wrapper.header-intro .wr_header_icons_desktop .wr_icon_link,
.wr_header_wrapper.header-intro .wr_mob_btn {
    opacity: 0;
    transform: translateY(-20px);
    will-change: opacity, transform;
}

.wr_header_wrapper.header-intro.is-animated .wr_header_icons_desktop {
    animation: slideFromTop .62s cubic-bezier(.2, .8, .2, 1) .28s forwards;
}

.wr_header_wrapper.header-intro.is-animated .wr_header_icons_desktop .wr_icon_link {
    animation: slideFromTop .48s cubic-bezier(.2, .8, .2, 1) .34s forwards;
}

.wr_header_wrapper.header-intro.is-animated .wr_mob_btn {
    animation: slideFromTop .48s cubic-bezier(.2, .8, .2, 1) .34s forwards;
}

/* animations end */



@media(min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1260px
    }
}

.wr_header_wrapper {
    background-color: #ffffff;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05)
}

.wr_logo img {
    max-height: 50px;
    width: auto
}

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

.wr_nav_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center
}

.wr_nav_item {
    position: relative;
    padding: 0 12px
}

.wr_nav_item:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -2px;
    top: 55%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 11px
}

.wr_nav_link {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block
}

.wr_nav_link:hover {
    color: #529aa8;
    transform: translateY(-3px)
}

.wr_dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000000;
    width: 200px;
    padding: 0px 0;
    visibility: hidden;
    opacity: 0;
    margin-top: 15px;
    transition: all 0.3s ease;
    z-index: 999;
    overflow: hidden;
    border-radius: 4px
}

.wr_nav_item.wr_has_sub:hover .wr_dropdown {
    visibility: visible;
    opacity: 1;
    margin-top: 5px
}

.wr_dropdown li {
    list-style: none
}

.wr_dropdown a {
    display: block;
    color: #bbb;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.wr_dropdown a:hover {
    color: #fff;
    background: #529aa8
}

.wr_header_icons_desktop {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px
}

.wr_icon_link {
    color: #444;
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative
}

.wr_icon_link:hover {
    color: #529aa8
}

.wr_cart_badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #529aa8;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.wr_mob_btn {
    background-color: #4b95ac;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative
}

.wr_mob_btn:hover {
    color: #fff;
    opacity: 0.9
}

.wr_mob_cart_badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #fff;
    color: #529aa8;
    font-size: 10px;
    font-weight: bold;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 1px solid #529aa8;
    display: flex;
    align-items: center;
    justify-content: center
}

.wr_mobile_menu_container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #6fb7cd;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
}

.wr_mobile_menu_container.wr_open {
    display: block;
    animation: slideDown 0.3s ease-out
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.wr_mob_nav_list {
    list-style: none;
    padding: 0;
    margin: 0
}

.wr_mob_nav_list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.wr_mob_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer
}

.wr_mob_link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #fff
}

.wr_mob_arrow {
    font-size: 12px
}

.wr_mob_submenu {
    display: none;
    background-color: #6fb7cd;
    padding: 0
}

.wr_mob_submenu.wr_show {
    display: block
}

.wr_mob_submenu li a {
    padding: 12px 20px 12px 35px;
    font-size: 14px;
    font-weight: 500;
    color: #e6ffe6;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.wr_search_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s
}

.wr_search_overlay.wr_active {
    opacity: 1;
    visibility: visible
}

.wr_search_input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 24px;
    padding: 10px;
    text-align: center;
    width: 80%;
    outline: none
}

.wr_search_close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer
}

.hero_slider_wrapper {
    width: 100%;
    overflow: hidden;
    background-color: #f4f4f4
}

.hero_carousel {
    margin-bottom: 0
}

.hero_control_prev,
.hero_control_next {
    width: 5%;
    opacity: 0.5;
    transition: opacity 0.3s
}

.hero_control_prev:hover,
.hero_control_next:hover {
    opacity: 1
}

.hero_control_prev-icon,
.hero_control_next-icon {
    width: 30px;
    height: 30px
}

.hero_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.ft_section_wrapper {
    position: relative;
    padding: 0 0 50px 0;
    margin-top: -50px;
    z-index: 10
}

.ft_box {
    max-width: 1200px;
    margin: 0 auto
}

.ft_item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center
}

.ft_icon_img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
    display: block
}

.ft_title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-family: 'Segoe UI', sans-serif
}

.ft_subtitle {
    font-size: 14px;
    color: #777;
    font-weight: 400;
    margin: 0;
    line-height: 1.4
}

@media(max-width:767px) {
    .bs_section_wrapper {
        padding-top: 60px !important
    }

    .ft_section_wrapper {
        margin-top: 0;
        padding-top: 30px
    }

    .ft_item {
        margin-bottom: 20px;
        text-align: start
    }
}

.support_container1 {
    position: relative;
    top: -70px;
    max-width: 1360px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 28%)
}

.bs_section_wrapper {
    padding: 0px 0 80px 0;
    background-color: #f5f6fa;
    position: relative
}

.bs_heading {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 1px
}

.bs_card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none
}

.bs_card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08)
}

.bs_prod_img {
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block
}

.bs_prod_title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 0.5px
}

.bs_price_wrap {
    font-size: 17px;
    font-weight: 700;
    color: #000
}

.bs_old_price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-weight: 500
}

.bs_slider_container_relative {
    position: relative;
    padding: 0 20px
}

.bs_swiper_btn {
    width: 40px;
    height: 40px;
    background-color: #eeeeee;
    border-radius: 10px;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    border: 1px solid #f0f0f0
}

.bs_swiper_btn:after {
    font-size: 20px !important;
    font-weight: bold;
    content: none
}

.bs_swiper_btn:hover {
    background-color: #51a2ba;
    color: #fff;
    box-shadow: 0 0px 10px #51a2ba
}

.swiper-button-prev {
    left: -35px
}

.swiper-button-next {
    right: -35px
}

.swiper-pagination-bullet {
    width: 15px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background: #ccc !important;
    opacity: 0.6;
    transition: all 0.3s
}

.swiper-pagination-bullet-active {
    width: 25px !important;
    background: #529aa8 !important;
    opacity: 1
}

.bs_btn_wrapper {
    text-align: center;
    margin-top: 50px
}

.bs_btn {
    background-color: #529aa8;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 17px 21px 27px #a3afb2b3;
    text-decoration: none
}

.bs_btn:hover {
    background-color: #407d8a
}

.swiper {
    padding-bottom: 50px !important
}

@media(max-width:991px) {
    .swiper-button-prev {
        left: 0
    }

    .swiper-button-next {
        right: 0
    }

    .bs_slider_container_relative {
        padding: 0
    }
}

.is_section_wrapper {
    padding: 60px 0 30px;
    background-color: #ffffff
}

.is_box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.is_box:hover {
    border-color: #529aa8;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05)
}

.is_img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 25px
}

.is_title {
    font-size: 20px;
    font-weight: 700;
    color: #529aa8;
    margin-bottom: 20px
}

.is_desc {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0;
    font-weight: 400
}

.is_col {
    margin-bottom: 30px
}

.ship_section_92 {
    background: #ececec;
    padding: 60px 0px
}

.ship_card_92 {
    padding: 48px 28px;
    border-style: double;
    border-width: 6px;
    border-color: #529aa8;
    border-radius: 12%;
    background: #ececec;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease
}

.ship_card_92:hover {
    background-color: #FFFFFF;
    border-style: solid
}

.ship_title_92 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #222;
    transition: color 0.35s ease
}

.ship_value_92 {
    font-size: 35px;
    font-weight: 600;
    color: #529aa8;
    transition: transform 0.35s ease
}

.ship_card_92:hover {
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08)
}

.ship_card_92:hover::before {
    border-width: 4px
}

.ship_card_92:hover::after {
    opacity: 0
}

.cat_section_88 {
    background: #fff;
    padding: 60px 0px
}

.cat_heading_88 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px
}

.cat_flip_88 {
    perspective: 1500px;
    height: 220px
}

.cat_flip_inner_88 {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(.4, .2, .2, 1)
}

.cat_flip_88:hover .cat_flip_inner_88 {
    transform: rotateY(-180deg)
}

.cat_face_88 {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    text-align: center
}

.cat_front_88 {
    background: #f2f2f2 url("../img/cat_bg1.png") center/cover no-repeat
}

.cat_front_88 h3 {
    color: #6cbad1;
    font-weight: 600;
    font-size: 22px;
    margin: 0
}

.cat_back_88 {
    background: #f2f2f2 url("../img/cat_bg2.jpg") center/cover no-repeat;
    transform: rotateY(180deg)
}

.cat_back_88 h4 {
    color: #6cbad1;
    font-weight: 700;
    margin-bottom: 10px
}

.cat_back_88 p {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px
}

.cat_back_88 a {
    background-color: #529aa8;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none
}

.cat_btn_88 {
    background-color: #529aa8;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 17px 21px 27px #a3afb2b3;
    text-decoration: none
}

.new_arrivals_sect1 {
    padding-top: 60px
}

.about-section {
    padding: 60px 0
}

.img-column {
    background-size: cover;
    background-position: center;
    min-height: 450px;
    border-radius: 5px
}

.content-column {
    padding-left: 48px
}

.section-title {
    color: #3597b8;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 20px
}

.section-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    text-align: justify
}

@media(max-width:992px) {
    .content-column {
        padding-left: 0px !important;
        margin-top: 30px
    }
}

.usp-section-unique {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center
}

.usp-card-custom {
    padding: 0px
}

.usp-icon-wrapper {
    font-size: 25px;
    color: #64a1b8;
    margin-bottom: 10px
}

.usp-title-custom {
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 5px
}

.usp-text-custom {
    color: #777;
    font-size: 13px;
    margin: 0
}

.rtx_top_bar_9821 {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;

    background: #fff;
}

.rtx_top_text_9821 {
    font-size: 14px;
    color: #444;
    margin: 0;
    text-align: center;
}

.rtx_social_icons_9821 {
    text-align: center;
    border-left: 1px solid #eee;
    padding: 12px;
}

.rtx_social_icons_9821 a {
    color: #000;
    margin-left: 15px;
    text-decoration: none;
    font-size: 16px;
}

.rtx_footer_9821 {
    background: #ffffff;
    padding: 50px 0 0;
    font-family: 'Poppins', sans-serif;
}

.rtx_footer_logo_9821 {
    margin-bottom: 20px;
}

.rtx_footer_tagline_9821 {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rtx_footer_email_9821 {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.rtx_footer_title_9821 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.rtx_footer_list_9821 {
    list-style: none;
    padding: 0;
}

.rtx_footer_list_9821 li {
    margin-bottom: 12px;
}

.rtx_footer_list_9821 li a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.rtx_footer_list_9821 li a:hover {
    color: #61a1b1;
    padding-left: 5px;
}

.rtx_footer_payment_9821 {
    display: flex;
    gap: 8px;
}

.rtx_footer_payment_9821 img {
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
    background: #fff;
}

.rtx_footer_bottom_9821 {
    margin-top: 30px;
    padding: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.rtx_footer_bottom_9821 p {
    font-size: 13px;
    color: #bbb;
    margin: 0;
}

@media (max-width: 768px) {
    .rtx_top_bar_9821 {
        padding-top: 20px;
    }

    .rtx_social_icons_9821 {
        text-align: center;
        border-left: none;
        margin-top: 10px;
    }

    .rtx_top_text_9821 {
        text-align: center;
    }

    .rtx_footer_9821 {
        text-align: left;
    }
}



/*popup css start */
.agepopup_wrap_83921 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

/* ACTIVE */
.agepopup_wrap_83921.active_83921 {
    visibility: visible;
}

/* OVERLAY */
.agepopup_overlay_83921 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

/* POPUP BOX */
.agepopup_box_83921 {
    position: relative;
    background: #ffffff;
    max-width: 460px;
    width: 92%;
    border-radius: 16px;
    padding: 45px 20px;
    text-align: center;
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 2;
}

/* ANIMATION */
.agepopup_wrap_83921.active_83921 .agepopup_box_83921 {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* CLOSE */
.agepopup_close_83921 {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.agepopup_close_83921:hover {
    color: #000;
}

/* CONTENT */
.agepopup_title_83921 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.agepopup_text_83921 {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* BUTTONS */
.agepopup_btns_83921 {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.agepopup_btn_yes_83921 {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.agepopup_btn_yes_83921:hover {
    background: #333;
}

.agepopup_btn_no_83921 {
    background: transparent;
    border: 1px solid #ccc;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.agepopup_btn_no_83921:hover {
    border-color: #000;
    color: #000;
}

/* MOBILE */
@media (max-width: 480px) {
    .agepopup_box_83921 {
        padding: 35px 22px;
    }
}

/* popup css end */

/* header shopping cart start */
.cart_items34{
    max-height: 235px;
    overflow-y: auto;
}


/* ===== Webkit Scrollbar (Chrome, Edge, Safari) ===== */
.cart_items34::-webkit-scrollbar {
  width: 6px;
}

.cart_items34::-webkit-scrollbar-track {
  background: transparent;
}

.cart_items34::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25); /* theme-friendly */
  border-radius: 10px;
  transition: background 0.3s ease;
}

.cart_items34::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.45);
}

/* ===== Firefox ===== */
.cart_items34 {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.35) transparent;
}

.wr_cart_wrap_77192 {
  position: relative;
}

/* ICON */
.wr_icon_link_77192 {
  position: relative;
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

.wr_cart_badge_77192 {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #529aa8;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    height: 17px;
    width: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DROPDOWN */
.wr_cart_dropdown_77192 {
  position: absolute;
  top: 130%;
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  padding:30px  20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 999;
}

/* ACTIVE */
.wr_cart_dropdown_77192.active_77192 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CLOSE */
.wr_cart_close_77192 {
    position: absolute;
    top: 6px;
    line-height: normal;
    right: 8px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    height: 20px;
    color: #fff;
    width: 21px;
    border-radius: 100px;
    background: #ec3535;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ITEM */
.wr_cart_item_77192 {
  display: flex;
  gap: 12px;
  padding: 15px 0px;
  border-bottom: 1px solid #eee;
}

.wr_cart_item_77192 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eaeaea;
}

.wr_cart_item_info_77192 h4 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.wr_cart_item_info_77192 p {
  font-size: 12px;
  color: #666;
  margin: 4px 0;
}

.wr_cart_item_info_77192 span {
  font-size: 13px;
}

/* REMOVE */
.wr_cart_remove_77192 {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #aaa;
}

/* SUBTOTAL */
.wr_cart_subtotal_77192 {
  padding: 14px 0;
  font-size: 15px;
  text-align: center;
}

/* BUTTONS */
.wr_cart_actions_77192 {
  display: flex;
  gap: 10px;
}

.wr_cart_actions_77192 a {
 
    font-size: 14px;
    width: 100%;
    padding: 10px;
    text-align: center;
 
}

.wr_cart_btn_view_77192 {
  background: #2aa100;
}

.wr_cart_btn_checkout_77192 {
  background: #007bff;
}

/* MOBILE */
@media (max-width: 480px) {
  .wr_cart_dropdown_77192 {
    width: 92vw;
    right: -10px;
  }
}


/* ===== MOBILE FULL WIDTH CART ===== */
@media (max-width: 768px) {
    .wr_icon_link_77192{
        color: #fff !important;
    }

  .wr_cart_wrap_77192 {
    position: static;
  }

  .wr_cart_dropdown_77192 {
        position: fixed;
        left: 10px;
        right: 0;
        top: auto;
        bottom: 0;
        width: 95%;
        max-height: 85vh;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
    padding: 20px 16px 16px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
  }

  .wr_cart_dropdown_77192.active_77192 {
    transform: translateY(100%);
  }

  /* items scroll area adjust */
  .wr_cart_dropdown_77192 .cart_items34 {
    max-height: calc(85vh - 170px);
  }

}
