:root {
    --c-primary: #e30613;
    --c-primary-hover: #b8050f;
    --c-text: #1a1a1a;
    --c-text-muted: #6b7280;
    --c-bg: #ffffff;
    --c-bg-alt: #f7f7f7;
    --c-border: #e5e7eb;
    --c-accent: #001b7f;
    --font-sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-display: "Lexend", "Open Sans", sans-serif;
    --container: 1222px;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.05);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* offset for sticky header */
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

[id] { scroll-margin-top: 90px; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: #111; line-height: 1.25; margin: 0 0 16px; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: var(--radius); font-weight: 600;
    font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px;
    border: 2px solid transparent; transition: all 0.2s;
    cursor: pointer; text-decoration: none !important;
}
.btn-primary { background: var(--c-primary); color: white; border-color: var(--c-primary); }
.btn-primary:hover { background: var(--c-primary-hover); border-color: var(--c-primary-hover); }
.btn-outline { color: var(--c-text); border-color: var(--c-text); }
.btn-outline:hover { background: var(--c-text); color: white; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* Header — overlapping hero, sticky with light/dark logo swap */
.site-header {
    position: absolute; top: 0; left: 0; right: 0; z-index: 50;
    background: transparent; transition: background 0.25s, box-shadow 0.25s;
}
.site-header.is-sticky {
    position: fixed; background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    animation: slideDown 0.25s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

body:not(.has-overlap-header) .site-header { position: sticky; background: white; border-bottom: 1px solid var(--c-border); }

.header-inner { display: flex; align-items: center; gap: 32px; min-height: 100px; padding-top: 15px; }
.brand { display: inline-flex; align-items: center; color: white; font-weight: 700; line-height: 0; }
.brand .logo { display: none; height: auto; }

/* Default state — overlap header on hero (light): show big white logo */
.site-header .logo-main { display: block; max-width: 98px; }
@media (max-width: 1024px) { .site-header .logo-main { display: none; } .site-header .logo-white { display: block; max-width: 150px; } }

/* Sticky state — show black logo */
.site-header.is-sticky .logo-main,
.site-header.is-sticky .logo-white { display: none; }
.site-header.is-sticky .logo-sticky { display: block; max-width: 110px; }
.site-header.is-sticky .header-inner { min-height: 70px; }

/* Without overlap (inner pages) — black logo */
body:not(.has-overlap-header) .site-header .logo-main,
body:not(.has-overlap-header) .site-header .logo-white { display: none; }
body:not(.has-overlap-header) .site-header .logo-sticky { display: block; max-width: 110px; }
body:not(.has-overlap-header) .header-inner { min-height: 80px; }

.main-nav { flex: 1; display: flex; justify-content: flex-end; }
.main-nav > ul {
    display: flex; gap: 28px; list-style: none; padding: 0; margin: 0;
}
.main-nav a {
    color: white; font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 8px 0; display: inline-block; position: relative;
    transition: color 0.2s;
}
.main-nav a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; background: currentColor; transform: scaleX(0);
    transition: transform 0.2s;
}
.main-nav a:hover { text-decoration: none; }
.main-nav a:hover::after { transform: scaleX(1); }

/* Sticky / non-overlap — dark nav text */
.site-header.is-sticky .main-nav a,
body:not(.has-overlap-header) .main-nav a { color: var(--c-text); }
.site-header.is-sticky .main-nav a:hover,
body:not(.has-overlap-header) .main-nav a:hover { color: var(--c-primary); }
.site-header.is-sticky .main-nav a::after,
body:not(.has-overlap-header) .main-nav a::after { background: var(--c-primary); }

.header-cta { display: flex; align-items: center; }
.fb-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    transition: background 0.25s, transform 0.25s;
}
.fb-link img {
    width: 40px; height: 40px; display: block;
    filter: brightness(0) invert(1); /* white on overlap (dark hero) */
    transition: filter 0.25s, transform 0.25s;
}
.fb-link:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.fb-link:hover img { transform: scale(1.08); }

