/* style/blur.css */
.golden-blur {
  position: relative;
  overflow: hidden;
}
.golden-blur::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  background: linear-gradient(
    135deg,
    /* было: rgba(200,161,119,0.15) / rgba(234,214,192,0.15) */
    rgba(207, 69, 32, 0.12) 0%,
    rgba(255, 214, 199, 0.15) 50%,
    rgba(207, 69, 32, 0.12) 100%
  );
  animation: shimmer 1.5s infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes shimmer {
  from { background-position: -200px 0; }
  to   { background-position: 200px 0; }
}
