#fw-section-hero-1765290773 {
--font-heading-scale: 1.3;
--font-body-scale: 0.91;
}







#fw-section-header {

/* --- PAUL INMAN THEME OVERRIDES --- */

/* 1. Film Grain Overlay */
/* This adds the animated static texture over the whole shop */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04; /* Adjust brightness of grain here */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: grain 8s steps(10) infinite;
}

/* 4. Top Gradient Fade (Amazon Style) */
/* Adds a smooth black fade at the top to blend the menu */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px; /* Controls how far down the fade goes */
    background: linear-gradient(to bottom, rgba(5,5,5,1) 0%, rgba(5,5,5,0) 100%);
    z-index: 9998; /* Sits below grain but above content */
    pointer-events: none;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0); }
    70% { transform: translate(0, 10%); }
    80% { transform: translate(-15%, 0); }
    90% { transform: translate(10%, 5%); }
}

/* 2. Cinematic Scrollbar */
/* Matches the dark/gold scrollbar from your portfolio */
::-webkit-scrollbar {
    width: 8px;
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: #c5a059; /* Gold Leaf on hover */
}

/* 3. Selection Color */
/* Makes highlighted text turn gold */
::selection {
    background: #c5a059;
    color: #000;
}
}