@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');

@font-face {
    font-family: 'Nizar_Jazeera'; /*a name to be used later*/
    src: url('../assets/fonts/Nizar_Jazeera.ttf'); /*URL to font*/
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Acme', sans-serif;
    margin: 0;
    background: #363636;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: #393939;
    box-shadow: 0 0 10px rgba(0, 0, 0, 36);
    border-radius: 0 0 20px 20px;
    z-index: 80;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.header #logo {
    width: 120px;
}

.header .cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #1E1E1E;
    border-radius: 12px;
    transition: transform 0.1s ease-in;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}

.header .cart:hover {
    transform: scale(0.98);
}

.header .cart img {
    width: 22px;
}

header hr {
    background-color: #707070;
    height: 1px;
    border: 0;
    margin-top: 0;
}

nav {
    width: 100%;
    overflow-x: hidden;
    padding: 10px 40px 15px;
}

.swiper-wrapper,
.swiper,
.mySwiper {
    width: auto !important;
}

.swiper-slide {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

nav .line {
    display: block;
    height: 60px;
    width: 3px;
    background-color: #EDD082;
    border-radius: 3px;
}

.category {
    user-select: nono;
}

.category a {
    text-decoration: none;
}

.category .about {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    height: 80px;
}

.category .about .category-img {
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    overflow: hidden;
}

.category .about .category-img img {
    position: relative;
    width: 100% !important;
    border-radius: 8px !important;
}

.category .about .category-img img.vertical {
    width: 100% !important;
    border-radius: 8px !important;
}

.category .about p {
    font-size: 24px;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}

.category .about span {
    font-size: 18px;
    color: #EDD082;
    margin: 0;
}

#lang-selection{
    display: flex;
    justify-content: space-between;
    width: 10%
}

@media (max-width: 1126px) {

    .category .about,
    .category .about .category-img {
        height: 60px;
    }

    .category .about p {
        font-size: 20px;
        margin: 0 0 4px 0;
    }

    .category .about span {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .header,
    nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header #logo {
        width: 140px;
    }

    .header .cart {
        padding: 11px;
    }

    .header .cart img {
        width: 24px;
    }
}

@media (max-width: 576px) {
    nav .line {
        height: 45px;
    }

    .category .about {
        gap: 13px;
    }

    .category .about,
    .category .about .category-img {
        height: 70px;
    }

    .category .about p {
        font-size: 15px;
        margin: 0 0 4px 0;
    }

    .category .about span {
        font-size: 13px;
    }

    #lang-selection{
        display: flex;
        justify-content: space-between;
        width: 40%
    }
}

/* ITEMS */
.items {
    width: 100%;
    padding: 0 80px;
    overflow: hidden;
}

.items h2 {
    color: #FFFFFF;
    font-size: 24px;
    margin: 30px 0 60px;
    border-left: 4px solid #EDD082;
    padding-left: 20px;
}

.item {
    width: 100%;
    margin-bottom: 30px;
}

#item-1 {
    margin-top: 240px;
}

.img-frame {
    width: 100%;
    height: 320px;
    max-height: 320px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    object-fit: cover;
    border-radius: 10px;
}

.img-frame img {
    position: relative;
    width: 100%;
    border-radius: 10px;
}

.img-frame img.vertical {
    width: 100%;
    border-radius: 10px;
}

.item .name {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-left: 10px;
    margin-top: 10px;
}

.item .name p {
    font-size: 20px;
    color: #FFFFFF;
    margin: 0;
    line-height: 27px;
}

.item .more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
}

