/* _____ Import files _____ */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

/* _____ style all rules _____ */

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

body {
    font-size: 1.4rem;
    font-weight: normal;
    direction: rtl;
    font-family: ArbFONTS, sans-serif;
    text-align: right;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #000;
}

span,
a {
    display: inline-block;
}

img {
    vertical-align: middle;
}

input,
select,
button {
    font-size: 1.5rem;
    font-family: inherit;
}

.overflow-hidden {
    overflow: hidden;
}

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

.text-left {
    text-align: right;
}

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

.position-relative {
    position: relative;
}
.overflow-hidden {
    overflow: hidden;
}
.btn {
    padding: 9px 18px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
}
.text-white {
    color: #fff !important;
}
.btn-white {
    background-color: #f1f1f9;
}

.btn-black {
    background-color: #000;
    color: #fff;
}
.sec-title1 {
    background-color: #f5f5f5;
    padding: 15px 0;
}
/* _____  _____ */
header {
    background-color: #333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 555;
}
header ul li svg {
    cursor: pointer;
}
.logo img {
    width: 100px;
    margin-left: 10px;
}

header form {
    width: 300px;
}

header input {
    width: 100%;
    padding: 7px 9px;
    border: none;
    background-color: #fff;
    border-bottom: 2px solid #000;
    outline: none;
    border-radius: 25px;
    right: 0;
    top: 50%;
    position: absolute;
}
header .nav {
    margin-top: 15px;
}
header .nav a {
    font-size: 1.3rem;
    padding: 6px 20px;
    color: #fff;
}
header .nav a:hover {
    background-color: #222;
}

header .nav ul a {
    padding: 13px 20px;
    color: #fff;
}
header .icons-cart {
    margin-top: 13px;
}
.close {
    cursor: pointer;
}
header .icons-cart li {
    color: #fff;
    padding: 10px 0;
    font-size: 20px;
    margin-left: 30px;
}

header .search-ico {
    position: absolute;
    top: 90%;
    left: 15px;
    font-size: 15px;
}
header ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
    line-height: 20px !important;
    margin-top: 0 !important;
}
header ul li:hover ul {
    opacity: 1;
    visibility: visible;
}
.bars {
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    margin-right: 25px;
}

@media screen and (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        display: none !important;
        width: 150px;
        margin-top: 5px !important;
    }
    .nav.active {
        display: flex !important;
        width: 95%;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    header .nav a {
        padding: 6px 9px;
        color: #fff;
    }
}

.mobile-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    background-color: #ffffff;
    border-top: 2px solid #e2e8f0;
    border-bottom: 0px #e2e8f0 solid;
    padding: 0.8em 0 0.8em 0 !important;
    justify-content: center;
    text-align: center;
    z-index: 44;
    display: none;
}
.mobile-footer .tab {
    margin: 0 25px;
}

@media screen and (max-width: 576px) {
    header .nav {
        display: none !important;
    }
}
@media screen and (max-width: 1239px) {
    header .logo {
        margin-top: 15px;
    }
    header .logo img {
        width: 100px;
        margin-right: 0;
    }

    .mobile-footer {
        display: block;
    }
    header .icons-cart li:nth-of-type(2) {
        display: none;
    }
    .categ {
        display: none;
    }
}
@media screen and (min-width: 1240px) {
    .logo img {
        margin-top: 10px !important;
    }
}
.search-overlay,
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s linear;
}

