
:root {
  --main-color: #A6D2D7;
  --accent-color: #9BCAC8;
  --success-color: #B6D89B;
  --gradiant-color: linear-gradient(to right, #A6D2D7, #9BCAC8, #B6D89B);
}

* {
     margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;

}



body{
    padding-left: 80px;
    padding-right: 80px;
     font-family: "Noto Sans Arabic" ;
    font-weight: 400;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left:44px ;
    padding-right: 44px;
    margin-bottom:20px ;
    margin-top: 20px;
}
nav a{
    align-items: center;
    display: flex;
    justify-content: center;
}
.contactlinks{
    display: flex;
    align-items: center;
    gap: 25px;
    
}
.insta{
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}
.insta:hover{
    cursor: pointer;
    transform: scale(1.1);
}
.phone{
    display: flex;
    gap: 7px;
    align-items: center;

}
.phone p{
    font-size: 19px;
   
}
.logo{
    width: 100px;
    
}
.hero{
    display: flex;
    align-items: center;
    justify-content: center; 
    width: 100%;
    height: 340px;
    /* max-width: 1500px; */
    margin:  auto;
    margin-bottom: 30px;
    
}
.heroimg{
    width: 41%;
    height: 340px;
}   
.heroimg img{
   width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius:10px ;
    border-bottom-right-radius:10px ;
}
.texthero{
    width: 59%;
    height: 340px;
    display: flex;
   align-items: center;
    justify-content: center;
    flex-direction: column;
    background:var(--gradiant-color);
    border-top-left-radius:10px ;
    border-bottom-left-radius:10px ;
}
.texthero p{
  font-size: 35px;
  text-align: right;
    color: #ffffff;
    padding-left:20px ;
    padding-right:30px ;
}
.seemor{
    width: 132px;
    height: 44px;
    font-size: 20px;
     background: white;
     border: none;
     border-radius: 20px;
     color: var(--main-color);
     transition: all 0.3s ease-in-out;
}
.seemor:hover{
    transform: scale(1.1);
    cursor: pointer;
}
.bttoncontenair{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 80%;
   
}
.text{
    display: block;
    gap: 0px;
    margin-bottom: 20px;
}
.text p{
    margin: -15px;
}
.dropdown-icon{
    width: 24px;
}
.dropdown-icon1{
    width: 32px;
    transform: rotate(90deg);
}
.typess{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 49px;
    background-color:white;
    border: solid 2px black;
    border-radius: 20px;
      font-size:24px ;
      gap: 10px;
}

.categories{
    display: flex;
    align-items: center;
    justify-content:end ;
    width: 100%;
   padding-left:44px ;
    padding-right: 44px; 
    margin-top:70px;
}
.onetype{
    display: flex;
    align-items: center;
   width: 100%;
   justify-content: space-between;
    padding-right: 88px;
    padding-left: 88px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.onetype p{
    font-size: 33px;
    
    
}
.typeinfo22222{
    display: flex;
    align-items: center;
    justify-content: flex-end;
   width: 100%;
   transition: gap 0.3s ease;
}
.typeinfo22222:hover{
    cursor: pointer;
    
}
.typeinfo22222 img {
  transition: margin-right 0.3s ease;
}

.typeinfo22222:hover img {
  margin-right: 10px;
  cursor: pointer;
}
.leftright{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
}
.scrollbutton{
      width: 44px;
  height: 44px;
  border:none;
  border-radius: 50%;
  background-color:white;
  border: solid 1px black;
  color: black;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s, color 0.3s;

}
.scrollbutton:hover{
    background: var(--gradiant-color);
    color: white;
    border: 1px solid var(--gradiant-color);
}
.productimg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}
.productimg2{
    width: 269px;
    height: 269px;;
    overflow: hidden;
    border-radius: 10px;
    
}
.product:hover .productimg {
  transform: scale(1.1);
}
.product:hover{
    cursor: pointer;
}
.product{
    flex: 0 0 auto;           
  scroll-snap-align: start;
  width: 269px;
    direction: ltr;
}
.productinfo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:269px;
}
.procuctcontinair{
      display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  direction: rtl;
  padding-left: 44px;
  padding-right: 44px;
    scrollbar-width: none; 
  -ms-overflow-style: none;
}
.procuctcontinair::-webkit-scrollbar {
  display: none;
}
.description{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 0px;
   color: #00000070;
   overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.buy{
    width: 115px;
    height: 43px;
    font-size: 19px;
    background: white;
    border: 2px solid var(--success-color);
    border-radius: 20px;
    transition: background 0.3s, color 0.3s;
}
.buy:hover{
    background: var(--gradiant-color);
    color: white;
    cursor: pointer;
}
.price{
    font-size: 16px;
     font-weight: bold;
}
.footer-content{
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#F6F6F6;
    margin-top: 60px;
     margin-left: -80px;
  margin-right: -80px;
  width: calc(100% + 160px);
}
.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 160px;
  z-index: 999;
  text-align: right;
}

