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

html, body {
  height: 100%;
  font-family: 'Varela Round', sans-serif;
  direction: rtl;
  background: linear-gradient(to bottom right, #fff5f8, #ffe4ec);
  color: #333;
}

body {
  display: flex;
  flex-direction: column;
}
main, .page-section {
  flex: 1;
}

header {
  background: linear-gradient(to right, #ffe0ec, #ffd1dc);
  padding: 1.2rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  animation: fadeDown 0.6s ease;
  border-bottom: 1px solid #f9b9c7;
  border-radius: 0 0 25px 25px;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

header.scrolled {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

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

.logo {
  height: 60px;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.08);
}

nav a {
  margin: 0 1rem;
  color: #d81b60;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s ease;
}
nav a:hover {
  color: #880e4f;
  transform: scale(1.05);
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #ffccdd, #fff);
}
.cta-button {
  background: #e91e63;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  font-size: 1.2rem;
}
.cta-button:hover {
  background: #d81b60;
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.feature {
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: 0.3s ease-in-out;
  cursor: pointer;
  text-align: center;
  font-size: 1.2rem;
}
.feature:hover {
  background: #ffe4ec;
  transform: scale(1.05);
}

.products {
  text-align: center;
  padding: 3rem 1rem;
}

.clickable-title {
  font-size: 2rem;
  color: #e91e63;
  cursor: pointer;
  transition: color 0.3s ease;
}
.clickable-title:hover {
  color: #ad1457;
}

.swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.swiper-slide.product-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  width: 250px;
}
.swiper-slide.product-card:hover {
  transform: scale(1.05);
}
.swiper-slide img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.swiper-button-next,
.swiper-button-prev {
  color: #e91e63;
}
.swiper-pagination-bullet-active {
  background: #e91e63;
}

.catalog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.catalog-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
}

.catalog-item:hover {
  transform: scale(1.03);
}

.catalog-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.catalog-item h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #333;
}

.catalog-item p {
  font-size: 14px;
  color: #666;
  padding: 0 10px 20px;
}

.reviews {
  background: #fce4ec;
  color: #e91e63;
  padding: 2rem 1rem;
  text-align: center;
}
.reviews blockquote {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
  margin: 1.5rem auto;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
}
.reviews blockquote::before {
  content: "“";
  font-size: 3rem;
  color: #e91e63;
  position: absolute;
  top: -20px;
  right: 20px;
}
.reviews cite {
  display: block;
  text-align: left;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

footer {
  background: linear-gradient(to right, #e91e63, #ff8a80);
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.95rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  margin-top: auto;
}
footer .social {
  margin-top: 0.5rem;
}
footer .social a {
  color: white;
  margin: 0 0.5rem;
  font-size: 1.3rem;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}
footer .social a:hover {
  color: #fffde7;
  transform: scale(1.2);
}

.footer-email {
  margin-top: 1rem;
  font-size: 1rem;
}

.footer-email a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

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


.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.3s;
}
.faq-question {
  background: #f9f9f9;
  padding: 1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: "+";
  position: absolute;
  left: 1rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.faq-item.active .faq-question::after {
  content: "–";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 1rem;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  padding: 12px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #c2185b;
}

@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
  }
  nav a {
    margin: 0.5rem;
  }
  .products {
    padding: 1rem;
  }
  .product-card, .catalog-item {
    width: 100%;
  }
}

.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.about-section p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}
