/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 07 2026 | 14:23:47 */
/* =============================================
   STICKY HEADER — Glassmorphism on scroll
   ============================================= */

header.euro-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  transition:
    background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

header.euro-header.is-scrolled {
  background: rgba(20, 20, 18, 0.72) !important;
  backdrop-filter: blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.06),
    0 8px 32px 0 rgba(0, 0, 0, 0.32) !important;
}