* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* الشريط العلوي */
.first-nav {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  height: 5vh;
  font-size: 14px;
  margin-bottom: 10px;
}

@media (max-width : 376px) {
  .first-nav{
    width: 100%;
  }
}

.under-line {
  position: relative;
  text-decoration: none;
  padding-bottom: 1px;
  display: inline-block;
}
.under-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #ddd;
}
.first-nav a {
  color: #ffffff;
  margin-left: 5px;
  text-decoration: none;
}

/* الشريط الرئيسي */
.second-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 10vh;
}

.home {
  width: 25%;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

@media (max-width : 376px) {
  .home{
    display: none;
    width: 100%;
  }
  
}

.home li a {
  text-decoration: none;
  color: #000;
}

/* البحث والأيقونات */
.search {
  width: 35%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1px;
}

.space {
  display: flex;
  align-items: center;
  background-color: #dedede;
  border-radius: 60px;
  padding: 12px 20px;
  flex-grow: 1;
}

.space input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  margin-left: 10px;
  width: 100%;
}

.icon {
  margin-left: 20px;
  display: flex;
  gap: 15px;
  color: #333;
  font-size: 18px;
}
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  flex-wrap: wrap;
  overflow: hidden;
}

@media (max-width : 376px) {
  .hero{
    width: 100%;
    height: 100vh;
    display:flex;
  }
  
}
.star {
  position: absolute;
}

.star-left {
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
}

.star-right {
  top: 5%;
  right: 7%;
  width: 56px;
  height: 56px;
}

.hero-content {
  max-width: 50%;
  padding: 85px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.hero-content h1 {
  font-size: 54px;
  font-weight: 800;
}

.hero-content p {
  font-size: 16px;
  color: #000;
  opacity: 0.6;
  line-height: 1.5;
}

.shop-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 54px;
  gap: 12px;

  background-color: #000;
  color: #fff;

  border: none;
  border-radius: 62px;

  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.stats {
  display: flex;
  flex-direction: row;
  font-weight: 700;
  gap: 32px;
  padding: 40px 0px;
  font-size: 40px;
  width: 100%;
  flex-wrap: wrap;
}

.stats span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  color: #000;
  opacity: 0.6;
}

.hero-image {
  max-width: 50%;
}

.hero-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 376px) {
  .hero {
    flex-direction: column;
    height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 40px 20px;
    align-items: self-start;
  }

  .hero-content h1 {
    font-size: 28px;
    width: 10;
  }

  .hero-content p {
    font-size: 14px;
  }

  .shop-btn {
    padding: 12px 32px;
    font-size: 14px;
  }

  .stats {
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
    font-size: 24px;
  }

  .stats span {
    font-size: 12px;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    height: auto;
    object-fit: contain;
  }

  .star-left,
  .star-right {
    display: none;
  }
}


.prands {
  width:100%;
  background-color: rgb(4, 2, 0);
  height: 10vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.prands img {
  width: 10%;
}

@media (max-width: 376px) {
  .prands {
width: 100%;
  }


}

h2 {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
}

.new-arrivals-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  position: relative;
}

.new-arrivals{
  width: calc((100% - 60px) / 4);
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

@media (max-width : 376px){
  .new-arrivals{
    width: calc((100% - 20px) / 2) ;
  }
    .new-arrivals:nth-child(n+3) {
    display: none; /* يخفي العناصر من رقم 3 فما فوق */
  }

  .stars i{
    width: 6%;
  }
}

.new-arrivals img {
  width: 100%;
  border-radius: 8px;
}

.new-arrivals-text p {
  font-weight: bold;
  margin: 10px 0 5px;
  font-size: small;
}

.stars {
  display: flex;
  color: #ffc633;
  margin-top: 10px;
  margin-bottom: 10px;
}

.stars p {
  margin-left: 5px;
  font-size: 14px;
  color: #333;
}

.price {
  font-weight: bold;

  margin-top: 5px;
}
.price-one {
  opacity: 30%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
}

hr {
  margin-top: 50px;
  margin-bottom: 50px;
}
.view-all-btn {
  margin-top: 20px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: bold;
  background-color: #0000001a;
  color: #000000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.view-all-btn:hover {
  background-color: #ffc633;
}

.container-box { 
  width: 95%;
  background-color: #f0f0f0;
  padding: 40px;
  margin: 30px;
  border-radius: 30px;
  gap: 10px;
}



.card-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  height: 10vh;
  flex-wrap: wrap;
}

