*{
    margin: 0;
    padding: 0;
}    

body{
    scroll-behavior: smooth;
    line-height: 1.6;
    background-color: rgb(231, 237, 237);
}


.navbar{
    color:rgb(0, 0, 0);
    background-color: rgb(255, 253, 253);
    display: flex;
    margin-top: 0;
    flex-wrap: wrap;
    width: 100%;
    position: fixed;
    justify-content: space-between;
    height: fit-content;
    z-index: 20000;
}
.navbar .logo h1{
    padding-left: 20px;
    background: linear-gradient(to right, rgb(255, 2, 196), rgb(14, 159, 255), rgb(0, 187, 25));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar .list ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.navbar .list ul li{
    transition: 1s;
    padding: 20px;
}
.navbar .list ul li a{
    font-size: 20px;
    text-decoration: none;
}
.navbar .list ul li:hover{
    color:red;
    font-weight:bolder;
}
.navbar .list ul li a:hover{
        color:red;
        transform: scale(1.2);
}
.icons {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-right: 20px;
}

.icons div {
  position: relative; /* علشان نقدر نحط الـ badge فوق الأيقونة */
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icons div:hover {
  color: red;
  transform: scale(1.2);
}

/* الـ badge */
.badge {
  position: absolute;
  top: -8px;    /* فوق الأيقونة */
  right: -8px;  /* يمين الأيقونة */
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 4px 7px;
}

.cart {
  position: relative;
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 4px 7px;
}

.home {
  display: flex;
  flex-direction: column;   
  justify-content: center;  
  align-items: center;      
  height: 100vh;
  background-image: url(img2/header-borey_peng_huoth.jpg);
  background-size: cover;
  background-position: center;
  margin-bottom: 50px;
  opacity: 0.9;
  text-align: center;      
}

.home h1 {
 
   background: linear-gradient(135deg, #ff00ff, #00ffff, #39ff14, #ffea00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 100px;
  margin-bottom: 20px;      
}

.home p {
  color: #ffffff;             
  font-size: 30px;
  font-weight: bolder;
  margin-bottom: 30px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7); 
}


.home a {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff0000);
  color: #ffffff;
  text-decoration: none;
  font-size: 30px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.3s;
}
.home a:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #66BB6A, transparent);
}

hr{
    border: #04f2ff solid 7px;
    border-style: groove;
    width: 50%;
    margin:auto;
}

.about{
    height: fit-content;
    margin-bottom: 50px;
}

.about .address{
    text-align: center;
    text-shadow: 1px 1px 1px red,2px 2px 2px blue;
}
.about .describe{
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.our_res{
    padding-left: 20px;
    width: 40%;
}
.our_res h2{
     font-family: sans-serif;
     font-weight:bolder;
     font-size: 40px;
     color: rgb(0, 59, 237);
     text-shadow: 1px 1px 1px rgb(36, 22, 184),2px 2px 2px rgb(0, 208, 255);

}
.our_res h2 span{
     font-family: sans-serif;
     font-weight:bolder;
     font-size: 40px;
     color: rgb(6, 255, 251);
     text-shadow: 1px 1px 1px rgb(255, 0, 0),2px 2px 2px rgb(215, 98, 98);
}
.img {
    width: 40%;
    padding-top: 60px;
    align-items: center;
}
.img img {
    height: 100px;
    width: 100px;
    border-radius: 20px;
}
.img img:hover {
    transition: 4s;
   transform: rotate(50deg);
}



.clothes {
  padding: 50px;
  text-align: center;
  
}

.clothes h1 {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  text-shadow: 1px 1px 1px red,2px 2px 2px blue;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns:auto auto auto; 
  gap: 30px; 
  justify-items: center;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  width: 250px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.card img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.card p {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
}

.card a {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff0000, #ff7f50);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

.card a:hover {
  background: linear-gradient(135deg, #ff7f50, #ff0000);
  transform: scale(1.05);
}


.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo h2 {
  font-size: 28px;
  background: linear-gradient(to right, #ff007f, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 10px 0;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ff007f;
}

.footer-social .icons a {
  color: #fff;
  font-size: 20px;
  margin-right: 15px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social .icons a:hover {
  color: #00c6ff;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 14px;
}