.dropdown-menu li {
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.dropdown-menu li:hover {
  background-color: #f2f2f2;
}

.typess {
  cursor: pointer;
}

#dropdownArrow {
  transition: transform 0.3s ease;
}

#dropdownArrow.flipped {
  transform: rotate(180deg);
}

@media (max-width:1074px) {
    .texthero p{
        font-size: 28px;
        padding-left: 10px;
        padding-right: 20px;
    }
    .seemor{
         width: 125px;
    height: 40px;
    font-size: 20px;
        
    }
}
@media (max-width: 900px) {
  body{
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-content{
      margin-left: -20px;
  margin-right: -20px;
   width: calc(100% + 40px);
  }
}
@media (max-width: 780px) {
   
    .hero{
        flex-direction:column-reverse;
        height: auto;
      
    }
    .heroimg{
    width: 100%;
    height: 408px; 
}
.heroimg img{
   width: 100%;
    height: 100%;
    border-top-right-radius:10px ;
    border-top-left-radius:10px ;
    border-bottom-right-radius:0px ;
}


.texthero{
    width: 100%;
    height: auto;
    display: flex;
    border-bottom-left-radius:10px ;
    border-bottom-right-radius:10px ;
    border-top-left-radius:0px ;
    padding: 20px;

}
.texthero p{
  font-size: 28px;
        padding-left: 5px;
        padding-right: 10px;
        text-align: center;
        
}
.seemor{
    width: 120px;
    height: 38px;
    font-size: 20px;
     background: white;
     border: none;
     border-radius: 20px;
     color: var(--main-color);
     transition: all 0.3s ease-in-out;
}

.bttoncontenair{
    align-items: center;
    justify-content: center;
}
.leftright{
    display: none;
}
.onetype{
    display: flex;
    align-items: center;
   width: 100%;
   justify-content: space-between;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.onetype p{
    font-size: 20px;
    
    
}
.typess{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 122px;
    height: 43px;
    background-color:white;
    border: solid 2px black;
    border-radius: 20px;
      font-size:19px ;
      gap: 10px;
}
.categories{
  
   padding-left:20px ;
    padding-right: 20px; 
    
}
}
@media (max-width:600px) {
    nav{
   
    padding-left:20px ;
    padding-right: 20px;
   
}
.contactlinks{
    display: flex;
    align-items: center;
    gap: 25px;
}
.insta{
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.phone{
    display: flex;
    gap: 7px;
    align-items: center;

}
.phone p{
    font-size: 16px;
   
}
.logo{
    width: 90px;
    
}
}
@media (max-width: 440px) {
   
 
    .texthero p{
  font-size: 23px;
      
        
}
#number{
    display: none;
}
   .heroimg{
    width: 100%;
    height: 300px; 
}
}
@media (max-width: 340px) {
  nav{
    padding-left: 0px;
    padding-right: 0px;
  }
    

}


.copy-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #616161c7; 
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.copy-notification.show {
  opacity: 1;
}
