﻿:root {
    --p-color: #45001c;
    --s-color: #c37904;
    scroll-behavior: auto;
}

@font-face {
    font-family: 'trado';
    src: url('trado.ttf'),
}

@font-face {
    font-family: 'trado-Bold';
    src: url('tradbdo.ttf'),
}

/* Font Family // ------------------------------ */

body {
    overflow-x: hidden;
}


html {
    overflow-y: scroll; /* يُظهر شريط التمرير دائمًا */
}

body {
    overflow-x: hidden; /* يمنع أي تمرير أفقي */
}


* {
    /* font-family: "trado"; */ o "; */
}


/* logo // --  */
.logo {
    height: 90px !important;
}

/* // ---------------------------------------- */

/* Nav Bar Style // ------------------------- */
.header-area {
    background-color: var(--p-color) !important;
    max-width: 100%;
}

    .header-area span {
        color: var(--white-color);
        font-size: 20px;
        margin: 0 7px;
    }

.header-area-content .first h6 {
    color: var(--white-color);
}

.header-area-content .second h6 {
    color: var(--white-color);
}

.btn-white {
    background-color: var(--white-color);
    padding: 3px 5px;
    border-radius: 15px;
    margin: 5px 10px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}

    .btn-white:hover {
        background-color: transparent;
        border: 1px solid #fff;
        color: var(--white-color);
    }

/* Acount Register / Login  & Dropdown Style & animation  ---------------- */
.anchor {
    color: var(--white-color);
    margin-right: 20px;
}

.Acount {
    display: flex;
    color: var(--green-color);
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    position: relative;
}

    .Acount i {
        font-size: 20px;
        /* color: var(--green-color); */
        color: #b4b4b4;
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
    }

    .Acount .dropdown-menu {
        animation: fade-dropdown 1s alternate;
        -webkit-animation: fade-dropdown 1s alternate;
    }

@keyframes fade-dropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(-7px);
        -webkit-transform: translateY(-7px);
        -moz-transform: translateY(-7px);
        -ms-transform: translateY(-7px);
        -o-transform: translateY(-7px);
    }
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
    display: block
}

@media screen and (min-width:769px) {
    .dropend:hover > .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0
    }
}

@media (min-width:770px) and (max-width:993px) {
    .dropend:hover > .dropdown-menu {
        position: absolute;
        left: 0;
        top: 30px
    }
}

.Acount:hover i {
    color: var(--green-color);
}

.cart {
    font-size: 20px;
    position: relative;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    color: rgb(180, 180, 180);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .cart span {
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: var(--green-color);
        color: var(--gold-color);
        height: 20px;
        width: 20px;
        padding: 5px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
    }

    .cart:hover span {
        background-color: var(--gold-color);
        color: var(--green-color);
    }

    .cart:hover a {
        color: var(--green-color);
    }

.anchor {
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

    .anchor:hover {
        color: var(--green-color);
    }

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--gold-color);
}

.Acount .dropdown-menu .dropdown-item:hover {
    background-color: var(--gold-color) !important;
    color: var(--white-color);
}


/* // End ---------------------------------------------------- */

/* This Class With Nav-link to style // & style it in Hover & focus & NavBar  --------------------- */
.navbar-toggler span {
    color: var(--black-color);
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0;
}

.navbar-toggler {
    border: 0 !important;
}

.link-hover {
    color: var(--black-color);
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.nav-link.link-hover:focus,
.nav-link.link-hover:hover {
    color: var(--green-color) !important;
}

.nav-link {
    color: var(--p-color);
    font-size: 18px;
    font-weight: 600;
    padding: 8px 4px;
}

    .nav-link:focus,
    .nav-link:hover {
        color: var(--s-color) !important;
    }

.link-hover:focus:after,
.link-hover:hover:after {
    width: 100% !important;
    left: 0% !important;
}

.link-hover:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--gold-color);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

.nav-item .nav-link.active {
    color: var(--green-color) !important;
}


.navbar {
    background-color: #fff !important;
    padding: 0 !important;
    box-shadow: 1px 1px 15px #5d5d5d4a;
    height: 16vh;
}



.modal.fade {
    z-index: 9999999999 !important;
}

.modal-content {
    background-color: #fff !important;
}

/* Search Input */

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--gold-color);
    outline: 0;
    box-shadow: 0 0 0 0;
}

.btn-gold {
    color: var(--white-color);
    display: flex;
    align-items: center;
    padding: 5px 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

    .btn-gold:hover {
        background-color: var(--green-color);
        color: var(--gold-color);
    }

    .btn-gold i {
        margin-left: 15px;
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
    }

    .btn-gold:hover i {
        color: var(--gold-color);
        transform: translateX(-5px);
        -webkit-transform: translateX(-5px);
        -moz-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
        -o-transform: translateX(-5px);
    }

.search {
    color: #b4b4b4;
}

    .search:hover {
        color: var(--green-color);
    }

.language {
    color: #b4b4b4;
}

    .language:hover {
        color: var(--green-color);
    }

.navbar-nav .dropdown-menu {
    background-color: #fff;
    animation: fadeUp 0.8s ease;
    -webkit-animation: fadeUp 0.8s ease;
    border: 0 !important;
    box-shadow: 1px 1px 10px #8c8c8c46;
}

    .navbar-nav .dropdown-menu .dropdown-item {
        color: var(--green-color);
    }

        .navbar-nav .dropdown-menu .dropdown-item:hover {
            background-color: var(--gold-color);
            color: var(--white-color);
        }


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(-7px);
        -webkit-transform: translateY(-7px);
        -moz-transform: translateY(-7px);
        -ms-transform: translateY(-7px);
        -o-transform: translateY(-7px);
    }
}


/* End //------------------------------------------------------------------------------------ */


/* Home Intro >> // ------------------------------------------------------------------------ */

