body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #eededea1;
  color: #2f2f2f;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10%;
  position: relative;
  background: #ff7f7f41;
  min-height: 48px;
}
.back-arrow {
  position: absolute;
  left: 3%;
  font-size: 1.8rem;
  text-decoration: none;
  color: #2f2f2f;
  transition: transform 0.3s ease;
}
.back-arrow:hover {
  transform: translateX(-6px);
}
.brand {
  color: #ff7f7f;
  font-size: 1.6rem;
  font-weight: 500;
}

/* Categories */
.categories {
  text-align: center;
  padding: 80px 10%;
}
.categories h2 {
  font-weight: 400;
  margin-bottom: 50px;
}
.categories-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.category img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}
.category:hover img {
  transform: scale(1.08);
}
.category span {
  font-size: 0.95rem;
}

/* Highlight */
.highlight {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 100px 10%;
  flex-wrap: wrap;
}
.highlight-image {
  max-width: 420px;
  width: 100%;
}
.highlight-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}
.highlight-image img:hover {
  transform: scale(1.05);
}
.highlight-text {
  max-width: 460px;
}
.highlight-text h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.highlight-text p {
  line-height: 1.7;
  margin-bottom: 30px;
}
.random-images {
  display: flex;
  gap: 50px; 
  flex-wrap: wrap; 
  justify-content: flex-start;
}
.random-img {
  width: 160px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.random-img.circle {
  border-radius: 50%;
}
.random-img.square {
  border-radius: 8px;
}
.random-img:hover {
  transform: scale(1.2) rotate(5deg);
}


/* Products */
.products-section {
  padding: 50px 10%;
}
.motivational-text {
  text-align: center;
  font-size: 1.8rem;
  font-family: 'Dancing Script', cursive; 
  font-weight: 700;
  color: #ff4b5c;
  margin-bottom: 40px;
  line-height: 1.4;
  letter-spacing: 1px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}
.product {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.75);
  border-radius: 24px;
  padding: 35px 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}
.product:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}
.product img {
  max-width: 120px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}
.product:hover img {
  transform: scale(1.08);
}
.product h4 {
  font-weight: 400;
  margin-bottom: 6px;
}
.product span {
  color: #ff7f7f;
  font-weight: 500;
  margin-bottom: 15px;
}
.heart {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  color: #ff4b5c;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}
.heart:hover {
  transform: scale(1.2);
  color: #ff1a1a;
}
.shop-btn {
  margin-top: auto; 
  padding: 10px 25px;
  background: #ff7f7f;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}
.shop-btn:hover {
  background: #ff4b5c;
  transform: translateY(-3px);
}


/* ================= Footer ================= */
.footer {
  background-color: #050505;
  padding: 30px 50px;
  color: #333;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* أيقونات التواصل */
.footer-social a {
  margin-right: 15px;
  display: inline-block;
}

.footer-social img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.2);
}

/* اسم الموقع */
.footer-logo {
  text-align: center;
  flex: 1;
}

.footer-logo h2 {
  color: #ff7f7f;
  font-size: 3rem; /* أصغر قليلاً من قبل */
  margin: 0;
  margin-bottom: 10px;
}

.footer-logo-img {
  width: 60px; /* حجم أصغر */
  display: block;
  margin: 0 auto; /* تحت الاسم */
}

/* روابط Footer */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #faf9f9;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff7f7f;
}

/* حقوق الطبع أسفل Footer */
.footer-copy {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #999;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer {
    padding: 25px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-social {
    order: 1;
    justify-content: center;
  }

  .footer-logo {
    order: 2;
    text-align: center;
  }

  .footer-logo h2 {
    font-size: 2.2rem; /* أصغر للهاتف */
  }

  .footer-logo-img {
    width: 50px; /* أصغر قليلاً للهاتف */
  }

  .footer-links {
    order: 3;
    flex-direction: row; /* روابط بشكل أفقي للهاتف */
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-copy {
    font-size: 0.8rem;
    margin-top: 15px;
  }
}



/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================== MOBILE RESPONSIVE (ADD ONLY) ================== */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: 8px 4%;
  }

  .back-arrow {
    left: 4%;
    font-size: 1.5rem;
  }

  .brand {
    font-size: 1.2rem;
  }

  /* Categories */
  .categories {
    padding: 50px 4%;
  }

  .categories h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .categories-list {
    gap: 15px;
    justify-content: center;
  }

  .category img {
    width: 80px;
    height: 80px;
  }

  .category span {
    font-size: 0.85rem;
  }

  /* Highlight */
  .highlight {
    flex-direction: column;
    align-items: center;
    padding: 40px 4%;
    gap: 20px;
    text-align: center;
  }

  .highlight-image {
    max-width: 300px;
  }

  .highlight-text {
    max-width: 100%;
  }

  .highlight-text h3 {
    font-size: 1.4rem;
  }

  .highlight-text p {
    font-size: 0.9rem;
  }

  .random-images {
    justify-content: center;
    gap: 12px;
  }

  .random-img {
    width: 50px;
    height: 50px;
  }

  /* Products Section */
  .products-section {
    padding: 30px 4%;
  }

  .motivational-text {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

 /* Products Section */
  .products-section {
    padding: 30px 4%;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr); /* عرض بطاقتين لكل صف */
    gap: 20px;
  }

  .product {
    padding: 15px;
  }

  .product img {
    max-width: 90px;
    margin-bottom: 10px;
  }

  .product h4 {
    font-size: 1rem;
  }

  .product span {
    font-size: 0.9rem;
  }

  .shop-btn {
    font-size: 0.85rem;
    padding: 8px 15px;
  }

  .heart {
    top: 10px;
    right: 10px;
    font-size: 18px;
  }
}

  