body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #fff0f5;
  color: #333;
}

header {
  background: linear-gradient(to right, #ffdde1, #ee9ca7);
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  color: #4e4e4e;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #d65a8a;
  margin: 2rem 0 1rem 0;
  text-align: center;
  border-bottom: 2px solid #f7cad0;
  padding-bottom: 0.5rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem;
  padding: 2rem 2.5rem;
  justify-content: center;
}

.back-btn {
  display: inline-block;
  font-weight: 600;
  color: #f950a4;
  text-decoration: none;
  padding: 8px 18px;
  border: 2px solid #fb64d2;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  font-size: 1rem;
  cursor: pointer;
}

.back-btn:hover,
.back-btn:focus {
  background-color: #dc609e;
  color: #fff;
  box-shadow: 0 4px 12px rgba(179, 0, 89, 0.6);
  outline: none;
}

.product {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  margin-bottom: 1rem; 
}

.brand-grid .product {
  min-height: 320px;
}

.product:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.product img {
  max-width: 100%;
  border-radius: 12px;
  height: auto;
}

.product-info {
  flex-grow: 1;
}

.product p {
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
  min-height: 2.5rem;
}

footer {
  background-color: #ee9ca7;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

section {
  margin-bottom: 4rem;
}

.add-to-cart {
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: #d65a8a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.add-to-cart:hover {
  background-color: #b84c76;
}

.mini-cart {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #d65a8a;
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.cart-count {
  font-weight: bold;
  margin-left: 5px;
}

.faq-btn {
  display: inline-block;
  background-color: #ff69b4;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.3s;
}

.faq-btn:hover {
  background-color: #e0559f;
  transform: scale(1.05);
}


footer {
  background-color: #fbe6f5;
  padding: 40px;
  color: #454244;
  font-family: Arial, sans-serif;
  text-align: center;
  border-top: 1px solid #ddd;
}

.footer-brand h2 {
  font-size: 24px;
  color: #bb458a;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-socials, .footer-links, .newsletter {
  margin-bottom: 30px;
}

footer a {
  color: #a72e74;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #d42c9c;
  text-decoration: underline;
}

.newsletter input[type="email"] {
  padding: 8px;
  width: 250px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 10px;
}

.newsletter button {
  padding: 8px 16px;
  background-color: #d62a7a;
  color:white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background-color: #7a1e4c;
}

.footer-disclaimer {
  font-size: 12px;
  color: #2727271e;
}

.mini-cart {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #ff91b3;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 6px 12px rgba(255, 105, 180, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mini-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px #ff69b4aa;
}

.mini-cart i {
  font-size: 1.2rem;
}

.cart-count {
  background-color: white;
  color: #ff3f8b;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 0.9rem;
}
.faq-btn {
  display: inline-block;
  background-color: #ff69b4;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.3s;
}

.faq-btn:hover {
  background-color: #e0559f;
  transform: scale(1.05);
}
 .price {
      color: #d65a8a;
      font-weight: 700;
      font-size: 1rem;
      margin-left: 8px;
      font-family: 'Playfair Display', serif;
    }
    @media (max-width: 900px) {
  header h1 {
    font-size: 2.4rem;
  }

  header p {
    font-size: 1rem;
  }

  .brand-name {
    font-size: 1.5rem;
    padding-bottom: 0.4rem;
  }

  .brand-grid {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .product p {
    font-size: 1rem;
  }

  .newsletter input[type="email"] {
    width: 200px;
  }

  .mini-cart {
    top: 15px;
    right: 15px;
    font-size: 0.95rem;
    padding: 8px 14px;
  }

  .mini-cart i {
    font-size: 1rem;
  }

  .cart-count {
    font-size: 0.85rem;
    padding: 3px 8px;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }

  .product {
    padding: 0.8rem;
  }

  .add-to-cart {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }

  .faq-btn,
  .back-btn {
    font-size: 0.9rem;
    padding: 8px 14px;
    width: 100%;
    text-align: center;
  }

  .newsletter input[type="email"] {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .newsletter button {
    width: 100%;
  }

  footer {
    padding: 30px 15px;
    font-size: 0.85rem;
  }

  .footer-brand h2 {
    font-size: 20px;
  }

  .mini-cart {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
  }
}

@media (max-width: 400px) {
  header h1 {
    font-size: 1.7rem;
  }

  header p {
    font-size: 0.95rem;
  }

  .product p {
    font-size: 0.95rem;
  }

  .mini-cart {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .cart-count {
    font-size: 0.8rem;
    padding: 3px 6px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
  }
}