@keyframes scaleOut {
    0% {
        opacity: 0;
        visibility: hidden;
        padding: 328px 0 358px;
        z-index: 1;
        -webkit-transition: opacity 0.4s ease;
        -khtml-transition: opacity 0.4s ease;
        -moz-transition: opacity 0.4s ease;
        -ms-transition: opacity 0.4s ease;
        -o-transition: opacity 0.4s ease;
        transition: opacity 0.4s ease;
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

.carousel-item {
    height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.intro-image {
    position: relative;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    /* animation: scaleOut 5s ease-out forwards; */
    /* -webkit-animation: scaleOut 5s ease-out forwards; */
}

.layer-caruosel {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    /* background-color: #00000031; */
    width: 100%;
    height: 100%;
}

.content-banner {
    padding: 50px;
    z-index: 1;
    /* background-color: #00000030; */
    width: 100%;
    height: 100%;
    width: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

    .content-banner :where(h1, h2) {
        color: var(--red-color);
    }

    .content-banner h1,
    .content-banner h2 {
        font-size: 65px;
        font-weight: 600;
        animation: text alternate 4s 1s;
        -webkit-animation: text alternate 4s 1s;
    }

    .content-banner p {
        font-size: 20px;
        font-weight: 100;
        width: 60%;
        color: var(--white-color);
        /* text-shadow: 1px 1px 3px #000; */
        animation: text alternate 4s 1s;
        -webkit-animation: text alternate 4s 1s;
    }

@keyframes text {
    0% {
        opacity: 0;
        transform: translatex(-100px);
        -webkit-transform: translatex(-100px);
        -moz-transform: translatex(-100px);
        -ms-transform: translatex(-100px);
        -o-transform: translatex(-100px);
    }

    100% {
        opacity: 1;
        transform: translatex(0px);
        -webkit-transform: translatex(0px);
        -moz-transform: translatex(0px);
        -ms-transform: translatex(0px);
        -o-transform: translatex(0px);
    }
}


.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: var(--green-color);
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

    .carousel-indicators [data-bs-target].active {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        padding: 0;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: var(--gold-color);
        background-clip: padding-box;
        border: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        opacity: .5;
        transition: opacity .6s ease;
    }

.carousel-indicators {
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-right: 15%;
    margin: 1rem 0;
    margin-left: 0%;
    background: var(--white-color);
    width: 10%;
    padding: 3px 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}


/* End // --------------------------->> */

/* DealSection // ----------------------> */

.DealSection {
    padding: 30px 0;
}

.headSection h3 {
    text-align: center;
    color: var(--green-color);
    font-family: "trado-Bold";
}

.headSection {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

    .headSection:after {
        position: absolute;
        bottom: 5px;
        left: 45%;
        width: 100px;
        height: 2px;
        background-color: var(--gold-color);
        content: "";
    }

    .headSection::before {
        position: absolute;
        bottom: 0;
        left: 46%;
        width: 79px;
        height: 2px;
        background-color: var(--gold-color);
        content: "";
    }


/* @media (max-width:1100px) {
        .headSection:after {
            position: absolute;
            bottom: 5px;
            left: 45%;
            width: 100px;
            height: 2px;
            background-color: var(--gold-color);
            content: "";
        }
        .headSection::before {
            position: absolute;
            bottom: 0;
            left: 46%;
            width: 79px;
            height: 2px;
            background-color: var(--gold-color);
            content: "";
        }
    } */

@media (max-width:992px) {
    .headSection:after {
        position: absolute;
        bottom: 5px;
        left: 42%;
        width: 100px;
        height: 2px;
        background-color: var(--gold-color);
        content: "";
    }

    .headSection::before {
        position: absolute;
        bottom: 0;
        left: 43%;
        width: 84px;
        height: 2px;
        background-color: var(--gold-color);
        content: "";
    }
}

@media (max-width:780px) {
    .headSection:after {
        position: absolute;
        bottom: 5px;
        left: 40%;
        width: 100px;
        height: 2px;
        background-color: var(--gold-color);
        content: "";
    }

    .headSection::before {
        position: absolute;
        bottom: 0;
        left: 41%;
        width: 84px;
        height: 2px;
        background-color: var(--gold-color);
        content: "";
    }
}

@media (max-width:460px) {
    .headSection:after {
        position: absolute;
        bottom: 5px;
        left: 38%;
        width: 100px;
        height: 2px;
        background-color: var(--gold-color);
        content: "";
    }

    .headSection::before {
        position: absolute;
        bottom: 0;
        left: 40%;
        width: 84px;
        height: 2px;
        background-color: var(--gold-color);
        content: "";
    }
}

@media (max-width:350px) {
    .headSection:after {
        position: absolute;
        bottom: 5px;
        left: 33%;
        width: 100px;
        height: 2px;
        background-color: var(--gold-color);
        content: "";
    }

    .headSection::before {
        position: absolute;
        bottom: 0;
        left: 35%;
        width: 84px;
        height: 2px;
        background-color: var(--gold-color);
        content: "";
    }
}

.dealCard {
    overflow: hidden;
    border: 0 !important;
    border-radius: 0;
    text-decoration: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    position: relative;
}


.perant-card {
    position: relative;
    overflow: hidden;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}


    .perant-card::after {
        position: absolute;
        background: rgb(255 255 255 / 30%);
        content: "";
        position: absolute;
        left: 0px;
        top: 0;
        width: 100%;
        height: 0;
        opacity: 1;
        pointer-events: none;
    }

.dealCard:hover .perant-card::after {
    height: 100%;
    opacity: 0;
    transition: all linear 0.4s;
    -webkit-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
}


.dealImage {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 1px 1px 10pxrgba(0, 0, 0, 0.357)0;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}

.dealImage {
    position: relative;
    overflow: hidden;
}

.layerDeal {
    position: absolute;
    bottom: 20px;
    left: 40px;
    right: 40px;
    height: 40px;
    opacity: 0;
    background-color: #fff;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    transform: translatey(20px);
    -webkit-transform: translatey(20px);
    -moz-transform: translatey(20px);
    -ms-transform: translatey(20px);
    -o-transform: translatey(20px);
}


    .layerDeal i {
        color: var(--gold-color);
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
    }

        .layerDeal i:hover {
            color: var(--green-color);
        }

.dealCard:hover .dealImage {
    transform: scale(1.1) rotate(3deg);
    -webkit-transform: scale(1.1) rotate(3deg);
    -moz-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    -o-transform: scale(1.1) rotate(3deg);
}

.dealCard:hover .layerDeal {
    transform: translatey(-20px);
    opacity: 1;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transform: translatey(-20px);
    -moz-transform: translatey(-20px);
    -ms-transform: translatey(-20px);
    -o-transform: translatey(-20px);
}

.search-sm {
    display: none;
}

.offerSale {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    padding: 10px;
    margin-left: 10px;
    background-color: var(--gold-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .offerSale span {
        font-weight: 600;
    }


.product-footer {
    display: flex;
    justify-content: space-between;
    color: var(--gold-color);
}

.dealCardBody a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 25px;
    margin: 7px 0;
}

.dealCardBody p {
    color: #4c4c4c;
    font-size: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.dealCard:hover a {
    color: var(--gold-color);
}

.dealCardBody h5 {
    color: var(--black-color);
}





/* Modal To Des Prod Det >>  */

.product-img img {
    max-width: 100%;
    transition: all 0.6s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.product-img {
    position: relative;
    z-index: 9;
}

    .product-img::after {
        position: absolute;
        top: -15px;
        right: -20px;
        content: "";
        height: 100%;
        width: 100%;
        z-index: -1;
        border: 5px solid var(--gold-color);
        opacity: 0.5;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
        -ms-border-radius: 30px;
        -o-border-radius: 30px;
    }

.number-control {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.number-left::before,
.number-right::after {
    content: attr(data-content);
    background-color: var(--gold-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    color: white;
    transition: background-color 0.3s;
    cursor: pointer;
}

.number-left::before {
    content: "-";
    padding: 5px;
}

.number-right::after {
    content: "+";
    padding: 5px;
}

.number-quantity {
    padding: 0.25rem;
    border: 0;
    width: 50px;
    text-align: center;
}

.number-left:hover::before,
.number-right:hover::after {
    background-color: var(--green-color);
}


.body-product {
    padding: 15px;
}

    .body-product h3 {
        color: var(--green-color);
    }

    .body-product h5 {
        color: var(--gold-color);
        font-weight: 700;
        font-size: 25px;
        margin-bottom: 10px;
    }

    .body-product .Avil {
        color: var(--gold-color);
        background-color: var(--green-color);
        padding: 7px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .body-product .NotAvil {
        color: var(--white-color);
        background-color: red;
        padding: 7px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }


.rate i {
    color: #DDC188;
}

.rate span {
    color: #d2d2d2;
    margin-left: 10px;
}


/* button // ------------ */

.fancy {
    background-color: transparent;
    border: 2px solid var(--green-color);
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 10px 0;
    outline: none;
    overflow: visible;
    padding: 1.25em 2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
}

    .fancy::before {
        content: " ";
        width: 1.5625rem;
        height: 2px;
        background: var(--green-color);
        top: 50%;
        left: 1.5em;
        position: absolute;
        transform: translateY(-50%);
        transform-origin: center;
        transition: background 0.3s linear, width 0.3s linear;
    }

    .fancy .text {
        font-size: 1.125em;
        line-height: 1.33333em;
        padding-left: 2em;
        display: block;
        text-align: left;
        transition: all 0.3s ease-in-out;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--gold-color);
    }

    .fancy .top-key {
        height: 2px;
        width: 1.5625rem;
        top: -2px;
        left: 0.625rem;
        position: absolute;
        background: #e8e8e8;
        transition: width 0.5s ease-out, left 0.3s ease-out;
    }

    .fancy .bottom-key-1 {
        height: 2px;
        width: 1.5625rem;
        right: 1.875rem;
        bottom: -2px;
        position: absolute;
        background: #e8e8e8;
        transition: width 0.5s ease-out, right 0.3s ease-out;
    }

    .fancy .bottom-key-2 {
        height: 2px;
        width: 0.625rem;
        right: 0.625rem;
        bottom: -2px;
        position: absolute;
        background: #e8e8e8;
        transition: width 0.5s ease-out, right 0.3s ease-out;
    }

    .fancy:hover {
        color: white;
        background: var(--green-color);
    }

        .fancy:hover::before {
            width: 0.9375rem;
            background: white;
        }

        .fancy:hover .text {
            color: white;
            padding-left: 1.5em;
        }

        .fancy:hover .top-key {
            left: -2px;
            width: 0px;
        }

        .fancy:hover .bottom-key-1,
        .fancy:hover .bottom-key-2 {
            right: 0;
            width: 0;
        }


/* End ====>>  */
/* media Query // -------------------------- */
@media (max-width:992px) {
    .content-banner :where(h1, h2) {
        font-size: 18px;
    }

    .space-sm {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .cart {
        display: flex;
    }

    .hide-sm {
        display: none !important;
    }

    .search-sm {
        display: flex;
    }

    .content-banner h1,
    .content-banner h2 {
        font-size: 40px;
        font-weight: 600;
    }

    .content-banner p {
        width: 60%;
    }

    .carousel-item {
        height: 50vh;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        top: unset;
        bottom: 0px;
        left: 0px;
        width: 0;
        height: 3px;
        background-color: var(--red-color);
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        -o-transition: all 0.4s;
    }

    .nav-link:hover::after {
        content: "";
        position: absolute;
        top: unset;
        bottom: 0px;
        left: 0px;
        width: 20%;
        height: 3px;
        background-color: var(--red-color);
    }
}

@media (min-width:370px) and (max-width:991px) {

    .content-banner h1,
    .content-banner h2 {
        font-size: 30px;
        font-weight: 600;
    }

    .content-banner p {
        font-size: 12px;
        width: 90%;
    }
}


@media (min-width:0px) and (max-width:369px) {
    /* .header-area-content {
            flex-direction: column;
        } */

    .social-icon {
        display: none !important;
    }
}


/* End ///------------------------------------------- */





.squre {
    height: 35px;
    width: 35px;
    background-color: rgba(255, 255, 255, 0.151);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

    .squre a i {
        color: var(--white-color);
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
    }

    .squre:hover {
        box-shadow: 0px 0px 4px var(--white-color);
    }

        .squre:hover i {
            color: var(--red-color);
        }

.btn-orange {
    color: var(--white-color);
    margin-top: 30px;
    padding: 10px 25px;
    border-radius: 0 !important;
    font-weight: 600;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    -o-transition: all 0.4s;
}

    .btn-orange span {
        background-color: var(--green-color);
        padding: 5px 10px;
        margin-left: 20px;
        transition: all 0.7s;
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -ms-transition: all 0.7s;
        -o-transition: all 0.7s;
    }

    .btn-orange .rotate {
        transform: rotate(50deg);
        -webkit-transform: rotate(50deg);
        -moz-transform: rotate(50deg);
        -ms-transform: rotate(50deg);
        -o-transform: rotate(50deg);
        transition: all 0.7s;
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -ms-transition: all 0.7s;
        -o-transition: all 0.7s;
    }

    .btn-orange:hover {
        color: var(--gold-color);
        border-bottom: 1px solid var(--gold-color);
    }

        .btn-orange:hover i {
            color: var(--white-color);
            transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
        }


        .btn-orange:hover span {
            background-color: var(--gold-color);
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
        }

.btn-green {
    color: var(--green-color);
    margin-top: 30px;
    padding: 10px 25px;
    border-radius: 0 !important;
    font-weight: 600;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    -o-transition: all 0.4s;
}

    .btn-green span {
        background-color: var(--gold-color);
        padding: 5px 10px;
        margin-left: 20px;
        transition: all 0.7s;
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -ms-transition: all 0.7s;
        -o-transition: all 0.7s;
    }

    .btn-green .rotate {
        transform: rotate(50deg);
        -webkit-transform: rotate(50deg);
        -moz-transform: rotate(50deg);
        -ms-transform: rotate(50deg);
        -o-transform: rotate(50deg);
        transition: all 0.7s;
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -ms-transition: all 0.7s;
        -o-transition: all 0.7s;
    }

    .btn-green:hover {
        color: var(--gold-color);
        border-bottom: 1px solid var(--gold-color);
    }

        .btn-green:hover i {
            color: var(--white-color);
            transform: rotate(90deg);
            -webkit-transform: rotate(90deg);
            -moz-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            -o-transform: rotate(90deg);
        }


        .btn-green:hover span {
            background-color: var(--gold-color);
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
        }


.carousel-inner {
    overflow: unset !important;
}

@media (max-width:800px) {
    .carousel-indicators {
        width: 40%;
    }
}

.flag {
    width: 20px;
    height: 20px;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    ;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: -65px;
    margin-top: var(--bs-dropdown-spacer);
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>> Header <<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */


/* AdsSection // ------------------ */


.addvImage {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    position: relative;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.LayerAds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    background: #00000098;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}

    .LayerAds h3 {
        color: var(--white-color);
        border-bottom: 1px solid #ddd;
        text-wrap: wrap;
        width: 200px;
    }

    .LayerAds p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        width: 50%;
        color: #dfdfdf;
        font-size: 17px;
    }

    .LayerAds span {
        color: var(--gold-color);
    }

@media (max-width:992px) {
    .LayerAds {
        background-color: #00000082;
        backdrop-filter: blur(3px);
        border-radius: 20px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: unset;
        height: unset;
        border: 1px solid #ffffff56;
    }

        .LayerAds p {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            overflow: hidden;
            width: 100%;
            color: #dfdfdf;
            font-size: 20px;
        }

        .LayerAds h3 {
            color: var(--white-color);
            border-bottom: 1px solid #ddd;
            text-wrap: wrap;
            width: 100%;
        }
}


.adssection {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .adssection::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        background-image: radial-gradient(at top right, #fafafaa4 0%, #fff 40%);
        opacity: 1;
        z-index: -1;
    }


/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Scroll <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<><<< */
::-webkit-scrollbar {
    width: 5px;
    background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: var(--gold-color);
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> End => Scroll <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>  arrow ==> Up  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

.arrow-up {
    position: fixed;
    bottom: 20px;
    right: 10px;
    padding: 5px 12px;
    z-index: 111;
    background-color: var(--p-color);
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: none;
    animation: ArrowFade ease-in-out infinite 2s;
    -webkit-animation: ArrowFade ease-in-out infinite 2s;
}

@keyframes ArrowFade {
    0% {
        opacity: 1;
        transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 0.4;
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> End => arrow <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

.text-header h3 {
    color: var(--green-color);
    font-weight: bold;
    font-size: 30px;
    margin: 10px;
}

.text-header p {
    color: #555555;
    margin: 10px;
    font-size: 17px;
}


.clientsection {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 50px 0;
}

    .clientsection p {
        font-size: 17px;
    }

.bg-perfume {
    overflow: hidden;
    position: relative;
}

    .bg-perfume::after {
        position: absolute;
        top: 80%;
        left: 0;
        border-radius: 50px;
        background-color: var(--gold-color);
        height: 50%;
        width: 100%;
        content: "";
        z-index: -1;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        -ms-border-radius: 50px;
        -o-border-radius: 50px;
    }


.clientsection::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/consultation-shape1-1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
    content: "";
}

.clientsection::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background-image: url(images/pat-3.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
    content: "";
}



.bg-colmun-text {
    text-align: center;
    padding: 20px;
    background-color: #ededed;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    margin: 10px;
}

    .bg-colmun-text h4 {
        font-size: 25px;
    }

    .bg-colmun-text p {
        font-weight: 500;
        color: #474747;
        font-size: 18px;
    }

    .bg-colmun-text::after {
        position: absolute;
        top: 0;
        right: 0;
        background-image: url(images/consultation-shape1-1.png);
        background-repeat: no-repeat;
        background-size: cover;
        height: 100px;
        width: 100px;
        content: '';
    }

.bg-colmun-title {
    text-align: start;
    padding: 50px;
}

    .bg-colmun-title h2 {
        font-weight: 600;
        padding: 10px;
    }

    .bg-colmun-title p {
        color: #747474;
    }

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

    .about-circle i {
        background-color: var(--green-color);
        padding: 10px;
        height: 50px;
        width: 50px;
        font-size: 20px;
        color: var(--white-color);
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        margin: 15px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

/* Why Us */

.arrow {
    color: var(--white-color);
    font-size: 25px;
}


.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: end;
    -webkit-tap-highlight-color: transparent;
}

    .owl-theme .owl-nav [class*=owl-]:hover {
        background: transparent !important;
        color: var(--orange-color) !important;
        text-decoration: none;
    }

        .owl-theme .owl-nav [class*=owl-]:hover i {
            color: var(--orange-color) !important;
        }


.owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 23%;
    background-color: var(--gold-color);
    padding: 5px;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    color: #fff;
    transform: translate(-37%, -50%);
    -webkit-transform: translate(-37%, -50%);
    -moz-transform: translate(-37%, -50%);
    -ms-transform: translate(-37%, -50%);
    -o-transform: translate(-37%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 25px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
}


@media (max-width:992px) {
    .owl-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 30%;
        left: 50%;
        background-color: var(--gold-color);
        padding: 5px;
        height: 70px;
        width: 70px;
        border-radius: 50%;
        color: #fff;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        font-size: 15px;
    }

    .header-area .first h6 {
        font-size: 10px;
    }

    .header-area .second h6 {
        display: none;
    }

    .header-area .btn-white {
        text-wrap: nowrap;
        padding: 0 5px;
    }
}

@media (max-width:500px) {
    .owl-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: -60px;
        top: unset;
        right: 0px;
        left: unset;
        background-color: transparent;
        padding: 5px;
        /* height: 50px;
            width: 50px; */
        border-radius: 50%;
        color: #fff;
        background-color: var(--gold-color);
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        font-size: 15px;
    }

    .arrows {
        font-size: 25px;
        background-color: var(--gold-color);
        padding: 10px;
        height: 40px;
        width: 40px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }
}


/* footer */



.footer {
    background: #000;
    font-size: 16px;
}

    .footer .copyrights {
        display: flex;
        justify-content: space-between !important;
        width: 100%;
    }

.upperFooter {
    margin-bottom: 10px;
    box-shadow: 1px 1opx 15px #000;
}

.footer-newsletter {
    padding: 50px 10px;
    background: var(--gold-color);
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

    .footer-newsletter .col-lg-6:first-child {
        border-right: 1px solid #fff;
    }

    .footer-newsletter .input-group .input-group-text {
        background-color: var(--black-color) !important;
        border-color: #000;
        color: var(--white-color);
        cursor: pointer;
        text-decoration: none;
    }

    .footer-newsletter h4 {
        font-size: 28px;
        margin: 0 0 10px 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        color: var(--white-color);
    }

    .footer-newsletter p {
        font-size: 17px;
        color: #e4e4e4;
    }




.footer .footer-top {
    background: white url(images/luchia.png) no-repeat right top;
    background-size: contain;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }

    .footer {
        margin-bottom: 75px;
    }
}

.footer .footer-top .footer-info {
    margin-bottom: 30px;
}

    .footer .footer-top .footer-info .logo {
        line-height: 0;
        margin-bottom: 15px;
    }

    .footer .footer-top .footer-info .logo-foter img {
        /* max-height: 40px; */
        margin-right: 6px;
    }

    .footer .footer-top .footer-info p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0;
    }

.footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-block;
    color: var(--p-color);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

    .footer .footer-top .social-links a:hover {
        color: var(--s-color);
    }

.footer .footer-top h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--p-color);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-top .footer-links {
    margin-bottom: 30px;
}

    .footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .footer-top .footer-links ul i {
            padding-right: 2px;
            color: #d0d4fc;
            font-size: 12px;
            line-height: 0;
        }

        .footer .footer-top .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

            .footer .footer-top .footer-links ul li:first-child {
                padding-top: 0;
            }

        .footer .footer-top .footer-links ul a {
            color: var(--black-color);
            transition: 0.3s;
            display: inline-block;
            line-height: 1;
            text-decoration: none;
        }

            .footer .footer-top .footer-links ul a:hover {
                color: var(--green-color);
            }

.footer .footer-top .footer-contact ul {
    list-style: none;
    padding: 0;
}

    .footer .footer-top .footer-contact ul li {
        margin: 10px 0;
    }

        .footer .footer-top .footer-contact ul li a {
            color: var(--black-color);
            text-decoration: none;
        }

        .footer .footer-top .footer-contact ul li span i {
            color: var(--green-color);
        }


.footer .cardimage {
    width: 60px;
}

.footer .copyright {
    /* padding-top: 20px; */
    margin-top: 10px;
    color: #fff;
}

    .footer .copyright a {
        color: var(--white-color);
    }






/* Product Section //------------------- */


.relat-material a img {
    max-width: 100%;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
}


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

    .dealCardBody .aftersale :last-child {
        text-decoration: line-through;
        margin-left: 10px;
        color: #acacac;
        font-size: 17px;
    }

.ProductSection {
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

    .ProductSection::after {
        position: absolute;
        top: 3%;
        left: 0;
        z-index: -1;
        width: 300px;
        height: 300px;
        background-image: url(images/pat-1.png);
        /* background-position: center; */
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.1;
        content: "";
    }

    .ProductSection::before {
        position: absolute;
        bottom: 10%;
        right: 0;
        z-index: -1;
        width: 300px;
        height: 300px;
        background-image: url(images/pat-1.png);
        /* background-position: center; */
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.1;
        content: "";
    }


.bg-sec {
    background-color: var(--gold-color);
    height: 100px;
    width: 100%;
}

/* loader */

.loader {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 6.250em;
    height: 6.250em;
    animation: rotate5123 2.4s linear infinite;
}

.white {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    animation: flash 2.4s linear infinite;
    opacity: 0;
}

.dot {
    position: absolute;
    margin: auto;
    width: 2.4em;
    height: 2.4em;
    border-radius: 100%;
    transition: all 1s ease;
}

    .dot:nth-child(2) {
        top: 0;
        bottom: 0;
        left: 0;
        background: var(--gold-color);
        animation: dotsY 2.4s linear infinite;
    }

    .dot:nth-child(3) {
        left: 0;
        right: 0;
        top: 0;
        background: var(--green-color);
        animation: dotsX 2.4s linear infinite;
    }

    .dot:nth-child(4) {
        top: 0;
        bottom: 0;
        right: 0;
        background: #99CC00;
        animation: dotsY 2.4s linear infinite;
    }

    .dot:nth-child(5) {
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--black-color);
        animation: dotsX 2.4s linear infinite;
    }

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

    10% {
        width: 6.250em;
        height: 6.250em;
    }

    66% {
        width: 2.4em;
        height: 2.4em;
    }

    100% {
        transform: rotate(360deg);
        width: 6.250em;
        height: 6.250em;
    }
}

@keyframes dotsY {
    66% {
        opacity: .1;
        width: 2.4em;
    }

    77% {
        opacity: 1;
        width: 0;
    }
}

@keyframes dotsX {
    66% {
        opacity: .1;
        height: 2.4em;
    }

    77% {
        opacity: 1;
        height: 0;
    }
}

@keyframes flash {
    33% {
        opacity: 0;
        border-radius: 0%;
    }

    55% {
        opacity: .6;
        border-radius: 100%;
    }

    66% {
        opacity: 0;
    }
}



.loading {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 99999999999;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.under-intro {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 20px 0;
    position: relative;
}

.layer-under {
    position: absolute;
    top: 15px;
    left: 15px;
    bottom: 15px;
    right: 15px;
    border: 1px solid var(--gold-color);
    background-color: #00000061;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
}

    .layer-under a {
        color: var(--white-color);
        font-size: 20px;
        letter-spacing: 2px;
        font-weight: bold;
        text-decoration: none;
    }

.under-intro::after {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-image: url(images/dot.png);
    background-size: cover;
    height: 100px;
    width: 100px;
    z-index: -1;
    content: '';
}

.underIntro {
    padding: 20px;
    margin: 10px 0;
}

.under-intro-text {
    text-align: center;
    margin: 10px 0;
}

    .under-intro-text h2 {
        color: var(--black-color);
        font-size: 40px;
        font-weight: 600;
        letter-spacing: 5px;
        margin-bottom: 0;
    }

    .under-intro-text h4 {
        color: var(--black-color);
        font-size: 35px;
        font-weight: 600;
    }

    .under-intro-text h5 {
        color: var(--gold-color);
    }

    .under-intro-text p {
        color: #000;
    }

.underIntro .col-md-2:nth-child(even) {
    margin-top: 50px;
}

@media (max-width:992px) {
    .underIntro .col-md-2:nth-child(even) {
        margin-top: unset;
    }
}

/* Mobile Mnue  */


.MobailBar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: #fff;
    box-shadow: 1px 1px 1px 1px #000;
    z-index: 99;
}

    .MobailBar p {
        margin-bottom: 0;
    }

    .MobailBar i {
        color: var(--p-color);
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 2;
    }

    .MobailBar a {
        font-size: 17px;
        color: var(--p-color);
    }

    .MobailBar .Shopping {
        color: var(--p-color);
        background-color: var(--green-color);
        padding: 11px;
        font-size: 20px;
    }


@media (max-width:992px) {
    .under-intro-text h2 {
        font-size: 30px;
    }

    .under-intro-text h4 {
        font-size: 28px;
    }

    .MobailBar {
        display: flex;
    }

    .Acount,
    .nav-link.cart,
    .language {
        display: none;
    }

    .MobailBar .cart span {
        background-color: var(--gold-color) !important;
        color: #fff !important;
        height: 30px;
        width: 30px;
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }

    .arrow-up {
        bottom: 120px;
    }
}

.offer-modal-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#exampleModalOffer .modal-body,
#exampleModalOffer .modal-header {
    background-color: var(--white-color);
    border: 0 !important;
}

.offer-modal-text h2 {
    color: var(--gold-color);
    font-weight: 700;
}

.offer-modal-text h6 {
    color: var(--green-color);
    font-size: 30px;
}

.offer-modal-text p {
    color: #bdbdbd;
}

/* Nav Taps / /--------------- */

.nav-taps {
    background-color: var(--white-color) !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    position: relative;
    color: var(--green-color);
}

    .nav-taps:hover {
        color: var(--gold-color);
    }


    .nav-taps::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50px;
        height: 1px;
        width: 0%;
        background-color: var(--green-color);
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
    }

    .nav-taps.active::after {
        content: "";
        position: absolute;
        bottom: 0px;
        left: 0px;
        height: 1px;
        width: 100%;
        transition: all 0.6s;
        -webkit-transition: all 0.6s;
        -moz-transition: all 0.6s;
        -ms-transition: all 0.6s;
        -o-transition: all 0.6s;
    }

    .nav-taps:hover::after {
        content: "";
        width: 100%;
        left: 0px;
    }

/* fadeInUp animation  */

.fadeInUp {
    animation: fadeInUp 2s alternate;
    -webkit-animation: fadeInUp 2s alternate;
}


@keyframes fadeInUp {
    0% {
        transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        opacity: 0;
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 40% !important;
    margin: 0;
}

.search-modal .form-control {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid #000 !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    position: relative;
}


.search-modal i {
    position: absolute;
    top: 70px;
    right: 20px;
}



.search-body {
    width: 50%;
    margin: auto;
}

@media (max-width:1200px) {
    .search-body {
        width: 100%;
    }
}

@media (max-width:992px) {
    .modal-fullscreen {
        height: 30% !important;
    }


    @keyframes scaleOut {
        0% {
            opacity: 0;
            -webkit-transition: opacity 0.4s ease;
            -khtml-transition: opacity 0.4s ease;
            -moz-transition: opacity 0.4s ease;
            -ms-transition: opacity 0.4s ease;
            -o-transition: opacity 0.4s ease;
            transition: opacity 0.4s ease;
            transform: scale(1.5);
            -webkit-transform: scale(1.5);
            -moz-transform: scale(1.5);
            -ms-transform: scale(1.5);
            -o-transform: scale(1.5);
        }
    }
}


.button {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.button {
    --primary-color: #111;
    --hovered-color: var(--gold-color);
    position: relative;
    display: flex;
    font-weight: 600;
    font-size: 20px;
    gap: 0.5rem;
    align-items: center;
    margin-left: 20px;
}

    .button p {
        margin: 0;
        position: relative;
        font-size: 20px;
        color: var(--primary-color);
    }

    .button::after {
        position: absolute;
        content: "";
        width: 0;
        left: 0;
        bottom: -7px;
        background: var(--hovered-color);
        height: 2px;
        transition: 0s ease-out;
        -webkit-transition: 0s ease-out;
        -moz-transition: 0s ease-out;
        -ms-transition: 0s ease-out;
        -o-transition: 0s ease-out;
    }

    .button p::before {
        position: absolute;
        /*   box-sizing: border-box; */
        content: "Add To Cart";
        width: 0%;
        inset: 0;
        color: var(--hovered-color);
        overflow: hidden;
        transition: 0.3s ease-out;
    }

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

    .button:hover p::before {
        width: 100%;
    }

    .button:hover i {
        transform: translateX(4px);
        color: var(--hovered-color);
    }

    .button i {
        color: var(--primary-color);
        transition: 0.2s;
        position: relative;
        width: 15px;
        transition-delay: 0.2s;
    }

/* // ------------------------------------- */

/* About Page // ------------------- */

.bannerbage {
    width: 100%;
    padding: 20px;
    /* background-color: #f8f8f8; */
    background: linear-gradient(to bottom, #f8f8f8 80%, #fff);
}

    .bannerbage i {
        font-size: 15px;
    }

    .bannerbage .bannerText {
        text-decoration: none;
        color: var(--green-color);
        font-size: 18px;
    }


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


.about-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 0 20px 10px #0000001d;
}

.about-section {
    margin: 25px 0;
    position: relative;
}

.qute::after {
    position: absolute;
    top: 0;
    left: -50px;
    background-image: url(images/quote.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 50px;
    height: 50px;
    content: "";
    opacity: 0.2;
}

.about-section .row {
    display: flex;
    align-items: center;
}

    .about-section .row .col-lg-3.col-md-6:nth-child(2) {
        margin-top: 100px;
    }

    .about-section .row .col-lg-3.col-md-6:nth-child(5) {
        margin-top: 100px;
    }

.rev:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #f6f6f6;
    border-radius: 10px;
    padding: 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 15px 0;
}

.qute p span {
    /* font-weight: bold; */
    text-decoration: underline;
    font-size: 20px;
    background-color: var(--gold-color);
    color: var(--white-color);
    padding: 0 5px;
}



@media (max-width:765px) {
    .about-section .row .col-lg-3.col-md-6.col-6:nth-child(2) {
        margin-top: 50px;
    }

    .about-section .row .col-lg-3.col-md-6.col-6:nth-child(5) {
        margin-top: -10px;
    }

    .about-section .col-6 {
        margin: 10px auto;
    }

    .about-section .row {
        display: flex;
        align-items: unset;
    }

    .qute::after {
        position: absolute;
        top: -20px;
        left: 0px;
        background-image: url(images/quote.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 50px;
        height: 50px;
        content: "";
        opacity: 0.2;
    }
}


/* // Contact Page  // ----------------------- */


.ftco-section {
    padding: 5em 0
}

.bg-primary {
    background: var(--gold-color) !important;
}


.ftco-no-pt {
    padding-top: 0;
}

.ftco-no-pb {
    padding-bottom: 0;
}

.heading-section {
    font-size: 28px;
    color: #000;
}

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

.form-control {
    height: 52px;
    background: #fff;
    color: #000;
    font-size: 14px;
    border-radius: 2px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .form-control::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: rgba(0, 0, 0, 0.7) !important;
    }

    .form-control::-moz-placeholder {
        /* Firefox 19+ */
        color: rgba(0, 0, 0, 0.7) !important;
    }

    .form-control:-ms-input-placeholder {
        /* IE 0+ */
        color: rgba(0, 0, 0, 0.7) !important;
    }

    .form-control:-moz-placeholder {
        /* Firefox 18- */
        color: rgba(0, 0, 0, 0.7) !important;
    }

textarea.form-control {
    height: inherit !important;
}

.wrapper {
    width: 100%;
    -webkit-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
}

.contact-wrap {
    background: #fff;
}

    .contact-wrap h3 {
        color: var(--green-color);
    }

.info-wrap h3 {
    color: #fff;
}

.info-wrap .dbox {
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

    .info-wrap .dbox:last-child {
        margin-bottom: 0;
    }

    .info-wrap .dbox p {
        margin-bottom: 0;
    }

        .info-wrap .dbox p span {
            font-weight: 600;
            color: #fff;
        }

        .info-wrap .dbox p a {
            color: #fff;
            text-decoration: none;
        }

    .info-wrap .dbox .icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        margin-right: 10px;
    }

        .info-wrap .dbox .icon span {
            font-size: 20px;
            color: #fff;
        }

    .info-wrap .dbox .text {
        width: calc(100% - 50px);
    }

@media (min-width: 992px) {
    .info-wrap {
        margin-top: -20px;
        margin-bottom: -20px;
        border-radius: 5px;
    }
}


#contactForm .error {
    color: red;
    font-size: 12px;
}

#contactForm .form-control {
    font-size: 16px;
}

#message {
    resize: vertical;
}

#form-message-warning,
#form-message-success {
    display: none;
}

#form-message-warning {
    color: red;
}

#form-message-success {
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
}

.submitting {
    float: left;
    width: 100%;
    padding: 10px 0;
    display: none;
    font-size: 16px;
    font-weight: bold;
}

.form-group .form-control {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .form-group .form-control::placeholder {
        color: #aeaeae !important;
    }

    .form-group .form-control:focus {
        font-size: 16px;
        border-color: var(--gold-color);
    }

.form-group label {
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin: 25px 0;
}

.ifram {
    margin-top: 20px;
}


/* Git Page  / / -------------------  */


.giftBG {
    height: 50vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* offer-page //- -------- */
.offerBG {
    height: 50vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.offer-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2f2e2e48;
    backdrop-filter: blur(3px);
}


.offerCircle {
    color: var(--white-color);
    border: 1px solid #ddd;
    font-weight: 600;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    margin: 20px;
}








/* --------------- */

/* xZoom Styles below */


.xzoom-thumbs {
    margin-top: 10px;
}

.xzoom-container {
    width: 100% !important;
}


.xzoom-source img,
.xzoom-preview img,
.xzoom-lens img {
    display: block;
    max-width: none;
    max-height: none;
}



.xzoom-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.xzoom-thumbs {
    text-align: center;
    margin-bottom: 10px;
}

.xzoom,
.xzoom2,
.xzoom3,
.xzoom4,
.xzoom5 {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

/* Thumbs */

.xzoom-gallery,
.xzoom-gallery2,
.xzoom-gallery3,
.xzoom-gallery4,
.xzoom-gallery5 {
    border: 1px solid #cecece;
    margin-left: 5px;
    margin-bottom: 10px;
    width: 100px !important;
    height: 100px !important;
}

.xzoom-source {
    display: block;
    position: static;
    float: none;
    clear: both;
}

.xzoom-hidden {
    display: block;
    position: static;
    float: none;
    clear: both;
    overflow: hidden;
}



.xzoom {
    width: 400px !important;
    height: 400px !important;
    object-fit: cover;
    object-position: center;
}



/* Product-d  */

.barRate {
    display: flex;
    flex-direction: column;
}

    .barRate img {
        width: 300px;
    }

.bg-lig {
    background-color: rgb(251 252 253) !important;
}


.prod-d h3 {
    color: var(--green-color);
}

.bottl-d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40%;
}


@media (max-width:992px) {
    .bottl-d {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

#default {
    padding: 20px 0;
}


.prod-d .rate {
    margin: 10px 0;
}

.befSale {
    text-decoration: line-through;
}

.price-disc {
    display: flex;
    align-items: center;
}

    .price-disc h4 {
        color: var(--gold-color);
        font-weight: 700;
    }

    .price-disc .befSale {
        margin-left: 15px;
    }

.SizeBottl {
    display: flex;
    align-items: center;
    color: var(--green-color);
}

    .SizeBottl .form-check {
        margin-left: 15px;
        color: var(--black-color);
    }

    .SizeBottl .form-check-input:checked {
        background-color: var(--gold-color);
        border-color: var(--gold-color);
    }

    .SizeBottl .form-check-input:focus {
        border-color: transparent !important;
        outline: 0px;
        box-shadow: rgba(255, 255, 255, 0.25) 0px 0px 0px 0.25rem;
    }


.Quantity {
    display: flex;
    align-items: center;
    color: var(--green-color);
}

    .Quantity .input-group {
        width: 100px;
        margin-left: 15px;
    }

        .Quantity .input-group input {
            height: 30px;
        }

.plus,
.minus {
    background-color: var(--gold-color);
    color: var(--white-color);
    height: 30px;
}

    .plus i,
    .minus i {
        font-size: 10px;
    }

.Subtotal {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: var(--green-color);
}

    .Subtotal h5 {
        color: var(--black-color);
        margin-left: 15px;
    }



.btn-card {
    color: var(--white-color);
    border: 1px solid var(--green-color);
    background-color: var(--green-color);
    margin-top: 30px;
    padding: 10px 25px;
    border-radius: 0 !important;
    font-weight: 600;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    -o-transition: all 0.4s;
}

    .btn-card span {
        background-color: var(--gold-color);
        color: var(--green-color);
        padding: 5px 10px;
        margin-left: 20px;
        transition: all 0.7s;
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -ms-transition: all 0.7s;
        -o-transition: all 0.7s;
    }

    .btn-card:hover span {
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

        .btn-card:hover span i {
            transform: rotate(12deg);
            -webkit-transform: rotate(12deg);
            -moz-transform: rotate(12deg);
            -ms-transform: rotate(12deg);
            -o-transform: rotate(12deg);
        }

    .btn-card:hover {
        border-bottom: 1px solid var(--green-color);
    }



.rating-Rev {
    color: var(--gold-color);
    text-align: center;
    font-size: 25px;
}

.Customer-Reviews form {
    box-shadow: 0 0 20px 1px #00000053;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    color: var(--white-color);
    background-color: var(--gold-color);
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent !important;
    outline: 0;
    box-shadow: var(--gold-color) !important;
}

.accordion {
    margin: 20px 0;
}

.CommentRev {
    background-color: #f7f7f7;
    padding: 20px;
}

    .CommentRev img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

.customerComent h5 {
    margin: 10px 0;
}

.button-group .btn-green {
    color: var(--white-color);
    background-color: var(--gold-color);
    margin-top: 30px;
    padding: 10px 25px;
    border-radius: 0 !important;
    font-weight: 600;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    -o-transition: all 0.4s;
}

    .button-group .btn-green span {
        background-color: var(--green-color);
        padding: 5px 10px;
        margin-left: 20px;
        transition: all 0.7s;
        -webkit-transition: all 0.7s;
        -moz-transition: all 0.7s;
        -ms-transition: all 0.7s;
        -o-transition: all 0.7s;
    }

    .button-group .btn-green:hover {
        background-color: transparent;
        color: var(--gold-color);
        border-bottom: 1px solid var(--gold-color);
    }

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



@media (max-width:992px) {
    .buttonModal {
        display: flex;
        align-items: start;
        flex-direction: column;
        margin-top: 0 !important;
    }

    .modal-body .Quantity {
        margin-top: 25px !important;
    }

    .button-group {
        display: flex;
        flex-direction: column;
    }
}



.FooterList {
    list-style: none;
    padding: 0;
    display: ruby;
}

    .FooterList li {
        float: left;
    }

.cart span {
    color: #fff;
}



.ftco-section {
    padding: 7em 0;
}

.ftco-no-pt {
    padding-top: 0;
}

.ftco-no-pb {
    padding-bottom: 0;
}

.heading-section {
    font-size: 28px;
    color: #000;
}

.bg-login {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.wrap {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
}

.bg-login,
.login-wrap {
    width: 50%;
}

@media (max-width: 991.98px) {

    .bg-login,
    .login-wrap {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .wrap .bg-login {
        height: 250px;
    }
}

.login-wrap {
    position: relative;
    background: #fff h3;
    background-font-weight: 300;
}

.form-group {
    position: relative;
    font-size: 16px;
}

    .form-group .label {
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #000;
        font-weight: 700;
    }

    .form-group a {
        color: gray;
    }

.form-control {
    background: #fff;
    color: #000;
    font-weight: bold;
    font-size: 15px !important;
    border-radius: 15px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .form-control::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: rgba(0, 0, 0, 0.2) !important;
    }

    .form-control::-moz-placeholder {
        /* Firefox 19+ */
        color: rgba(0, 0, 0, 0.2) !important;
    }

    .form-control:-ms-input-placeholder {
        /* IE 10+ */
        color: rgba(0, 0, 0, 0.2) !important;
    }

    .form-control:-moz-placeholder {
        /* Firefox 18- */
        color: rgba(0, 0, 0, 0.2) !important;
    }

    .form-control:focus,
    .form-control:active {
        outline: none !important;
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid var(--green-color);
    }

.social-media {
    position: relative;
    width: 100%;
}

    .social-media .social-icon {
        display: block;
        width: 40px;
        height: 40px;
        background: transparent;
        text-decoration: none;
        border: 1px solid var(--p-color);
        #000: 16px;
        margin-right: 5px;
        border-radius: 50%;
    }

        .social-media .social-icon span {
            color: var(--p-color);
        }

        .social-media .social-icon:hover,
        .social-media .social-icon:focus {
            background: var(--p-color);
        }

            .social-media .social-icon:hover span,
            .social-media .social-icon:focus span {
                color: #fff;
            }

.checkbox-wrap {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .checkbox-wrap input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
}

    /* Create the checkmark/indicator (hidden when not checked) */
    .checkmark:after {
        content: "\f0c8";
        font-family: "FontAwesome";
        position: absolute;
        color: rgba(0, 0, 0, 0.1);
        font-size: 20px;
        margin-top: -4px;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

@media (prefers-reduced-motion: reduce) {
    .checkmark:after {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

/* Show the checkmark when checked */
.checkbox-wrap input:checked ~ .checkmark:after {
    display: block;
    content: "\f14a";
    font-family: "FontAwesome";
    color: rgba(0, 0, 0, 0.2);
}

/* Style the checkmark/indicator */
.checkbox-primary {
    color: var(--black-color);
}

    .checkbox-primary input:checked ~ .checkmark:after {
        color: var(--green-color);
    }

.btn {
    cursor: pointer;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-size: 17px;
    padding: 10px 20px;
}

    .btn:hover,
    .btn:active,
    .btn:focus {
        outline: none;
    }



.color {
    color: var(--gold-color);
}

.title {
    color: var(--black-color);
    font-weight: 600;
    font-size: 20px;
}

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

    .firstdiv h4 {
        margin-bottom: 10px;
        font-size: 20px;
    }

.Shopping-d img {
    width: 100px;
}

.banner-intro {
    background: #f8f9fa;
}

    .banner-intro .intro-image {
        height: 100vh;
        object-fit: cover;
    }

    .banner-intro h1,
    .banner-intro p {
        direction: rtl;
    }

    .banner-intro h1 {
        color: var(--p-color);
        font-size: 3.5rem;
    }

    .banner-intro .lead {
        color: #333;
        font-size: 1.5rem;
    }

    .banner-intro .btn {
        background-color: var(--p-color);
        color: #fff;
        width: 35%;
        margin-top: 5%;
    }

.products-section .btn {
    background-color: var(--p-color);
    color: #fff;
    width: 25%;
    margin-top: 5%;
}

/* الحاوية العامة */
.category-slider-section {
    background: #fff;
}

/* السلايدر */
.category-swiper {
    padding: 20px 0;
}

/* كل شريحة */
.category-slide {
    width: 180px; /* عرض الشريحة */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .category-slide:hover {
        transform: translateY(-6px);
    }

/* رابط داخلي */
.category-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* إطار الصورة – مربع بحد */
.category-image-wrapper {
    width: 230px;
    height: 230px;
    border-radius: 12px; /* مربّع بحواف بسيطة */
    overflow: hidden;
    border: 2px solid #ddd; /* حدود رمادية خفيفة */
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* تأثير الهوفر على الإطار */
.category-slide:hover .category-image-wrapper {
    border-color: var(--p-color);
    box-shadow: 0 0 10px #45001c85;
}

/* صورة الفئة */
.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-slide:hover .category-img {
    transform: scale(1.05);
}

/* عنوان الفئة */
.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 12px;
    color: #000;
    transition: color 0.3s ease;
    text-align: center;
}

.category-slide:hover .category-title {
    color: var(--p-color);
}

/* عدد العناصر */
.category-title .count {
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
    margin-right: 5px;
}

.products-section {
    background: #f8f9fa;
}

.product-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

    .product-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }

/* صورة المنتج */
.product-image {
    position: relative;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        display: block;
        transition: transform 0.4s ease;
    }

.product-box:hover .product-image img {
    transform: scale(1.08);
}

/* أيقونة العرض تظهر من أسفل لأعلى */
.view-icon {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #45001c85;
    color: #fff;
    padding: 8px 10px;
    border-radius: 50%;
    font-size: 1rem;
    transition: bottom 0.3s ease;
    text-decoration: none;
}

.product-image:hover .view-icon {
    bottom: 75px;
}

/* معلومات المنتج */
.product-info {
    padding: 15px;
    text-align: center;
}

    .product-info .product-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }

.product-price {
    color: var(--s-color);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
}

/* زر إضافة للسلة */
.add-cart-btn {
    position: relative;
    display: inline-block;
    background: var(--p-color);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}

    .add-cart-btn:hover {
        background: var(--p-color);
        color: var(--p-color);
    }

/* أيقونة السلة تتحرك من أسفل لأعلى */
.cart-icon {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    transition: bottom 0.3s ease;
    color: #fff;
}

.add-cart-btn:hover .cart-icon {
    bottom: 8px;
}

/* خمس بطاقات بالصف على الشاشات الكبيرة */
@media (min-width: 1200px) {
    .col-lg-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* تنسيق البطاقة */
.offer-card {
    background: #ededed;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .offer-card:hover {
        transform: translateY(-5px);
    }

    .offer-card img {
        max-width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .offer-card h5 {
        font-size: 30px;
        margin: 10px 0 5px;
    }

    .offer-card p {
        color: var(--green-color);
        font-weight: bold;
    }

/* أسهم Swiper تحت السلايدر */
.offers-swiper .swiper-button-prev,
.offers-swiper .swiper-button-next {
    position: static; /* إلغاء الوضع الافتراضي */
    display: inline-block;
    margin: 20px 10px 0;
    background-color: var(--p-color);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
}

    .offers-swiper .swiper-button-prev:hover,
    .offers-swiper .swiper-button-next:hover {
        background-color: var(--s-color);
    }

    .offers-swiper .swiper-button-prev:after,
    .offers-swiper .swiper-button-next:after {
        font-size: 18px;
    }

.offers-swiper {
    text-align: center; /* لتوسيط الأسهم */
}

/* إعادة استخدام تصميم بطاقات المنتجات */
.offer-card.product-box {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.3s;
}

    .offer-card.product-box:hover {
        transform: translateY(-5px);
    }

/* شارة الخصم */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e63946;
    color: #fff;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 5;
}

/* السعر */
.product-price {
    font-size: 17px;
    margin-top: 5px;
}

    .product-price .old-price {
        text-decoration: line-through;
        color: #888;
        margin-right: 6px;
    }

    .product-price .new-price {
        color: var(--s-color);
        font-weight: bold;
    }

/************************************************about-page9*******************************************************/
.about-page9 h1,
.about-page9 h2,
.about-page9 h3,
.about-page9 h4,
.about-page9 h5,
.about-page9 h6 {
}

.about-page9 a,
.about-page9 a:hover,
.about-page9 a:focus,
.about-page9 a:active {
    text-decoration: none;
    outline: none;
}

    .about-page9 a,
    .about-page9 a:active,
    .about-page9 a:focus {
        color: #333;
        text-decoration: none;
        transition-timing-function: ease-in-out;
        transition-duration: .2s;
    }

.about-page9 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.about-page9 span, .about-page9 a, .about-page9 a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.about-page9 .section-head {
    margin-bottom: 60px;
}

    .about-page9 .section-head h4 {
        position: relative;
        padding: 0;
        color: #f2662c;
        line-height: 1;
        letter-spacing: 0.3px;
        font-size: 34px;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        margin-bottom: 30px;
    }

        .about-page9 .section-head h4:before {
            content: '';
            width: 60px;
            height: 3px;
            background: #f2662c;
            position: absolute;
            left: 0px;
            bottom: -10px;
            right: 0;
            margin: 0 auto;
        }

        .about-page9 .section-head h4 span {
            font-weight: 700;
            padding-bottom: 5px;
            color: #2f2f2f;
        }

.about-page9 p.service_text {
    color: #cccccc !important;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.about-page9 .section-head p, .about-page9 p.awesome_line {
    color: #818181;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

.about-page9 .extra-text {
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
}

    .about-page9 .extra-text::before {
        content: '';
        width: 60px;
        height: 3px;
        background: #f91942;
        position: absolute;
        left: 0px;
        bottom: -10px;
        right: 0;
        margin: 0 auto;
    }

    .about-page9 .extra-text span {
        font-weight: 700;
        color: #f91942;
    }

.about-page9 .item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    transition: all 0.5s ease 0s;
}

    .about-page9 .item:hover {
        background: #f2662c;
        box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
    }

        .about-page9 .item:hover .item, .about-page9 .item:hover span.icon {
            background: #fff;
            border-radius: 10px;
        }

        .about-page9 .item:hover h6, .about-page9 .item:hover p {
            color: #fff;
        }

    .about-page9 .item .icon {
        font-size: 40px;
        margin-bottom: 25px;
        color: #f2662c;
        width: 90px;
        height: 90px;
        line-height: 96px;
        border-radius: 50px;
    }

    .about-page9 .item p {
        font-size: 16px;
        line-height: 26px;
    }

    .about-page9 .item h6 {
        margin-bottom: 20px;
        color: #2f2f2f;
        font-size: 20px;
    }

.about-page9 .mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

.about-page9 .mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}

.about-page9 .mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}

.about-page9 .skills {
    padding-top: 0px;
}

    .about-page9 .skills .prog-item {
        margin-bottom: 25px;
    }

        .about-page9 .skills .prog-item:last-child {
            margin-bottom: 0;
        }

        .about-page9 .skills .prog-item p {
            font-weight: 500;
            font-size: 15px;
            margin-bottom: 10px;
        }

        .about-page9 .skills .prog-item .skills-progress {
            width: 100%;
            height: 10px;
            background: #e0e0e0;
            border-radius: 20px;
            position: relative;
        }

            .about-page9 .skills .prog-item .skills-progress span {
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                background: #f91942;
                width: 10%;
                border-radius: 10px;
                transition: all 1s;
            }

                .about-page9 .skills .prog-item .skills-progress span:after {
                    content: attr(data-value);
                    position: absolute;
                    top: -5px;
                    right: 0;
                    font-size: 10px;
                    font-weight: 600;
                    color: #fff;
                    background: rgba(0, 0, 0, 0.9);
                    padding: 3px 7px;
                    border-radius: 30px;
                }

.about-page9 .item .icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: #f2662c;
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50%; /* شكل دائري افتراضي */
    transition: border-radius 0.5s ease, background 0.5s ease; /* انتقال ناعم */
    display: inline-block;
}

/* عند الـ hover يتحول إلى مربع */
.about-page9 .item:hover .icon {
    border-radius: 15px; /* يتحول إلى مربع مع زوايا بسيطة */
}

/* لضبط 4 كروت في الصف */
.about-page9 .col-lg-3 {
    margin-bottom: 30px;
}

/* توحيد لون جميع الأيقونات وخلفياتها */
.about-page9 .item .icon {
    background: #c3790438; /* خلفية برتقالية فاتحة موحدة */
    color: var(--p-color); /* لون الأيقونة نفسه */
}

/* عند الـ hover يبقى نفس اللون الموحد */
.about-page9 .item:hover {
    background: var(--p-color); /* لون الخلفية عند التحويم */
}

    .about-page9 .item:hover .icon {
        background: #fff; /* أيقونة بخلفية بيضاء */
        color: var(--p-color); /* نفس لون الأيقونة الأساسي */
    }

    .about-page9 .item:hover h6,
    .about-page9 .item:hover p {
        color: #fff; /* النصوص تتحول إلى أبيض للوضوح */
    }

/************************************************about-page9*******************************************************/

.water-cta.parallax {
    position: relative;
    background-image: url('includes/images/slid1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* هذا هو السر للبارالاكس */
    background-position: center center;
    padding: 80px 0;
}

.water-cta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(var(--bs-border-width) * -1);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 2px;
}

.icons .nav-link {
    padding: 8px 7px !important;
}

.category-slider-section {
    overflow-x: hidden;
}

.section-heading {
    position: relative;
    opacity: 0; /* مخفي مبدئياً */
    transform: translateY(20px); /* نزول بسيط */
    transition: all 0.8s ease;
    color: var(--p-color);
}

    .section-heading h2 {
        font-size: 3rem;
    }


    /* الخط السفلي المتحرك */
    .section-heading::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        width: 0;
        height: 3px;
        background-color: var(--p-color); /* لون أسفل العنوان */
        transform: translateX(-50%);
        transition: width 0.8s ease;
        color: var(--p-color);
    }

    /* عند الظهور */
    .section-heading.visible {
        opacity: 1;
        transform: translateY(0);
    }

        .section-heading.visible::after {
            width: 80px; /* طول الخط عند التمدد */
        }

.copyright-footer {
    background-color: var(--p-color);
}

.product-image .discount-badge {
    direction: ltr;
}

.btn-products i {
    display: inline-block; /* يسمح بالتحريك */
    transition: transform 0.3s ease; /* مدة وسلاسة الحركة */
}

.btn-products:hover i {
    transform: translateX(-5px); /* يحرك السهم 5px لليسار */
}

@media(max-width: 768px) {
    .navbar .container {
        margin: 0;
        padding: 0;
    }

    .navbar .icons {
        display: none;
    }

    .navbar-collapse {
        background-color: #fff;
    }

    .banner-intro .intro-image {
        height: 50vh;
        object-fit: cover;
    }

    .banner-intro .btn {
        background-color: var(--p-color);
        color: #fff;
        width: 50%;
        margin-top: 5%;
    }

    .add-cart-btn {
        padding: 10px;
    }

    .products-section .btn {
        background-color: var(--p-color);
        color: #fff;
        width: 50%;
        margin-top: 5%;
    }

    .section-heading {
        margin-top: 5%;
    }
}

/* الحالة الأولية (مخفي + أسفل قليلًا) */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    /* عند الظهور */
    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.navbar .icons {
    margin-left: 4%;
}

.navbar-brand {
    margin-right: 4% !important;
}


@media (min-width: 768px) {
    section {
        margin-top: 10%;
    }

    .about-page9 {
        margin-top: 10%;
    }

    .upperFooter {
        margin-top: 10%;
    }

    .banner-intro {
        margin-top: 0%;
    }

    .about-page9-pages {
        margin-top: 0%;
    }

    .upperFooter-pages {
        margin-top: 0%;
    }
}

.contact-link {
    transition: color 0.3s ease;
    text-decoration: none;
}

    .contact-link:hover {
        color: #0dcaf0; /* لون سماوي عند التمرير */
    }

.contact-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 25px;
}

.whatsapp-chat {
    position: fixed;
    left: 0px;
    bottom: 135px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.whatsapp-icon {
    background-color: #25D366;
    color: white;
    font-size: 28px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

    .whatsapp-icon:hover {
        transform: scale(1.1);
    }

.whatsapp-box {
    display: none;
    position: absolute;
    left: 70px;
    bottom: 0;
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid #25d366;
    padding: 15px;
    width: 270px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

    .whatsapp-box h5 {
        margin-bottom: 8px;
        font-size: 18px;
        font-weight: bold;
    }

    .whatsapp-box p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .whatsapp-box a {
        text-decoration: none;
    }

.about-section {
    background: #f8f9fa;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--p-color);
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
}

.about-list li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

    .about-list li .text-primary {
        color: var(--p-color) !important;
    }

.about-section img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.banner-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
    justify-content: center;
}

    .banner-section::before {
        /* طبقة شفافه فوق الصورة لتوضيح النص */
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .banner-section .container {
        position: relative; /* ليتأكد النص فوق طبقة التعتيم */
        z-index: 2;
    }

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}

.banner-subtitle {
    font-size: 1.3rem;
    color: #f1f1f1;
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }
}

/************************************************contact-page6*******************************************************/
.contact-page6 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1.3rem;
}

.contact-page6 {
    margin-top: 0;
}

.contact-page6-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page6-form {
    width: 100%;
    /* max-width: 820px; */
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    z-index: 1000;
    overflow: hidden;
}

.contact-page6-contact-info-form {
    background-color: var(--p-color);
    position: relative;
}

.contact-page6-circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #fff);
    position: absolute;
}

    .contact-page6-circle.one {
        width: 130px;
        height: 130px;
        top: 130px;
        right: -40px;
    }

    .contact-page6-circle.two {
        width: 80px;
        height: 80px;
        top: 10px;
        right: 30px;
    }

.contact-page6-contact-info-form::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--p-color);
    transform: rotate(45deg);
    bottom: 66px;
    left: -13px;
}

.contact-page6-contact-info-form form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.contact-page6-title {
    color: #fff;
    font-weight: 500;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2.5rem;
}

.contact-page6-social-input-containers {
    position: relative;
    margin: 1rem 0;
}

.contact-page6-input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: 0.3s;
    direction: rtl;
}

    .contact-page6-input::placeholder {
        color: #fff;
    }

.contact-page6-social-input-containers.textarea textarea {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 4px;
    resize: none;
    overflow-y: auto;
}

.contact-page6-social-input-containers label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #fafafa;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.contact-page6-social-input-containers.textarea label {
    top: 1rem;
    /* transform: translateY(0); */
}

.contact-page6-btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #111;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

    .contact-page6-btn:hover {
        background-color: var(--p-color);
        color: #fff;
    }

.contact-page6-contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

    .contact-page6-contact-info .contact-page6-title {
        color: var(--p-color);
    }

.contact-page6-text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.contact-page6-social-information {
    display: flex;
    align-items: center;
    color: #555;
    margin: 0.7rem 0;
    font-size: 0.95rem;
}

    .contact-page6-social-information i {
        font-size: 22px;
        margin-right: 8px;
        color: var(--p-color);
    }

.contact-page6-social-media {
    padding: 2rem 0 0 0;
}

    .contact-page6-social-media p {
        color: #333;
    }

.contact-page6-social-icons {
    display: flex;
    margin-top: 0.5rem;
}

    .contact-page6-social-icons a {
        width: 35px;
        height: 35px;
        border-radius: 43px;
        background: linear-gradient(45deg, var(--p-color), #45001cb3);
        color: #fff;
        text-align: center;
        line-height: 35px;
        margin-right: 0.5rem;
        transition: 0.3s;
    }

        .contact-page6-social-icons a:hover {
            background: var(--s-color);
        }

@media (max-width: 850px) {
    .contact-page6-form {
        grid-template-columns: 1fr;
    }

    .contact-page6-contact-info-form::before {
        top: -13px;
        left: initial;
        right: 70px;
    }
}

@media (max-width: 480px) {
    .contact-page6-container {
        padding: 1.5rem;
    }

    .contact-page6-contact-info-form form,
    .contact-page6-contact-info {
        padding: 1.7rem 1.6rem;
    }

    .contact-page6-title {
        font-size: 1.15rem;
    }

    .contact-page6-input,
    .contact-page6-btn {
        padding: 0.45rem 1.2rem;
    }

    .contact-page6-social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

/************************************************contact-page6*******************************************************/
/***********************contact-page6*****************************/
.contact-page6-contact-info {
    text-align: right;
}

.contact-page6-social-information i {
    margin-left: 8px;
    margin-right: 0;
}

.contact-page6-social-icons a {
    margin-right: 0;
    margin-left: 0.5rem;
}

.contact-page6-circle.two {
    left: 30px;
    right: auto;
}

.contact-page6-circle.one {
    right: auto;
    left: -40px;
}

.contact-page6-contact-info-form {
    text-align: right;
}

.contact-page6-social-input-containers label {
    right: 15px;
    left: auto;
}

.contact-page6-contact-info-form::before {
    right: -13px;
    left: auto;
}
/***********************contact-page6*****************************/
/* جعل الأرقام تبدأ من اليمين في حقل الهاتف */
.contact-page6-input.phone-input {
    direction: rtl;
    text-align: right;
}

/* حركة انتقالية للـ label عند الكتابة أو التركيز */
.contact-page6-social-input-containers {
    position: relative;
    margin: 2rem 0;
}

    .contact-page6-social-input-containers label {
        position: absolute;
        right: 15px; /* لأنه RTL */
        top: 50%;
        transform: translateY(-50%);
        color: #fafafa;
        font-size: 0.9rem;
        pointer-events: none;
        transition: 0.3s ease;
    }

    /* عندما يكون الحقل نشط أو فيه نص */
    .contact-page6-input:focus + label,
    .contact-page6-input:not(:placeholder-shown) + label,
    .contact-page6-social-input-containers.textarea textarea:focus + label,
    .contact-page6-social-input-containers.textarea textarea:not(:placeholder-shown) + label {
        padding-bottom: 10px;
        top: -8px;
        font-size: 0.9rem;
        color: #fff;
        right: 0;
    }

.login-wrap h3 {
    color: var(--p-color);
    font-size: 2rem;
}

.signin-form label, .signin-form .label {
    color: var(--p-color);
}

.btn-green {
    background-color: #fff;
    border: 2px solid var(--p-color);
    color: var(--p-color);
    border-radius: 15px !important;
}

    .btn-green:hover {
        background-color: var(--p-color);
        color: #fff;
    }

.color {
    color: var(--p-color);
}

.nav-pills .nav-link {
    border-radius: 15px !important;
    border: 2px solid var(--p-color);
    color: var(--p-color);
}

.nav-pills > li + li {
    margin-right: 2px;
    margin-left: 30px;
}

.ProductSection .nav-item {
    margin-right: 2px;
    margin-left: 30px;
}

    .ProductSection .nav-item:hover {
        background-color: var(--p-color);
        color: #fff !important;
        border-radius: 15px !important;
    }

.nav-pills .nav-link:hover {
    color: #fff !important;
}
/* عند التحويم أو عند التحديد (active) */
.ProductSection .nav-item:hover,
.ProductSection .nav-item.active {
    background-color: var(--p-color);
    color: #fff !important;
    border-radius: 15px !important;
}

/* روابط nav-pills عند التحويم أو التحديد */
.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
    background-color: var(--p-color) !important;
    color: #fff !important;
    border-radius: 15px !important;
}

.product-card-pages {
    margin-bottom: 5%;
}

.offers-section {
    margin-top: 0;
}

    .offers-section .offer-card.product-box {
        padding: 15px;
    }

.return-policy-section .section-title, .terms-section .section-title {
    color: var(--p-color);
    font-size: 3rem;
}

.return-policy-section, .terms-section {
    margin-top: 0;
}

.policy-content li::marker {
    color: var(--p-color);
}

.return-policy-section a, .terms-section a {
    color: var(--p-color);
}

.cart-title {
    text-align: center;
    color: var(--p-color);
    margin-bottom: 30px;
    font-size: 35px;
}

.shopping-cart {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    /* max-width: 1000px; */
    margin: auto;
}

.column-labels label {
    font-weight: bold;
    border-bottom: 2px solid var(--p-color);
    padding-bottom: 10px;
    display: inline-block;
    width: 26%;
    text-align: center;
    font-size: 18px;
    color: var(--p-color);
}

.cart-section .product {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    /* padding: 15px 0; */
    flex-wrap: wrap;
}

.cart-section .product-image {
    margin-left: 20px;
}

    .cart-section .product-image img {
        width: 100px;
        border-radius: 10px;
    }

.cart-section .product-details {
    flex: 1;
    /* padding: 0 20px; */
}

.cart-section .product-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.cart-section .product-description {
    color: #666;
    font-size: 16px;
}

.cart-section .product-price,
.cart-section .product-quantity,
.cart-section .product-removal,
.cart-section .product-line-price {
    width: 18%;
    text-align: center;
    font-weight: bold;
}

    .cart-section .product-quantity input {
        width: 60px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 6px;
        padding: 5px;
    }

.cart-section .remove-product {
    background-color: #d9534f;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}

    .cart-section .remove-product:hover {
        background-color: #c9302c;
    }

.cart-section .totals {
    margin-top: 20px;
}

.cart-section .totals-item {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 10px;
}

.cart-section .totals-item-total {
    font-weight: bold;
    color: var(--p-color);
    font-size: 20px;
}

.cart-section .checkout {
    background-color: var(--p-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    /* float: left; */
    margin-top: 20px;
}

    .cart-section .checkout:hover {
        background-color: var(--s-color);
    }

@media(max-width:768px) {
    .cart-section .column-labels {
        display: none;
    }

    .cart-section .product {
        flex-direction: column;
        text-align: center;
    }

    .cart-section .product-price, .product-quantity, .product-removal, .product-line-price {
        width: 100%;
        margin-top: 8px;
    }
}

.cart-section {
    margin-bottom: 10%;
}

.product-d {
    margin-top: 5%;
}


.img-display {
    overflow: hidden;
    direction: ltr;
}

.img-showcase {
    display: flex;
    transition: all 0.5s ease;
}

    .img-showcase img {
        min-width: 100%;
    }

.img-select {
    display: flex;
    margin-top: 10px;
    justify-content: center;
}

.img-item {
    margin: 0 5px;
    cursor: pointer;
}

    .img-item img {
        width: 80px;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .img-item:hover {
        opacity: 0.8;
    }

.img-display {
    width: 100%; /* أو عرض ثابت لو تحب */
}

.img-showcase img {
    width: 100%;
    flex-shrink: 0; /* مهم */
}

.product-imgs {
    text-align: center;
}

.img-display {
    margin-bottom: 15px;
}

.main-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    cursor: zoom-in;
}

.img-select {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.img-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
}

    .img-item img:hover {
        border-color: var(--p-color);
    }

.img-select .img-item.active {
    border: 2px solid var(--p-color); /* إطار أزرق */
    border-radius: 6px;
}

.img-select .img-item img {
    cursor: pointer;
    transition: transform 0.2s;
}

.img-select .img-item.active img {
    transform: scale(1.05); /* تكبير بسيط */
}

#current-img {
    transition: opacity 0.5s ease;
    background: #fff; /* خلفية بيضاء */
    opacity: 1;
    display: block;
}

    #current-img.fade-out {
        opacity: 0;
    }

.product-details {
    /* padding: 20px; */
    background: #fff;
    /* border-radius: 10px; */
    /* box-shadow: 0px 4px 12px rgba(0,0,0,0.08); */
}


.product-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--p-color);
}

.text-price {
    color: var(--s-color);
    font-size: 1.8rem;
}

.text-stock {
    color: #878f77;
}

.color-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s, border 0.2s;
}

    .color-circle:hover {
        transform: scale(1.1);
        border-color: var(--p-color);
    }

.btn-outline-size {
    border: 2px solid var(--p-color);
    color: var(--p-color);
    background: #fff;
    transition: all 0.3s ease;
}

    .btn-outline-size:hover,
    .btn-outline-size:focus {
        background: var(--p-color);
        color: #fff;
    }

.color-circle.active {
    border: 3px solid var(--p-color); /* إطار غامق يوضح التحديد */
    box-shadow: 0 0 6px rgba(93,105,83,0.4); /* لمعان خفيف */
    transform: scale(1.15); /* تكبير بسيط */
}

.product-stock.in-stock i {
    color: #2e7d32;
    font-size: 1.2rem;
}


.product-stock.low-stock i {
    color: #c62828;
    font-size: 1.2rem;
}

/* الحاوية العامة */
.product-quantity-wrapper {
    display: flex;
    flex-wrap: wrap; /* يستجيب للشاشات الصغيرة */
    align-items: center;
    gap: 1rem; /* مسافة متساوية بين الصندوق وزر السلة */
    margin-top: 1.2rem;
}

/* صندوق الكمية */
.quantity-box {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid var(--p-color);
    border-radius: 50px;
    overflow: hidden;
}

/* أزرار + و - */
.qty-btn {
    background: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: background 0.25s;
}

    .qty-btn:hover {
        background: #e6e6e6;
    }

/* حقل الرقم */
.qty-input {
    width: 60px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: bold;
}

/* زر الإضافة إلى السلة */
.product-quantity-wrapper .add-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--p-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

    .product-quantity-wrapper .add-cart-btn:hover {
        background: #fff;
        color: var(--p-color);
        border: 2px solid var(--p-color);
        transform: translateY(-2px);
    }

    .product-quantity-wrapper .add-cart-btn i {
        font-size: 1.2rem;
    }

.qty-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none; /* hide native spinners if you like */
    margin: 0;
}


.cart-section .product img {
    height: 200px;
}

.related-section {
    margin: 15% 5% 5%;
}

.Related {
    color: var(--p-color);
    margin-bottom: 3%;
}

.product-d .product-details .product-price {
    display: flex;
}

.filter-section {
    background: linear-gradient(to bottom, #f8f8f8 80%, #fff);
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    margin-bottom: 30px;
}

/* ==== شريط التمرير المخصص ==== */
#priceRange {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    --val: 0%;
    background: linear-gradient( to left, var(--p-color) 0%, var(--p-color) var(--val), #dee2e6 var(--val), #dee2e6 100% );
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.3s;
}

    /* لتنسيق المقبض */
    #priceRange::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--p-color);
        cursor: pointer;
    }

    #priceRange::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #0d6efd;
        cursor: pointer;
    }

.btn-outline {
    color: var(--p-color);
    border-radius: 15px;
    border: 2px solid var(--p-color);
}

    .btn-outline:hover {
        color: #fff;
        background-color: var(--p-color);
    }

.about-page9-pages {
    margin-top: 1%;
    background: linear-gradient(to bottom, #f8f8f8 80%, #fff);
}

@media (max-width: 770px) {
    .category-image-wrapper {
        width: 170px;
        height: 170px;
    }
}

.product-box {
    position: relative;
}

    .product-box .card-link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

.add-cart-btn {
    position: relative;
    z-index: 2;
}

.product-image {
    z-index: 2;
}

::-webkit-scrollbar {
    width: 8px; /* Adjust the width */
}

::-webkit-scrollbar-track {
    background: #fff; /* Light background */
}
/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
    background: var(--p-color); /* Gradient effect */
    border-radius: 15px;
}

    /* On hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--p-color);
    }

.form-label {
    margin-bottom: .5rem;
    font-size: 18px;
}

.policy-content, .terms-content {
    font-size: 1.3rem;
}

.product-description, .product-capacity {
    font-size: 1.3rem;
}

.product-details h6 {
    font-size: 1.5rem;
}

.whatsapp-icon i {
    font-size: 40px;
}
