#fw-section-footer {
--color-primary: #f9f9f9;
--color-primary-rgb: 249, 249, 249;
--color-background: #57466d;
--color-background-rgb: 87, 70, 109;
--color-on-primary: #FFFFFF;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #f8f8f8;
--color-on-background-rgb: 248, 248, 248;
--color-product-image-background: #f8f8f8;
--color-background-brightness: 80;
background-color: var(--color-background);
color: var(--color-on-background);

}
#fw-section-header {

/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Style for menu links */
.menu a {
  color: #57466D;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-weight: 500; /* adjust as needed (400 = regular, 600 = semi-bold) */
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #3e2f4d; /* optional: darker purple on hover */
}
}