.item .more .cash {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item .more .cash p {
    font-size: 18px;
    color: #EDD082;
}

.item .more a {
    font-size: 16px;
    color: #FFA040;
    text-decoration: none;
    background-color: #1E1E1E;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 8px 10px;
    border-radius: 10px;
    transition: transform 0.1s ease-in;
    cursor: pointer;
}

.item .more a:hover {
    transform: scale(0.98);
}


.name img,
.more img {
    width: 20px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 100;
}

.modal.show {
    display: block;
    animation: modal 0.3s ease-in forwards;
}

@keyframes modal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.modal.hide {
    animation: modal-hide 0.3s ease-in forwards;
}

@keyframes modal-hide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

.modal a {
    text-decoration: none;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    background-color: #393939;
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.36);
    border-radius: 15px;
    padding: 12px 12px 15px;
}

#modal-img {
    max-width: 380px;
    width: 100%;
    max-height: 270px;
    object-fit: cover;
    border-radius: 15px !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.modal .modal-name {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-left: 10px;
    margin-top: 15px;
}

.modal .modal-name img {
    width: 16px;
}

.modal .modal-name p {
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    line-height: 27px;
}

.modal .text {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 12px;
}

.modal .text p {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.modal .text .cont {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.modal .text img {
    width: 18px;
}

.modal .text .text-img {
    width: 30px;
}

.modal-price {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    margin-top: 20px;
}

.modal-price .price {
    display: flex;
    align-items: center;
}

.modal-price a:nth-child(2) .price img,
.modal-price a:nth-child(3) .price img {
    display: none;
}

.modal .price p {
    font-size: 12px;
    color: #FFFFFF;
    margin: 0;
    display: flex;
}

.modal .price p span {
    color: #EDD082;
    margin: 0 5px;
}

.modal .price p strong {
    font-weight: 500;
    color: #EDD082;
}

body[dir="ltr"] .modal .price img {
    width: 16px;
    margin-right: 10px;
}

body[dir="rtl"] .modal .price img {
    width: 16px;
    margin-left: 10px;
}

body[dir="rtl"]{
    font-family: Nizar_Jazeera, serif;
}

.swiper-scrollbar-lock {
    display: block !important;
}

@media (max-width: 1980px) {
    .img-frame {
        width: 100%;
        height: 270px;
    }
}

@media (max-width: 1770px) {

    .img-frame {
        width: 100%;
        height: 230px;
    }
}

@media (max-width: 1510px) {
    .modal-content {
        width: 40%;
    }

    .img-frame {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 1350px) {
    .modal-content {
        width: 50%;
    }
}

@media (max-width: 1285px) {
    .item .name p {
        font-size: 15px;
    }

    .item .more .cash p {
        font-size: 14px;
    }

    .item .more a {
        font-size: 13px;
        border-radius: 8px;
    }

    .name img,
    .more img {
        width: 16px;
    }
}

@media (max-width: 1070px) {
    .modal-content {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .items {
        padding-left: 20px;
        padding-right: 20px;
    }

    .items h2 {
        color: #FFFFFF;
        font-size: 20px;
    }

    .modal-content {
        max-width: 60%;
        width: 100%;
        padding: 10px 10px 14px;
    }

    #modal-img {
        max-width: 100%;
        width: 100%;
    }

    .modal .price {
        flex-direction: column;
        margin-top: 5px;
    }

    .modal .price img {
        margin: 0 auto !important;
        display: block !important;
        margin-bottom: 15px !important;
    }

    .modal .price .img-2 {
        margin: 0 0 !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: end !important;
        right: 0 !important;

    }

    .modal .price p {
        flex-direction: column;
        text-align: center;
    }

    .modal .price span {
        display: none;
    }

    .modal .modal-name {
        display: flex;
        gap: 15px;
        align-items: center;
        padding-left: 10px;
        margin-top: 15px;
    }

    .modal .modal-name img {
        width: 16px;
    }

    .modal .modal-name p {
        font-size: 16px;
        color: #FFFFFF;
        margin: 0;
        line-height: 27px;
    }

    .modal .text {
        display: flex;
        gap: 15px;
        align-items: center;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 12px;
    }

    .modal .text p {
        font-size: 14px;
        color: #FFFFFF;
        margin: 0;
        line-height: 24px;
        letter-spacing: 0.5px;
    }

    .modal .text img {
        width: 18px;
    }

    .modal-price {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
        margin-top: 20px;
    }

    .modal-price .price {
        display: flex;
        align-items: center;
    }

    .modal-price a:nth-child(2) .price img,
    .modal-price a:nth-child(3) .price img {
        display: none;
    }

    .modal .price p {
        font-size: 12px;
        color: #FFFFFF;
        margin: 0;
        display: flex;
    }

    .modal .price p span {
        color: #EDD082;
        margin: 0 5px;
    }

    .modal .price p strong {
        font-weight: 500;
        color: #EDD082;
    }

    .modal .price img {
        width: 16px;
        margin-right: 10px;
    }
}

@media (max-width: 550px) {
    .items h2 {
        font-size: 18px;
        padding-left: 10px;
        margin: 30px 0;
    }

    #item-1 {
        margin-top: 200px;
    }

    .modal-content {
        max-width: 70%;
        width: 100%;
    }

    .item .more a {
        display: none;
    }

    .img-frame {
        width: 100%;
        height: 160px;
    }
}

@media (max-width: 450px) {
    .modal-content {
        max-width: 80%;
        width: 100%;
    }

    .items h2 {
        margin: 10px 0 30px;
    }

    #item-1 {
        margin-top: 220px;
    }

    .img-frame {
        width: 100%;
        height: 140px;
    }
}

@media (max-width: 424px) {
    .item .name p {
        font-size: 14px;
    }

    .item .more .cash p {
        font-size: 12px;
    }

    .item .more a {
        font-size: 13px;
        border-radius: 8px;
    }

    .item .name {
        margin-top: 10px;
    }

    .item .name,
    .item .more .cash {
        gap: 10px;
    }

    .name img,
    .more img {
        width: 14px;
    }

    .img-frame {
        width: 100%;
        height: 120px;
    }
}


.modal-close-btn-container{
    width: 100% !important;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 5px;

}



/*.img-my-frame{*/
/*    width: 320px;*/
/*    height: 230px;*/
/*    max-height: 230px;*/
/*    max-width: 320px;*/
/*    object-fit: scale-down;*/
/*    border-radius: 10px;*/
/*    cursor: pointer;*/
/*    overflow: hidden;*/
/*}*/


#topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #0c0c0d;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
}
#topBtn:hover {
    background-color: #555;
}



 :root {

     --primary: #484F61;
     --primary-first-der: #6d8296;
     --primary-second-der:  #06617D;
     /*--primary-second-der: #0989B3;*/

     --secondary: #FAFAFA;
     --secondary-first-der: #FFFFFF;
     --secondary-second-der: #ACA474;

     --tertiary: #9b9b9b;
     --tertiary-first-der: #8B8B8B;
     --tertiary-second-der: #696969;

     --read: #a9ccf0;
     --update: #f2e1ae;
     --change: #d6d7db;
     --insert: #b6e7d1;
     --search: #1960EA;

     --table-odd: #e5e5e5;
     --table-even: #f6f6f6;

     --lok-menu-primary: #363636;
     --lok-menu-secondary: #2f2f2f;
     --lok-menu-tertiary: #3a3a3a;
     --lok-menu-tertiary-first-der: #E3E3E3;
     --lok-menu-tertiary-second-der: #8A8A8A;

     --bs-border-radius: 0.375rem;
     --bs-border-radius-sm: 0.25rem;
     --bs-border-radius-lg: 0.5rem;
     --bs-border-radius-xl: 1rem;
     --bs-border-radius-2xl: 2rem;
     --bs-border-radius-pill: 50rem;
 }