.search-overlay.active,
.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-inner {
    background-color: #fff;
    max-width: 500px;
    width: calc(100% - 30px);
    padding: 40px 50px;
    border-radius: 5px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
    transition: 0.3s linear;
    visibility: hidden;
    opacity: 0;
}
.search-inner.active {
    top: 50%;
    visibility: visible;
    opacity: 1;
}
.search-inner .close {
    font-size: 2.2rem;
    font-weight: bold;
    font-family: ArbFONTS-B;
    position: absolute;
    top: 15px;
    left: 50px;
}
.search-inner input {
    width: 100%;
    padding: 14px 25px;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    font-weight: bold;
    font-family: ArbFONTS-B;
    margin-top: 35px;
    transition: 0.3s linear;
}
.search-inner a{
    position: absolute;
    top: 53%;
    right: 80%;
}
.open-search {
    display: none;
}
@media screen and (max-width: 1200px) {
    .form-search {
        display: none;
    }
    .categ {
        display: none;
    }
    .open-search {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    /* header form {
      display: none;
    } */
    .mobile-footer .tab {
        margin: 0 25px;
    }
    .mobile-footer p {
        font-size: 14px;
    }
    header .icons-cart li {
        margin-right: 20px !important;
    }
}

@media screen and (max-width: 430px) {
    .mobile-footer .tab {
        margin: 0 10px;
    }
}

.search-overlay,
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s linear;
}
.search-overlay.active,
.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cart-inner {
    max-width: 450px;
    width: 100%;
    background-color: #fff;
    position: fixed;
    left: -450px;
    top: 0;
    bottom: 0;
    transition: 0.5s ease-in-out;
    padding: 15px 25px;
}
.cart-inner.active {
    left: 0;
}
.cart-top {
    border-bottom: 1px solid #dddd;
    padding-bottom: 20px;
}
.cart-inner .close {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: ArbFONTS-B;
    position: absolute;
    left: 15px;
    top: 15px;
}
.cart-inner h2 {
    margin-top: 30px;
    color: #af9433;
}
.cart-product {
    height: 300px;
    overflow-y: scroll;
}
.cart-title {
    width: 100%;
}
.cart-title a {
    font-weight: bold;
    font-family: ArbFONTS-B;
    transition: 0.3s linear;
}
.cart-title a:hover {
    color: #af9433;
}
.cart-items img {
    width: 60px;
}
.plus-dash {
    height: 44px;
    width: 106px;
    border: 1px solid #ebebeb;
    border-radius: 50px;
    padding: 0 20px;
    overflow: hidden;
    display: inline-block;
}
.plus-dash .increment,
.plus-dash .decrement {
    font-size: 14px;
    color: #000;
    cursor: pointer;
    width: 12px;
    line-height: 42px;
    user-select: none;
}
.plus-dash .increment {
    float: left;
}
.plus-dash .decrement {
    float: right;
}
.plus-dash input {
    width: 40px;
    text-align: center;
}
.plus-dash input {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    border: none;
    float: right;
    text-align: center;
    height: 48px;
}
.close-items {
    font-size: 2rem;
    cursor: pointer;
    font-weight: bold;
    font-family: ArbFONTS-B;
}
.cart-quantity {
    width: 16px;
    height: 16px;
    line-height: 17px;
    background-color: #0abab5;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 8px;
    position: absolute;
    left: -9px;
    top: -1px;
    border-radius: 50%;
    font-weight: bold;
    font-family: ArbFONTS-B;
}
/* _____  _____ */

.product-desc-inner {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease-in-out;
    color: #fff;
}

.product-inner:hover .product-desc-inner {
    top: 0;
    right: 0;
    left: 0;
    transform: translate(0, 0);
}

.product-desc h3 {
    font-size: 25px;
}
.product-desc .product-btn {
    position: absolute;
    bottom: -100%;
    width: 100%;
    left: 0;
    transition: 0.3s ease-in-out;
}

.product-desc .product-btn button {
    width: calc(50% - 20px);
}

