@import url("../css/nullstyle.css");
:root {
  --clr1: #ffffff;
  --clr2: #3a3b3c;
  --clr3: #032d70;
  --clr4: #ff8057;
  --clr5: #D9D9D9;
  --clr6: #fefbf5;
  --crl7: #00bfa6;
  --crl8: #f6b100;
  --crl9: #ef476f;
            /* Additional colors for better functionality */
            --clr-light-gray: #f0f0f0;
            --clr-gray: #888888;
            --clr-text-light: #666666;
            --clr-success: #75856b;
            --clr-error: #dc3545;
        }

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zain", sans-serif;
  font-weight: 500;
  font-size: 16px;
  background-color: var(--clr1);
  line-height: 1.45;
  color: var(--clr2);
}

body.lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.btn {
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  color: var(--clr1);
  padding: 18px 27px;
  border-radius: 32px;
  display: inline-block;
  background-color: var(--clr4);
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  background-color: var(--clr1);
  color: var(--clr3);
}

.img {
  max-width: 100%;
}

.select {
  position: relative;
}
.select._active {
  z-index: 5;
}
.select._active .select__value::before {
  transform: rotate(-180deg);
}
.select._active.select__options {
  display: block;
}
.select__item {
  position: relative;
  width: 46px;
  margin: 0 auto;
}

.coffee-color {
  background-color:#ef476f;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px; /* Optional: rounded corners */
}

@media (max-width: 420px) {
  .select__item {
    min-width: 100%;
  }
}
.select__title {
  color: var(--clr2);
  cursor: pointer;
}
.select__value {
  display: flex;
  font-size: 16px;
  font-weight: 700;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .select__value {
    font-size: 20px;
  }
}
.select__value::before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icon/arrow-select.svg") center/100% no-repeat;
}
.select__value span {
  overflow: hidden;
  display: -webkit-box;
 /* -webkit-line-clamp: 1;*/
  -webkit-box-orient: vertical;
}
.select__options {
  color: var(--clr2);
  display: none;
  position: absolute;
  top: 25px;
  min-width: 100%;
  left: 0;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .select__options {
    font-size: 20px;
    top: -25px;
  }
}
.select__option {
  cursor: pointer;
  margin: 0px 0px 0px 0px;
  transition: all 0.3s ease-in-out;
}
.select__option:hover {
  color: var(--clr3);
}

.header {
  padding: 20px 0;
  position: relative;
  z-index: 3;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--clr1);
  width: 100%;
  height: 100%;
  z-index: 12;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header__logo {
  max-width: 180px;
  position: relative;
  z-index: 12;
}
.header__logo--img {
  position: relative;
  z-index: 3;
}
.header__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  position: relative;
  z-index: 13;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .header__block {
    position: fixed;
    bottom: -100%;
    right: 0;
    width: 100%;
    border-radius: 0;
    padding: 15px 40px;
    justify-content: center;
    background-color: var(--clr1);
    border-radius: 8px 8px 0 0;
    margin-right: 0;
  }
  .header__block.active {
    bottom: 0;
  }
}
.header__phone {
  position: relative;
  z-index: 13;
}
.header__phone--number {
  font-size: 15px;
  font-weight: 700;
  line-height: 100%;
  color: var(--clr2);
  position: relative;
  padding-left: 28px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .header__phone--number {
    font-size: 20px;
  }
}
.header__phone--number::before {
  content: "";
  position: absolute;
  background: url("../img/icon/phone.svg") 0 0/100% no-repeat;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all 0.3s ease-in-out;
}
.header__phone--number:hover {
  color: var(--clr3);
}
.header__lang {
  position: relative;
  z-index: 13;
}


.header__button {
  background-color: var(--clr4);
  border-radius: 32px;
  
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 12;
            
  font-size: 18px;
  font-weight: 700;

    padding: 5px 0 5px 0; /* هذا هو المسؤول عن الحجم */

}

 

@media (max-width: 900px) {
  .header__button {
    margin-left: auto;
  }
}
@media (max-width: 460px) {
  .header__button {
    width: 38px;
    height: 38px;
  }
}
.header__button::before {
  content: "";
  position: absolute;
  background: url("../img/icon/sign.svg") 0 0/100% no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  width: 28px;
  height: 28px;
}
.header__button:hover {
  background-color: var(--clr3);
}
.header__btn {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  position: relative;
  color: var(--clr1);
  padding: 15px 30px 15px 63px;
  display: inline-block;
 
}
@media (max-width: 460px) {
  .header__btn {
    font-size: 0px;
  }
}



.header__burger {
  display: none;
}
@media (max-width: 900px) {
  .header__burger {
    display: block;
    position: relative;
    height: 25px;
    width: 40px;
    z-index: 12;
        cursor: pointer; /* Add this line */

    transition: all 0.3s ease;
  }
  .header__burger::before, .header__burger::after, .header__burger span {
    content: "";
    position: absolute;
    height: 4px;
    background: var(--clr2);
    margin: auto;
    width: 100%;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
  }
  .header__burger::before {
    top: 0px;
    right: 0;
    width: 100%;
    transform-origin: right;
  }
  .header__burger span {
    top: 10px;
    right: 0;
    width: 60%;
  }
  .header__burger::after {
    bottom: 0px;
    right: 0;
    width: 100%;
    transform-origin: right;
  }
  .header__burger.active::before {
    width: 60%;
  }
  .header__burger.active span {
    width: 100%;
  }
  .header__burger.active::after {
    width: 60%;
  }
}

.menu {
  position: relative;
  z-index: 12;
}

.menu__link {
  font-size: 20px;
  font-weight: 700px; /* Remove 'px' here */
}
@media (max-width: 900px) {
  .menu {
    position: fixed;
    top: -100%;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 110px 0px 0 0;
    background: var(--clr1);
    overflow: auto;
    transition: all 0.3s ease-in-out;
    z-index: 11;
    margin-left: 0;
  }
}
.menu.active {
  top: 0;
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 70px;
}
@media (max-width: 1200px) {
  .menu__list {
    gap: calc(20px + 50 * (100vw - 900px) / 300);
  }
}
@media (max-width: 900px) {
  .menu__list {
    display: block;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .menu__item {
    margin-bottom: 15px;
    display: block;
  }
}
.menu__link {
  color: var(--clr2);
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
}
@media (max-width: 900px) {
  .menu__link {
    padding-top: 30px;
    font-size: 22px;
  }
  .main,
   .hero,
  .hero *,
  .slide,
  
  .slideshow-container,
  .slideshow-container * {
    z-index: auto !important;
    position: relative;

}
}

.menu__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--clr3);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.menu__link:hover {
  color: var(--clr3);
}
.menu__link:hover::before {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .menu__item:nth-child(4) {
    margin-bottom: 60px;
  }

}

  .hero {
            margin: 59px 0;
        }

        @media (max-width: 768px) {
            .hero {
                margin: 30px 0;
            }
        }