.pos-left-0-per {
    left: 0;
}
.pos-top-0-per {
    top: 0;
}
.scroll-y-scroll {
    overflow-y: scroll;
    overflow-x: hidden;

}
.overflow-hidden {
    overflow: hidden !important;
}
.pos-top-min-100-per {
    top: -100%;
}


.dis-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.dis-flex-center-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dis-flex-center-around {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.dis-flex-center-evenly {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.dis-flex-center-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.dis-flex-sentence {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
}
.dis-flex-start-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.dis-flex-center-start {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.w-45-per {
    width: 45%;
}

.w-500-px {
    width: 500px;
}



.h-200-px {
    height: 200px;
}


.text-decoration-none {
    text-decoration: none !important;
}

.cursor-pointer{
    cursor: pointer;
}
.user-select-none{
    user-select: none;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}


.rounded {
    border-radius: var(--bs-border-radius) !important;
}


.rounded-5 {
    border-radius: var(--bs-border-radius-2xl) !important;
}



#index-location-query-modal{
    width: 100%;
    height: 100%;
    z-index: 100;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.60);
    transition: 250ms top;
}

#menu-query, #web-site-query{
    background-color: var(--lok-menu-primary);
    color: var(--secondary-second-der);
    transition: 250ms background-color, 250ms color;

}

