*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body{
    background-color: #cdadce;
      position: relative;
}
body::after {
    content: '';
    position: fixed;   /* مهم جداً */
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(164 164 164);
     /* clip-path: circle(50% at 80% 99%); */
    clip-path: circle(40% at 85% 105%);
    z-index: -1;
}
nav {
    display: flex;             /* يجعل المحتوى أفقي */
    align-items: center;       /* يحاذي العنوان واللينكات في نفس الارتفاع */
    justify-content: space-between; /* يوزع العنوان على الشمال واللينكات على اليمين */
    padding: 10px 50px;        /* مسافة من الأعلى والأسفل ومن الجانبين */
    background-color: #cdadce;    /* خلفية بيضاء */
    width: 400px;
}


ul a{
   text-decoration: none;
    color: rgb(2, 2, 2);
    font-size: 18px; 
}
nav a{
    text-decoration: none;
    color: black;
    font-size: 18px;
}

nav a:hover{
    background-color: #cc99aa;
    padding: 10px;
    color: #e91e63; /* لون وردي عند المرور */
    border-radius: 4px;
}


 #aboutnav{
     font-size: 15px;
    float: right;
    margin: 30px 0;
    color: #000;
    gap: 40px;
    padding: 10px 0;
      width: 100%;
     direction: rtl;
     padding: 5px;
     border-radius: 4px;
}

#aboutnav a{
    color: #000;
    text-decoration: none;
    margin: 0 10px;
}
#aboutnav:hover{
     background-color: #cf9faf;
}

.title{
    font-size: 32px;
   letter-spacing: 2px;
   color: #e91e63;
   left: 0;
   font-family: 'Dancing Script', cursive;
 
}



#title{
    text-align: center;
    margin-top: 20px;
    
}

.count{
    padding: 40px;
    width: 80%;
    margin: 40px auto;
    text-align: center;
    border-radius: 15px;
    justify-content: center;
   background-color: rgba(0, 0, 0, 0.1); 
}

.count h1{
    float: left;
    font-family: 'Dancing Script', cursive;
   top: 1px;
}

.infocontt{
    margin: 19px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.infocontt .image {
    width: 60%;
    height: 60%;
   
}
img{
    width: 100%;
    height: 100%;
     border-radius: 8px;
}
.infocontt p{
    float: left;
    font-size: 22px;
    

}

#shopnow{
    align-items: center;
    padding: 8px;
    width: 20%;
    background-color: #80784c;
    border: none;
    font-size: 19px;
    font-family: 'Dancing Script', cursive;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;

    /* Animation */
    animation: pulse 1.5s infinite ease-in-out;
}

/* Keyframes للحركة */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.09); /* يكبر 10% */
    }
    100% {
        transform: scale(1);
    }
}

/* Optional: hover يضيف تأثير أسرع */
#shopnow:hover {
    animation: pulse 0.8s infinite ease-in-out;
    background-color: #9a9460; /* لون أفتح عند المرور */
}

.car {
    position: fixed;       /* يجعلها ثابتة على الشاشة */
    bottom: 20px;          /* تبعد 20px عن أسفل الشاشة */
    left: 20px;           /* تبعد 20px عن يمين الشاشة */
     background-color:white;
    color: #ffffff;           /* أيقونة بيضاء */
    padding: 15px;
    border-radius: 50%;    /* شكل دائري */
    font-size: 24px;       /* حجم الأيقونة */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.7); /* ظل خفيف */
    transition: transform 0.3s, background-color 0.3s;
      z-index: 2;
}

/* تأثير عند المرور على الأيقونة */
.car:hover {
    background-color: #b86080;
    transform: scale(1.1);
}

.car .countcar {
        
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%); /* يثبت فوق الزاوية */
    background-color: #ffffff;
    color: #6000af;
    font-size: 14px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 3;
}

#about {
    float: right;
    font-size: 10px;
    text-transform: lowercase;
    letter-spacing: 1px;
}





/* الحاوية للهامبرجر */
.navbar {
    /* لون الخلفية */
    padding: 10px 15px;
      background-color: #bd90ae;    
      overflow: hidden;
  position: fixed;
    height: 100vh;
    align-items: center;
    border-radius: 4px;
    right: 0;
width: 230px;
      flex-direction: column;
      z-index: 1;
        list-style: none;
        top: 4px;
    right: 1px;
  
   
    
}


 ul li{
        
   
      font-weight: bold;
    list-style: none;
           right: 0;
     
    width: 100%;
     direction: rtl;
     padding: 7px;
font-size: xx-large;
/* height: 100%; */

}

ul li:hover{
    background-color: #cdadce;
    border-radius: 6px;
}


  span {
    position: fixed;
   right: 7px;
    top: 10px;
    padding: 9px;
   cursor: pointer;
     z-index: 100;
     float: right;
     font-size:x-large;
}
#admin {
    right: 10px;
     float: right;
    padding: 20px;
    text-align: center;
     position: absolute;
     bottom: 0;
     color: #ffffff;
     letter-spacing: 2px;
     background-color: #a13535;
      width: 90%;
      bottom: 30px;
       border-radius: 6px;
}
 #admin i{
    color: #000;
 }
  #admin:hover{
    transform: scale(1.05); /* تكبير بسيط */
    box-shadow: 0 5px 15px rgba(214, 17, 17, 0.5); /* توهج خفيف */
}

.navbar {
    display: none;
 
}

.navbar.show {
    display: block;
   
}




.about-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.about-card {
    background: white;
    padding: 30px;
    width: 350px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    animation: popup 0.4s ease;
}

.about-icon {
    font-size: 40px;
    color: #e91e63;
    margin-bottom: 10px;
}

.about-card h2 {
    margin-bottom: 10px;
}

.about-card p {
    color: #555;
    line-height: 1.6;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
}

@keyframes popup {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


 










@media (max-width: 768px) {

.infocontt {
    display: flex;
    position: relative;
    gap: 10px;
}

/* الكلام */
.infocontt p {
   
    width: 50%;
    font-size: 15px;
   
    margin: 0;
}

/* الصورة */
.infocontt .image {
    width: 800px;

    height: 100%;
      
}

.infocontt img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
#shopnow{
    padding: 15px;
    margin: 30px 0;
    width: 150px;
}

body::after {
    content: '';
    position: fixed;   /* مهم جداً */
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(88 145 159);
    clip-path: circle(59% at 80% 99%);
    z-index: -1;
}

}