
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        font-family: "Zain", sans-serif;

}

body {
    font-family: "Zain", sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: #ffffff;
    color: #333;
}

header{
  position: sticky;
  z-index: 1000;
  top: 0;
  background-color: rgba(235, 235, 235, 0.637);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* لبعض المتصفحات */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}


.logo{
  display: block;
  width: 30px;
    margin: 0 30px;

}

header a {
  text-decoration: none;
  color: #3b3b3b;
  font-size: 12px;
  font-weight: 600;
  margin: 0 20px;
  transition: 0.8s ease;
}

header a:hover{
  color: #000;
}


.a-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.a-nav a,
.mnu-mobile a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.menu-btn {
  display: none;
}

.icon {
  overflow: visible;
}

.line {
  stroke: #6d6d6d;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}

/* عند الفتح */
.menu-btn.active .line1 {
  transform: translateY(3px) rotate(45deg);
}

.menu-btn.active .line2 {
  transform: translateY(-3px) rotate(-45deg);
}
/* منيو الموبايل */
.mnu-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #000000;
  padding: 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 15px;

  /* الحالة المقفولة */
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;

  transition: transform .4s ease, opacity .4s ease;
  z-index: 999;
}
.mnu-mobile a {
  font-size: 18px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
}

/* الحالة المفتوحة */
.mnu-mobile.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* 📱 موبايل */
@media (max-width: 768px) {
  .a-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}

.fa-solid.fa-bag-shopping{
  font-size: 20px;
  margin: 0 10px;
  color: #3b3b3b;
  transition: 0.8s ease;
}


.logo-ic-fo-ri{
  display: none;
  width: 25px;
  height: 25px;
  rotate: 90deg;
}

.dropdown-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 150px;
  border: 1px solid #ddd;
  background-color: #fff;
  position: relative;
  text-align: center;
}


/* النص تحت الزر */
.tex-dropdown {
  font-size: 12px;
  font-weight: 400;
  color: #555;
  text-align: center;
}

/* اختيار البلد والزر جنب بعض */
.select-and-button {
  display: flex;
  gap: 10px;
  align-items: center;
}

select {
  padding: 7px 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button#continue-btn {
  padding: 7px 15px;
  background-color: #00060c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: .3s ease;
}

button#continue-btn:hover {
  background-color: #4b4b4b;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}





.hed-img-top{
  display: flex;
  justify-content: space-between;
  text-align: center;
  background-color: #000000;
  padding: 0 30px;
}

.hed-img-top img{
  width: 40%;
  border-radius: 25px;
}

.hed-text-top{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 15px;
}

.hed-text-top h4{
  color: #ffffff;
  font-size: 24px;
}

.dropdown-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 150px;
  border: 1px solid #ddd;
  background-color: #fff;
  position: relative;
  text-align: center;
}


/* النص تحت الزر */
.tex-dropdown {
  font-size: 12px;
  font-weight: 400;
  color: #555;
  text-align: center;
}

/* اختيار البلد والزر جنب بعض */
.select-and-button {
  display: flex;
  gap: 10px;
  align-items: center;
}

select {
  padding: 7px 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button#continue-btn {
  padding: 7px 15px;
  background-color: #00060c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: .3s ease;
}

button#continue-btn:hover {
  background-color: #4b4b4b;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}


.contenar{
  width: 90%;
  margin: 0 auto;
  padding: 20px;
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.product-info{
  text-align: right;
  padding: 20px;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 25px;
}

.product-card img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  object-fit: contain;
}

.product-card h3 {
  margin: 10px 0 5px;
}

.product-card p {
  font-size: 12px;
  color: #333333;
}

.product-card .price {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0;
}

.product-card button {
  width: 100%;
  padding: 10px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}







.brand-footer {
  margin-top: 50px;
  background: #1d1d1d;
  padding: 50px 100px;
  font-family: Arial, sans-serif;
  color: #f1f1f1;
  direction: rtl;
  border-radius: 30px 30px 0 0;
}

.logo-ic-fo{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.logo-ic-fo-ri{
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  fill: #e0e0e0;
}



.logo-ic-fo p{
  font-size: 14px;
  font-weight: bold;
  color: #eeeeee;
  margin-bottom: 15px;
}

.logo-fo{
  display: block;
  width: 30px;
  margin-bottom: 20px;
}

.footer-note {
  font-size: 12px;
  color: #e2e2e2;
  margin-bottom: 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  text-decoration: none;
  font-size: 13px;
  color: #dadada;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col .more {
  font-size: 13px;
  color: #5f5f5f;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
}

.footer-links a {
  margin-left: 15px;
  color: #555;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.contact-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-list i {
  font-size: 15px;
  color: #555;
  transition: 0.3s;
}

.contact-list a:hover i {
  color: #9e9e9e;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== موبايل ===== */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    padding: 0px 0;
  }

  .product-card {
    flex-direction: column;
    text-align: center;
  }


  .product-card .text {
    max-width: 100%;
  }

  .product-card img {
    width: 100%;
    margin-top: 0px;
  }


}

/* ===== استايل الموبايل ===== */
@media (max-width: 470px){
  .dropdown-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
  }

  .tex-dropdown {
    margin-bottom: 15px;
  }

  .select-and-button {
    width: 100%;
    justify-content: flex-start; /* الاختيارات والزر جنب بعض */
  }

  select, button#continue-btn {
    width: auto; /* يفضل جنب بعض بدون ملء الشاشة */
  }

  .hed-img-top{
    flex-direction: column;
    align-items: center;
        padding: 10px;
  }
  .hed-img-top img{
    width: 90%;
    border-radius: 0px;
    margin-bottom: 5px;
}

.hed-text-top{
    padding: 10px;
    gap: 8px;
  }

  .hed-img-top h3{
    font-size: 18px;
  }

  .hed-img-top p{
    font-size: 12px;
  }


}

@media (max-width: 470px){
  header{
    display: flex;
    padding: 10px;
    justify-content: space-between;
  }
  header a{
    font-size: 12px;
    margin: 0 5px;
  }

  .brand-footer {
    padding: 30px 20px;
    border-radius: 20px 20px 0 0;
  }

  .hed-text-top h4{
  color: #ffffff;
  font-size: 14px;
}


    .menu-btn{
  background: none;
  position: static;
  z-index: 1000;
  border: none;
  cursor: pointer;
  padding: 5px;
  }

  .a-header {
    gap: 10px;
  }


}