﻿
:root {
    --rafco-font: "Public Sans", sans-serif;
    --rafco-heading-font: "Inter", sans-serif;
    --rafco-special-font: "Public Sans", sans-serif;
    --rafco-letter-space: 0.1em;
    --rafco-letter-space-xl: 0.2em;
    --rafco-border-radius: 5px;
    --rafco-box-shadow: 0px 0px 150px 0px rgba(78, 67, 250, 0.06);
    --rafco-body: #F8F8F8;
    --rafco-base: #DC0302;
    --rafco-base-rgb: 18, 127, 255;
    --rafco-secondary: #EB001B;
    --rafco-secondary-rgb: 235, 0, 27;
    --rafco-text: #757575;
    --rafco-text-rgb: 117, 117, 117;
    --rafco-text-gray: #89868d;
    --rafco-text-gray-rgb: 137, 134, 141;
    --rafco-gray: #F3F3F4;
    --rafco-gray-rgb: 243, 243, 244;
    --rafco-gray-2: #E8E8E8;
    --rafco-gray-2-rgb: 232, 232, 232;
    --rafco-white: #fff;
    --rafco-white-rgb: 255, 255, 255;
    --rafco-black: #01023B;
    --rafco-black-2: #191C1F;
    --rafco-black-rgb: 28, 28, 28;
    --rafco-black-2-rgb: 25, 28, 31;
    --rafco-border-color: #DEE2E7;
    --rafco-border-color-rgb: 222, 226, 231;
}
/*----------------------------------------
1.2 Common
----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Cairo:wght@200..1000&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*---------------------------------
	typography css start
---------------------------------*/
body {
    font-family: var(--rafco-font);
    font-size: 16px;
    font-weight: normal;
    color: var(--rafco-text);
    line-height: 29px;
    scroll-snap-type: proximity;
    background-color: #F8F8F8;
}

a {
    text-decoration: none;
    color:inherit;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--rafco-heading-font);
    color: var(--rafco-black);
    margin-top: 0px;
    font-weight: 700;
    line-height: 1.2;
    -webkit-transition: color 0.3s 0s ease-out;
    -moz-transition: color 0.3s 0s ease-out;
    -ms-transition: color 0.3s 0s ease-out;
    -o-transition: color 0.3s 0s ease-out;
    transition: color 0.3s 0s ease-out;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

p {
    font-family: var(--rafco-font);
    font-weight: 400;
    color: var(--rafco-text);
    margin-bottom: 15px;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
    transition: 0.3s;
}

    a:not([href]):not([class]),
    a:not([href]):not([class]):hover {
        color: inherit;
        text-decoration: none;
    }

    a:focus,
    .button:focus {
        text-decoration: none;
        outline: none;
    }

    a:focus,
    a:hover {
        color: inherit;
        text-decoration: none;
    }

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

    button:focus {
        outline: 0;
    }

em {
    font-style: normal;
}

hr {
    margin: 0;
}

.ul-0 {
    padding: 0;
    margin: 0;
}

.pl-0 {
    padding-left: 0;
}

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

.fix {
    overflow: hidden;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}


input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
    outline: none;
    background-color: #EFF0F2;
    height: 60px;
    width: 100%;
    line-height: 60px;
    font-size: 16px;
    border: 2px solid #EFF0F2;
    color: var(--rafco-black);
    padding-left: 29px;
    padding-right: 29px;
}

[dir=rtl] input[type=text],
[dir=rtl] input[type=email],
[dir=rtl] input[type=tel],
[dir=rtl] input[type=number],
[dir=rtl] input[type=password],
[dir=rtl] input[type=url],
[dir=rtl] textarea {
    text-align: right;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #84848B;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #84848B;
}

input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 4-18 */
    color: #84848B;
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* IE 10+  Edge*/
    color: #84848B;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder {
    /* MODERN BROWSER */
    color: #84848B;
}

textarea {
    line-height: 1.8;
    padding-top: 30px;
    padding-bottom: 30px;
}

input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

*::-moz-selection {
    background: var(--rafco-black);
    color: var(--rafco-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--rafco-black);
    color: var(--rafco-white);
    text-shadow: none;
}

::selection {
    background: var(--rafco-black);
    color: var(--rafco-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--rafco-black);
    font-size: var(--xc-fz-body);
    opacity: 1;
}

*::placeholder {
    color: var(--rafco-black);
    font-size: var(--xc-fz-body);
    opacity: 1;
}

.m-img img {
    max-width: 100%;
}

.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

.z-index-1 {
    z-index: 1;
}

.z-index-11 {
    z-index: 11;
}

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

.overflow-y-visible {
    overflow-x: hidden;
    overflow-y: visible;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.include-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.demo {
    -webkit-transition: color 0.3s 0s linear;
    -moz-transition: color 0.3s 0s linear;
    -ms-transition: color 0.3s 0s linear;
    -o-transition: color 0.3s 0s linear;
    transition: color 0.3s 0s linear;
    -webkit-transition: color 0.3s linear, transform 0.2s ease;
    -moz-transition: color 0.3s linear, transform 0.2s ease;
    -ms-transition: color 0.3s linear, transform 0.2s ease;
    -o-transition: color 0.3s linear, transform 0.2s ease;
    transition: color 0.3s linear, transform 0.2s ease;
}

[dir=rtl] .demo {
    margin-left: 0;
    margin-right: 15px;
}

div.demo img {
    margin-left: 10px;
}

[xc-theme=xc-theme-dark] .demo {
    color: yellow;
}
    /*----------------------------------------
 Header
----------------------------------------*/
.xc-header-two {
    padding: 20px 0;
    color: var(--rafco-white);
}

    .xc-header-two__top {
        background-color: #01023B;
        padding: 9px 0px;
    }

.xc-header-two__top-wrapper {
    align-items: center;
}

.xc-header-two__top-left p {
    margin-bottom: 0;
    color: var(--rafco-white);
}

.xc-header-two__top-right {
    display: flex;
}

.xc-header-two__top .nice-select::after {
    color: var(--rafco-white);
}

.xc-header-two__currency-select, .xc-header-two__lang-select {
    background-color: transparent;
    border: transparent;
}

    .xc-header-two__currency-select .current, .xc-header-two__lang-select .current {
        color: var(--rafco-white);
    }

.xc-header-two__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.xc-header-two__search input {
    height: 48px;
    flex-shrink: 0;
    padding-left: 30px;

    border: 0;

}


.xc-header-two__search input:focus {
    outline: none;
}

.xc-header-two__search button {
    position: absolute;
    right: 30px;
    top: 15px;
    font-size: 22px;
    color: var(--rafco-black);
}

.xc-header-two__search select,
.xc-header-two__search .nice-select {
    font-size: 16px;
    color: var(--rafco-black);
    border-radius: 0;
    height: 40px;
    line-height: 40px;
    min-width: 145px;
    border: 0;
    font-family: var(--rafco-heading-font);
    border-left: 1px solid var(--rafco-base);
}

.xc-header-two__right {
    display: flex;
    align-items: center;
    gap: 45px;
}

@media (min-width: 1200px) {
    .xc-header-two__right {
        gap: 60px;
    }
}

.xc-header-two__btns {
    display: flex;
    gap: 23px;
}

.xc-header-two__btn {
    display: inline-block;
    font-size: 14px;
    font-family: var(--rafco-heading-font);
    color: var(--rafco-white);
    position: relative;
}

    .xc-header-two__btn .xc-cart-count {
        position: absolute;
        top: -5px;
        right: -10px;
        width: 20px;
        height: 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--rafco-black);
        background-color: var(--rafco-white);
        border-radius: 50%;
        line-height: 1;
    }

    .xc-header-two__btn:hover {
        color: var(--rafco-white);
    }

    .xc-header-two__btn i {
        display: block;
        text-align: center;
        font-size: 25px;
        line-height: 1;
    }

.xc-header-two__cta {
    display: inline-flex;
    align-items: center;
    gap: 25px;
}

    .xc-header-two__cta a {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--rafco-white);
    }

        .xc-header-two__cta a i {
            position: relative;
            top: 2px;
            line-height: 1;
            font-size: 20px;
        }

.xc-header-two__bottom {
    background-color: var(--rafco-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--rafco-border-color);
}

    .xc-header-two__bottom .nice-select {
        background-color: #F2F4F5;
        color: var(--rafco-black);
        border: 0;
        height: 48px;
        line-height: 48px;
    }

.xc-header-two__bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xc-header-two__bottom-left {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
}

.xc-header-two__bottom-right {
    flex-shrink: 0;
    font-family: "Cairo", sans-serif;
}




/*----------------------------------------
    main slider
----------------------------------------*/
.main-slider .slide-item {
    position: relative;
    max-height: 600px;
    overflow: hidden;
}

    .main-slider .slide-item img {
        width: 100%;
        height: 100%;
        max-height: 600px;
        object-fit: cover;
        display: block;
    }

.main-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 20% black */
    z-index: 1;
}

.main-slider .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

    .main-slider .slide-content h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        color: var(--rafco-white);
    }

    .main-slider .slide-content p {
        font-size: 1.2rem;
        color: var(--rafco-white);
    }