.product-inner:hover .product-btn {
    bottom: 25px;
}
@media screen and (max-width: 576px) {
    .product-desc h3 {
        font-size: 15px;
    }
    .product-desc p {
        font-size: 12px;
    }
    .product-desc .product-btn button {
        width: 100% !important;
    }
}
@media screen and (max-width: 768px) {
    .product-desc .product-btn button {
        width: calc(100% - 30px) !important;
        margin-bottom: 10px;
    }
    .sec-title h2 {
        font-size: 1.7rem !important;
    }
    .feateures-inner .product-btn .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .product-desc .product-btn button:last-of-type,
    .feateures-inner .product-btn .btn:last-of-type {
        margin-bottom: 0;
    }
}
/* _____  _____ */
.new-desc {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
    color: #fff;
    text-align: center;
}

.new img {
    height: 274px;
}

/* _____  _____ */
/*.brands img {*/
/*    filter: grayscale(100%);*/
/*}*/

/* _____  _____ */
.imageSize {
    height: 250px !important;
}
.discount {
    color: #f00;
    text-decoration: line-through;
}
.trends-desc span ,
.product_price span{
    background-color: #f00;
    color: #fff;
    border-radius: 4px;
    padding: 0px 2px;
}
.trends-desc p {
    font-size: 14px;
    margin-top: 8px;
}
.trends-inner a,
.product_price a{
    transition: 0.3s ease-in-out;
}
.trends-inner a:hover,
.product_price a:hover{
    color: #a88e31;
}
img {
    object-fit: contain;
}
.owl-theme .owl-nav {
    margin-top: 0 !important;
}

@media screen and (min-width: 992px) {
    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel button.owl-dot {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .owl-carousel .owl-nav button.owl-next:hover,
    .owl-carousel .owl-nav button.owl-prev:hover,
    .owl-carousel button.owl-dot {
        background-color: transparent;
        color: #000;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: 0;
    }
    .owl-carousel .owl-nav button.owl-prev {
        left: 0;
    }
}
/* _____  _____ */
.img-sec {
    /*background: url(../images/img-sec.jpg) center center / cover no-repeat;*/
    height: 331px;
    display: flex;
    align-items: center;
}

.trends-inner a::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.09);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.trends-inner button {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.trends-inner .center-y {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 100%;
    margin: auto;
    text-align: center;
    transform: translate(-50%, -50%);
}
.trends-inner:hover a::before,
.trends-inner:hover button {
    opacity: 1;
    visibility: visible;
}
/* _____  _____ */
.feateures-inner {
    position: absolute;
    bottom: 0;
    color: #000;
    width: 100%;
    padding: 15px;
}

.contact input {
    width: 80%;
    padding: 9px 18px;
    border: none;
    background-color: #fff;
    border-bottom: 2px solid #000;
    outline: none;
}
.contact button {
    padding: 11px 35px;
    max-width: 130px;
    width: 100%;
}
.contact-inner {
    background-color: #f9f9f1;
}
.contact a {
    text-decoration: underline;
    font-weight: bold;
}

.contact-social li:first-child {
    background-color: #1877f2;
}

.contact-social li:nth-child(2) {
    background-color: #c32aa3;
}

.contact-social li:last-child {
    background-color: #fffc00;
}

.contact-social li {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    margin-left: 40px;
}

.brand {
    border: 1px solid #e9ecef;
    margin: 5px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s;
    padding: 15px;
    cursor: pointer;
}

.brand::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.brand:hover {
    box-shadow: 2px 8px 22px #f1f1f1;
}

.brand .brand-desc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    /*font-size: 11px;*/
}
.brand:hover::before,
.brand:hover .brand-desc {
    opacity: 1;
    visibility: visible;
}
.brand-card a {
    font-weight: 500;
    transition: 0.2s linear;
}
.brand-card img {
    transition: 0.3s ease-in-out;
}
.brand-card:hover img {
    transform: scale(1.1);
}
.brand-card a:hover {
    color: #af9433;
}

.brand-card svg {
    cursor: pointer;
}

