/*
 * Storefront shell refresh
 * Kept intentionally small: it sits after the legacy styles and strengthens
 * the shared chrome without changing cart, checkout, or modal behaviour.
 */

:root {
    --site-wine: var(--theme-brand, #4a1019);
    --site-wine-2: var(--theme-brand-dark, #701b29);
    --site-orange: var(--theme-accent, #eb7817);
    --site-ink: var(--theme-text, #201719);
    --site-cream: #fffaf4;
    --site-line: rgba(65, 26, 25, .10);
}

html { scroll-behavior: smooth; }

body {
    background: var(--m-bg, var(--site-cream));
    color: var(--m-text, var(--site-ink));
}

::selection {
    background: rgba(235, 120, 23, .22);
    color: var(--site-ink);
}

#nx-main-content {
    min-height: min(70vh, 900px);
}

body .main_menu {
    border-bottom: 1px solid var(--site-line);
    box-shadow: 0 8px 28px rgba(46, 18, 19, .05);
}

body .main_menu.menu_fix {
    box-shadow: 0 12px 32px rgba(46, 18, 19, .10);
}

body .main_menu .navbar-brand img {
    transition: transform .25s ease;
}

body .main_menu .navbar-brand:hover img {
    transform: scale(1.025);
}

body a:focus-visible,
body button:focus-visible,
body input:focus-visible,
body select:focus-visible,
body textarea:focus-visible {
    outline: 3px solid rgba(235, 120, 23, .42) !important;
    outline-offset: 3px;
}

.wsus__section_heading h2,
.wsus__section_heading h3 {
    letter-spacing: -.025em;
}

footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--site-orange), #f6bc62, var(--site-orange), transparent);
    opacity: .8;
}

@media (max-width: 991.98px) {
    body .main_menu {
        box-shadow: 0 6px 20px rgba(46, 18, 19, .08);
    }
}