/* الكود الأساسي */
.hero__inner {
    gap: 20px;
    padding: 54px 150px 100px;
    position: relative;
    display: flex;
    max-height: 550px;
    background-color: var(--clr3);
    border-radius: 55px;
    overflow: visible;
}

/* للشاشات الكبيرة - أقل من 1200px */
@media (max-width: 1200px) {
    .hero__inner {
        padding: calc(54px + 0 * (100vw - 768px) / 432) 
                 calc(150px - 50 * (100vw - 768px) / 432) 
                 calc(100px - 20 * (100vw - 768px) / 432);
        border-radius: calc(55px - 20 * (100vw - 768px) / 432);
        max-height: calc(550px - 100 * (100vw - 768px) / 432);
        gap: calc(20px - 5 * (100vw - 768px) / 432);
    }
}

/* للشاشات المتوسطة - أقل من 768px */
@media (max-width: 768px) {
    .hero__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 26px 20px 80px 20px;
        border-radius: 21px;
        text-align: center;
        max-height: none;
        gap: 15px;
    }
}

        .hero__body {
            flex: 0 1 50%;
            max-width: 450px;
        }

        @media (max-width: 768px) {
            .hero__body {
                width: 100%;
                max-width: none;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
            }
        }

        .hero__body h1 {
            font-size: 55px;
            font-weight: 700;
            line-height: 100%;
            text-transform: uppercase;
            margin-bottom: 30px;
            margin-top: 50px;
            color: var(--clr1);
            z-index: 2;
            position: relative;
        }

        @media (max-width: 1200px) {
            .hero__body h1 {
                font-size: calc(44px + 21 * (100vw - 768px) / 432);
            }
        }

        @media (max-width: 768px) {
            .hero__body h1 {
                font-size: calc(32px + 12 * (100vw - 320px) / 448);
                margin-top: 20px;
                margin-bottom: 20px;
            }
        }

        .hero__btn {

            position: relative;
            z-index: 2;
            font-size: 20px;
            font-weight: 700;
        }