.site-header.is-sticky .fb-link img,
body:not(.has-overlap-header) .fb-link img {
    /* recolor to brand red on light background */
    filter: brightness(0) saturate(100%) invert(13%) sepia(99%) saturate(6500%) hue-rotate(353deg) brightness(95%) contrast(105%);
}
.site-header.is-sticky .fb-link:hover,
body:not(.has-overlap-header) .fb-link:hover { background: rgba(227,6,19,0.10); }
.site-header.is-sticky .fb-link:hover img,
body:not(.has-overlap-header) .fb-link:hover img {
    /* darker red on hover */
    filter: brightness(0) saturate(100%) invert(7%) sepia(99%) saturate(7000%) hue-rotate(355deg) brightness(70%) contrast(110%);
}

.nav-toggle {
    display: none; background: none; border: none; padding: 10px; cursor: pointer;
    position: relative; z-index: 110; width: 44px; height: 44px;
    border-radius: 10px; transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.10); }
.site-header.is-sticky .nav-toggle:hover,
body:not(.has-overlap-header) .nav-toggle:hover { background: rgba(0,0,0,0.06); }
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: white;
    margin: 5px auto; border-radius: 2px;
    transition: transform 0.3s cubic-bezier(.4,.0,.2,1), opacity 0.2s, background 0.2s;
    transform-origin: center;
}
.site-header.is-sticky .nav-toggle span,
body:not(.has-overlap-header) .nav-toggle span { background: var(--c-text); }

/* Hamburger → X when drawer is open */
body.nav-open .nav-toggle span { background: white; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile side drawer (right) + backdrop */
.mobile-backdrop {
    position: fixed; inset: 0; background: rgba(8, 12, 22, 0.55);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
    z-index: 95;
}
body.nav-open .mobile-backdrop { opacity: 1; visibility: visible; }

.mobile-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(360px, 86vw);
    background: linear-gradient(160deg, #1a1f2e 0%, #0f1320 55%, #0a0d18 100%);
    color: white;
    box-shadow: -20px 0 60px rgba(0,0,0,0.45);
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(.22,.61,.36,1);
    z-index: 100;
    display: flex; flex-direction: column;
    overflow-y: auto;
}
body.nav-open .mobile-drawer { transform: translateX(0); }

/* Subtle radial accent at top */
.mobile-drawer::before {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(227,6,19,0.30) 0%, rgba(227,6,19,0) 70%);
    pointer-events: none;
}
/* Soft bottom glow */
.mobile-drawer::after {
    content: ''; position: absolute; bottom: -80px; left: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(227,6,19,0.15) 0%, rgba(227,6,19,0) 70%);
    pointer-events: none;
}