.cart-buttons a.btn {
    width: 100%;
    text-align: center;
}
.cart-parent table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}
.cart-parent table tbody td {
    padding: 25px;
}
.cart-parent table tr th {
    padding: 20px;
    border-bottom: 1px solid #f9f9f9;
    background-color: #fdfdfd;
    text-transform: capitalize;
    font-weight: 600;
    font-family: ArbFONTS-B;
}
.cart-parent table.table-cart .close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-left: 20px;
    cursor: pointer;
    background-color: #292621;
    color: #fff;
    transition: 150ms ease-in;
    font-weight: bold;
}
.cart-parent table.table-cart tbody td a {
    color: #221e1e;
}
.cart-parent table.table-cart tbody td img {
    width: 50px;
    margin-right: 15px;
}
.cart-parent table.table-cart tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.float-end {
    float: left;
}
.cart-parent table.table-cart tbody td input[type="number"] {
    width: 100px !important;
    height: 35px;
    border: 1px solid #e1e3e5;
    color: #555;
    text-align: center;
    padding: 10px;
}

.summary-box {
    border: 1px solid #ccc;
    padding: 20px;
    width: 100%;
    margin: auto;
}
.summary-box div {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.summary-box .total-label {
    font-weight: bold;
    font-size: 1.2em;
    margin: 20px 0 10px;
}
.summary-box a {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background: none;
    border: 1px solid #000;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.checkout .btn-head button {
    cursor: pointer;
    transition: 0.1s linear;
}
.checkout .btn-head button:hover,
.checkout .btn-head button.active {
    background-color: #a88e31;
    color: #fff;
    border: 1px solid #a88e31;
}
.checkout input,
.checkout select,
.regsiter-client form input {
    width: 100%;
    border: 1px solid #888;
    color: #000;
    padding: 10px;
    margin-bottom: 20px;
    outline: none;
    transition: 100ms linear;
}
.checkout-left {
    padding: 20px;
    background-color: #fff;
    box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.06);
}
.checkout-items {
    border-bottom: 1px solid #999;
    padding: 10px 0;
}
.checkout-items img {
    width: 45px;
    margin-right: 10px;
}
.checkout .btns button {
    width: fit-content;
    cursor: pointer;
}
.checkout-left h3,
.checkout-left h4 {
    position: relative;
    padding-bottom: 5px;
}
.checkout-left h3::before,
.checkout-left h4::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 155px;
    height: 2px;
    background-color: #a88e31;
}
.checkout-left h4::before {
    width: 250px;
    right: 40% !important;
    transform: translateX(32%);
}

.btn,
button {
    padding: 11px 35px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border-radius: 3px;
    text-align: center;
    font-family: ArbFONTS-B;
    border: none;
}

.tab-hidden,
.rgister-hidden {
    display: none;
}

.tab-hidden.active,
.rgister-hidden.active {
    display: block;
}

.checkout input {
    width: 100%;
    border: 1px solid #888;
    color: #000;
    padding: 10px;
    margin-bottom: 20px;
    outline: none;
    transition: 100ms linear;
}

input[type="radio"] {
    width: fit-content !important;
}

.brand-card button {
    width: fit-content !important;
}
.register-top a {
    font-size: 25px;
    transition: 0.3s ease-in-out;
}
.register-top a:hover,
.register-top a.active {
    color: #a88e31;
}

.tab-hidden.active,
.rgister-hidden.active {
    display: block;
}
.checkout input,
.checkout select,
.regsiter-client form input {
    width: 100%;
    border: 1px solid #888;
    color: #000;
    padding: 5px;
    margin-bottom: 20px;
    outline: none;
    transition: 100ms linear;
}

.details-top h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.details-top p {
    font-size: 20px;
    color: #af9433;
}

.details-top input[type="number"] {
    height: 52px;
    font-size: 15px;
    border: 1px solid #eaeaea;
    outline: none;
    padding: 2px;
    width: 100px;
    text-align: center;
    color: inherit;
}
.product-description {
    max-width: 410px;
}

.product-description h2 {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
}

.product-description h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #8f8f8f;
}

