#fw-section-rich-text-175033821524204 {
--color-primary: #4ecfc4;
--color-primary-rgb: 78, 207, 196;
--color-background: #EEFAFF;
--color-background-rgb: 238, 250, 255;
--color-on-primary: #FFFFFF;
--color-on-primary-rgb: 255, 255, 255;
--color-on-background: #013243;
--color-on-background-rgb: 1, 50, 67;
--color-product-image-background: #f8f9fa;
--color-background-brightness: 247;
background-color: var(--color-background);
color: var(--color-on-background);

}












#fw-section-featured-collection-1740764724 {

/* Product cards - Old-Gold Aesthetic */
.product-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E6E2;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #D4AF37;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-card:hover::before {
  opacity: 1;
}

/* Product heading - Serif font for premium feel */
.product-card h2,
.product-card h3 {
  font-family: Georgia, serif;
  color: #1A1A1A;
}

/* Product price */
.product-card .price {
  color: #D4AF37;
  font-weight: 700;
}

/* Remove blue accent colors */
.product-card a {
  color: #1A1A1A;
  transition: color 0.3s ease;
}

.product-card a:hover {
  color: #D4AF37;
}

/* Section heading */
.featured-collection h2 {
  font-family: Georgia, serif;
  color: #1A1A1A;
  letter-spacing: -0.5px;
}

/* Divider line (if available) */
.divider {
  background: linear-gradient(to right, transparent, #D4AF37, transparent);
  height: 1px;
}

}