.mobile-drawer-header {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer-logo { height: 44px; width: auto; display: block; }
.mobile-drawer-close {
    width: 40px; height: 40px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06); color: white;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.mobile-drawer-close:hover { background: var(--c-primary); border-color: var(--c-primary); transform: rotate(90deg); }

.mobile-drawer-nav {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; padding: 16px 12px;
    flex: 1;
}
.mobile-drawer-nav a {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 16px; border-radius: 12px;
    color: rgba(255,255,255,0.92); font-weight: 600;
    font-size: 17px; letter-spacing: 0.2px;
    transition: background 0.25s, color 0.25s, transform 0.25s;
    position: relative;
}
.mobile-drawer-nav a + a { margin-top: 4px; }
.mobile-drawer-nav a::before {
    content: ''; position: absolute; left: 0; top: 18px; bottom: 18px; width: 3px;
    background: var(--c-primary); border-radius: 3px;
    transform: scaleY(0); transform-origin: center; transition: transform 0.25s;
}
.mobile-drawer-nav a:hover,
.mobile-drawer-nav a:focus-visible {
    background: rgba(255,255,255,0.06); color: white; text-decoration: none;
    transform: translateX(4px);
}
.mobile-drawer-nav a:hover::before,
.mobile-drawer-nav a:focus-visible::before { transform: scaleY(1); }
.mobile-drawer-num {
    font-family: var(--font-display), sans-serif;
    font-size: 13px; font-weight: 700;
    color: var(--c-primary); letter-spacing: 0.5px;
    min-width: 28px;
}
.mobile-drawer-text { flex: 1; }
.mobile-drawer-arrow {
    opacity: 0; transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s;
    color: var(--c-primary); font-size: 18px; font-weight: 700;
}
.mobile-drawer-nav a:hover .mobile-drawer-arrow,
.mobile-drawer-nav a:focus-visible .mobile-drawer-arrow { opacity: 1; transform: translateX(0); }

.mobile-drawer-footer {
    position: relative; z-index: 1;
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-direction: column; gap: 14px;
}
.mobile-drawer-contact { display: flex; flex-direction: column; gap: 10px; }
.mobile-drawer-contact a {
    display: inline-flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
    transition: color 0.2s;
}
.mobile-drawer-contact a:hover { color: var(--c-primary); text-decoration: none; }
.mobile-drawer-contact svg { color: var(--c-primary); flex-shrink: 0; }
.mobile-drawer-phone { font-size: 16px !important; font-weight: 700 !important; color: white !important; }
.mobile-drawer-phone:hover { color: var(--c-primary) !important; }

.mobile-drawer-fb {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: 10px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
    color: white; font-weight: 600; font-size: 14px;
    align-self: flex-start;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.mobile-drawer-fb:hover {
    background: var(--c-primary); border-color: var(--c-primary);
    text-decoration: none; transform: translateY(-1px);
}
.mobile-drawer-fb img { filter: brightness(0) invert(1); }

body.nav-open { overflow: hidden; }

/* Hero — full width, scales proportionally with viewport, capped at 934px (natural image height) */
.hero {
    width: 100%;
    height: 37.36vw;             /* image ratio 934/2500 = 37.36% — scales with viewport */
    max-height: 934px;
    min-height: 480px;
    padding: 220px 0 120px;
    background-color: #1a1a1a;
    background-position: center center;
    background-size: cover;       /* keeps image proportions while filling the section */
    background-repeat: no-repeat;
    color: white;
    display: flex; align-items: center;
    overflow: hidden;
}
@media (max-width: 1024px) { .hero { height: auto; min-height: 480px; padding: 150px 0 80px; } }
@media (max-width: 640px)  {
    .hero { min-height: 420px; padding: 132px 0 60px; }
    .hero h1 { font-size: clamp(1.5rem, 7vw, 1.8rem); line-height: 1.3; }
    .hero h1,
    .hero p { overflow-wrap: anywhere; }
}

.hero-image { position: relative; }
.hero-image::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.55) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
.hero-content { min-width: 0; max-width: 100%; }
@media (min-width: 1025px) { .hero-content { padding-top: 52px; } }
.eyebrow {
    display: inline-block; background: var(--c-primary); color: white;
    padding: 6px 14px; border-radius: 20px; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { color: white; max-width: 760px; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.hero p { font-size: 18px; max-width: 640px; color: rgba(255,255,255,0.92); margin-bottom: 32px; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-outline { color: white; border-color: white; }
.hero .btn-outline:hover { background: white; color: var(--c-text); }

/* Sections */
.section-title { text-align: center; margin-bottom: 16px; position: relative; }
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: var(--c-primary); margin: 12px auto 0;
}

.section-intro { max-width: 880px; margin: 0 auto 56px; text-align: center; }
.section-lead { font-family: var(--font-display); font-size: 20px; color: var(--c-text); margin: 16px 0 20px; }
.section-body { color: var(--c-text-muted); font-size: 16px; line-height: 1.75; }

.categories-section { padding: 80px 0; }
.category-block { margin-bottom: 64px; }
.category-header {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--c-border);
}
.category-title { color: var(--c-primary); text-transform: uppercase; margin: 0; }
.see-all { font-weight: 600; font-size: 14px; }

/* Product grid */
.product-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .product-grid { grid-template-columns: 1fr; } }

.product-card {
    display: flex; flex-direction: column;
    background: white; border: 1px solid var(--c-border); border-radius: var(--radius);
    overflow: hidden; transition: all 0.2s; color: var(--c-text);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--c-primary); text-decoration: none; }