/* Slideshow Styles */
        .hero__slideshow {
            position: relative;
            z-index: 15;
            flex: 0 1 50%;
            height: 100%;
            overflow: visible;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: visible;
        }

        @media (max-width: 768px) {
            .slideshow-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                position: relative;
            }
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity .5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: "";
            position: absolute;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 490 490'%3E%3Ccircle cx='245' cy='245' r='240' fill='none' stroke='%23ff8057' stroke-width='10' opacity='0.3'/%3E%3C/svg%3E") 0 0/100% no-repeat;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 10;
            max-width: 390px;
        }

        @media (max-width: 768px) {
            .slide::before {
                left: 50%;
                transform: translateX(-50%);
                right: auto;
            }
            
            .hero__slideshow {
                position: relative;
                top: 0;
                right: auto;
                left: auto;
                text-align: center;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            
            .slide__img {
                transform: none;
                margin: 0 auto;
            }
        }

        @media (max-width: 680px) {
            .hero__slideshow {
                top: 0;
            }
        }

        @media (max-width: 620px) {
            .hero__slideshow {
                top: 0;
            }
        }

        @media (max-width: 460px) {
            .hero__slideshow {
                top: 0;
                right: auto;
                left: auto;
            }
            
            .slide__img {
                transform: none;
                margin: 0 auto;
            }
        }

       .slide__img {
            width: 400px;
            height: 400px;
            z-index: 15;
            position: relative;
            top: -20px;
            max-width: 100%;
            border-radius: 25px;
            display: block;
            overflow: hidden;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
@media (max-width: 768px) {
    .slide__img {
        width: 300px;
        height: 300px;
        z-index: 15;
        position: relative;
        top: 15px;
        max-width: 100%;
        border-radius: 20px;
        display: block;
        margin: 0 auto;
        overflow: hidden;
        object-fit: cover;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 480px) {
    .slide__img {
        width: 250px;
        height: 250px;
        z-index: 15;
        position: relative;
        top: 20px;
        max-width: 100%;
        border-radius: 18px;
        display: block;
        margin: 0 auto;
        overflow: hidden;
        object-fit: cover;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
}

        /* Slide indicators */
        .slide-indicators {
            position: absolute;
            bottom: -410px;
            left: 55%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
            padding: 10px 20px;
            border-radius: 25px;
         }

        @media (max-width: 768px) {
            .slide-indicators {
                position: absolute;
                bottom: -330px;
                left: 50%;
                transform: translateX(-50%);
                gap: 10px;
                padding: 0;
                border-radius: 0;
                backdrop-filter: none;
                background: none;
                width: fit-content;
            }
        }

        @media (max-width: 480px) {
            .slide-indicators {
                position: absolute;
                bottom: -290px;
                left: 50%;
                transform: translateX(-50%);
                gap: 8px;
                padding: 0;
                border-radius: 0;
                backdrop-filter: none;
                background: none;
                width: fit-content;
            }
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color:var(--clr5);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .indicator:hover {
            background-color: rgba(255, 128, 87, 0.7);
            transform: scale(1.1);
        }

        .indicator.active {
            background-color: var(--clr4);
            transform: scale(1.3);
             box-shadow: 0 2px 8px rgba(255, 128, 87, 0.4);
        }

        @media (max-width: 768px) {
            .indicator {
                width: 12px;
                height: 12px;
            }
            
            .indicator.active {
                transform: scale(1.2);
            }
        }

        @media (max-width: 480px) {
            .indicator {
                width: 10px;
                height: 10px;
            }
            
            .indicator.active {
                transform: scale(1.15);
            }
        }

        /* Fade transition effect */
        .slide.fade-in {
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Loading animation for images */
        .slide__img {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
        }

        .slide__img.loaded {
            background: none;
        }












.our-menu {
  margin: 50px 0;
  position: relative;
}
@media (max-width: 768px) {
  .our-menu {
    margin-top: 250px !important;
  }

  #rests{
        margin-top: 20px !important;

  }
}
@media (max-width: 600px) {
    .our-menu {
    margin-top: 250px;
    }
}

 

.our-menu h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .our-menu h2 {
    font-size: calc(24px + 8 * (100vw - 320px) / 448);
  }
}
.our-menu__inner {
  background-color: var(--clr3);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .our-menu__inner {
    padding: calc(10px + 30 * (100vw - 320px) / 448);
  }
}
.our-menu__inner p {
  color: var(--clr1);
  font-weight: 400;
  line-height: 120%;
  font-size: 16px;
  margin-bottom: 25px;
}
.our-menu__element1 {
  position: absolute;
  top: -50px;
  right: -50px;
  transform: rotate(180deg);
  max-width: 150px;
  opacity: 0.9;
}
.our-menu__element2 {
  position: absolute;
  bottom: -75px;
  left: 50%;
  transform: rotate(290deg);
  max-width: 65px;
}
.our-menu__raw {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .our-menu__raw {
    gap: calc(20px + 30 * (100vw - 768px) / 432);
  }
}
@media (max-width: 768px) {
  .our-menu__raw {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 400px) {
  .our-menu__raw {
    grid-template-columns: repeat(1, 1fr);
  }
}
.our-menu__column {
  position: relative;
  border-radius: 28px;
  background: var(--clr1);
  padding: 0 13px 13px 13px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.our-menu__column:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 12px rgba(82, 82, 82, 0.2117647059);
}

/*
.our-menu__column span {
  position: absolute;
  top: -10px;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--clr4);
  color: var(--clr1);
  font-size: 24px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.coffee-color{
 position: absolute;
  top: -10px;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ef476f !important;
  color: var(--clr1);
  font-size: 24px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}


.resturant-color{
 position: absolute;
  top: -10px;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--crl8);
  color: var(--clr1);
  font-size: 24px;
  font-weight: 800;
  line-height: 120%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

#rest-button{
background-color: var(--crl8);
}
#rest-button:hover{
  background-color: var(--clr5);
  color: var(--clr3);
}

#coffee-button{
background-color: var(--crl9);
}
#coffee-button:hover{
  background-color: var(--clr5);
  color: var(--clr3);
}


.our-menu__items h3 {
  color: var(--clr3);
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.our-menu__items p {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
}

.our-menu__image {
    padding: 10px 0 20px 0;
    border-radius: 25px;
    overflow: hidden; /* This ensures the border-radius clips the image */
}

.our-menu__img {
    width: 100%;
    height: 150px; /* Fixed height - adjust this value as needed */
    display: block;
    border-radius: 25px;
    object-fit: cover; /* This crops the image to fill the container */
    object-position: center; /* Centers the image within the container */
}
@media (max-width: 768px) {
  .our-menu__image {
    text-align: center;
  }
}
.our-menu__item {
  color: var(--clr2);
  font-size: 12px;
  font-weight: 300;
  line-height: 180%;
}
.our-menu__body {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-self: center;
  background-color: var(--clr1);
  border-radius: 15px;
  padding: 10px;
}
@media (max-width: 1105px) {
  .our-menu__body {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .our-menu__body {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1105px) {
  .our-menu__button {
    grid-row: 2;
    grid-column: 1/3;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .our-menu__button {
    grid-column: 1/3;
    justify-content: left;
  }
}
@media (max-width: 485px) {
  .our-menu__button {
    grid-row: 1;
    grid-column: 1/4;
    justify-content: center;
  }
}
@media (max-width: 370px) {
  .our-menu__button-cal {
    width: 100%;
  }
}
.our-menu__btn {
  border-radius: 10px;
  padding: 5px 26px 5px 67px;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  text-decoration-line: underline;
  text-transform: uppercase;
  position: relative;
}
.our-menu__btn:hover {
  background-color: var(--clr3);
  color: var(--clr1);
  text-decoration-line: underline;
}
.our-menu__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17px;
  background: url("../img/icon/tab.svg") 0 0/100% no-repeat;
  width: 48px;
  height: 48px;
}
@media (max-width: 370px) {
  .our-menu__btn {
    width: 100%;
    text-align: center;
  }
}
.our-menu__block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 485px) {
  .our-menu__block {
    flex-direction: column;
  }
}
@media (max-width: 485px) {
  .our-menu__block {
    grid-row: 2;
  }
}
@media (max-width: 485px) {
  .our-menu__num {
    text-align: center;
  }
}
.our-menu__number {
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
}
.our-menu__button-order {
  text-align: left;
}
@media (max-width: 1105px) {
  .our-menu__button-order {
    grid-row: 2;
    grid-column: 2/5;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .our-menu__button-order {
    grid-column: 2/4;
    justify-content: left;
  }
}
@media (max-width: 485px) {
  .our-menu__button-order {
    grid-row: 3;
    grid-column: 1/4;
    justify-content: center;
  }
}
.our-menu__btn-order {
  padding-left: 43px;
  padding-right: 43px;
  text-align: center;
}
.our-menu__btn-order:hover {
  background-color: var(--clr-success);
  color: var(--clr1);
}


@media (max-width: 370px) {
  .our-menu__btn-order {
    width: 50%;
  }
}

.map {
  margin: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .map {
    margin: 50px 0;
  }
}
.map h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .map h2 {
    font-size: calc(24px + 8 * (100vw - 320px) / 448);
    margin-bottom: calc(22px + 15 * (100vw - 320px) / 448);
  }
}
.map__input {
  width: 100%;
  margin-bottom: 37px;
  position: relative;
}
@media (max-width: 768px) {
  .map__input {
    margin-bottom: calc(22px + 15 * (100vw - 320px) / 448);
  }
}
.map__input input {
  border-radius: 23px;
  background: #F4F4F4;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  padding: 22px 70px 22px 24px;
}
@media (max-width: 550px) {
  .map__input input {
    border-radius: 10px;
  }
}
.map__input button {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
  background-color: transparent;
}
.map__maps {
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 550px) {
  .map__maps {
    border-radius: 10px;
  }
}
.map__maps iframe {
  height: 460px;
  border-radius: 22px;
}
@media (max-width: 768px) {
  .map__maps iframe {
    height: calc(340px + 120 * (100vw - 320px) / 448);
  }
}
@media (max-width: 550px) {
  .map__maps iframe {
    border-radius: 10px;
  }
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-clear-button {
  display: none;
}

.advantages {
  margin: 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .advantages {
    margin: 50px 0;
  }
}
.advantages h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .advantages h2 {
    font-size: calc(24px + 8 * (100vw - 320px) / 448);
    margin-bottom: calc(22px + 15 * (100vw - 320px) / 448);
  }
}
.advantages__inner {
  display: flex;
  align-items: start;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 30px 10px;
}
.advantages__column {
  max-width: 200px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.advantages__column:hover .advantages__image {
  box-shadow: 0px 0px 26px rgba(142, 192, 56, 0.7137254902);
}
@media (max-width: 450px) {
  .advantages__column {
    max-width: calc(140px + 60 * (100vw - 320px) / 130);
  }
}
.advantages__column h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 5px;
  flex: 1 1 auto;
}
@media (max-width: 450px) {
  .advantages__column h3 {
    font-size: 14px;
  }
}
.advantages__column p {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 450px) {
  .advantages__column p {
    font-size: 14px;
  }
}
.advantages__image {
  background-color: var(--clr3);
  border-radius: 50%;
  width: 83px;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 11px;
  transition: all 0.3s ease-in-out;
}

.sale {
  margin: 65px 0;
  position: relative;
  background-color: var(--clr3);
}
@media (max-width: 768px) {
  .sale {
    margin: 50px 0;
  }
}
.sale__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .sale__inner {
    padding-bottom: 100px;
  }
}
.sale__block {
  max-width: 410px;
}
@media (max-width: 650px) {
  .sale__block {
    max-width: 100%;
  }
}
.sale__block h2 {
  color: var(--clr1);
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .sale__block h2 {
    font-size: calc(24px + 16 * (100vw - 320px) / 448);
  }
}
.sale__block p {
  color: var(--clr1);
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .sale__block p {
    font-size: calc(16px + 4 * (100vw - 320px) / 448);
  }
}
.sale__btn {
  width: 180px;
  text-align: center;
  text-transform: none;
  position: relative;
  z-index: 2;
}
@media (max-width: 350px) {
  .sale__btn {
    width: 100%;
  }
}
.sale__img--bg {
  position: absolute;
  top: -50px;
  right: 350px;
  width: 476px;
  z-index: 1;
  animation: rotate 6s ease-in-out 0s infinite;
}
@media (max-width: 1250px) {
  .sale__img--bg {
    width: calc(276px + 200 * (100vw - 768px) / 482);
    right: calc(50px + 300 * (100vw - 768px) / 482);
  }
}
@media (max-width: 650px) {
  .sale__img--bg {
    top: inherit;
    bottom: -95px;
    right: inherit;
    left: calc(0px + 100 * (100vw - 320px) / 330);
    width: calc(200px + 50 * (100vw - 320px) / 330);
  }
}
.sale__img--bg1 {
  position: absolute;
  top: 0px;
  right: -50px;
  width: 538px;
  z-index: 1;
  animation: rotate2 3s ease-in-out 0s infinite;
}
@media (max-width: 1250px) {
  .sale__img--bg1 {
    width: calc(338px + 200 * (100vw - 768px) / 482);
    top: calc(150px + -160 * (100vw - 768px) / 482);
  }
}
@media (max-width: 650px) {
  .sale__img--bg1 {
    top: inherit;
    bottom: -20px;
    right: 0;
    width: calc(210px + 120 * (100vw - 320px) / 330);
  }
}

.faq {
  padding-top: 50px;
}
.faq h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .faq h2 {
    font-size: calc(24px + 8 * (100vw - 320px) / 448);
    margin-bottom: calc(22px + 15 * (100vw - 320px) / 448);
  }
}
.faq__tab {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.faq__tab-btn {
  transition: all 0.3s ease-in-out;
  color: var(--clr2);
  border-radius: 28px;
  background: #F4F4F4;
  box-shadow: 0px 0px 11px -4px rgba(0, 0, 0, 0.25);
  padding: 25px;
  font-size: 16px;
  font-weight: 700;
  height: 130px;
  width: 180px;
  -webkit-tap-highlight-color: transparent;
}
.faq__tab-btn:hover {
  background-color: var(--clr5);
}
@media (max-width: 620px) {
  .faq__tab-btn {
    width: calc(140px + 40 * (100vw - 320px) / 300);
    height: calc(100px + 30 * (100vw - 320px) / 300);
    padding: calc(10px + 15 * (100vw - 320px) / 300);
  }
}
.faq__tab-btn svg {
  display: block;
  margin: 0 auto 15px;
}
.faq__tab-btn.active {
  color: var(--clr1);
  background-color: var(--clr3);
}
.faq__tab-btn.active svg path {
  fill: var(--clr1);
}
.faq__inner {
  display: none;
}
.faq__inner.active {
  display: block;
}
.faq__block--item {
  border-bottom: 1px solid var(--clr5);
}
.faq__block--title {
  font-size: 24px;
  line-height: 120%;
  font-weight: 700;
  color: var(--clr2);
  cursor: pointer;
  padding: 10px 60px 0px 0px;
  transition: all 0.3s ease-in-out;
  padding: 35px 0 35px;
}
.faq__block--title.active {
  padding-bottom: 20px;
  color: var(--clr3);
}
@media (max-width: 768px) {
  .faq__block--title {
    font-size: calc(20px + 4 * (100vw - 320px) / 448);
    padding-top: calc(22px + 13 * (100vw - 320px) / 448);
    padding-bottom: calc(22px + 13 * (100vw - 320px) / 448);
  }
}
.faq__block--text {
  display: none;
  color: var(--clr2);
  padding-bottom: 35px;
  max-width: 900px;
}

.contact {
  margin: 100px 0;
}
@media (max-width: 768px) {
  .contact {
    margin: 50px 0;
  }
}
.contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1170px) {
  .contact__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.contact__image {
  max-width: 400px;
  animation: circle 4s ease-in-out 0s infinite;
}
@media (max-width: 1170px) {
  .contact__image {
    display: none;
  }
}
@media (max-width: 790px) {
  .contact__image {
    display: block;
  }
}
.contact__body {
  max-width: 400px;
}
@media (max-width: 790px) {
  .contact__body {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .contact__body {
    text-align: left;
  }
}
.contact__body h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 15px;
  color: var(--clr3);
}
@media (max-width: 768px) {
  .contact__body h2 {
    font-size: calc(40px + 24 * (100vw - 320px) / 448);
  }
}
.contact__body p {
  font-size: 20px;
}
@media (max-width: 768px) {
  .contact__body p {
    font-size: calc(16px + 4 * (100vw - 320px) / 448);
  }
}
.contact__form {
  max-width: 350px;
  position: relative;
}
.contact__form::before {
  content: "";
  position: absolute;
  top: -90px;
  right: 0;
  background: url("../img/hero/e1.png") 0 0/100% no-repeat;
  width: 75px;
  height: 120px;
  transform: rotate(65deg);
}
@media (max-width: 790px) {
  .contact__form::before {
    display: none;
  }
}
@media (max-width: 500px) {
  .contact__form {
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .contact__form {
    width: 100%;
  }
}
.contact__icon--loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(100, 100, 100, 0.1176470588);
  border-radius: 32px;
}
.contact__icon--loading.active {
  display: flex;
  z-index: 1000;
}
.contact__icon--loading img {
  width: 50px;
  height: 50px;
}
.contact__input--block {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 23px;
}
@media (max-width: 400px) {
  .contact__input--block {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.contact__input {
  border-radius: 32px;
  background: #F4F4F4;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.0509803922);
}
@media (max-width: 400px) {
  .contact__input {
    width: 100%;
  }
}
.contact__input .error {
  border: 1px solid #e91f1f;
}
.contact__input-input {
  background-color: transparent;
  padding: 18px 12px;
  border-radius: 32px;
  width: 100%;
  text-align: center;
  border: 1px solid #f4f4f4;
  transition: all 0.3s ease-in-out;
}
.contact__input-input:hover {
  border: 1px solid var(--clr5);
}
.contact__input-input:focus {
  border: 1px solid var(--clr2);
}
.contact__input--button {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 400px) {
  .contact__input--button {
    display: block;
  }
}
.contact__btn {
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: none;
}
.contact__btn:hover {
  background-color: var(--clr3);
  color: var(--clr1);
}
@media (max-width: 400px) {
  .contact__btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
.contact__btn--tg {
  background-color: var(--clr3);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  gap: 10px;
  font-size: 0;
}
.contact__btn--tg:hover {
  background-color: var(--clr4);
}
@media (max-width: 400px) {
  .contact__btn--tg {
    font-size: 16px;
  }
}
.contact__img--icon {
  width: 31px;
}


 

     /* Enhanced OTP Popup Styles */
        .popup {
            position: fixed;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            top: 0;
            left: 0;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            overflow-y: auto;
            overflow-x: hidden;
            transition: all 0.3s ease-in-out;
        }
        
        .popup:target {
            opacity: 1;
            visibility: visible;
        }
        
        .popup.open {
            opacity: 1;
            visibility: visible;
        }
        
        .popup__body {
            min-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 10px 50px;
            transition: all 0.3s ease-in-out;
        }
        
        .popup__content {
            max-width: 500px;
            min-width: 450px;
            position: relative;
            transition: all 0.3s ease-in-out;
            width: 100%;
            opacity: 0;
            background: var(--clr1);
            border-radius: 32px;
            transform: scale(0.8);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .popup:target .popup__content,
        .popup.open .popup__content {
            opacity: 1;
            transform: scale(1);
        }
        
        @media (max-width: 700px) {
            .popup__content {
                max-width: 95%;
                min-width: 90%;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 450px) {
            .popup__content {
                min-width: 85%;
                max-width: 90%;
            }
        }
        
        .popup__content-thank {
            max-width: 500px;
            min-width: 450px;
        }
        
        @media (max-width: 700px) {
            .popup__content-thank {
                max-width: 95%;
                min-width: 90%;
            }
        }
        
        @media (max-width: 450px) {
            .popup__content-thank {
                min-width: 85%;
                max-width: 90%;
            }
        }
        
        .popup__close {
            position: absolute;
            right: 15px;
            top: 15px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--clr2);
            z-index: 101;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            border-radius: 50%;
            background: var(--clr5);
        }
        
        .popup__close:hover {
            color: var(--clr1);
            background: var(--clr4);
        }
        
        .popup__form {
            display: block;
            background: var(--clr1);
            padding: 50px;
            position: relative;
            text-align: center;
            border-radius: 32px;
            margin: 0 auto;
        }
        
        @media (max-width: 450px) {
            .popup__form {
                padding: 30px 20px;
            }
        }
        
        .popup__form h2 {
            font-size: 24px;
            line-height: 1.22;
            margin-bottom: 20px;
            color: var(--clr2);
            font-family: 'Tajawal', sans-serif;
            font-weight: 600;
        }
        
        .popup__logo-otp {
            width: 80px;
            height: 80px;
            background: var(--clr3);
            border-radius: 50%;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--clr1);
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 8px 20px rgba(114, 80, 181, 0.3);
        }
        
        .popup__logo {
            max-width: 120px;
            height: auto;
            margin: 0 auto 30px;
            display: block;
        }
        
        .popup__input {
            max-width: 100%;
            margin: 0 auto 20px;
            border-radius: 32px;
        }
        
        .popup__input .popup-input {
            width: 100%;
            font-size: 16px;
            color: var(--clr2);
            padding: 18px 24px;
            border: 2px solid var(--clr5);
            transition: all 0.3s ease-in-out;
            border-radius: 32px;
            text-align: right;
            font-family: 'Tajawal', sans-serif;
            background: var(--clr1);
        }
        
        .popup__input .popup-input:hover {
            border-color: var(--clr3);
        }
        
        .popup__input .popup-input:focus {
            border-color: var(--clr3);
            outline: none;
            box-shadow: 0 0 0 3px rgba(114, 80, 181, 0.1);
        }
        
        .popup__input .popup-input::placeholder {
            color: var(--clr-gray);
        }
        
        .popup__input .error {
            border-color: var(--clr-error);
        }
        
        .popup__btn {
            width:50%;
            text-align: center;
            font-size: 18px;
            font-family: 'Zain', sans-serif;
            background: var(--clr3);
            color: var(--clr1) !important; /* Force white text */
            padding: 20px 20px;
            border: none;
            border-radius: 32px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none !important; /* Remove underline */
            display: inline-block;
            font-weight: 400;
            box-shadow: 0 4px 15px rgba(114, 80, 181, 0.3);
            line-height: 1.2;

        }
        
        .popup__btn:hover {
            background: var(--clr4);
            color: var(--clr1) !important; /* Force white text on hover */
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 118, 82, 0.4);
            text-decoration: none !important; /* Remove underline on hover */
        }

        .popup__btn:visited {
            color: var(--clr1) !important;
            text-decoration: none !important; /* Remove underline for visited */
        }

        .popup__btn:focus {
            text-decoration: none !important; /* Remove underline on focus */
            outline: none;
        }
        
        .popup__form-thank {
            padding: 50px;
        }
        
        .popup__form-thank h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--clr2);
            margin-bottom: 15px;
        }
        
        @media (max-width: 450px) {
            .popup__form-thank {
                padding: 30px 20px;
            }
            
            .popup__form-thank h2 {
                font-size: 24px;
            }
        }
        
        /* CSS خاص بالـ popup فقط */
.popup.show-on-load {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.popup.force-show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.popup.force-show .popup__close {
    display: none !important;
}
        .otp-container {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin: 25px 0;
            direction: rtl;
        }
        
        .otp-input {
            width: 55px;
            height: 55px;
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            border: 2px solid var(--clr5);
            border-radius: 12px;
            transition: all 0.3s ease;
            font-family: 'Tajawal', sans-serif;
            background: var(--clr1);
            color: var(--clr2);
        }
        
        .otp-input:focus {
            border-color: var(--clr3);
            outline: none;
            box-shadow: 0 0 0 3px rgba(114, 80, 181, 0.1);
            transform: scale(1.05);
        }
        
        .otp-input:valid {
            border-color: var(--clr-success);
        }

        .otp-input.filled {
            border-color: var(--clr3);
            background: rgba(114, 80, 181, 0.05);
        }
        
        @media (max-width: 450px) {
            .otp-input {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
            
            .otp-container {
                gap: 8px;
            }
        }
        
        .contact__icon--loading {
            display: none;
        }
        
        .step-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 35px;
            direction: rtl; /* Changed to RTL for right-to-left flow */
        }
        
        .step {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--clr5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            color: var(--clr-gray);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .step.active {
            background: var(--clr3);
            color: var(--clr1);
            border-color: var(--clr3);
            box-shadow: 0 4px 12px rgba(114, 80, 181, 0.3);
        }
        
        .step.completed {
            background: var(--clr-success);
            color: var(--clr1);
            border-color: var(--clr-success);
        }
        
        .step-line {
            width: 50px;
            height: 3px;
            background: var(--clr5);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .step-line.active {
            background: var(--clr3);
        }
        
        .step-line.completed {
            background: var(--clr-success);
        }
        
        @media (max-width: 450px) {
            .step {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            
            .step-line {
                width: 35px;
                height: 2px;
            }
        }
        
        /* Additional text styles */
        .popup__form p {
            color: var(--clr-text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            font-family: 'Tajawal', sans-serif;
            font-size: 16px;
        }
        
        .resend-text {
            color: var(--clr-text-light);
            font-size: 14px;
            margin: 20px 0;
            font-family: 'Tajawal', sans-serif;
        }
        
        .popup__form a,
        .resend-link {
            color: var(--clr3);
            text-decoration: none;
            font-weight: 600;
        }
        
        .popup__form a:hover,
        .resend-link:hover {
            color: var(--clr4);
            text-decoration: underline;
        }



 /*********** footer ******************/
 
/* Footer Main Container */
.footer {
    padding: 50px 0 20px;
    border-top: 1px solid var(--clr3);
    background: var(--clr1);
    color: var(--clr3);
}

/* Updated Footer Inner Layout */
.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem; /* تقليل المسافة بين البلوك */
    position: relative;
    border-bottom: none; /* إزالة أي حدود سفلية */
}

/* قاعدة للشاشات الأصغر من 850px */
@media (max-width: 850px) {
    .footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        border-bottom: none;
    }
}

@media (max-width: 735px) {
    .footer__inner {
        flex-wrap: wrap;
        flex-direction: column;
        text-align: center;
        border-bottom: none; /* إزالة أي حدود سفلية */
    }
}

@media (max-width: 400px) {
    .footer__inner {
        display: block;
        border-bottom: none; /* إزالة أي حدود سفلية */
    }
}

.footer__inner::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -350px;
    width: 400px;
    height: 400px;
    animation: rotate 6s ease-in-out 0s infinite;
    z-index: 1;
}

@media (max-width: 850px) {
    .footer__inner::before {
        display: none; /* إخفاء العنصر المتحرك في الشاشات الصغيرة */
    }
}

@media (max-width: 800px) {
    .footer__inner::before {
        display: none;
    }
}

/* Footer Blocks */
.footer__block {
    flex: 1;
    min-width: 200px; /* تقليل العرض الأدنى */
    position: relative;
    z-index: 2;
    border-bottom: none; /* إزالة أي حدود سفلية */
    margin-bottom: 0.5rem; /* تقليل المسافة السفلية */
}

@media (max-width: 850px) {
    .footer__block {
        min-width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .footer__block {
        min-width: 100%;
        margin-bottom: 1.5rem;
        border-bottom: none; /* إزالة أي حدود سفلية */
    }
}

@media (max-width: 700px) {
    .footer__block:nth-child(3) {
        flex: 0 1 100%;
        border-bottom: none; /* إزالة أي حدود سفلية */
    }
}

/* Footer Logo */
.footer__logo {
    margin-bottom: 30px; /* تقليل المسافة السفلية */
    display: inline-block;
}

.footer__logo--img {
    max-width: 200px;
}

/* Footer Navigation */
.footer-nav__title,
.footer-location__title {
    color: #032d70;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.8rem; /* تقليل المسافة السفلية */
    padding-bottom: 0.3rem; /* تقليل المسافة السفلية */
    border-bottom: none; /* إزالة أي حدود سفلية */
}

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

.footer-nav__item {
    margin-bottom: 0.3rem; /* تقليل المسافة السفلية */
    border-bottom: none; /* إزالة أي حدود سفلية */
}

.footer-nav__link {
    color: #032d70;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.2rem 0; /* تقليل المسافة */
    border-bottom: none; /* إزالة أي حدود سفلية */
}

.footer-nav__link:hover {
    color: #0547a3;
    transform: translateX(5px);
    font-weight: 500;
    border-bottom: none; /* إزالة أي حدود سفلية عند التمرير */
}

/* Footer Menu (Alternative Style) */
.footer-menu {
    text-align: left;
}

@media (max-width: 850px) {
    .footer-menu {
        text-align: center; /* توسيط النص في الشاشات الصغيرة */
    }
}

.footer-menu__item {
    margin-bottom: 15px; /* تقليل المسافة السفلية */
    border-bottom: none; /* إزالة أي حدود سفلية */
}

.footer-menu__link {
    color: var(--clr3); /* Changed to match navigation color */
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-size: 0.8rem;
    display: inline-block;
    padding: 0.2rem 0; /* تقليل المسافة */
    border-bottom: none; /* إزالة أي حدود سفلية */
}

.footer-menu__link:hover {
    color: #0547a3;
    transform: translateX(5px);
    font-weight: 500;
    border-bottom: none; /* إزالة أي حدود سفلية */
}

/* Footer Location */
.footer-location__item {
    margin-bottom: 8px; /* تقليل المسافة السفلية */
    border-bottom: none; /* إزالة أي حدود سفلية */
}

.footer-location__link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--clr3); /* Changed to match navigation color */
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.2rem 0; /* تقليل المسافة */
    border-bottom: none; /* إزالة أي حدود سفلية */
}

@media (max-width: 850px) {
    .footer-location__link {
        justify-content: center; /* توسيط المحتوى في الشاشات الصغيرة */
    }
}

.footer-location__link:hover {
    color: #0547a3;
    transform: translateX(5px);
    font-weight: 500;
    border-bottom: none; /* إزالة أي حدود سفلية */
}

.footer-location__img {
    width: 17px;
    height: 17px;
}

/* Social Media */
.footer-social {
    margin-bottom: 15px; /* تقليل المسافة السفلية */
}

@media (max-width: 400px) {
    .footer-social {
        margin-bottom: 15px;
    }
}

.footer-social__list {
    display: flex;
    align-items: center;
    gap: 15px; /* تقليل المسافة بين الأيقونات */
}

@media (max-width: 850px) {
    .footer-social__list {
        justify-content: center; /* توسيط الأيقونات في الشاشات الصغيرة */
    }
}

.footer-social__item {
    transition: all 0.3s ease-in-out;
    border-bottom: none; /* إزالة أي حدود سفلية */
}

.footer-social__item:hover {
    transform: scale(1.2);
}

.footer-social__img {
    width: 22px;
    height: 22px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .footer-nav__title,
    .footer-location__title {
        border-bottom: none; /* إزالة أي حدود سفلية في الشاشات الصغيرة */
    }
    
    .footer-nav__item,
    .footer-menu__item,
    .footer-location__item {
        border-bottom: none; /* إزالة أي حدود سفلية في الشاشات الصغيرة */
    }
    
    .footer-nav__link,
    .footer-menu__link,
    .footer-location__link {
        border-bottom: none; /* إزالة أي حدود سفلية في الشاشات الصغيرة */
    }
}




/***************** Resturants MAIN page 50s *********************/


     /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--clr3) 0%, #0547a3 100%);
            padding: 60px 0 40px;
            margin-bottom: 40px;
            text-align: center;
            color: var(--clr1);
        }

        .page-header h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .page-header p {
            font-size: 20px;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 32px;
            }
            .page-header p {
                font-size: 16px;
            }
        }

        /* Add pagination styles inline for this example */
        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 40px 0;
            gap: 10px;
            flex-wrap: wrap;
        }

        .pagination {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--clr1);
            border-radius: 15px;
            padding: 15px 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 2px solid var(--clr5);
        }

        .pagination-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 45px;
            height: 45px;
            border: 2px solid var(--clr5);
            background: var(--clr1);
            color: var(--clr3);
            text-decoration: none;
            border-radius: 12px;
            font-family: 'Zain', sans-serif;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            user-select: none;
        }

        .pagination-btn:hover {
            background: var(--clr3);
            color: var(--clr1);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(3, 45, 112, 0.2);
        }

        .pagination-btn.active {
            background: var(--clr4);
            color: var(--clr1);
            border-color: var(--clr4);
        }

        .pagination-btn.active:hover {
            background: var(--clr4);
            border-color: var(--clr4);
        }

        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .pagination-btn:disabled:hover {
            background: var(--clr1);
            color: var(--clr3);
            transform: none;
            box-shadow: none;
        }

        .pagination-ellipsis {
            padding: 0 10px;
            color: var(--clr3);
            font-weight: 600;
            font-size: 16px;
        }

        .pagination-info {
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: var(--clr3);
            margin-bottom: 20px;
            padding: 10px;
            background: rgba(3, 45, 112, 0.05);
            border-radius: 8px;
        }

        .pagination-btn.prev-btn,
        .pagination-btn.next-btn {
            font-size: 18px;
            min-width: 50px;
        }

        .pagination-btn.prev-btn::before {
            content: "→"; 
        }

        .pagination-btn.next-btn::before {
            content: "←";
        }

        @media (max-width: 768px) {
            .pagination-container {
                margin: 30px 0;
                gap: 5px;
            }

            .pagination {
                padding: 12px 15px;
                gap: 5px;
                border-radius: 12px;
            }

            .pagination-btn {
                min-width: 40px;
                height: 40px;
                font-size: 14px;
                border-radius: 10px;
            }

            .pagination-btn.prev-btn,
            .pagination-btn.next-btn {
                min-width: 45px;
                font-size: 16px;
            }

            .pagination-ellipsis {
                padding: 0 5px;
                font-size: 14px;
            }

            .pagination-info {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .pagination-btn.hide-mobile {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .pagination {
                padding: 10px 12px;
                gap: 3px;
            }

            .pagination-btn {
                min-width: 35px;
                height: 35px;
                font-size: 13px;
            }

            .pagination-btn.prev-btn,
            .pagination-btn.next-btn {
                min-width: 40px;
                font-size: 14px;
            }
        }

        /* Page header styles */
        .page-header {
            background: linear-gradient(135deg, var(--clr3) 0%, #0547a3 100%);
            padding: 60px 0 40px;
            margin-bottom: 40px;
            text-align: center;
            color: var(--clr1);
        }

        .page-header h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .page-header p {
            font-size: 20px;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 32px;
            }
            .page-header p {
                font-size: 16px;
            }
        }

 /* =============== FIXED FILTERS SECTION STYLES =============== */

            /* Search Section - في الأعلى */
        .search-section {
            margin-bottom: 37px;
            position: relative;
        }

        .search-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 120%;
            text-transform: uppercase;
            margin-bottom: 40px;
            color: var(--clr2);
        }

        @media (max-width: 768px) {
            .search-title {
                font-size: calc(24px + 8 * (100vw - 320px) / 448);
                margin-bottom: calc(22px + 15 * (100vw - 320px) / 448);
            }
        }

        .search-container {
            position: relative;
            width: 100%;
            margin-bottom: 37px;
        }

        @media (max-width: 768px) {
            .search-container {
                margin-bottom: calc(22px + 15 * (100vw - 320px) / 448);
            }
        }

        .search-input {
            border-radius: 23px;
            background: #F4F4F4;
            width: 100%;
            font-size: 16px;
            font-weight: 400;
            line-height: 120%;
            padding: 22px 70px 22px 24px;
            border: none;
            font-family: 'Zain';
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            background: #e8e8e8;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        @media (max-width: 550px) {
            .search-input {
                border-radius: 10px;
            }
        }

        .search-button {
            position: absolute;
            top: 50%;
            right: 24px;
            transform: translateY(-50%);
            width: 33px;
            height: 33px;
            background-color: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-button:hover {
            transform: translateY(-50%) scale(1.1);
        }

        .search-icon {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }


/* Filters Section */
.filters-section {
    background: var(--clr1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--clr5);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

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

.filter-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--clr3);
    margin-bottom: 8px;
    font-family: 'Zain', sans-serif;
}

.filter-group select {
    padding: 12px 15px;
    border: 2px solid var(--clr5);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Zain', sans-serif;
    background: var(--clr1);
    color: var(--clr2);
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23032d70' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--clr3);
    box-shadow: 0 0 0 3px rgba(3, 45, 112, 0.1);
}

.filter-group select:hover {
    border-color: var(--clr3);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-filter {
    padding: 12px 30px;
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Zain', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--crl8);
    color: var(--clr1);
    border-color: var(--crl8);
}

.btn-primary:hover {
    background: #e6a000;
    border-color: #e6a000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 177, 0, 0.3);
}

.btn-secondary {
    background: var(--clr5);
    color: var(--clr3);
    border-color: var(--clr5);
}

.btn-secondary:hover {
    background: var(--clr3);
    color: var(--clr1);
    border-color: var(--clr3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 45, 112, 0.3);
}

/* Results Info */
.results-info {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--clr3);
    margin: 20px 0;
    padding: 15px;
    background: rgba(3, 45, 112, 0.08);
    border-radius: 12px;
    font-family: 'Zain', sans-serif;
}

/* Loading Message */
.loading-message {
    text-align: center;
    color: var(--clr3);
    font-size: 18px;
    padding: 40px;
    font-family: 'Zain', sans-serif;
}

/* تنسيق رسالة عدم وجود النتائج */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: transparent;
    margin: 40px 0;
}

