/* FOOTER */
.footer {
  background-color: #ff4d6d;
  color: white;
  padding: 50px 20px 20px 20px;
  font-family: Arial, sans-serif;
  border-radius: 10px 10px 0 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: white;
}

.footer-section p, .footer-section ul, .footer-section form {
  font-size: 14px;
  line-height: 1.6;
  color: #ffe4e1;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ffe4e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff1a50;
}

/* أيقونات وسائل التواصل */
.footer-section .socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-section .socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: white;
  color: #ff4d6d;
  border-radius: 50%;
  font-size: 16px;
   text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.footer-section .socials a:hover {
  background-color: #f0819b;
  color: white;
  transform: scale(1.2);
}

.footer-section.newsletter form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-section.newsletter input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  flex: 1;
}

.footer-section.newsletter button {
  padding: 10px 15px;
  border: none;
  background-color: #ff1a50;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-section.newsletter button:hover {
  background-color: #ffffff;
  color: #ff1a50;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 20px;
  color: #ffe4e1;
}

.developer-link {
  display: inline-block;
  font-weight: 700;
  color: #ffffff;
  margin-left: 10px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.developer-link:hover {
  color: #000000; 
  transform: scale(1.4);
}


/* Responsive */
@media (max-width: 768px) {
  .store-top-bar { flex-direction: column; align-items: flex-start; }
  .store-search { width: 100%; margin: 10px 0; }
  .store-nav ul { flex-wrap: wrap; }
  .product-grid { grid-template-columns: 1fr; }
}