.product-card-image { aspect-ratio: 1; background: var(--c-bg-alt); overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card-title { font-family: var(--font-sans); font-size: 14px; font-weight: 600; margin: 0; line-height: 1.4; flex: 1; }
.product-card-price { color: var(--c-primary); font-weight: 700; font-size: 16px; }

.img-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: var(--c-bg-alt); color: var(--c-text-muted);
    aspect-ratio: 1; font-size: 14px;
}
.img-placeholder.small { font-size: 12px; }

/* Page title */
.page-title-section {
    position: relative;
    background-color: #1a1a1a;
    background-image: url('/img/page-bg.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 140px 0 60px;
    color: white;
    overflow: hidden;
}
.page-title-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.55) 100%);
}
.page-title-section .container { position: relative; z-index: 1; }
.page-title-section h1 { color: white; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.breadcrumbs {
    font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 12px;
    display: flex; gap: 8px; align-items: center;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: white; }
.page-intro { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 800px; margin-top: 12px; }

.category-listing { padding: 48px 0 80px; }
.empty { text-align: center; color: var(--c-text-muted); padding: 80px 0; }

/* Product page */
.product-page { padding: 32px 0 80px; }
.product-page .breadcrumbs { margin-bottom: 24px; }
.product-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 64px;
}
@media (max-width: 768px) { .product-layout { grid-template-columns: 1fr; } }

.product-media { align-self: start; }
.product-media img { border-radius: var(--radius); width: 100%; height: auto; display: block; }
.product-info h1 { color: var(--c-primary); margin-bottom: 16px; }
.product-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag {
    background: var(--c-bg-alt); color: var(--c-text); font-size: 12px;
    padding: 4px 12px; border-radius: 20px; font-weight: 500;
}
.product-price {
    font-family: var(--font-display); font-size: 36px; font-weight: 700;
    color: var(--c-primary); margin: 20px 0;
}
.product-short { font-size: 17px; color: var(--c-text-muted); margin-bottom: 28px; }
.product-description { margin-top: 56px; max-width: 880px; }

.prose { line-height: 1.75; }
.prose p { margin: 0 0 1em; }
.prose h2, .prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.5em; }
.prose img { border-radius: var(--radius); margin: 1em 0; }

.related-section { margin-top: 80px; }
.content-section { padding: 60px 0 100px; }

/* Contact page */
.contact-card {
    max-width: 640px; margin: 0 auto;
    background: white; padding: 40px 48px;
    border-radius: var(--radius); box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
}
.contact-card address { font-style: normal; line-height: 1.8; font-size: 17px; color: var(--c-text); }
.contact-card p { margin: 0 0 16px; }
.contact-card strong { color: var(--c-primary); font-size: 19px; }
.contact-card a { font-weight: 600; }

/* Footer — large variant with watermark AZ background */
.site-footer {
    background: #101010; color: #e5e5e5; margin-top: 100px;
    position: relative; overflow: hidden;
}
.site-footer-large { padding: 96px 0 24px; }

.footer-bg {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display), sans-serif;
    font-weight: 700;
    font-size: clamp(28rem, 60vw, 60rem);
    line-height: 0.8;
    letter-spacing: -0.05em;
    color: #fff;
    opacity: 0.05;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.footer-main {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 1024px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 640px)  { .footer-main { grid-template-columns: 1fr; gap: 32px; } }