.product-description ul {
    padding: 15px;
}
.details-top span {
    transition: 0.3s ease-in-out;
}
.details-top span:hover {
    color: #a88e31;
}

.bestProduct-parent img,
.recommendedProducts img,
.shaving img ,
.new_product img{
    height: 261px;

    object-fit: fill;
    width: 100%;
    max-width: 100%;
}
.offers img {
    height: 260px;
}
.perfumes img,
.glasses img {
    height: 230px;
}
.cosmetics img {
    height: 235px;
}
.discount {
    font-weight: bold;
    color: #f00;
    text-decoration: line-through;
    font-family: ArbFONTS-B;
}

@media screen and (max-width: 400px) {
    .perfumes img,
    .glasses img,
    .shaving img,
    .cosmetics img,
    .offers img,
    .recommendedProducts img,
    .bestProduct-parent img,
    .new_product img{
        height: 138px;
    }
}

.text-sm-right {
    text-align: left;
}
@media screen and (max-width: 576px) {
    .text-sm-center {
        text-align: center;
    }
    .text-sm-right {
        text-align: center;
    }
}

select {
    font-weight: 500;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    background-color: #fbfbfb;
    border: 1px solid #fbfbfb;
    color: #af9433;
}

@media screen and (max-width: 768px) {
    .brand-card .btn,
    button {
        padding: 9px 18px !important;
    }
}

.privacy h2,
.about h2 {
    color: #a88e31;
    margin: 0 0 1em 0;
    text-align: center;
    font-size: 30px;
}

.privacy p {
    color: #222;
}

.categ-inner a {
    transition: .3s linear;
}
.categ-inner a:hover {

    color: #a88e31;
}
.dropdown-category{
    display: none;
    width: fit-content;
    background: #403f3f;
    right: 55%;
}
.me-4 {
    margin-left: 1.5rem !important;
}
@media screen and (max-width: 768px) {
    header .icons-cart li {
        color: #fff;
        padding: 10px 0;
        font-size: 20px;
        margin-left: 5px;
    }
}
header form{
    top: 85%;
    position: absolute;
}
.dropdown-category{
    display: none;
    width: fit-content;
    background: #403f3f;
    right: 80%;
}
.dropdown-category li a{
    border-bottom: 1px solid #eEE;
    white-space: nowrap;
    width: 100%;
}
.product_actions{
    direction: rtl;
}
.new_product .price,
.product_price .sale_price,
.product_price p,
.product_price span{
    text-align: right;
    direction: rtl;
    /*font-size: 1.2rem;*/
}
.language-item-list{
    position: relative !important;
}
.language-item-list a{
    position: absolute;
    left: 0;
    top: 12%;
}
.fa-brands, .fab,
.fa-solid, .fas{
    font-size: 1rem;
}
.text-start{
    text-align: right;
}
.ms-3 {
    margin-right: 1rem !important;
}
.ms-4 {
    margin-right: 1.5rem !important;
    margin-left: 0 !important;
}
.ms-4 {
    margin-right: 1.5rem !important;
    margin-left: 0 !important;
}
.prod-price{
    font-size: 2rem;
}
.quantity-action{
    font-size: 2rem;
}
.margin-1{
    margin-right: 1rem;
}
.margin-1-5{
    margin-right: 1.5rem;
}
.margin-2{
    margin-right: 2rem;
}
.me-5 {
    margin-left: 3rem !important;
    margin-right: 0 !important;
}
.cart-parent table.table-cart .close {
    font-family: ArbFONTS-B;
    font-size: 1.5rem;
}
@media screen and (max-width: 576px) {
    .product_title {
        font-size: 1.3rem;
    }
    .final-contact-social{
        margin-left: 0 !important;
    }

    .me-5 {
        margin-left: 1rem !important;
    }

    .share-btn{
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .me-5 {
        margin-left: 0 !important;
    }
}