#menu-query:hover, #web-site-query:hover{
    background-color: var(--lok-menu-tertiary-first-der);
    color: var(--lok-menu-primary);
}


#index-right-button, #index-left-button{
    z-index: 100;
    top: 50%;
    background-color: var(--secondary-first-der);
    color: var(--primary);
    transition: 250ms background-color;
}

#index-right-button:hover, #index-left-button:hover{
    background-color: var(--secondary-second-der);
    /*color: var(--);*/
}

#index-right-button{
    left: 90%;
}

#index-left-button{
    left: 10%;
}

#index-bottom-pagination{
    left: 0;
    bottom: 0;
}
#index-bottom-pagination .index-pagination-dots{
    transition: 250ms color;
}

#index-bottom-pagination .index-pagination-dots:hover{
    color: var(--secondary-second-der);
}

.index-pagination-images{
    width: 100%;
    height: 100%;
    transition: 1s left, 500ms opacity, 1s z-index;
}



.cont {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    display: inline-block;
}
.cart {
    outline: none;
    border: 0;
    background: #416AA6;
    padding: 15px;
    color: #fff;
    width: 100%;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: 0.5s width;
}
.cart_clk {
    width: calc(100% - 75px);
}
.crtdiv {
    border: 1px solid #7d86c7;
    width: 250px;
    border-radius: 4px;
    position: relative;
    background: #eee;
}
.fa {
    font-size: 16px;
}
.cart .fa {
    font-size: 26px;
    position: relative;
    padding: 0 5px 0 0;
}
.cart .fa:after {
    position: absolute;
    content: attr(data-before);
    color: #000;
    font-family: 'Lato', sans-serif;
    left: 11px;
    font-weight: bold;
    top: 5px;
    font-size: 12px;
}
.qty {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #416AA6;
}
.dec,
.inc {
    cursor: pointer;
}
.num {
    width: 22px;
    display: inline-block;
    text-align: Center;
}

.body[dir='ltr'] .selection-lang {
    font-family: 'Acme', sans-serif !important;
}

.body[dir='rtl'] .selection-lang{
    font-family: 'Nizar_Jazeera', serif !important;
}

.cart-selection{
    font-family: 'Acme', sans-serif;
    background-color: #1E1E1E;
    border: 1px solid #FFA040;
    color: #fff;
    border-radius: 8px;
    padding: 1px 6px;
    cursor: pointer;
    margin-right: 5px;
}

.cart-selection option{
    padding: 2px !important;
    cursor: pointer;
}

.cart-selection option:hover{
    background: #ff9500 -webkit-linear-gradient(bottom, #ff9500 0%, #ff9500 100%);
    color: red !important;

}




::-webkit-scrollbar {
    height: 10px;
    width: 10px;
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #EDD082;
    -webkit-border-radius: 1ex;
}