.footer-col h4 {
    color: white; margin-bottom: 20px;
    font-size: 13px; text-transform: uppercase; letter-spacing: 1px;
    position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 36px; height: 2px; background: var(--c-primary);
}
.site-footer p { color: #9ca3af; font-size: 14px; line-height: 1.7; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #9ca3af; font-size: 14px; transition: color 0.2s, padding-left 0.2s; }
.site-footer a:hover { color: white; padding-left: 4px; text-decoration: none; }

.footer-about .footer-logo { margin-bottom: 20px; display: block; height: auto; }
.footer-about p { margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-fb { background: rgba(255,255,255,0.08); }
.footer-fb:hover { background: var(--c-primary); }
.footer-fb img { filter: brightness(0) invert(1) !important; }

.footer-contact address { font-style: normal; }
.footer-contact address p { margin: 0 0 14px; color: #cfcfcf; }
.footer-contact strong { color: white; font-size: 15px; }
.footer-contact a { color: #cfcfcf; font-weight: 600; }
.footer-contact a:hover { color: var(--c-primary); }
.footer-meta { color: #6b7280 !important; font-size: 13px !important; }

.footer-bottom {
    position: relative; z-index: 1;
    padding-top: 28px; color: #6b7280; font-size: 13px; text-align: center;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .main-nav, .header-cta { display: none; }
    .nav-toggle { display: block; margin-left: auto; }
    .header-inner { min-height: 92px; padding-top: 10px; }
    .site-header .logo-white { max-width: 142px; }
    .hero { padding-top: 128px; padding-bottom: 60px; }
    .category-header { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 360px) {
    .hero h1 { font-size: 1.45rem; }
    .hero p { font-size: 16px; }
}
@media (min-width: 769px) {
    .mobile-backdrop, .mobile-drawer { display: none; }
}

/* ============================================================
   Gradient & glow effects — inspired by side menu
   ============================================================ */

/* Hero: red radial accent + smoother depth gradient */
.hero-image::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(227,6,19,0.22) 0%, rgba(227,6,19,0) 45%),
        radial-gradient(circle at 85% 70%, rgba(0,27,127,0.20) 0%, rgba(0,27,127,0) 50%),
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.65) 100%);
}
.hero-image::after {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(227,6,19,0.28) 0%, rgba(227,6,19,0) 70%);
    pointer-events: none; z-index: 0;
    filter: blur(6px);
    animation: hero-glow 8s ease-in-out infinite alternate;
}
@keyframes hero-glow {
    from { transform: translate(0,0) scale(1); opacity: 0.85; }
    to   { transform: translate(-30px, 20px) scale(1.08); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-image::after { animation: none; }
}

.eyebrow {
    background: linear-gradient(135deg, var(--c-primary) 0%, #ff3b48 100%);
    box-shadow: 0 4px 16px rgba(227,6,19,0.35);
}

/* Page header: same radial accent treatment */
.page-title-section::before {
    background:
        radial-gradient(circle at 15% 25%, rgba(227,6,19,0.18) 0%, rgba(227,6,19,0) 45%),
        radial-gradient(circle at 90% 80%, rgba(0,27,127,0.18) 0%, rgba(0,27,127,0) 50%),
        linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.7) 100%);
}

/* Categories section: subtle backdrop with floating glow */
.categories-section {
    position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(227,6,19,0.05) 0%, rgba(227,6,19,0) 50%),
        radial-gradient(ellipse at bottom left, rgba(0,27,127,0.04) 0%, rgba(0,27,127,0) 50%),
        linear-gradient(180deg, #fbfbfc 0%, #ffffff 100%);
}

/* Section title: gradient underline */
.section-title::after {
    background: linear-gradient(90deg, var(--c-primary) 0%, #ff3b48 50%, var(--c-primary) 100%);
    height: 4px; border-radius: 4px;
    box-shadow: 0 2px 12px rgba(227,6,19,0.35);
}

/* Category title accent */
.category-header {
    border-bottom: none;
    position: relative;
}
.category-header::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
    background: linear-gradient(90deg, var(--c-primary) 0%, rgba(227,6,19,0.15) 35%, rgba(227,6,19,0) 100%);
    border-radius: 2px;
}

/* Product card: gradient accent strip, lift, glow */
.product-card {
    position: relative;
    transition: transform 0.32s cubic-bezier(.22,.61,.36,1),
                box-shadow 0.32s cubic-bezier(.22,.61,.36,1),
                border-color 0.25s;
}
.product-card::before {
    content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px;
    background: linear-gradient(90deg, var(--c-primary) 0%, #ff3b48 100%);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.32s cubic-bezier(.22,.61,.36,1);
    z-index: 2;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px -10px rgba(227,6,19,0.22), 0 8px 18px -8px rgba(0,0,0,0.12);
    border-color: rgba(227,6,19,0.45);
}
.product-card:hover::before { transform: scaleX(1); }

/* Subtle red tint on image hover */
.product-card-image { position: relative; }
.product-card-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(227,6,19,0) 60%, rgba(227,6,19,0.12) 100%);
    opacity: 0; transition: opacity 0.32s;
    pointer-events: none;
}
.product-card:hover .product-card-image::after { opacity: 1; }