.no-results h3 {
    color: #032d70;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.no-results p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

/* إخفاء رسالة التحميل عند عدم وجود نتائج */
.loading-message {
    display: none;
}

/* التأكد من إخفاء العناصر عند عدم وجود نتائج */
.hidden-section {
    display: none !important;
}

/* تحسين شكل الفلاتر عند عدم وجود نتائج */
.filters-section {
    margin-bottom: 20px;
}

/* إضافة مساحة إضافية حول رسالة عدم وجود النتائج */
#noResults {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



/* Responsive Design */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
    }
    
    .search-input {
        padding: 16px 55px 16px 20px;
        font-size: 15px;
        border-radius: 20px;
    }
    
    .search-button {
        right: 12px;
        width: 36px;
        height: 36px;
    }
    
    .search-icon {
        width: 20px;
        height: 20px;
    }
    
    .filters-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .filter-group select {
        padding: 14px 35px 14px 15px;
        font-size: 15px;
        border-radius: 10px;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-filter {
        width: 50%;
        max-width: 180px;
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .results-info {
        font-size: 16px;
        padding: 12px;
        margin: 15px 0;
    }
    
    .no-results {
        padding: 40px 15px;
        margin: 15px 0;
    }
    
    .no-results h3 {
        font-size: 24px;
    }
    
    .no-results p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .search-input {
        padding: 14px 50px 14px 18px;
        font-size: 14px;
        border-radius: 18px;
    }
    
    .search-button {
        right: 10px;
        width: 32px;
        height: 32px;
    }
    
    .search-icon {
        width: 18px;
        height: 18px;
    }
    
    .filters-section {
        padding: 15px;
        border-radius: 15px;
    }

    .filter-group label {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .filter-group select {
        padding: 12px 30px 12px 12px;
        font-size: 14px;
        border-radius: 8px;
        background-size: 14px;
        padding-right: 35px;
    }

    .btn-filter {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 20px;
    }
}

/* Fix for any conflicts with existing our-menu styles */
.our-menu .filters-section,
.our-menu .search-section {
    background: var(--clr1) !important;
    border-radius: 20px !important;
}

.our-menu .search-input {
    background: var(--clr1) !important;
    border: 2px solid var(--clr5) !important;
}

.our-menu .filter-group select {
    background: var(--clr1) !important;
    border: 2px solid var(--clr5) !important;
}



        /**************** restaurants details *****************/
        
        /* Back Button */
        .back-button {
            margin: 30px 0;
        }

        .back-btn {
            background: var(--clr5);
            color: var(--clr3);
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: var(--clr3);
            color: var(--clr1);
        }

        /* Restaurant Details */
        .restaurant-details {
            margin: 40px 0;
        }

        .restaurant-header {
            background: linear-gradient(135deg, var(--clr3) 0%, #0547a3 100%);
            border-radius: 20px;
            padding: 40px;
            color: var(--clr1);
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .restaurant-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: rotate(45deg);
        }

        .restaurant-id {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--crl8);
            color: var(--clr1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
        }

        .restaurant-header h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .restaurant-subtitle {
            font-size: 20px;
            opacity: 0.9;
        }

        .restaurant-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        /* تنسيق رابط الموقع */
.location-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.location-link:hover {
    color: #0056b3;
    text-decoration: none;
    border-bottom: 1px solid #0056b3;
    cursor: pointer;
}

.location-link:active {
    color: #004085;
}

/* للأجهزة المحمولة */
@media (max-width: 768px) {
    .location-link {
        color: #007bff;
        font-size: inherit;
    }
    
    .location-link:hover {
        color: #0056b3;
    }
}
        .info-section {
            background: var(--clr1);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 2px solid var(--clr5);
        }

        .info-section h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--clr3);
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .info-label {
            font-weight: 600;
            color: var(--clr3);
            min-width: 120px;
        }
        

        .info-value {
            color: var(--clr2);
        }

        .rating {
            font-size: 18px;
            color: var(--crl8);
        }

        .restaurant-gallery {
            margin-bottom: 40px;
        }

        .gallery-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--clr3);
            margin-bottom: 25px;
            text-align: center;
            text-transform: uppercase;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .contact-section {
            background: var(--clr3);
            border-radius: 20px;
            padding: 40px;
            color: var(--clr1);
            text-align: center;
        }

        .contact-section h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--clr1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--clr3);
            font-size: 18px;
            font-weight: bold;
        }

        .contact-text {
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 768px) {
          

            .restaurant-header {
                padding: 30px 20px;
            }

            .restaurant-header h1 {
                font-size: 32px;
            }

            .restaurant-subtitle {
                font-size: 16px;
            }

            .restaurant-info {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .info-section {
                padding: 20px;
            }

            .contact-info {
                flex-direction: column;
                gap: 20px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }


/* welcome user  */
/* إضافات CSS لتحسين مظهر الترحيب بالمستخدم */

/* تنسيق زر الترحيب بالمستخدم */
.header__btn.user-welcome {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    cursor: default !important;
    pointer-events: none !important;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.header__btn.user-welcome::before {
    content: "👋";
    margin-left: 8px;
    font-size: 1.1em;
}

.header__btn.user-welcome:hover {
    background: linear-gradient(135deg, #28a745, #20c997);
    transform: none;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* تحسين مظهر popup الإجباري */
.popup.force-show {
    z-index: 10000 !important;
}

.popup.force-show .popup__content {
    border: 3px solid #dc3545;
    box-shadow: 0 10px 40px rgba(220, 53, 69, 0.3);
}

.popup.force-show .popup__close {
    display: none !important;
}

/* رسالة تنبيه للمطاعم غير المتاحة للزوار */
.restaurant-access-warning {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 9999;
    text-align: center;
    display: none;
    animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* تحسين مظهر بطاقات المطاعم عند عدم التسجيل */
.restaurant-card.locked,
.our-menu__item.locked {
    position: relative;
    cursor: not-allowed;
    opacity: 0.8;
}

.restaurant-card.locked::after,
.our-menu__item.locked::after {
    content: "🔒 يرجى تسجيل الدخول";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restaurant-card.locked:hover::after,
.our-menu__item.locked:hover::after {
    opacity: 1;
}

/* تحسين تجربة المستخدم للـ popup الإجباري */
.popup.force-show .popup__body::before {
    content: "⚠️ يتطلب تسجيل الدخول للمتابعة";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 1;
}

/* تحسين مظهر نص الترحيب */
.header__btn.user-welcome {
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 25px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .header__btn.user-welcome {
        font-size: 12px;
        padding: 10px 15px;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .header__btn.user-welcome::before {
        margin-left: 4px;
    }
}

