/* styles.css */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.editorial-shadow {
    box-shadow: 0 12px 40px rgba(44, 40, 37, 0.05);
}

.glass-nav {
    background: rgba(255, 248, 245, 0.8);
    backdrop-filter: blur(20px);
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #fff8f5;
    color: #1e1b18;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
    font-family: 'Noto Serif', serif;
}

/* Card Price & Duration display styling */
.svc-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.svc-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-card__price {
  font-family: var(--font-headline);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
}
.svc-card__duration {
  font-size: 0.75rem;
  color: var(--on-surface-variant);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-top: 0.1rem;
}