@media (max-width: 768px) {
    .main-slider .slide-content h2 {
        font-size:15px;
        line-height:normal;
    }
    .main-slider .slide-content p {
        font-size: 13px;
    }

}

    /*----------------------------------------
  category
----------------------------------------*/
    .xc-category-one__item {
        text-align: center;
        font-size: 15px;
    }

    .xc-category-one__img {
        width: 90px;
        height: 90px;
        background-color: #E4E4F1;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        position: relative;
    }

        .xc-category-one__img img {
            width: 150px;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    .xc-category-one__item h3 {
        font-size: 15px;
    }


    /*----------------------------------------
  Top-Selling
----------------------------------------*/
    .home-top-selling {
        background-color: #F4F4F4;
        background-image: url(../img/bg/top_products-bg.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: right;
    }

    .best-seller-section {
        position: relative;
        overflow: hidden;
    }

    .home-top-selling .xc-sec-heading {
    }



    .best-seller-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .best-seller-wrapper {
        position: relative;
    }

    .best-seller-carousel .item {
        background: #f3f3f3;
        padding: 40px 20px;
        margin: 5px;
        text-align: center;
        border-radius: 8px;
        font-weight: bold;
        min-height: 200px;
    }

    /* السهم العام */
    .best-seller-next,
    .best-seller-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #333;
        color: white;
        border: none;
        width: 30px;
        height: 30px;
        font-size: 20px;
        cursor: pointer;
        border-radius: 50%;
        z-index: 100;
    }


    .best-seller-next {
        right: 0;
    }

    .best-seller-prev {
        left: 0;
    }
    /*----------------------------------------
 Feature
----------------------------------------*/
    .xc-feature-one {
        background-size: cover;
        background-position: center;
    }

    .xc-feature-one__item {
        padding: 18px;
        display: flex;
        gap: 15px;
        background-color: var(--rafco-white);
    }

    .xc-feature-one__icon {
        font-size: 40px;
        color: var(--rafco-black);
    }

    .xc-feature-one__title {
        font-size: 14px;
        font-weight: 500;
        color: var(--rafco-black);
        text-transform: uppercase;
        margin-bottom: 0;
    }

    .xc-feature-one__content p {
        margin-bottom: 0;
        font-size: 14px;
    }

    @media (min-width: 1400px) {
        .xc-feature-one__content p {
            font-size: 16px;
        }
    }

    .xc-feature-one__title .xc-sec-heading__title {
        color: var(--rafco-white);
    }

    .xc-feature-one__title .xc-sec-heading__summary {
        color: var(--rafco-white);
        opacity: 0.8;
    }

    /*Products*/

    .xc-product-eight__item:hover .xc-product-eight__icons {
        left: 30px;
        opacity: 1;
    }

    .xc-product-eight__item:hover .xc-product-eight__img img {
        transform: scale(1.1);
    }

    .xc-product-eight__item:hover .xc-product-eight__img::before {
        opacity: 0.4;
    }

    .xc-product-eight__img {
        position: relative;
        background-color: #fff;
        text-align: center;
        margin-bottom: 20px;
        overflow: hidden;
    }

        .xc-product-eight__img img {
            transition: 0.3s;
        }

        .xc-product-eight__img::before {
            content: "";
            inset: 0;
            position: absolute;
            background-color: var(--rafco-black);
            opacity: 0;
            transition: 0.3s;
            z-index: 1;
        }

    .xc-product-eight__offer {
        font-size: 14px;
        font-weight: 400;
        right: 0;
        top: 0;
        position: absolute;
        display: inline-block;
        padding: 2px 9px;
        color: var(--rafco-white);
        text-transform: uppercase;
        background-color: var(--rafco-black);
    }

    .xc-product-eight__icons {
        position: absolute;
        top: 50%;
        left: 0px;
        transform: translateY(-50%);
        transition: 0.3s;
        opacity: 0;
        z-index: 1;
    }

    .xc-product-eight__action {
        display: block;
        position: relative;
    }

        .xc-product-eight__action:hover .xc-product-eight__tooltip {
            visibility: visible;
            opacity: 1;
            left: 100%;
        }

        .xc-product-eight__action i {
            width: 38px;
            height: 38px;
            line-height: 38px;
            font-size: 18px;
            display: inline-block;
            border-radius: 50%;
            text-align: center;
            background-color: var(--rafco-white);
        }

            .xc-product-eight__action i::before {
                line-height: unset !important;
            }

    .xc-product-eight__tooltip {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 90%;
        font-weight: 500;
        font-size: 10px;
        text-transform: uppercase;
        font-family: var(--rafco-heading-font);
        color: var(--rafco-white);
        background-color: var(--rafco-black);
        z-index: 1;
        display: inline-block;
        width: max-content;
        line-height: 1;
        padding: 8px 12px;
        margin-left: 8px;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
    }

        .xc-product-eight__tooltip::before {
            position: absolute;
            content: "";
            left: -8px;
            top: 50%;
            transform: translate(50%, -50%) rotate(45deg);
            height: 8px;
            width: 8px;
            background-color: var(--rafco-black);
        }

    .xc-product-eight__action + .xc-product-eight__action {
        margin-top: 10px;
    }

    .xc-product-eight__content {
        padding-left: 30px;
        border-left: 2px solid var(--rafco-border-color);
    }

    .xc-product-eight__title {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 15px;
        line-height: 1;
        text-transform: capitalize;
    }

        .xc-product-eight__title a:hover {
            color: var(--rafco-secondary);
        }

    .xc-product-eight__ratting {
        font-size: 14px;
        font-family: var(--rafco-heading-font);
        margin-bottom: 5px;
    }

        .xc-product-eight__ratting i {
            font-size: 12px;
        }

    .xc-product-eight__price {
        font-size: 14px;
        margin-bottom: 0;
    }

        .xc-product-eight__price del {
          font-size: 12px !important;
          color:var(--rafco-text);
            /* color: var(--rafco-text); */
        }


    /*----------------------------------------
 Footer Style 1
----------------------------------------*/

    footer {
        color: #929FA5;
        background: #01023B;
    }


    .xc-footer-one__logo {
        margin-bottom: 20px;
    }

    .xc-footer-one__about {
        color: #929FA5;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 25px;
    }

    .xc-footer-one__social {
        display: inline-flex;
        gap: 10px;
    }

        .xc-footer-one__social a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(var(--rafco-white-rgb), 0.6);
            background-color: rgba(var(--rafco-white-rgb), 0.03);
            border-radius: 50%;
            position: relative;
            transition: 0.3s;
        }

            .xc-footer-one__social a:hover {
                color: var(--rafco-white);
                background-color: var(--rafco-base);
            }

    .xc-footer-one__widget-title {
        color: var(--rafco-white);
        font-size: 20px;
        font-weight: 700;
        position: relative;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .xc-footer-one__nav {
        margin-left: 0;
        padding-left: 0;
    }

        .xc-footer-one__nav li {
            list-style: none;
            margin-left: 0;
            padding-left: 0;
        }

            .xc-footer-one__nav li a {
                font-size: 16px;
                color: #929FA5;
                transition: 0.4s;
            }

                .xc-footer-one__nav li a:hover {
                    color: var(--rafco-white);
                }

            .xc-footer-one__nav li + li {
                margin-top: 15px;
            }

    .xc-footer-one__blog + .xc-footer-one__blog {
        margin-top: 10px;
    }

    .xc-footer-one__blog {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .xc-footer-one__blog-thumb img {
        width: 85px;
        height: 85px;
        object-fit: cover;
    }

    .xc-footer-one__blog-meta span {
        color: rgba(var(--rafco-white-rgb), 0.6);
        margin-right: 10px;
        font-size: 13px;
    }

        .xc-footer-one__blog-meta span i {
            color: var(--rafco-base);
            margin-right: 5px;
        }

    .xc-footer-one__blog-title {
        line-height: 1.1;
    }

        .xc-footer-one__blog-title a {
            font-size: 16px;
            color: var(--rafco-white);
            opacity: 0.8;
            font-weight: 500;
            line-height: 1;
            background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
            display: inline;
            background-size: 0% 1px, 0 1px;
            background-position: 100% 100%, 0 100%;
            background-repeat: no-repeat;
            transition: 0.4s;
        }

            .xc-footer-one__blog-title a:hover {
                opacity: 1;
                background-size: 0% 1px, 100% 1px;
            }

    .xc-footer-one__cta {
        margin-bottom: 15px;
    }

        .xc-footer-one__cta span {
            color: #929FA5;
            display: block;
            margin-bottom: 8px;
        }

            .xc-footer-one__cta span i {
                color: currentColor;
                font-size: 18px;
                opacity: 1;
                position: relative;
                top: 3px;
                margin-right: 8px;
            }

    .xc-footer-one-copyright {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.05);
    }

        .xc-footer-one-copyright p {
            margin-bottom: 0;
            text-align: center;
            color: #929FA5;
        }



    .xc-sec-heading-two {
        margin-bottom: 40px;
    }

        .xc-sec-heading-two .xc-sec-heading__title {
            font-size: 24px;
            font-weight: 600;
        }

        .xc-sec-heading-two .xc-sec-heading__subtitle {
            font-size: 16px;
            font-weight: 600;
            text-transform: capitalize;
        }

            .xc-sec-heading-two .xc-sec-heading__subtitle.has-before {
                position: relative;
            }



                .xc-sec-heading-two .xc-sec-heading__subtitle.has-before::before {
                    content: "";
                    display: inline-grid;
                    height: 18px;
                    width: 5px;
                    border-radius: 4px;
                    background-color: var(--rafco-base);
                    margin-right: 5px;
                }

    /*----------------------------------------
 ads
----------------------------------------*/

    .ads-two {
        height: 400px;
        background-position: left center;
        color: #fff;
        padding: 50px;
        background: #252525;
    }

    .ads-two-content {
        padding-right: 50px;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .ads-two-content p {
            color: #fff;
            text-align: justify;
        }


@media (max-width: 1200px) {
    .ads-two-content {
        padding-right: 0px;
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
    }
}
        /*----------------------------------------
1.1 Animation
----------------------------------------*/
        @keyframes xcfadeUp {
            0% {
                opacity: 0;
                -webkit-transform: translateY(20px);
                -ms-transform: translateY(20px);
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                -webkit-transform: translateY(0);
                -ms-transform: translateY(0);
                transform: translateY(0);
            }
        }

        .xcfadeUp {
            -webkit-animation-name: xcfadeUp;
            animation-name: xcfadeUp;
        }

        @-webkit-keyframes xcfadeLeft {
            0% {
                opacity: 0;
                -webkit-transform: translateX(-20px);
                transform: translateX(-20px);
            }

            100% {
                opacity: 1;
                -webkit-transform: translateX(0);
                transform: translateX(0);
            }
        }

        @keyframes xcfadeLeft {
            0% {
                opacity: 0;
                -webkit-transform: translateX(-20px);
                -ms-transform: translateX(-20px);
                transform: translateX(-20px);
            }

            100% {
                opacity: 1;
                -webkit-transform: translateX(0);
                -ms-transform: translateX(0);
                transform: translateX(0);
            }
        }

        .xcfadeLeft {
            -webkit-animation-name: xcfadeLeft;
            animation-name: xcfadeLeft;
        }

        @-webkit-keyframes xcfadeRight {
            0% {
                opacity: 0;
                -webkit-transform: translateX(20px);
                transform: translateX(20px);
            }

            100% {
                opacity: 1;
                -webkit-transform: translateX(0);
                transform: translateX(0);
            }
        }

        @keyframes xcfadeRight {
            0% {
                opacity: 0;
                -webkit-transform: translateX(20px);
                -ms-transform: translateX(20px);
                transform: translateX(20px);
            }

            100% {
                opacity: 1;
                -webkit-transform: translateX(0);
                -ms-transform: translateX(0);
                transform: translateX(0);
            }
        }

        .xcfadeRight {
            -webkit-animation-name: xcfadeRight;
            animation-name: xcfadeRight;
        }

        @-webkit-keyframes fadeInRight {
            0% {
                opacity: 0;
                -webkit-transform: translateX(20px);
                transform: translateX(20px);
            }

            100% {
                opacity: 1;
                -webkit-transform: translateX(0);
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            0% {
                opacity: 0;
                -webkit-transform: translateX(20px);
                -ms-transform: translateX(20px);
                transform: translateX(20px);
            }

            100% {
                opacity: 1;
                -webkit-transform: translateX(0);
                -ms-transform: translateX(0);
                transform: translateX(0);
            }
        }

        .fadeInRight {
            -webkit-animation-name: fadeInRight;
            animation-name: fadeInRight;
        }

        @-webkit-keyframes xcfadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @keyframes xcfadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        .xcfadeIn {
            -webkit-animation-name: xcfadeIn;
        }

        @keyframes moveLight {
            0% {
                background: linear-gradient(0deg, var(--rafco-secondary) 45.13%, rgba(45, 255, 168, 0) 99.92%, rgba(0, 82, 202, 0) 100%);
                opacity: 0.2;
            }

            50% {
                background: linear-gradient(360deg, var(--rafco-secondary) 45.13%, rgba(45, 255, 168, 0) 99.92%, rgba(0, 82, 202, 0) 100%);
                opacity: 0.4;
            }

            100% {
                background: linear-gradient(0deg, var(--rafco-secondary) 45.13%, rgba(45, 255, 168, 0) 99.92%, rgba(0, 82, 202, 0) 100%);
                opacity: 0.2;
            }
        }

        @keyframes xcswing {
            0% {
                transform: rotate(6deg);
            }

            100% {
                transform: rotate(-6deg);
            }
        }

        @keyframes xcRound {
            0% {
                transform: rotate(0);
            }

            0% {
                transform: rotate(360deg);
            }

            100% {
                transform: rotate(0);
            }
        }

        @-webkit-keyframes translateor1 {
            0% {
                transform: translateY(20px);
            }

            50% {
                transform: translateY(0px);
            }

            100% {
                transform: translateY(20px);
            }
        }

        @keyframes translateor1 {
            0% {
                transform: translateY(20px);
            }

            50% {
                transform: translateY(0px);
            }

            100% {
                transform: translateY(20px);
            }
        }

        @-webkit-keyframes translateor2 {
            0% {
                transform: translateX(20px);
            }

            50% {
                transform: translateX(0px);
            }

            100% {
                transform: translateX(20px);
            }
        }

        @keyframes translateor2 {
            0% {
                transform: translateX(20px);
            }

            50% {
                transform: translateX(0px);
            }

            100% {
                transform: translateX(20px);
            }
        }

        @-webkit-keyframes titleFill {
            0% {
                width: 0;
            }

            80% {
                width: 100%;
            }

            100% {
                width: 100%;
            }
        }

        @keyframes titleFill {
            0% {
                width: 0;
            }

            80% {
                width: 100%;
            }

            100% {
                width: 100%;
            }
        }

        @keyframes icon-bounce {
            0%, 100%, 20%, 50%, 80% {
                -webkit-transform: translateY(0);
                -ms-transform: translateY(0);
                transform: translateY(0);
            }

            40% {
                -webkit-transform: translateY(-10px);
                -ms-transform: translateY(-10px);
                transform: translateY(-10px);
            }

            60% {
                -webkit-transform: translateY(-5px);
                -ms-transform: translateY(-5px);
                transform: translateY(-5px);
            }
        }

        @keyframes borderShape {
            0% {
                border-radius: 48% 52% 54% 46%/30% 32% 68% 70%;
            }

            33% {
                border-radius: 32% 68% 23% 77%/58% 29% 71% 42%;
            }

            70% {
                border-radius: 39% 61% 33% 67%/69% 51% 49% 31%;
            }

            100% {
                border-radius: 48% 52% 54% 46%/30% 32% 68% 70%;
            }
        }

        @keyframes pulsing {
            to {
                box-shadow: 0 0 0 4rem rgba(0, 0, 0, 0);
            }
        }

        @keyframes scaleUpDown {
            from {
                transform: scale(1.2);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes xcleftToRight {
            0% {
                left: 0;
            }

            50% {
                left: 100%;
                transform: translateX(-100%);
            }
        }

        @keyframes xcRightToLeft {
            0% {
                left: 0;
            }

            50% {
                left: 100%;
                transform: translateX(-100%);
            }
        }

        @keyframes xcXoomIn {
            0% {
                transform: scale(0);
            }

            100% {
                transform: scale(1);
            }
        }
        /* 04. ========= btn-arrow-animation ========== */
        @keyframes xcArrowAnimation {
            49% {
                transform: translateX(30%);
            }

            50% {
                opacity: 0;
                transform: translateX(-30%);
            }

            51% {
                opacity: 1;
            }
        }
        /*----------------------------------------
1.2 Common
----------------------------------------*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /*----------------------------------------
    Body Overlay
-----------------------------------------*/
        .body-overlay {
            background-color: var(--rafco-black);
            height: 100%;
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 99;
            left: 0;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.3s 0s ease-out;
            -moz-transition: all 0.3s 0s ease-out;
            -ms-transition: all 0.3s 0s ease-out;
            -o-transition: all 0.3s 0s ease-out;
            transition: all 0.3s 0s ease-out;
        }

            .body-overlay:hover {
                cursor: pointer;
            }

            .body-overlay.opened {
                opacity: 0.5;
                visibility: visible;
            }

        /*----------------------------------------
2.1 Nice Select
----------------------------------------*/
        .nice-select {
            -webkit-tap-highlight-color: transparent;
            background-color: #fff;
            border-radius: 5px;
            border: solid 1px #e8e8e8;
            box-sizing: border-box;
            clear: both;
            cursor: pointer;
            display: block;
            float: left;
            font-family: inherit;
            font-size: 16px;
            font-weight: normal;
            height: 42px;
            line-height: 40px;
            outline: none;
            padding-left: 18px;
            padding-right: 30px;
            position: relative;
            text-align: left !important;
            -webkit-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            white-space: nowrap;
            width: auto;
        }

            .nice-select:hover {
                border-color: #dbdbdb;
            }

            .nice-select:active, .nice-select.open, .nice-select:focus {
                border-color: #999;
            }

            .nice-select::after {
                position: absolute;
                content: "\f107";
                top: 50%;
                right: 10px;
                color: #8B96A5;
                font-family: "Font Awesome 6 free";
                font-weight: 700;
                pointer-events: none;
                -webkit-transition: all 0.15s ease-in-out;
                transition: all 0.15s ease-in-out;
                margin-top: 0;
                transform-origin: center;
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                transform: translateY(-50%);
            }

            .nice-select.open::after {
                -webkit-transform: translateY(-50%) rotate(-180deg);
                -moz-transform: translateY(-50%) rotate(-180deg);
                -ms-transform: translateY(-50%) rotate(-180deg);
                -o-transform: translateY(-50%) rotate(-180deg);
                transform: translateY(-50%) rotate(-180deg);
            }

            .nice-select.open .list {
                opacity: 1;
                pointer-events: auto;
                -webkit-transform: scale(1) translateY(0);
                -ms-transform: scale(1) translateY(0);
                transform: scale(1) translateY(0);
            }

            .nice-select.disabled {
                border-color: #ededed;
                color: #999;
                pointer-events: none;
            }

                .nice-select.disabled::after {
                    border-color: #cccccc;
                }

            .nice-select.wide {
                width: 100%;
            }

                .nice-select.wide .list {
                    left: 0 !important;
                    right: 0 !important;
                }

            .nice-select.right {
                float: right;
            }

                .nice-select.right .list {
                    left: auto;
                    right: 0;
                }

            .nice-select.small {
                font-size: 12px;
                height: 36px;
                line-height: 34px;
            }

                .nice-select.small::after {
                    height: 4px;
                    width: 4px;
                }

                .nice-select.small .option {
                    line-height: 34px;
                    min-height: 34px;
                }

            .nice-select .list {
                background-color: #fff;
                border-radius: 5px;
                box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
                box-sizing: border-box;
                margin-top: 4px;
                opacity: 0;
                overflow: hidden;
                padding: 0;
                pointer-events: none;
                position: absolute;
                top: 100%;
                left: 0;
                -webkit-transform-origin: 50% 0;
                -ms-transform-origin: 50% 0;
                transform-origin: 50% 0;
                -webkit-transform: scale(0.75) translateY(-21px);
                -ms-transform: scale(0.75) translateY(-21px);
                transform: scale(0.75) translateY(-21px);
                -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
                transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
                z-index: 9;
            }

            .nice-select .option {
                cursor: pointer;
                font-weight: 400;
                line-height: 40px;
                list-style: none;
                min-height: 40px;
                outline: none;
                padding-left: 18px;
                padding-right: 29px;
                text-align: left;
                -webkit-transition: all 0.2s;
                transition: all 0.2s;
            }

                .nice-select .option.selected {
                    font-weight: bold;
                }

                .nice-select .option.disabled {
                    background-color: transparent;
                    color: #999;
                    cursor: default;
                }

        .no-csspointerevents .nice-select .list {
            display: none;
        }

        .no-csspointerevents .nice-select.open .list {
            display: block;
        }

        /*----------------------------------------
2.2 Tab
----------------------------------------*/
        .tabs-box .tabs-content .tab:not(.active-tab) {
            display: none;
        }

        /*--------------------------------------------------------------
# 03. HEADER CSS
--------------------------------------------------------------*/
        /*----------------------------------------
3.1 Header Css Start
----------------------------------------*/
        /*--------------------------------------------------------------
# Header Css Start
------------------- -------------------------------------------*/
        .xc-header-sticky {
            position: fixed !important;
            top: 0;
            left: 0;
            right: 0;
            animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
            box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.09);
            z-index: 91;
        }

            .xc-header-sticky.xc-transparent-header {
                background-color: var(--rafco-white);
                top: 0;
                padding: 10px;
            }

        .xc-sticky-header {
            position: relative;
            z-index: 999;
            transition: 0.3s;
        }

            .xc-sticky-header.xc-sticky {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                background-color: var(--rafco-white);
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
                animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
            }

        .xc-transparent-header {
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
        }

            .xc-transparent-header .xc-headero-one__call {
                color: var(--rafco-white);
            }

                .xc-transparent-header .xc-headero-one__call i {
                    color: var(--rafco-secondary);
                }

                .xc-transparent-header .xc-headero-one__call:hover {
                    color: var(--rafco-secondary);
                }

            .xc-transparent-header .xc-search-btn {
                background-color: rgba(var(--rafco-secondary-rgb), 0.1);
                color: var(--rafco-secondary);
            }

                .xc-transparent-header .xc-search-btn:hover {
                    background-color: rgba(var(--rafco-secondary-rgb), 0.11);
                }

        .xc-header-one {
            padding-top: 21px;
            padding-bottom: 21px;
        }

        .xc-header-one__wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .xc-header-one__search form {
            width: 100%;
            display: flex;
            border-radius: 6px;
            background-color: var(--rafco-base);
            padding: 2px 3px;
            font-family: var(--rafco-heading-font);
        }

        .xc-header-one__search input {
            height: 40px;
            flex-shrink: 0;
            padding: 10px;
            border-top-left-radius: 6px;
            border-bottom-left-radius: 6px;
            border: 0;
        }

        @media (min-width: 992px) {
            .xc-header-one__search input {
                min-width: 300px;
            }
        }

        @media (min-width: 1400px) {
            .xc-header-one__search input {
                min-width: 421px;
            }
        }

        .xc-header-one__search input:focus {
            outline: none;
        }

        .xc-header-one__search button {
            display: inline-block;
            flex-shrink: 0;
            padding: 10px 23px;
            height: 40px;
            line-height: 1;
            color: var(--rafco-white);
        }

        .xc-header-one__search select,
        .xc-header-one__search .nice-select {
            font-size: 16px;
            color: var(--rafco-black);
            border-radius: 0;
            height: 40px;
            line-height: 40px;
            min-width: 145px;
            border: 0;
            font-family: var(--rafco-heading-font);
            border-left: 1px solid var(--rafco-base);
        }

        .xc-header-one__right {
            display: flex;
            align-items: center;
            gap: 45px;
        }

        .xc-header-one__btns {
            display: flex;
            gap: 23px;
        }

        .xc-header-one__btn {
            display: inline-block;
            font-size: 12px;
            font-family: var(--rafco-heading-font);
            color: var(--rafco-white);
        }

            .xc-header-one__btn:hover {
                color: var(--rafco-base);
            }

            .xc-header-one__btn i {
                display: block;
                text-align: center;
                font-size: 20px;
                line-height: 1;
            }

        .xc-header-one__bottom {
            border-bottom: 1px solid var(--rafco-border-color);
            background-color: var(--rafco-white);
        }

        .xc-header-one__bottom-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .xc-header-one__bottom-left {
            display: flex;
            align-items: center;
        }

        .xc-header-one__bottom-right {
            display: flex;
            gap: 5px;
        }

        .xc-header-one__cat {
            font-size: 16px;
            font-weight: 500;
            color: var(--rafco-black);
            margin-right: 40px;
            font-family: var(--rafco-heading-font);
            position: relative;
            padding: 14px 0;
        }

            .xc-header-one__cat:hover .xc-header-one__cat-list {
                top: 100%;
                visibility: visible;
                opacity: 1;
                pointer-events: auto;
            }

            .xc-header-one__cat i {
                font-size: 18px;
                position: relative;
                top: 3px;
                margin-right: 9px;
            }

        .xc-header-one__cat-list {
            width: 250px;
            z-index: 4;
            padding: 20px 0;
            display: inline-block;
            margin: 0;
            position: absolute;
            top: 120%;
            left: 0;
            width: 250px;
            background: var(--rafco-white);
            z-index: 99;
            transition: 0.3s;
            visibility: hidden;
            opacity: 0;
            box-shadow: 0px 4px 60px rgba(69, 105, 231, 0.15);
            border-radius: 0px 0px 5px 5px;
            border: 0px solid transparent;
            border-top-width: 0px;
            border-top-style: solid;
            border-top-color: transparent;
            transition: 0.4s;
            border-top: 2px solid var(--rafco-base);
            pointer-events: none;
            text-align: left;
        }

            .xc-header-one__cat-list ul {
                list-style: none;
                padding-left: 0;
                margin-left: 0;
                margin-bottom: 0;
            }

                .xc-header-one__cat-list ul li {
                    display: block;
                    width: 100%;
                    margin: 0;
                    transition: 0.3s;
                }

                    .xc-header-one__cat-list ul li a {
                        padding: 10px 30px;
                        font-size: 14px;
                        position: relative;
                        z-index: 1;
                        color: var(--rafco-black);
                        width: 100%;
                        transition: 0.3s;
                        display: inline-block;
                        font-weight: 600;
                        text-transform: capitalize;
                        font-family: var(--rafco-heading-font);
                    }

                        .xc-header-one__cat-list ul li a:hover {
                            color: var(--rafco-base);
                        }

        .xc-header-one__lang .nice-select, .xc-header-one__currency .nice-select {
            border: 0;
            height: 52px;
            line-height: 52px;
            font-weight: 500;
            color: var(--rafco-black);
            font-family: var(--rafco-heading-font);
        }

        .xc-header-two {
            padding: 20px 0;
        }

        .xc-header-two__top {
            background-color: #0965D0;
            padding: 9px 0px;
        }

        .xc-header-two__top-wrapper {
            align-items: center;
        }

        .xc-header-two__top-left p {
            margin-bottom: 0;
            color: var(--rafco-white);
        }

        .xc-header-two__top-right {
            display: flex;
        }

        .xc-header-two__top .nice-select::after {
            color: var(--rafco-white);
        }

        .xc-header-two__currency-select, .xc-header-two__lang-select {
            background-color: transparent;
            border: transparent;
        }

            .xc-header-two__currency-select .current, .xc-header-two__lang-select .current {
                color: var(--rafco-white);
            }

        .xc-header-two__wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .xc-header-two__search form {
            width: 100%;
            display: flex;

            background-color: var(--rafco-border-color);
            padding: 1px 1px;
            font-family: var(--rafco-heading-font);
            position: relative;
        }




        .xc-header-two__search button {
            position: absolute;
            right: 30px;
            top: 15px;
            font-size: 22px;
            color: var(--rafco-black);
        }

        .xc-header-two__search select,
        .xc-header-two__search .nice-select {
            font-size: 16px;
            color: var(--rafco-black);
            border-radius: 0;
            height: 40px;
            line-height: 40px;
            min-width: 145px;
            border: 0;
            font-family: var(--rafco-heading-font);
            border-left: 1px solid var(--rafco-base);
        }

.xc-header-two__right {
    display: flex;
    align-items: center;
    gap: 45px;
}

        @media (min-width: 1200px) {
            .xc-header-two__right {
                gap: 60px;
            }
        }

        .xc-header-two__btns {
            display: flex;
            gap: 23px;
        }

        .xc-header-two__btn {
            display: inline-block;
            font-size: 14px;
            font-family: var(--rafco-heading-font);
            color: var(--rafco-white);
            position: relative;
        }

            .xc-header-two__btn .xc-cart-count {
                position: absolute;
                top: -5px;
                right: -10px;
                width: 20px;
                height: 20px;
                font-weight: 600;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--rafco-black);
                background-color: var(--rafco-white);
                border-radius: 50%;
                line-height: 1;
            }

            .xc-header-two__btn:hover {
                color: var(--rafco-white);
            }

            .xc-header-two__btn i {
                display: block;
                text-align: center;
                font-size: 25px;
                line-height: 1;
            }

        .xc-header-two__cta {
            display: inline-flex;
            align-items: center;
            gap: 25px;
        }

            .xc-header-two__cta a {
                display: flex;
                align-items: center;
                gap: 6px;
            }

                .xc-header-two__cta a i {
                    position: relative;
                    top: 2px;
                    line-height: 1;
                    font-size: 20px;
                }

        .xc-header-two__bottom {
            background-color: var(--rafco-white);
            padding: 16px 0;
            border-bottom: 1px solid var(--rafco-border-color);
        }

            .xc-header-two__bottom .nice-select {
                background-color: #F2F4F5;
                color: var(--rafco-black);
                border: 0;
                height: 48px;
                line-height: 48px;
            }

        .xc-header-two__bottom-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .xc-header-two__bottom-left {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .xc-header-two__bottom-right {
            flex-shrink: 0;
        }

        .xc-header-three {
            background-color: var(--rafco-white);
            box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.1);
        }

        .xc-header-three__top {
            background-color: var(--rafco-black);
        }

            .xc-header-three__top .xc-header-two__cta a {
                color: var(--rafco-white);
            }

                .xc-header-three__top .xc-header-two__cta a:hover {
                    color: var(--rafco-base);
                }
                .xc-header-three__top .xc-header-two__cta button {
                    color: var(--rafco-white);
                    text-decoration: none;
                }

                    .xc-header-three__top .xc-header-two__cta button:hover {
                        color: var(--rafco-base);
                    }

        .xc-header-three .xc-header-two__btn i {
            color: var(--rafco-black);
        }

        .xc-header-three .xc-header-two__btn .xc-cart-count {
            background-color: var(--rafco-black);
            color: var(--rafco-white);
            line-height: 1;
        }

        .xc-transparent-header .xc-header-two__btn {
            color: var(--rafco-black);
        }

        .xc-header-landing-btn .swiftcart-btn {
            padding: 12px 30px;
        }

        /*--------------------------------------------------------------
# Buttons
------------------- -------------------------------------------*/
        .swiftcart-btn {
            color: var(--rafco-white);
            background-color: var(--rafco-base);
            padding: 10px 30px;
            font-weight: 500;
            font-size: 16px;
            font-family: var(--rafco-font);
            transition: 0.3s;
            border-radius: var(--rafco-border-radius);
            display: inline-block;
            overflow: hidden;
            text-transform: capitalize;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 1400px) {
            .swiftcart-btn {
                padding: 15px 40px;
            }
        }

        .swiftcart-btn i {
            position: relative;
            top: 1.8px;
            display: inline-block;
            margin-left: 10px;
        }

        .swiftcart-btn:hover {
            color: var(--rafco-white);
            background-color: var(--rafco-secondary);
        }

            .swiftcart-btn:hover i {
                animation: xcArrowAnimation 0.5s forwards;
            }

        .swiftcart-border-btn {
            color: var(--rafco-black);
            background-color: transparent;
            border: 1px solid var(--rafco-black);
            padding: 9px 28px;
        }

            .swiftcart-border-btn:hover {
                color: var(--rafco-base);
                border-color: var(--rafco-base);
                background-color: transparent;
            }

        .swiftcart-btn-white {
            background-color: var(--rafco-white);
            color: var(--rafco-black);
            font-size: 18px;
            font-weight: 700;
            display: inline-block;
            padding: 10px 34px;
            border-radius: 30px;
        }

            .swiftcart-btn-white:hover {
                color: var(--rafco-white);
                background-color: var(--rafco-secondary);
            }

        .swiftcart-btn-black {
            font-size: 16px;
            padding: 5.5px 20px;
            font-weight: 600;
            border-radius: 4px;
            display: inline-block;
            background-color: var(--rafco-black);
            color: var(--rafco-white);
            letter-spacing: -0.3px;
        }

            .swiftcart-btn-black:hover {
                color: var(--rafco-white);
                background-color: var(--rafco-secondary);
            }

        .swiftcart-btn-black-large {
            padding: 10px 30px;
            font-weight: 500;
        }

        @media (min-width: 1400px) {
            .swiftcart-btn-black-large {
                padding: 15px 40px;
            }
        }

        .xc-video-btn {
            font-size: 30px;
            width: 100px;
            height: 100px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--rafco-base);
            color: var(--rafco-white);
            border-radius: 48% 52% 54% 46%/30% 32% 68% 70%;
            position: relative;
            box-shadow: 0 0 0 0 rgba(var(--rafco-base-rgb), 0.5);
            animation: pulsing 3s linear infinite var(--s, 0s);
            transition: all 0.5s ease;
        }

            .xc-video-btn::after, .xc-video-btn::before {
                border-radius: 48% 52% 54% 46%/30% 32% 68% 70%;
                content: "";
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0;
                top: 0;
                box-shadow: 0 0 0 0 rgba(var(--rafco-base-rgb), 0.5);
                animation: pulsing 3s linear infinite var(--s, 0s);
            }

            .xc-video-btn::before {
                --s: 2s;
            }

            .xc-video-btn::after {
                --s: 4s;
            }

            .xc-video-btn:hover {
                color: var(--rafco-white);
                background-color: var(--rafco-secondary);
                box-shadow: 0 0 0 0 rgba(var(--rafco-secondary-rgb), 0.5);
            }

                .xc-video-btn:hover::after, .xc-video-btn:hover::before {
                    box-shadow: 0 0 0 0 rgba(var(--rafco-secondary-rgb), 0.5);
                }

        .xc-sec-heading-btn {
            color: var(--rafco-white);
            background-color: var(--rafco-black);
            display: inline-block;
            padding: 2px 11px;
            text-transform: capitalize;
        }

            .xc-sec-heading-btn:hover {
                color: var(--rafco-white);
                background-color: var(--rafco-secondary);
            }

        .xc-wish-btn {
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 20px;
            text-align: center;
            border-radius: 50%;
            color: var(--rafco-text);
            border: 2px solid var(--rafco-text);
        }

            .xc-wish-btn:hover {
                color: var(--rafco-base);
                border-color: var(--rafco-base);
            }

        .xc-download-btn {
            display: inline-block;
            background-color: var(--rafco-black);
            padding: 10px 20px;
            border-radius: 6px;
        }

        @media (min-width: 1400px) {
            .xc-download-btn {
                padding: 15px 20px;
            }
        }

        .xc-download-btn:hover {
            background-color: var(--rafco-text);
        }

        .contact-container {
            display: flex;
            max-width: 1000px;
            margin: 50px auto;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .branch-list {
            width: 30%;
            background-color: var(--rafco-black);
            color: #fff;
            padding: 20px;
        }

            .branch-list h3 {
                margin-top: 0;
                font-size: 22px;
                color: var(--rafco-white);
            }

            .branch-list ul {
                list-style: none;
                padding: 0;
            }

            .branch-list li {
                padding: 12px 10px;
                margin: 10px 0;
                background-color: #34495e;
                border-radius: 6px;
                cursor: pointer;
                transition: background-color 0.3s;
            }

                .branch-list li:hover,
                .branch-list li.active {
                    background-color: var(--rafco-base);
                }

        .branch-info {
            width: 70%;
            padding: 30px;
            transition: all 0.3s ease;
            line-height: 1.8;
        }

            .branch-info h4 {
                margin-top: 0;
                color: #2c3e50;
            }

        .hidden {
            display: none;
        }


@media (max-width: 768px) {
    .contact-container {
        display:block;

    }
    .branch-list {
        width: 100%;
    }
    .branch-info {
        width: 100%;

    }
}
    /*----------------------------------------*/
    /*  02. DRAWER CSS START
/*----------------------------------------*/
    /*--------------------------------------------------------------
# xc-mobile Nav
--------------------------------------------------------------*/
    .xc-mobile-nav__wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
        transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
        transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
        transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
        visibility: visible;
    }

    .xc-mobile-nav__content {
        width: 300px;
        background-color: var(--rafco-black);
        z-index: 10;
        position: absolute;
        right: 0;
        height: 100%;
        overflow-y: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
        transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    }

    .xc-mobile-nav__wrapper .container {
        padding-left: 0;
        padding-right: 0;
    }

    .xc-mobile-nav__wrapper.expanded {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        visibility: visible;
        -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    }

    .xc-mobile-nav__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--rafco-black);
        opacity: 0.6;
        cursor: crosshair;
    }

    .xc-mobile-nav__wrapper.opened {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        visibility: visible;
        -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    }

        .xc-mobile-nav__wrapper.opened .xc-mobile-nav__content {
            opacity: 1;
            visibility: visible;
            -webkit-transform: translateX(0);
            transform: translateX(0);
            -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
            transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
            transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
            transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
        }

    .xc-back-to-top-wrapper {
        position: fixed;
        right: 20px;
        bottom: 0px;
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        cursor: pointer;
        display: block;
        border-radius: 50%;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        background: var(--rafco-black);
        box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
        color: var(--rafco-white);
    }

        .xc-back-to-top-wrapper:hover {
            background-color: var(--rafco-base);
        }

        .xc-back-to-top-wrapper svg {
            -webkit-transform: translateY(-2px);
            -moz-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
            -o-transform: translateY(-2px);
            transform: translateY(-2px);
            z-index: 99;
            position: relative;
        }

        .xc-back-to-top-wrapper.xc-back-to-top-btn-show {
            opacity: 1;
            bottom: 20px;
            visibility: visible;
        }

    /*----------------------------------------*/
    /*  7.0 search and nab taggle menu  css
/*----------------------------------------*/
    .xc-search-popup {
        position: fixed;
        top: 0;
        width: 100%;
        height: 230px;
        background-color: var(--rafco-white);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        transform: translateY(-100%);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
        transition-delay: 0.7s;
    }

        .xc-search-popup::before {
            position: absolute;
            content: "";
            left: 0;
            bottom: 0;
            width: 0%;
            height: 5px;
            background-color: var(--rafco-base);
            transition-delay: 0.3s;
            transition: 0.3s;
        }

        .xc-search-popup.open {
            transform: translateY(0);
            transition-delay: 0s;
        }

            .xc-search-popup.open::before {
                width: 100%;
                transition-delay: 0.5s;
            }

    .xc-search-popup__close {
        position: absolute;
        right: 10px;
        top: 10px;
        font-size: 20px;
        line-height: 1;
        width: 26px;
        height: 26px;
    }

    @media (min-width: 768px) {
        .xc-search-popup__close {
            right: 30px;
            top: 30px;
        }
    }

    .xc-search-popup__close::before, .xc-search-popup__close::after {
        content: " ";
        position: absolute;
        top: 50%;
        display: inline-block;
        margin-top: -1px;
        width: 26px;
        height: 2px;
        background-color: var(--rafco-black);
        transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, width 0.2s ease-in-out;
        right: 0;
        transform: rotate(-45deg);
    }

    .xc-search-popup__close::before {
        transform: rotate(45deg);
    }

    .xc-search-popup__close:hover::before, .xc-search-popup__close:hover::after {
        transform: rotate(0);
        background-color: red;
    }

    .xc-search-popup form {
        position: relative;
    }

        .xc-search-popup form input {
            position: relative;
            padding-left: 1.5em;
            padding-right: 4em;
            border-radius: 50px;
            background: #fff;
            border: 1px solid #eee;
            color: var(--rafco-text);
            font-size: 15px;
            display: block;
            width: 300px;
            height: 55px;
            transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -webkit-transition: all 0.5s ease;
            -ms-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
        }

            .xc-search-popup form input:focus {
                outline: none;
                border-color: var(--rafco-base);
            }

    @media (min-width: 768px) {
        .xc-search-popup form input {
            width: 600px;
        }
    }

    .xc-search-popup form button {
        position: absolute;
        right: 30px;
        top: 15px;
        font-size: 20px;
    }

        .xc-search-popup form button:hover {
            color: var(--rafco-base);
        }

    .xc-search-popup__overlay {
        top: auto;
        bottom: calc(90px - 112vw);
        -webkit-transform: scale(1);
        -khtml-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        transition-delay: 0s;
        -webkit-transition-delay: 0s;
        opacity: 0.9;
        -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    }

    /*--------------------------------------------------------------
# Breadcrumb
------------------- -------------------------------------------*/
    .xc-breadcrumb__area {
        position: relative;
        z-index: 1;
        background-color: #F5F5F5;
        height: 61px;
        display: flex;
        align-items: center;
    }

    .xc-breadcrumb__list {
        color: var(--rafco-base);
        font-size: 16px;
        font-family: var(--rafco-heading-font);
    }

        .xc-breadcrumb__list .dvdr {
            color: var(--rafco-text);
            padding-left: 5px;
            padding-right: 5px;
            font-size: 10px;
        }

        .xc-breadcrumb__list a {
            color: var(--rafco-black);
            transition: 0.3s;
        }

            .xc-breadcrumb__list a:hover {
                color: var(--rafco-base);
            }

    /*--------------------------------------------------------------
# 04. MENU CSS
--------------------------------------------------------------*/


    /*----------------------------------------*/
    /*  4.2 Meanmenu css
/*----------------------------------------*/
    .mean-remove {
        display: none !important;
    }

    .mean-container {
        margin-bottom: 40px;
    }

        .mean-container a.meanmenu-reveal {
            width: 22px;
            height: 22px;
            padding: 13px 13px 11px 13px;
            position: absolute;
            top: 0;
            right: 0;
            cursor: pointer;
            color: var(--rafco-white);
            text-decoration: none;
            font-size: 16px;
            text-indent: -9999em;
            line-height: 22px;
            font-size: 1px;
            font-weight: 700;
            display: none !important;
        }

            .mean-container a.meanmenu-reveal span {
                display: block;
                background: var(--rafco-white);
                height: 3px;
                margin-top: 3px;
            }

        .mean-container .mean-push {
            float: left;
            width: 100%;
            padding: 0;
            margin: 0;
            clear: both;
        }

        .mean-container .mean-nav {
            background: none;
            margin-top: 0;
            float: left;
            width: 100%;
            margin-top: 44px;
        }

            .mean-container .mean-nav .wrapper {
                width: 100%;
                padding: 0;
                margin: 0;
            }

            .mean-container .mean-nav > ul {
                padding: 0;
                margin: 0;
                width: 100%;
                list-style-type: none;
                display: block !important;
            }

                .mean-container .mean-nav > ul > li:first-child > a {
                    border-top: 0;
                }

            .mean-container .mean-nav ul {
                padding: 0;
                margin: 0;
                width: 100%;
                list-style-type: none;
            }

                .mean-container .mean-nav ul li {
                    position: relative;
                    float: left;
                    width: 100%;
                }

                    .mean-container .mean-nav ul li.dropdown-opened > a, .mean-container .mean-nav ul li.dropdown-opened > span {
                        color: var(--rafco-base);
                    }

                        .mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked, .mean-container .mean-nav ul li.dropdown-opened > span.mean-expand.mean-clicked {
                            background: var(--rafco-base);
                            color: var(--rafco-white);
                            border-color: var(--rafco-base);
                        }

                            .mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked i, .mean-container .mean-nav ul li.dropdown-opened > span.mean-expand.mean-clicked i {
                                color: var(--rafco-white);
                            }

                    .mean-container .mean-nav ul li.mean-last {
                        border-bottom: none;
                        margin-bottom: 0;
                    }

                    .mean-container .mean-nav ul li > a.mean-expand i {
                        display: inline-block;
                    }

                    .mean-container .mean-nav ul li > a > i {
                        display: none;
                    }

                    .mean-container .mean-nav ul li a, .mean-container .mean-nav ul li span {
                        display: block;
                        float: left;
                        width: 90%;
                        padding: 10px 5%;
                        margin: 0;
                        text-align: left;
                        text-decoration: none;
                        text-transform: uppercase;
                        width: 100%;
                        padding: 10px 0;
                        color: var(--rafco-white);
                        border-top: 1px solid #ebebeb;
                        font-size: 14px;
                        line-height: 1.5;
                        font-weight: 700;
                        border-color: grey;
                        transition: 0.3s;
                    }

                        .mean-container .mean-nav ul li a:hover, .mean-container .mean-nav ul li span:hover {
                            color: var(--rafco-base);
                        }

                            .mean-container .mean-nav ul li a:hover i, .mean-container .mean-nav ul li span:hover i {
                                color: var(--rafco-white);
                            }

                        .mean-container .mean-nav ul li a.mean-expand, .mean-container .mean-nav ul li span.mean-expand {
                            margin-top: 1px;
                            width: 26px;
                            height: 32px;
                            text-align: center;
                            position: absolute;
                            right: 0;
                            top: 0;
                            z-index: 2;
                            font-weight: 700;
                            background: transparent;
                            font-size: 14px;
                            margin-top: 5px;
                            padding: 0 !important;
                            line-height: 14px;
                            border: 1px solid #ebebeb !important;
                            height: 30px;
                            width: 30px;
                            line-height: 30px;
                            color: var(--rafco-white);
                            line-height: 30px;
                            top: 0;
                            font-weight: 400;
                        }

                            .mean-container .mean-nav ul li a.mean-expand:hover, .mean-container .mean-nav ul li span.mean-expand:hover {
                                background: var(--rafco-base);
                                color: var(--rafco-black);
                                border-color: var(--rafco-base);
                            }

                                .mean-container .mean-nav ul li a.mean-expand:hover i, .mean-container .mean-nav ul li span.mean-expand:hover i {
                                    color: var(--rafco-white);
                                }

                            .mean-container .mean-nav ul li a.mean-expand.mean-clicked, .mean-container .mean-nav ul li span.mean-expand.mean-clicked {
                                color: var(--rafco-white);
                            }

                                .mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover, .mean-container .mean-nav ul li span.mean-expand.mean-clicked:hover {
                                    background: var(--rafco-base);
                                    color: var(--rafco-white);
                                    border-color: var(--rafco-base);
                                }

                                    .mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover i, .mean-container .mean-nav ul li span.mean-expand.mean-clicked:hover i {
                                        color: var(--rafco-white);
                                        transform: rotate(45deg);
                                        -webkit-transform: rotate(45deg);
                                        -moz-transform: rotate(45deg);
                                        -ms-transform: rotate(45deg);
                                        -o-transform: rotate(45deg);
                                        color: var(--rafco-white);
                                    }

                    .mean-container .mean-nav ul li li a {
                        width: 80%;
                        padding: 10px 10%;
                        text-shadow: none !important;
                        visibility: visible;
                    }

                    .mean-container .mean-nav ul li li li a {
                        width: 70%;
                        padding: 10px 15%;
                    }

                    .mean-container .mean-nav ul li li li li a {
                        width: 60%;
                        padding: 10px 20%;
                    }

                    .mean-container .mean-nav ul li li li li li a {
                        width: 50%;
                        padding: 10px 25%;
                    }

        .mean-container .mean-bar {
            padding: 0;
            min-height: auto;
            background: none;
            float: left;
            width: 100%;
            position: relative;
            padding: 4px 0;
            min-height: 42px;
            z-index: 999999;
            margin-bottom: 60px;
        }

            .mean-container .mean-bar, .mean-container .mean-bar * {
                /* Fix for box sizing on Foundation Framework etc. */
                -webkit-box-sizing: content-box;
                -moz-box-sizing: content-box;
                box-sizing: content-box;
            }

    .xc-mobile-nav__close {
        font-size: 25px;
        position: absolute;
        top: 30px;
        right: 10px;
        background-color: var(--rafco-white);
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        cursor: pointer;
    }

        .xc-mobile-nav__close::before, .xc-mobile-nav__close::after {
            right: 7px;
        }

        .xc-mobile-nav__close:hover {
            color: var(--rafco-base);
        }

    .xc-mobile-nav__contact {
        margin-bottom: 60px;
    }

        .xc-mobile-nav__contact li + li {
            margin-top: 20px;
        }

        .xc-mobile-nav__contact i {
            margin-right: 10px;
            color: var(--rafco-base);
        }

        .xc-mobile-nav__contact a {
            color: var(--rafco-white);
            transition: 0.3s;
            font-size: 18px;
            opacity: 0.8;
        }

            .xc-mobile-nav__contact a:hover {
                color: var(--rafco-base);
            }

    .xc-mobile-nav__social a {
        width: 45px;
        height: 45px;
        border-radius: 5px;
        background-color: var(--rafco-white);
        line-height: 45px;
        text-align: center;
        color: var(--rafco-base);
        transition: 0.3s;
    }

        .xc-mobile-nav__social a:hover {
            background-color: var(--rafco-base);
            color: var(--rafco-white);
        }

        .xc-mobile-nav__social a + a {
            margin-left: 15px;
        }

    /*----------------------------------------
4.2 Menu css
----------------------------------------*/
    /*----------------------------------------*/
    /*  4.1 Main menu css
/*----------------------------------------*/
    .xc-main-menu ul li {
        position: relative;
        list-style: none;
        display: inline-block;
        transition: 0.3s;
    }

        .xc-main-menu ul li + li {
            /* margin-left: 30px; */
            margin-left: 15px;
            margin-right: 15px;
        }

        .xc-main-menu ul li a {
            display: inline-block;
            font-size: 16px;
            color: var(--rafco-black);
            padding: 14px 0;
            font-weight: 600;
            text-transform: capitalize;
            font-family: var(--rafco-heading-font);
            transition: 0.3s;
        }

        .xc-main-menu ul li.menu-item-has-children > a, .xc-main-menu ul li.has-dropdown > a {
            position: relative;
        }

            .xc-main-menu ul li.menu-item-has-children > a::after, .xc-main-menu ul li.has-dropdown > a::after {
                content: "\f107";
                transform: translateY(1px);
                font-size: 14px;
                font-weight: 900;
                color: var(--rafco-black);
                font-family: "Font Awesome 6 Free";
                margin-left: 5px;
                display: inline-block;
                transition: 0.3s;
            }

        .xc-main-menu ul li .submenu {
            padding: 20px 0;
            display: inline-block;
            margin: 0;
            position: absolute;
            top: 120%;
            left: 0;
            width: 230px;
            background: var(--rafco-white);
            z-index: 99;
            transition: 0.3s;
            visibility: hidden;
            opacity: 0;
            box-shadow: 0px 4px 60px rgba(69, 105, 231, 0.15);
            border-radius: 0px 0px 5px 5px;
            border: 0px solid transparent;
            transition: 0.4s;
            border-top: 2px solid var(--rafco-base);
            pointer-events: none;
        }

            .xc-main-menu ul li .submenu li {
                display: block;
                width: 100%;
                margin: 0;
                transition: 0.3s;
            }

                .xc-main-menu ul li .submenu li.menu-item-has-children > a::after, .xc-main-menu ul li .submenu li.has-dropdown > a::after {
                    position: absolute;
                    top: 50%;
                    right: 25px;
                    transform: translateY(-50%) rotate(-90deg) scale(0);
                    transition: 0.3s;
                }

                .xc-main-menu ul li .submenu li a {
                    padding: 10px 30px;
                    font-size: 14px;
                    position: relative;
                    z-index: 1;
                    color: var(--rafco-black);
                    width: 100%;
                    transition: 0.3s;
                }

                .xc-main-menu ul li .submenu li .submenu {
                    left: 120%;
                    top: 0;
                    visibility: hidden;
                    opacity: 0;
                }

                .xc-main-menu ul li .submenu li:hover > a {
                    color: var(--rafco-base);
                }

                    .xc-main-menu ul li .submenu li:hover > a::after {
                        color: var(--rafco-base);
                        transform: translateY(-50%) rotate(-90deg) scale(1);
                    }

                .xc-main-menu ul li .submenu li:hover > .submenu {
                    left: 100%;
                    visibility: visible;
                    opacity: 1;
                }

        .xc-main-menu ul li:hover > a {
            color: var(--rafco-base);
        }

            .xc-main-menu ul li:hover > a::after {
                color: var(--rafco-base);
                transform: rotate(180deg);
            }

        .xc-main-menu ul li:hover > .submenu {
            top: 100%;
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
        }

        .xc-main-menu ul li.current a {
            color: var(--rafco-base);
        }

            .xc-main-menu ul li.current a::after {
                color: var(--rafco-base);
            }

    .xc-main-menu.xc-white-menu ul li a {
        color: var(--rafco-white);
    }

    .xc-main-menu.xc-white-menu ul li.menu-item-has-children > a::after, .xc-main-menu.xc-white-menu ul li.has-dropdown > a::after {
        color: var(--rafco-white);
    }

    .xc-main-menu.xc-white-menu ul li .submenu {
        background: var(--rafco-white);
    }

        .xc-main-menu.xc-white-menu ul li .submenu li a {
            color: var(--rafco-black);
        }

            .xc-main-menu.xc-white-menu ul li .submenu li a::before {
                background-color: var(--rafco-base);
            }

        .xc-main-menu.xc-white-menu ul li .submenu li:hover > a {
            color: var(--rafco-base);
        }

            .xc-main-menu.xc-white-menu ul li .submenu li:hover > a::after {
                color: var(--rafco-base);
            }

    .xc-main-menu.xc-white-menu ul li:hover > a {
        color: var(--rafco-base);
    }

        .xc-main-menu.xc-white-menu ul li:hover > a::after {
            color: var(--rafco-base);
        }

    .xc-main-menu.xc-white-menu ul li.current a {
        color: var(--rafco-secondary);
    }

        .xc-main-menu.xc-white-menu ul li.current a::after {
            color: var(--rafco-secondary);
        }

        .xc-main-menu.xc-white-menu ul li.current a:hover {
            color: var(--rafco-base);
        }

            .xc-main-menu.xc-white-menu ul li.current a:hover::after {
                color: var(--rafco-base);
            }

    @media (min-width: 1200px) and (max-width: 1400px) {
        .xc-main-menu li:nth-last-child(1) ul li > ul,
        .xc-main-menu li:nth-last-child(2) ul li > ul {
            left: auto !important;
            right: 100%;
        }
    }

    .xc-main-menu ul li ul li.current > a,
    .xc-main-menu ul li ul li:hover > a {
        color: var(--rafco-base);
    }

    .xc-main-menu.xc-white-menu ul li ul li.current > a,
    .xc-main-menu.xc-white-menu ul li ul li:hover > a {
        color: var(--rafco-base);
    }



    /*----------------------------------------
6.15 Contact
----------------------------------------*/
    .xc-contact-one__map iframe {
        width: 100%;
        height: 467px;
    }



    .xc-contact-one__cta {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
    }

    @media (min-width: 992px) {
        .xc-contact-one__cta {
            gap: 20px;
        }
    }

    .xc-contact-one__icon span {
        font-size: 20px;
        color: var(--rafco-base);
    }

    .xc-contact-one__ct a {
        font-size: 16px;
        font-weight: 500;
        color: var(--rafco-black);
    }

        .xc-contact-one__ct a:hover {
            color: var(--rafco-base);
        }

    .xc-contact-one__head {
        color: var(--rafco-grey);
        font-size: 18px;
        margin-bottom: 0;
        font-weight: 400;
    }

    .xc-contact-main__title {
        font-size: 32px;
        text-transform: capitalize;
    }

    .xc-contact-main__info {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .xc-contact-main__form textarea, .xc-contact-main__form input {
        background-color: transparent;
        border: 1px solid var(--rafco-border-color);
    }

    .xc-contact-main__form textarea {
        padding-top: 15px;
        height: 110px;
    }


    .gutter-y-30 {
        row-gap: 30px;
    }

    .xc-about-one__subtitle {
        font-size: 16px;
        font-weight: 700;
        color: var(--rafco-black);
        letter-spacing: 6.8px;
        text-transform: uppercase;
        margin-bottom: 20px;
        display: inline-block;
        position: relative;
        padding-left: 20px;
    }

        .xc-about-one__subtitle::after, .xc-about-one__subtitle::before {
            position: absolute;
            left: 0;
            top: 9px;
            content: "";
            width: 3px;
            height: 11px;
            display: inline-block;
            background-color: var(--rafco-base);
        }

        .xc-about-one__subtitle::after {
            background-color: #063A7A;
            left: 6px;
        }


    /*----------------------------------------
6.10 Brand
----------------------------------------*/
    .xc-brand-one__item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        min-height: 200px;
        padding-top: 50px;
        padding-bottom: 40px;
        text-align: center;
        border: 1px solid var(--rafco-border-color);
        border-radius: 10px;
        transition: 0.3s;
        margin-bottom: 10px;
    }

        .xc-brand-one__item:hover {
            border-color: var(--rafco-base);
        }

    .xc-brand-one__title {
        font-size: 18px;
        font-weight: 600;
        color: var(--rafco-text);
    }

        .xc-brand-one__title a:hover {
            color: var(--rafco-secondary);
        }

    .xc-brand-one img {
        margin-bottom: 20px;
    }

    div.xc-ads-one__img img {
        border-radius: 10px;
    }

    .adv-black {
        background: #242424;
    }


    /*----------------------------------------
6.2 Section Title
----------------------------------------*/
    .xc-sec-heading {
        margin-bottom: 20px;
    }

        .xc-sec-heading.xc-has-btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .xc-sec-heading.text-white .xc-sec-heading__title {
            color: var(--rafco-white);
        }

    .xc-sec-heading__subtitle {
        display: inline-block;
        font-weight: 600;
        font-family: var(--rafco-heading-font);
        text-transform: uppercase;
        color: var(--rafco-base);
        margin-bottom: 5px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

        .xc-sec-heading__subtitle img {
            width: 18px;
            height: 18px;
        }

    .xc-sec-heading__title {
        font-size: 32px;
        text-transform: capitalize;
    }

        .xc-sec-heading__title span {
            position: relative;
            top: 3px;
        }

        .xc-sec-heading__title.xc-style-3 {
            text-transform: uppercase;
        }

    .xc-sec-heading-two {
        margin-bottom: 40px;
    }

        .xc-sec-heading-two .xc-sec-heading__title {
            font-size: 24px;
            font-weight: 600;
        }

        .xc-sec-heading-two .xc-sec-heading__subtitle {
            font-size: 16px;
            font-weight: 600;
            text-transform: capitalize;
        }

            .xc-sec-heading-two .xc-sec-heading__subtitle.has-before {
                position: relative;
            }

                .xc-sec-heading-two .xc-sec-heading__subtitle.has-before::before {
                    content: "";
                    height: 18px;
                    width: 10px;
                    border-radius: 4px;
                    background-color: var(--rafco-base);
                }

    .xc-sec-heading.xc-sec-heading__three {
        margin-bottom: 45px;
    }


    /*----------------------------------------
7.3 Shop css
----------------------------------------*/
    .shop__widget .accordion {
        --bs-accordion-bg: transparent;
    }

    .shop__widget .accordion-button {
        background-color: transparent;
        border: 0;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
        font-weight: 700;
        font-size: 16px;
        font-family: var(--rafco-heading-font);
    }

    .shop__widget .accordion-body {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .shop__widget .accordion-item {
        border-radius: 0;
    }

        .shop__widget .accordion-item + .accordion-item {
            border-top: 1px solid var(--rafco-border-color);
        }

    .shop__widget .ui-corner-all {
        background-color: rgba(var(--rafco-base-rgb), 0.5);
        border-radius: 100px;
    }

    .shop__widget .ui-slider-horizontal .ui-slider-range {
        background-color: var(--rafco-base);
    }

    .shop__widget .ui-state-default, .shop__widget .ui-widget-content .ui-state-default, .shop__widget .ui-widget-header .ui-state-default {
        background-color: var(--rafco-base);
        outline: 0;
    }

    .shop__widget .ranger-min-max-block {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
    }

        .shop__widget .ranger-min-max-block input {
            background-color: transparent;
            border: 0;
            height: 30px;
            padding-left: 0;
            padding-right: 0;
        }

            .shop__widget .ranger-min-max-block input[type=submit] {
                background-color: var(--rafco-base);
                height: 30px;
                padding-left: 20px;
                padding-right: 20px;
                color: var(--rafco-white);
            }

                .shop__widget .ranger-min-max-block input[type=submit]:hover {
                    background-color: var(--rafco-secondary);
                }

    .xc-shop-top {
        padding: 10px 20px;
    }

        .xc-shop-top p {
            margin-bottom: 0;
        }

    /*----------------------------------------
7.4 Cart css
----------------------------------------*/
    .xc-cart-page__table {
        overflow: auto;
    }

        .xc-cart-page__table table {
            background: var(--rafco-white);
            border-radius: 0;
            text-align: center;
            margin-bottom: 0;
            border-radius: 8px;
            width: 800px;
        }

    @media (min-width: 1200px) {
        .xc-cart-page__table table {
            width: 100%;
        }
    }

    .xc-cart-page__table table tr {
        border-bottom: 1px solid var(--rafco-border-color);
    }

    .xc-cart-page__table table td {
        padding: 20px 10px;
        vertical-align: middle;
        font-size: 16px;
    }

        .xc-cart-page__table table td.product-name {
            font-size: 16px;
            font-weight: 400;
            text-transform: capitalize;
        }

        .xc-cart-page__table table td.product-thumbnail {
            width: 80px;
            height: 90px;
            padding: 0;
            margin: 40px 30px;
            display: inline-block;
            overflow: hidden;
            background-color: var(--rafco-gray);
        }

            .xc-cart-page__table table td.product-thumbnail img {
                width: 100%;
                height: auto;
                object-fit: cover;
            }

    .accordion-item {
        border: 0;
    }

    .shop_cart_widget .accordion-button {
        background-color: var(--rafco-base);
        color: var(--rafco-white);
        font-size: 16px;
        font-weight: 700;
    }

        .shop_cart_widget .accordion-button:focus {
            box-shadow: none;
        }

    .shop_cart_widget .accordion-body {
        position: relative;
        padding: 20px;
        padding-bottom: 70px;
        border: 0;
    }

    .shop_cart_widget .accordion-button::after {
        display: none;
    }

    .shop_cart_widget .cart-coupon-code {
        position: relative;
        margin-bottom: 20px;
    }

        .shop_cart_widget .cart-coupon-code input {
            height: 50px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background-color: transparent;
            padding-right: 130px;
            border-radius: 4px;
        }

        .shop_cart_widget .cart-coupon-code button {
            position: absolute;
            right: 0;
            color: var(--rafco-base);
            line-height: 50px;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            padding-left: 30px;
            padding-right: 30px;
            border-left: 1px solid rgba(0, 0, 0, 0.1);
        }

            .shop_cart_widget .cart-coupon-code button:hover {
                background-color: var(--rafco-base);
                color: var(--rafco-white);
            }

    .shop_cart_widget .cart-totails,
    .shop_cart_widget .cart-subtitle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

        .shop_cart_widget .cart-totails h4,
        .shop_cart_widget .cart-subtitle h4 {
            font-size: 16px;
        }

        .shop_cart_widget .cart-totails h4 {
            text-transform: uppercase;
        }

    .shop_cart_widget .cart-checkout {
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 1px solid var(--rafco-border-color);
    }

        .shop_cart_widget .cart-checkout h4 {
            font-size: 16px;
        }

    .shop_cart_widget .cart-checkout-btn {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0 0 4px 4px;
        display: block;
        height: 50px;
        line-height: 50px;
        text-align: center;
        text-transform: uppercase;
        color: var(--rafco-white);
        background-color: var(--rafco-base);
        overflow: hidden;
    }

        .shop_cart_widget .cart-checkout-btn:hover {
            background-color: var(--rafco-secondary);
        }

    .checkout-form-list {
        margin-bottom: 30px;
    }

        .checkout-form-list textarea,
        .checkout-form-list input {
            background-color: var(--rafco-white);
        }

        .checkout-form-list textarea {
            height: 240px;
        }



    .xc-product-two__item {
        border: 1px solid var(--rafco-border-color);
        border-radius: 10px;
        padding: 15px;
        position: relative;
        transition: 0.3s;
        overflow: hidden;
        margin-bottom: 10px;
    }

        .xc-product-two__item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: var(--rafco-black);
            opacity: 0;
            transition: 0.3s;
        }

        .xc-product-two__item:hover::before {
            opacity: 0.8;
        }

        .xc-product-two__item:hover .xc-product-two__btn {
            transform: translateX(-50%) translateY(-50%) scale(1);
            opacity: 1;
        }

    .xc-product-two__img {
        text-align: center;
        margin-bottom: 20px;
    }

        .xc-product-two__img img {
            height: 180px;
        }

    @media (min-width: 1400px) {
        .xc-product-two__img img {
            object-fit: cover;
        }
    }

    .xc-product-two__ratting {
        font-size: 17px;
        margin-bottom: 5px;
        display: inline-block;
    }

        .xc-product-two__ratting i {
            color: #FA8232;
        }

    .xc-product-two__title {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
    }

        .xc-product-two__title a:hover {
            color: var(--rafco-secondary);
        }

    .xc-product-two__price {
        font-size: 20px;
        font-weight: 700;
        color: var(--rafco-base);
    }

     .xc-product-two__price del {
          font-size: 12px !important;
          color:var(--rafco-text);;
            /* color: var(--rafco-text); */
        }

    .xc-product-two__deal {
        position: absolute;
        left: 15px;
        top: 20px;
        font-size: 13px;
        display: inline-block;
        background-color: var(--rafco-base);
        border-radius: 2px;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--rafco-white);
        padding: 5px 12px;
        line-height: 1.5;
    }

    .xc-product-two__btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%) scale(0.5);
        display: flex;
        gap: 20px;
        transition: 0.3s;
        opacity: 0;
    }

        .xc-product-two__btn a {
            width: 40px;
            height: 40px;
            line-height: 45px;
            text-align: center;
            border-radius: 50%;
            background-color: var(--rafco-white);
            color: var(--rafco-base);
        }
        .xc-product-two__btn button {
            width: 40px;
            height: 40px;
            line-height: 45px;
            text-align: center;
            border-radius: 50%;
            background-color: var(--rafco-white);
            color: var(--rafco-base);
        }




    /*----------------------------------------
5.2 Pagination css
----------------------------------------*/
    .xc-pagination {
        margin-top: 50px;
    }

        .xc-pagination ul {
            padding-left: 0;
            margin-bottom: 0;
            display: inline-flex;
            gap: 5px;
        }

    @media (min-width: 768px) {
        .xc-pagination ul {
            gap: 15px;
        }
    }

    .xc-pagination ul li {
        display: inline-block;
    }

    .xc-pagination a, .xc-pagination span {
        display: inline-block;
        width: 48px;
        height: 48px;
        line-height: 48px;
        text-align: center;
        border-radius: 12.12px;
        border: 1px solid var(--rafco-border-color);
        font-size: 20px;
        font-weight: 600;
        transition: 0.3s;
        color: var(--rafco-black);
    }

        .xc-pagination a:hover, .xc-pagination a.current, .xc-pagination span:hover, .xc-pagination span.current {
            background-color: var(--rafco-base);
            color: var(--rafco-white);
            border-color: transparent;
        }




    /*----------------------------------------
7.2 Product Details css
----------------------------------------*/
    @media (min-width: 992px) {
        .product__details-thumb-tab {
            padding-right: 40px;
        }
    }

    .product__details-thumb-content {
        margin-bottom: 14px;
        background-color: var(--rafco-white);
    }

    .product__details-thumb-nav .nav-link {
        width: 120px;
        height: 120px;
        position: relative;
        margin-bottom: 10px;
        background-color: var(--rafco-white);
    }

        .product__details-thumb-nav .nav-link img {
            width: 100%;
        }

        .product__details-thumb-nav .nav-link::after {
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: transparent;
            border: 1px solid var(--rafco-base);
            opacity: 0;
            visibility: hidden;
            transition: 0.2s;
        }

        .product__details-thumb-nav .nav-link.active::after {
            visibility: visible;
            opacity: 1;
        }

    .product__details-stock {
        margin-bottom: 13px;
    }

        .product__details-stock span {
            font-family: var(--xc-ff-inter);
            font-weight: 500;
            font-size: 14px;
            line-height: 1;
            color: var(--rafco-base);
            border: 1px solid rgba(245, 9, 99, 0.1);
            padding: 5px 18px;
        }

    .product__details-title {
        font-family: var(--rafco-heading-font);
        font-weight: 500;
        font-size: 34px;
        margin-bottom: 5px;
    }

    .product__details-rating {
        margin-bottom: 13px;
    }

    .product__details-rating-count {
        position: relative;
        margin-bottom: 2px;
        padding-left: 9px;
    }

        .product__details-rating-count span {
            font-family: var(--rafco-heading-font);
            font-size: 14px;
        }

    .product__details-wrapper p {
        font-family: var(--rafco-heading-font);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 23px;
    }

    .product__details-price {
        margin-bottom: 35px;
    }

        .product__details-price span {
            font-family: var(--rafco-heading-font);
            line-height: 1;
        }

    .product__details-ammount {
        font-weight: 600;
        font-size: 24px;
        color: var(--rafco-secondary);
    }

        .product__details-ammount.old-ammount {
            font-weight: 400;
            font-size: 16px;
            text-decoration-line: line-through;
            color: var(--rafco-text);
        }

        .product__details-ammount.new-ammount {
            font-weight: 600;
            font-size: 24px;
            color: var(--rafco-secondary);
            margin-left: 1px;
        }

    .product__details-offer {
        margin-left: 2px;
        font-weight: 700;
        font-size: 13px;
        color: var(--rafco-white);
        background-color: var(--rafco-base);
        padding: 3px 9px;
        display: inline-block;
        transform: translateY(-4px);
    }

    .product__details-quantity {
        margin-bottom: 40px;
    }

    .product__details-action {
        padding-bottom: 34px;
        border-bottom: 1px solid #DADCE0;
        margin-bottom: 32px;
        gap: 20px;
    }

        .product__details-action button {
            margin-bottom: 0px;
        }

            .product__details-action button.product-action-btn {
                width: 50px;
                height: 50px;
                line-height: 54px;
                text-align: center;
                font-size: 18px;
                color: var(--rafco-black);
                border: 1px solid #DADCE0;
                border-radius: 10px;
            }

    @media (min-width: 1400px) {
        .product__details-action button.product-action-btn {
            width: 60px;
            height: 60px;
            line-height: 64px;
        }
    }

    .product__details-action button.product-action-btn .product-action-tooltip {
        top: auto;
        bottom: 90%;
        left: auto;
        right: auto;
        margin: auto;
        margin-bottom: 10px;
        transform: translate(-57%, 0%);
    }

        .product__details-action button.product-action-btn .product-action-tooltip::after {
            top: 100%;
            right: 50%;
            left: auto;
            transform: translate(-57%, 0%) rotate(45deg);
        }

    .product__details-action button.product-action-btn:hover {
        color: var(--rafco-white);
        background-color: var(--rafco-base);
        border-color: var(--rafco-base);
    }

        .product__details-action button.product-action-btn:hover .product-action-tooltip {
            bottom: 100%;
            top: auto;
            right: auto;
        }

    .product__details-more p {
        display: inline-block;
        margin-bottom: 5px;
        font-weight: 600;
        font-size: 15px;
        line-height: 1;
        color: var(--rafco-black);
    }

    .product__details-more span {
        font-size: 15px;
        line-height: 1;
        color: var(--rafco-text);
    }

        .product__details-more span a:hover {
            color: var(--rafco-base);
        }

    .product__details-categories {
        margin-bottom: 15px;
    }

    .product__details-tags {
        margin-bottom: 15px;
    }

        .product__details-tags span {
            display: inline-block;
            margin-bottom: 5px;
            font-weight: 600;
            font-size: 15px;
            line-height: 1;
            color: var(--rafco-black);
            margin-right: 3px;
        }

        .product__details-tags a {
            font-size: 14px;
            line-height: 1;
            color: var(--rafco-text);
            border: 1px solid #DADCE0;
            padding: 4px 12px;
            margin-bottom: 6px;
            display: inline-block;
        }

            .product__details-tags a:hover {
                background-color: var(--rafco-base);
                border-color: var(--rafco-base);
                color: var(--rafco-white);
            }

    .product__details-share span {
        display: inline-block;
        margin-bottom: 5px;
        font-weight: 600;
        font-size: 15px;
        line-height: 1;
        color: var(--rafco-black);
        margin-right: 9px;
    }

    .product__details-share a {
        font-size: 14px;
        line-height: 1;
        color: var(--rafco-text);
        margin-bottom: 6px;
        margin-right: 10px;
    }

        .product__details-share a:hover {
            color: var(--rafco-base);
        }

    .product__details-tab-nav {
        border-bottom: 1px solid #DADCE0;
    }

    .product__details-tab-nav-inner {
        position: relative;
    }

    .product__details-tab-nav .nav-link {
        position: relative;
        padding: 11px 14px;
        font-weight: 500;
        font-size: 16px;
        color: var(--rafco-text);
    }

        .product__details-tab-nav .nav-link.active, .product__details-tab-nav .nav-link:hover {
            color: var(--rafco-black);
        }

            .product__details-tab-nav .nav-link.active::after, .product__details-tab-nav .nav-link:hover::after {
                width: 100%;
                left: 0;
                right: auto;
            }

    @media (max-width: 575px) {
        .product__details-tab-nav .nav-link::after {
            position: absolute;
            content: "";
            left: auto;
            right: 0;
            bottom: -1px;
            width: 0%;
            height: 2px;
            background-color: var(--xc-theme-3);
            transition: 0.3s;
        }
    }

    .product__details-tab-nav .xc-tab-menu {
        position: relative;
    }

    .product__details-tab-nav .xc-tab-line {
        position: absolute;
        content: "";
        left: 0;
        bottom: -1px;
        width: 38%;
        height: 2px;
        background-color: var(--rafco-base);
        transition: 0.3s;
    }

    [dir=rtl] .product__details-tab-nav .xc-tab-line {
        left: auto;
        right: 0;
    }

    .product__details-description-content .product-desc-title {
        font-family: var(--rafco-heading-font);
        font-weight: 500;
        font-size: 34px;
        color: var(--xc-common-black-solid);
        margin-bottom: 10px;
    }

    .product__details-description-content p {
        font-family: var(--rafco-heading-font);
        font-size: 18px;
        line-height: 1.67;
        color: var(--rafco-text);
        margin-bottom: 25px;
    }

    .product__details-description .product-desc-feature-thumb {
        margin-bottom: 30px;
    }

    .product__details-description .product-desc-feature-content p {
        line-height: 1.56;
        padding-right: 75px;
    }

    .product__details-additional {
        margin-top: 67px;
        background-color: var(--rafco-white);
    }

    @media (min-width: 576px), (max-width: 575px) {
        .product__details-additional {
            overflow-x: scroll;
        }
    }

    .product__details-additional-inner {
        padding: 45px 70px 45px;
        border: 1px solid #E9E9F0;
    }

    @media (min-width: 768px) {
        .product__details-additional-inner {
            padding: 15px 40px 15px;
        }
    }

    @media (min-width: 576px), (max-width: 575px) {
        .product__details-additional-inner {
            width: 768px;
        }
    }

    .product__details-additional table {
        width: 100%;
    }

        .product__details-additional table tr {
            padding: 16px 0 14px;
            display: block;
        }

            .product__details-additional table tr:not(:last-child) {
                border-bottom: 1px solid #E9E9F0;
            }

            .product__details-additional table tr th {
                font-family: var(--rafco-heading-font);
                font-weight: 500;
                font-size: 15px;
                color: var(--rafco-black);
                width: 28%;
                display: inline-block;
            }

            .product__details-additional table tr td {
                width: 71%;
                display: inline-block;
                font-family: var(--rafco-heading-font);
                font-size: 15px;
                color: var(--rafco-text);
            }

    .product__details-review-inner {
        padding: 62px 70px 70px;
        border: 1px solid #E9E9F0;
    }

    @media (min-width: 768px) {
        .product__details-review-inner {
            padding: 35px 40px 40px;
        }
    }

    @media (min-width: 576px) {
        .product__details-review-inner {
            padding: 25px 30px 30px;
        }
    }

    @media (max-width: 575px) {
        .product__details-review-inner {
            padding: 15px 20px 20px;
        }
    }

    .product__details-review .product-rating-title {
        font-family: var(--rafco-heading-font);
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 22px;
    }

    .product__details-review .product-rating-number {
        text-align: center;
        width: 160px;
        height: 125px;
        border: 1px solid #E9E9F0;
        padding-top: 21px;
        padding-bottom: 21px;
    }

    [dir=rtl] .product__details-review .product-rating-number {
        margin-right: 0;
        margin-left: 40px;
    }

    @media (max-width: 575px) {
        .product__details-review .product-rating-number {
            margin-bottom: 15px;
        }
    }

    .product__details-review .product-rating-number-title {
        font-family: var(--rafco-heading-font);
        font-weight: 400;
        font-size: 60px;
        line-height: 1;
        color: var(--xc-common-black-solid);
        margin-bottom: 0;
    }

    .product__details-review .product-rating-star {
        line-height: 1;
    }

        .product__details-review .product-rating-star span {
            line-height: 1;
            font-size: 12px;
            color: var(--xc-common-yellow-5);
            display: inline-block;
        }

            .product__details-review .product-rating-star span:not(:last-child) {
                margin-right: 3px;
            }

    [dir=rtl] .product__details-review .product-rating-star span:not(:last-child) {
        margin-right: 0;
        margin-left: 3px;
    }

    .product__details-review .product-rating-bar {
        width: 100%;
        background-color: #E9E9E9;
        border-radius: 10px;
    }

    .product__details-review .product-rating-bar-wrapper {
        width: 71.5%;
    }

    @media (min-width: 1200px) {
        .product__details-review .product-rating-bar-wrapper {
            width: 70%;
        }
    }

    @media (min-width: 768px) {
        .product__details-review .product-rating-bar-wrapper {
            width: 66%;
        }
    }

    @media (min-width: 576px) {
        .product__details-review .product-rating-bar-wrapper {
            width: 52%;
        }
    }

    @media (max-width: 575px) {
        .product__details-review .product-rating-bar-wrapper {
            width: 100%;
        }
    }

    .product__details-review .product-rating-bar .single-progress {
        background-color: var(--rafco-base);
        height: 8px;
        border-radius: 10px;
    }

    .product__details-review .product-rating-bar-text {
        width: 3.5%;
        line-height: 1;
    }

    @media (min-width: 576px), (max-width: 575px) {
        .product__details-review .product-rating-bar-text {
            width: 7.5%;
        }
    }

    .product__details-review .product-rating-bar-text span {
        font-family: var(--rafco-heading-font);
        font-size: 14px;
        color: var(--rafco-text);
    }

    .product__details-review .product-rating-bar-item:not(:last-child) {
        margin-bottom: 5px;
    }

    .product__details-review .product-review-item {
        margin-bottom: 30px;
    }

        .product__details-review .product-review-item:last-child {
            margin-bottom: 0;
        }

        .product__details-review .product-review-item p {
            font-family: var(--rafco-heading-font);
            font-size: 15px;
            line-height: 1.6;
            color: var(--rafco-text);
        }

    .product__details-review .product-review-avater {
        margin-bottom: 11px;
    }

    .product__details-review .product-review-avater-thumb img {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        margin-right: 10px;
    }

    .product__details-review .product-review-avater-title {
        font-family: var(--rafco-heading-font);
        font-weight: 500;
        font-size: 16px;
        line-height: 1;
        margin-bottom: 0;
    }

    .product__details-review .product-review-rating {
        margin-bottom: 5px;
    }

    .product__details-review .product-review-rating-wrapper {
        margin-right: 10px;
    }

    [dir=rtl] .product__details-review .product-review-rating-wrapper {
        margin-right: 0;
        margin-left: 10px;
    }

    .product__details-review .product-review-rating-wrapper span {
        line-height: 1;
        font-size: 12px;
        color: var(--xc-common-yellow-5);
        display: inline-block;
    }

        .product__details-review .product-review-rating-wrapper span:not(:last-child) {
            margin-right: 3px;
        }

    .product__details-review .product-review-rating-date span {
        font-family: var(--rafco-heading-font);
        font-weight: 400;
        font-size: 13px;
        color: var(--rafco-text);
    }

    .product__details-review .product-review-form p {
        font-family: var(--rafco-heading-font);
        font-weight: 400;
        font-size: 14px;
        color: var(--rafco-text);
        margin-bottom: 20px;
    }

    .product__details-review .product-review-form-title {
        font-family: var(--rafco-heading-font);
        font-weight: 600;
        font-size: 24px;
        letter-spacing: -0.02em;
        margin-bottom: 4px;
    }

    .product__details-review .product-review-form-rating .rate-title {
        font-family: var(--rafco-heading-font);
        font-weight: 500;
        font-size: 15px;
        line-height: 14px;
        letter-spacing: -0.02em;
        color: var(--rafco-text);
    }

    .product__details-review .product-review-input {
        margin-bottom: 18px;
        line-height: 1;
    }

        .product__details-review .product-review-input.is-textarea {
            margin-bottom: 30px;
        }

        .product__details-review .product-review-input input, .product__details-review .product-review-input textarea {
            height: 60px;
            line-height: 60px;
            background-color: transparent;
            border: 1.5px solid var(--rafco-border-color);
        }

        .product__details-review .product-review-input textarea {
            height: 180px;
            line-height: 1.2;
            padding-bottom: 20px;
        }

    .product__details-review .product-review-agree input {
        margin: 0;
        display: block;
        width: 18px;
        height: 18px;
        background: transparent;
        border: 2px solid #B2B2B9;
        border-radius: 4px;
        outline: none;
        flex: 0 0 auto;
        -webkit-transform: translateY(3px);
        -moz-transform: translateY(3px);
        -ms-transform: translateY(3px);
        -o-transform: translateY(3px);
        transform: translateY(3px);
        padding: 0;
    }

        .product__details-review .product-review-agree input:hover {
            cursor: pointer;
        }

    .product__details-review .product-review-agree label {
        padding-left: 8px;
        font-size: 14px;
        line-height: 1.71;
        color: var(--rafco-text);
    }

        .product__details-review .product-review-agree label a {
            color: var(--rafco-black);
            font-weight: 600;
            padding-left: 4px;
        }

            .product__details-review .product-review-agree label a:hover {
                color: var(--rafco-base);
            }

        .product__details-review .product-review-agree label:hover {
            cursor: pointer;
        }

    .product__details-review .product-review-btn .xc-btn {
        font-family: var(--rafco-heading-font);
        font-weight: 600;
        font-size: 15px;
        padding: 12px 37px;
    }

        .product__details-review .product-review-btn .xc-btn:hover {
            background-color: var(--rafco-black);
        }

    .xc-product-quantity {
        width: 148px;
        position: relative;
    }

    .xc-cart-plus,
    .xc-cart-minus {
        width: 45px;
        height: 44px;
        line-height: 44px;
        display: inline-block;
        text-align: center;
        font-size: 16px;
        color: var(--xc-common-black);
        transition: 0.3s;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

        .xc-cart-plus::after,
        .xc-cart-minus::after {
            position: absolute;
            content: "";
            width: 1px;
            height: 26px;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
            background-color: #DADCE0;
        }

        .xc-cart-plus svg,
        .xc-cart-minus svg {
            transform: translateY(-2px);
        }

        .xc-cart-plus:hover,
        .xc-cart-minus:hover {
            cursor: pointer;
            color: var(--xc-theme-1);
        }

        .xc-cart-plus.xc-cart-plus,
        .xc-cart-minus.xc-cart-plus {
            left: auto;
            right: 0;
        }

            .xc-cart-plus.xc-cart-plus::after,
            .xc-cart-minus.xc-cart-plus::after {
                left: 0;
                right: auto;
            }

    .xc-cart-input[type=text] {
        height: 44px;
        text-align: center;
        font-size: 14px;
        border: 1px solid #DADCE0;
        background-color: var(--rafco-white);
        padding: 0 45px;
    }

        .xc-cart-input[type=text]:focus {
            outline: none;
        }

    .product__rating.product__rating {
        color: #FF9017;
        gap: 5px;
    }

    .xc-seller-one__ratting i {
        color: #FA8232;
        font-size: 16px;
    }

    .xc-seller-one__wrapper {
        border: 1px solid var(--rafco-border-color);
        border-radius: 10px;
        overflow: hidden;
    }

        .xc-seller-one__wrapper .row [class*=col] {
            border-right: 1px solid var(--rafco-border-color);
            border-bottom: 1px solid var(--rafco-border-color);
            margin-bottom: -2px;
            margin-left: 1px;
            margin-right: -1px;
        }

    .xc-seller-one__btn i {
        position: relative;
        top: 2px;
    }

    .xc-seller-two__item {
        text-align: center;
        padding: 5px 5px;
        background-color: var(--rafco-white);
    }

    .xc-seller-two__content {
        margin-bottom: 20px;
    }

        .xc-seller-two__content img {
            margin-bottom: 25px;
        }

    .xc-seller-two__title {
        font-size: 20px;
        font-weight: 600;
        color: var(--rafco-black);
        margin-bottom: 10px;
    }

        .xc-seller-two__title a:hover {
            color: var(--rafco-secondary);
        }

    .xc-seller-two__ratting {
        font-size: 14px;
    }

        .xc-seller-two__ratting i {
            color: #FA8232;
            font-size: 16px;
        }

    .xc-seller-two__btn {
        font-size: 16px;
        font-weight: 500;
        color: var(--rafco-white);
        background-color: var(--rafco-base);
        display: inline-block;
        padding: 8px 25px;
        text-transform: uppercase;
        border-radius: 8px;
        transition: 0.3s;
    }

        .xc-seller-two__btn:hover {
            color: var(--rafco-white);
            background-color: var(--rafco-secondary);
        }

        .xc-seller-two__btn i {
            position: relative;
            top: 2px;
        }



    /*----------------------------------------
6.14 FAQ
----------------------------------------*/
    .xc-faq-one__left {
        background-color: var(--rafco-white);
        padding: 40px 30px;
        border-radius: 10px;
    }

    .xc-faq-one__search {
        position: relative;
        margin-bottom: 35px;
    }

        .xc-faq-one__search input {
            border-radius: 30px;
            padding-right: 80px;
            background-color: var(--rafco-white);
        }

        .xc-faq-one__search button {
            position: absolute;
            top: 17px;
            right: 30px;
            font-size: 26px;
            color: var(--rafco-base);
        }

    .xc-faq-one__form__title {
        font-size: 24px;
    }

    .xc-faq-one__form textarea, .xc-faq-one__form input {
        background-color: transparent;
        border: 0;
        padding-left: 0;
        padding-top: 0;
        margin-bottom: 30px;
        border-bottom: 1px solid var(--rafco-border-color);
    }

    .xc-faq-one__form textarea {
        height: 80px;
        resize: none;
        overflow: hidden;
    }

    @media (min-width: 1200px) {
        .xc-faq-one__right {
            padding-left: 50px;
        }
    }

    .swiftcart-accordion-one .xc-accordion {
        background-color: var(--rafco-white);
        padding: 30px 25px;
        margin-bottom: 12px;
        border-radius: 7px;
    }

        .swiftcart-accordion-one .xc-accordion.active span {
            transform: rotate(90deg);
        }

    .swiftcart-accordion-one .xc-accordion-title {
        position: relative;
    }

        .swiftcart-accordion-one .xc-accordion-title span {
            color: var(--rafco-black);
            transition: 0.3s;
            position: absolute;
            right: 0;
            top: 0;
        }

    .swiftcart-accordion-one .xc-accordion-question {
        padding-right: 15px;
        font-size: 18px;
        cursor: pointer;
        margin-bottom: 0;
    }

    .swiftcart-accordion-one .xc-accordion-answer p {
        margin-bottom: 0;
        margin-top: 15px;
    }



.map-responsive {
    overflow: hidden;
    padding-bottom: 30%;
    position: relative;
    height: 0;
    width: 100%;
}


    .map-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
        -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
    }


.about-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.about-card {
    flex: 1 1 30%;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

    .about-card:hover {
        background-color: #e0e0e0;
    }

    .about-card i {
        font-size: 40px;
        margin-bottom: 15px;
        color: var(--rafco-black);
    }

    .about-card h3 {
        margin-bottom: 10px;
        color: #444;
    }

    .about-card p {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
    }

@media (max-width: 768px) {
    .about-cards {
        flex-direction: column;
    }
}