/* Buttons: gradient with shimmer + glow */
.btn-primary {
    background: linear-gradient(135deg, var(--c-primary) 0%, #ff2632 100%);
    border-color: transparent;
    box-shadow: 0 8px 20px -8px rgba(227,6,19,0.55);
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transform: skewX(-20deg); transition: left 0.55s cubic-bezier(.22,.61,.36,1);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #c4050f 0%, #e30613 100%);
    box-shadow: 0 12px 28px -8px rgba(227,6,19,0.65);
    transform: translateY(-1px);
}
.btn-primary:hover::before { left: 120%; }

/* Hero CTA emphasis */
.hero .btn-primary { box-shadow: 0 12px 30px -8px rgba(227,6,19,0.65); }

/* Tags (categories on product page) */
.tag {
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.tag:hover {
    background: linear-gradient(135deg, var(--c-primary) 0%, #ff3b48 100%);
    color: white; transform: translateY(-1px);
}

/* Contact card: gradient border accent */
.contact-card {
    position: relative;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, rgba(227,6,19,0.35) 0%, rgba(0,27,127,0.25) 100%) border-box;
    border: 1px solid transparent;
    box-shadow: 0 10px 40px -15px rgba(227,6,19,0.18), 0 4px 12px rgba(0,0,0,0.05);
}

/* Footer: red & blue radial accents (like drawer) */
.site-footer {
    background:
        radial-gradient(circle at 10% 20%, rgba(227,6,19,0.18) 0%, rgba(227,6,19,0) 45%),
        radial-gradient(circle at 90% 85%, rgba(0,27,127,0.16) 0%, rgba(0,27,127,0) 50%),
        linear-gradient(160deg, #101622 0%, #0a0d18 50%, #060812 100%);
}
.footer-col h4::after {
    background: linear-gradient(90deg, var(--c-primary) 0%, #ff3b48 100%);
    width: 40px; height: 3px; border-radius: 3px;
}
.footer-fb {
    transition: background 0.25s, transform 0.2s;
}
.footer-fb:hover {
    background: linear-gradient(135deg, var(--c-primary) 0%, #ff3b48 100%);
    transform: translateY(-2px);
}

/* Smooth section reveal on scroll */
.category-block, .product-page .product-layout, .related-section, .contact-card {
    animation: section-up 0.7s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes section-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .category-block, .product-page .product-layout, .related-section, .contact-card { animation: none; }
}

/* Selection accent */
::selection { background: rgba(227,6,19,0.85); color: white; }