.text-card {
  font-size: 25px;
  font-weight: bold;
}

.card-gym-grid {
  display: flex;
  gap: 2%;
  align-items: center;
  margin-bottom: 10px;
}

.image-box-formal img,
.image-box-casual img,
.image-box-Party img,
.image-box-gym img {
  width: 100%;
}

@media (max-width: 376px) {
  .card-gym-grid {
    flex-direction: column;
    gap: 15px; /* مسافة بين كل كارد */
  }

  .image-box-formal,
  .image-box-casual,
  .image-box-Party,
  .image-box-gym {
    width: 100%; /* خلى كل عنصر ياخد عرض كامل */
  }
}


.Party {
  width: 407px;
  height: 300px;
  border-radius: 20px;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

.Party img {
  position: absolute;
  top: -67px;
  left: 0;
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}


.arrows {
  display: flex;
  justify-content: space-between;
  margin-left: 30px;
  margin-right: 30px;
}

.text-arrows {
  font-size: 30px;
  font-weight: bold;
}

.arrow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  gap: 1rem;
  cursor: pointer;

  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.1);
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}

.stars {
  display: flex;
  width: 100%;
  gap: 0.5rem;
}

.stars i {
  color: #f5c518; /* لون النجوم */
}


.card-font-two {
  opacity: 0.4;
  font-size: 12px;
  margin-top: 10px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 15px;
  width: calc((100% - 30px) / 4);
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

@media   (max-width: 376px)  {
  .card:nth-child(n+2) {
    display: none; /* يخفي العناصر من رقم 3 فما فوق */
}
  .card{
    width:100%;
  }
}


.footer-one {
  height: 40vh;
}

.button-left {
  background-color: #000;
  color: #ddd;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 25vh;
  width: 80%;
  margin: auto;
  border-radius: 20px;
}

.text-button-left {
  width: 35%;
  font-size: 25px;
  font-weight: bold;
} 

.button-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 15vh;
  width: 30%;
}



.button-right-text-one {
  background-color: #f9f9f9;
  color: #000;
  border-radius: 20px;
  width: 100%;
  padding: 10px;
} 

.button-right-text-one-op{
  opacity: 20%;
}

.button-right-text-two {
  background-color: #fffdfd;
  color: #000;
  border-radius: 20px;
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.footer {
  background-color: #f4efef1a;
  padding: 40px 20px;
  font-family: sans-serif;
  width: 100%;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  
}

.footer-brand {
  max-width: 300px;
}

.footer-brand h3 {
  font-size: 33px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 20px;
}

.social-icons i {
  margin-right: 10px;
  font-size: 18px;
  color: black;
}

.footer-columns {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}

.footer-columns h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-columns li {
  margin-bottom: 6px;
  cursor: pointer;
}
.li-text{
  opacity: 30%;
}

.footer-bottom {
  margin-top: 40px;
  margin-bottom: 6px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.payment-icons img {
  padding: 10px;
  width: 18%;
  gap: 10%;
}


@media (max-width: 376px) {
  .button-left {
    flex-direction: column;
    height: 50vh;
    padding: 20px;
    width: 100%;
  }

  .text-button-left {
    width: 100%;
    font-size: 30px;
    margin-bottom: 15px;
  }

  .button-right {
    width: 100%;
    height: 20vh;
    gap: 10px;
  }

  .button-right-text-one,
  .button-right-text-two {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  .footer-one {
    height: 60vh;
    padding: 20px 0;
  }


  .footer-columns {
    width: 90%;
    justify-content: center;
    gap: 20px;
  }

  .footer-columns > div {
    width: 45%; /* اتنين جنب بعض */
  }

  .footer-columns h4 {
    font-size: 14px;
  }

  .footer-columns ul {
    font-size: 12px;
    padding: 0;
  }

  .footer-columns li {
    margin-bottom: 5px;
  }

  .li-text {
    opacity: 0.5; /* دي بتساوي 50%، ممكن تخليها 0.3 لو عاوز نفس التأثير */
  }

  .footer-bottom{
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }


    .payment-icons {
      width: 80%;
    }
  .payment-icons img{
    width:20;
  }
}


