:root {
    --bg-dark: #030405;
    --bg-deep: #080a0d;
    --bg-card: #11141a;
    --metal: #242a33;
    --line: rgba(255, 255, 255, .12);
    --line-red: rgba(255, 30, 30, .72);
    --line-blue: rgba(30, 123, 255, .72);
    --text: #f7f7f8;
    --muted: #a8afbb;
    --red: #ff1e1e;
    --red-dark: #b80d14;
    --blue: #1e7bff;
    --bronze: #b88746;
    --gold: #f0c37a;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 30, 30, .22), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(30, 123, 255, .22), transparent 24%),
        linear-gradient(180deg, #020303 0%, #07080a 48%, #020303 100%);
    color: var(--text);
    font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
}

body::before {
    background:
        linear-gradient(90deg, rgba(255, 30, 30, .18) 0 1px, transparent 1px 46px),
        linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 46px);
    content: "";
    inset: 0;
    opacity: .35;
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.utility-bar {
    background: #020202;
    border-bottom: 1px solid rgba(255, 30, 30, .45);
    box-shadow: 0 0 18px rgba(255, 30, 30, .3), inset 0 -1px 0 rgba(30, 123, 255, .4);
    color: var(--white);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.utility-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    justify-content: center;
    min-height: 38px;
    padding: 8px 24px;
}

.utility-inner span:nth-child(2) {
    color: var(--gold);
}

.follow-us {
    color: var(--blue) !important;
    margin-left: auto;
}

.nav-shell {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(255, 30, 30, .08), transparent 30%, rgba(30, 123, 255, .1)),
        rgba(6, 7, 9, .96);
    border-bottom: 1px solid rgba(30, 123, 255, .36);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .45), inset 0 -1px 0 rgba(255, 30, 30, .32);
    display: grid;
    gap: 22px;
    grid-template-columns: 230px 1fr auto;
    min-height: 92px;
    padding: 10px clamp(18px, 4vw, 72px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    align-items: center;
    display: flex;
    min-width: 0;
}

.brand img {
    display: block;
    filter: drop-shadow(0 0 14px rgba(255, 30, 30, .55)) drop-shadow(0 0 16px rgba(30, 123, 255, .35));
    height: 128px;
    margin-bottom: -52px;
    object-fit: contain;
    position: relative;
    width: 168px;
    z-index: 3;
}

.main-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.main-nav a {
    color: var(--text);
    font-size: .92rem;
    font-weight: 900;
    padding: 18px 4px;
    position: relative;
    text-transform: uppercase;
}

.main-nav a::after {
    background: linear-gradient(90deg, var(--red), var(--blue));
    bottom: 8px;
    box-shadow: 0 0 12px currentColor;
    content: "";
    height: 2px;
    left: 0;
    opacity: 0;
    position: absolute;
    transform: scaleX(.25);
    transform-origin: left;
    transition: .18s ease;
    width: 100%;
}

.main-nav a:hover,
.main-nav a:first-child {
    color: var(--red);
}

.main-nav a:hover::after,
.main-nav a:first-child::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}

.site-search {
    display: flex;
    gap: 8px;
}

.site-search input,
.card-actions input,
.cart-row input,
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
    background: rgba(4, 5, 7, .96);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 4px;
    color: var(--white);
    padding: 12px 14px;
}

.site-search input {
    width: min(220px, 34vw);
}

.site-search input:focus,
.card-actions input:focus,
.cart-row input:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 .18rem rgba(30, 123, 255, .2);
    outline: none;
}

.site-search button,
.button-link,
button,
.category-tabs a,
.view-all {
    align-items: center;
    background: linear-gradient(180deg, #ff3535, #b80d14);
    border: 1px solid var(--line-red);
    border-radius: 4px;
    box-shadow: 0 0 16px rgba(255, 30, 30, .34);
    color: var(--white);
    cursor: pointer;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    text-align: center;
    text-transform: uppercase;
}

.site-search button:hover,
.button-link:hover,
button:hover,
.view-all:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.secondary,
button.secondary,
.category-tabs a {
    background: linear-gradient(180deg, rgba(30, 123, 255, .18), rgba(3, 7, 14, .96));
    border-color: var(--line-blue);
    box-shadow: 0 0 16px rgba(30, 123, 255, .3);
}

.page {
    margin: 0;
    max-width: none;
    padding: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
}

p {
    color: var(--muted);
    line-height: 1.5;
}

.hero-section {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(255, 30, 30, .25), transparent 28%),
        linear-gradient(270deg, rgba(30, 123, 255, .35), transparent 35%),
        linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .36), rgba(0, 0, 0, .72)),
        url("background.jpg") center / cover;
    border-bottom: 1px solid rgba(30, 123, 255, .55);
    border-top: 1px solid rgba(255, 30, 30, .3);
    box-shadow: inset 0 -24px 40px rgba(0, 0, 0, .72);
    display: grid;
    min-height: clamp(330px, 31vw, 430px);
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    background:
        linear-gradient(115deg, rgba(255, 30, 30, .34) 0 5px, transparent 5px 46%),
        linear-gradient(245deg, rgba(30, 123, 255, .34) 0 5px, transparent 5px 44%);
    content: "";
    inset: 0;
    opacity: .85;
    pointer-events: none;
    position: absolute;
}

.hero-section::after {
    background: linear-gradient(90deg, var(--red), transparent 42%, var(--blue));
    bottom: 0;
    box-shadow: 0 0 22px rgba(30, 123, 255, .5), 0 0 24px rgba(255, 30, 30, .4);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
}

.hero-section > img {
    display: none;
}

.slider-arrow {
    background: rgba(0, 0, 0, .52);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--white);
    font-family: Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    height: 88px;
    min-height: 0;
    padding: 0 18px;
    position: absolute;
    top: 45%;
    z-index: 3;
}

.slider-left {
    left: 0;
}

.slider-right {
    right: 0;
}

.hero-panel {
    margin-left: clamp(28px, 18vw, 420px);
    max-width: 760px;
    padding: 32px clamp(22px, 4vw, 64px);
    position: relative;
    text-align: left;
    z-index: 2;
}

.hero-logo-mark {
    display: block;
    filter: drop-shadow(0 0 16px rgba(255, 30, 30, .45)) drop-shadow(0 0 16px rgba(30, 123, 255, .32));
    height: 70px;
    margin-bottom: 8px;
    object-fit: contain;
    width: 70px;
}

.hero-panel h1 {
    background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 46%, #80858c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, .18)) drop-shadow(0 0 14px rgba(30, 123, 255, .22));
    font-size: clamp(2.45rem, 5.4vw, 4.85rem);
    line-height: .86;
    margin: 0 0 8px;
}

.hero-panel > strong {
    color: var(--gold);
    display: block;
    font-size: clamp(1rem, 1.75vw, 1.55rem);
    letter-spacing: .18rem;
    text-shadow: 0 0 14px rgba(184, 135, 70, .6);
    text-transform: uppercase;
}

.hero-panel p {
    color: var(--text);
    font-size: clamp(.95rem, 1.7vw, 1.2rem);
    font-weight: 900;
    margin: 12px 0 0;
    max-width: 650px;
    text-transform: uppercase;
}

.hero-panel p span {
    color: var(--red);
}

.hero-panel p em {
    color: var(--blue);
    font-style: normal;
}

.hero-actions,
.cart-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}

.hero-actions .button-link {
    min-width: 190px;
}

.hero-dots {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-top: 16px;
    max-width: 420px;
}

.hero-dots span {
    background: var(--muted);
    border-radius: 50%;
    height: 8px;
    width: 8px;
}

.hero-dots span:first-child {
    background: var(--red);
    box-shadow: 0 0 10px var(--red);
}

.benefit-strip,
.safety-strip {
    display: grid;
    gap: 0;
    margin: 0 auto;
    max-width: 1740px;
    padding: 0 clamp(18px, 4vw, 72px);
    position: relative;
}

.benefit-strip {
    background:
        linear-gradient(90deg, rgba(255, 30, 30, .2), transparent 48%, rgba(30, 123, 255, .2)),
        #050607;
    border-bottom: 1px solid var(--line-blue);
    border-top: 1px solid var(--line-red);
    box-shadow: 0 0 28px rgba(30, 123, 255, .18), 0 0 24px rgba(255, 30, 30, .15);
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.safety-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 34px;
    margin-top: 40px;
}

.benefit-strip div,
.safety-strip div,
.featured-card,
.card,
.cart-panel,
.checkout-form,
.order-summary,
.success-panel,
.empty-state,
.notice,
.section-heading {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .07), transparent 40%),
        linear-gradient(180deg, rgba(24, 28, 35, .98), rgba(5, 6, 8, .98));
    border: 1px solid var(--line);
    color: var(--text);
}

.benefit-strip div,
.safety-strip div {
    border-left: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    min-height: 96px;
    padding: 18px clamp(16px, 2.2vw, 34px);
}

.benefit-icon,
.product-category,
.stock.in,
.notice {
    color: var(--gold);
}

.benefit-icon {
    display: block;
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.benefit-strip strong,
.safety-strip strong {
    color: var(--white);
    display: block;
    font-size: .95rem;
    font-weight: 900;
    text-transform: uppercase;
}

.benefit-strip span,
.safety-strip span {
    color: var(--muted);
    display: block;
    margin-top: 5px;
}

.featured-section {
    margin: 32px auto 0;
    max-width: 1740px;
    padding: 0 clamp(18px, 4vw, 72px);
}

.featured-title {
    margin-bottom: 20px;
    text-align: center;
}

.featured-title h2,
.section-heading h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: .08rem;
    margin-bottom: 8px;
}

.featured-title h2::before,
.featured-title h2::after {
    background: linear-gradient(90deg, transparent, var(--red));
    content: "";
    display: inline-block;
    height: 2px;
    margin: 0 16px 8px;
    width: min(120px, 14vw);
}

.featured-title h2::after {
    background: linear-gradient(90deg, var(--blue), transparent);
}

.featured-title h2 span {
    color: var(--red);
    text-shadow: 0 0 14px rgba(255, 30, 30, .55);
}

.featured-grid,
.products {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.featured-card,
.card {
    border-radius: 7px;
    box-shadow: 0 18px 28px rgba(0, 0, 0, .46), inset 0 0 20px rgba(255, 255, 255, .03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    position: relative;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.featured-card:nth-child(odd),
.card:nth-child(odd) {
    border-color: rgba(255, 30, 30, .48);
}

.featured-card:nth-child(even),
.card:nth-child(even) {
    border-color: rgba(30, 123, 255, .42);
}

.featured-card:hover,
.card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 34px rgba(0, 0, 0, .58), 0 0 20px rgba(255, 30, 30, .22), 0 0 18px rgba(30, 123, 255, .18);
    transform: translateY(-5px);
}

.featured-card img,
.product-image img,
.cart-row img {
    aspect-ratio: 4 / 3;
    background: #050607;
    display: block;
    object-fit: cover;
    width: 100%;
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.featured-card h3,
.card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.price {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.corner-tag,
.stock-badge,
.stock-pill {
    background: linear-gradient(180deg, #ff3535, #a8080f);
    border: 1px solid rgba(255, 30, 30, .75);
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(255, 30, 30, .32);
    color: var(--white);
    font-size: .72rem;
    font-weight: 900;
    padding: 6px 9px;
    text-transform: uppercase;
}

.corner-tag {
    left: 0;
    position: absolute;
    top: 0;
    z-index: 2;
}

.stock-pill,
.stock-badge {
    align-self: flex-start;
}

.stock-pill.in,
.stock-badge.in {
    background: rgba(30, 123, 255, .14);
    border-color: rgba(30, 123, 255, .7);
    color: #cfe2ff;
}

.stock-pill.low,
.stock-badge.low,
.stock.low {
    color: var(--gold);
}

.stock-pill.out,
.stock-badge.out,
.stock.out,
.notice.error {
    color: #ff6b6b;
}

.stock-pill.low,
.stock-badge.low {
    background: rgba(184, 135, 70, .18);
    border-color: rgba(240, 195, 122, .65);
}

.stock-pill.out,
.stock-badge.out {
    background: rgba(255, 30, 30, .16);
    border-color: rgba(255, 30, 30, .65);
}

.product-image {
    position: relative;
}

.stock-badge {
    left: 12px;
    position: absolute;
    top: 12px;
}

.description,
.stock,
.search-note {
    color: var(--muted);
    font-size: .9rem;
}

.product-category {
    display: block;
    font-size: .75rem;
    font-weight: 900;
    margin: 16px 16px 0;
    text-transform: uppercase;
}

.card .product-category + h3,
.card h3 {
    padding-left: 16px;
    padding-right: 16px;
}

.card .description,
.card .price,
.card .stock,
.card .catalog-note {
    margin-left: 16px;
    margin-right: 16px;
}

.card .catalog-note {
    margin-bottom: 16px;
}

.catalog-note {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .84rem;
    font-weight: 900;
    margin-top: auto;
    padding-top: 12px;
    text-transform: uppercase;
}

.inline-actions,
.card-actions {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    margin-top: auto;
    padding-top: 14px;
}

.card-actions {
    grid-template-columns: 1fr;
}

.inline-actions button,
.card-actions button {
    font-size: .78rem;
    min-height: 40px;
    padding: 8px 10px;
}

.view-all {
    clip-path: polygon(8% 0, 92% 0, 100% 50%, 92% 100%, 8% 100%, 0 50%);
    display: flex;
    margin: 26px auto 0;
    max-width: 360px;
}

.section-heading,
.cart-panel,
.checkout-form,
.order-summary,
.success-panel,
.empty-state,
.notice {
    border-radius: 7px;
    margin: 34px clamp(18px, 4vw, 72px) 22px;
    padding: 24px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 clamp(18px, 4vw, 72px) 28px;
}

.products {
    margin: 0 auto;
    max-width: 1740px;
    padding: 0 clamp(18px, 4vw, 72px) 44px;
}

.cart-row {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 16px;
    grid-template-columns: 110px 1fr 90px 120px 90px;
    padding: 16px 0;
}

.cart-row h3,
.cart-row p {
    margin: 0 0 6px;
}

.cart-row strong,
.cart-total strong {
    color: var(--white);
}

.order-item-row {
    grid-template-columns: 1fr 130px;
}

.cart-total {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    font-size: 1.15rem;
    font-weight: 900;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 18px;
    text-transform: uppercase;
}

.cart-total strong {
    font-size: 1.6rem;
}

.checkout-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
}

.auth-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-grid.single {
    grid-template-columns: minmax(280px, 520px);
    justify-content: center;
}

.auth-card h1 {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.checkout-form {
    display: grid;
    gap: 14px;
}

.checkout-form label {
    color: var(--muted);
    display: grid;
    font-weight: 700;
    gap: 8px;
}

.checkout-form textarea {
    min-height: 120px;
    resize: vertical;
}

.order-summary div {
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.admin-order-row {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 10px;
    grid-template-columns: 1.2fr 1fr auto;
    padding: 12px 0;
}

.admin-order-row span {
    color: var(--muted);
}

.admin-access-page {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 30, 30, .18), transparent 36%),
        var(--bg-dark);
    display: grid;
    min-height: 100vh;
    padding: 22px;
}

.admin-access-card {
    background: linear-gradient(180deg, rgba(32, 36, 45, .96), rgba(20, 22, 28, .96));
    border: 1px solid rgba(255, 30, 30, .42);
    border-radius: 8px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .3);
    margin: 0 auto;
    max-width: 460px;
    padding: 28px;
    text-align: center;
    width: 100%;
}

.admin-access-card img {
    height: 120px;
    object-fit: contain;
    width: 120px;
}

.eyebrow {
    color: var(--red);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.text-muted {
    color: var(--muted);
}

.admin-access-form {
    display: grid;
    gap: 14px;
    margin: 20px 0;
    text-align: left;
}

.admin-access-form label {
    color: var(--muted);
    display: grid;
    font-weight: 700;
    gap: 8px;
}

.show-password {
    align-items: center !important;
    display: flex !important;
    gap: 8px !important;
    justify-content: flex-start;
}

.show-password input {
    width: auto !important;
}

.admin-access-form input {
    background: #0f1116;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 6px;
    color: var(--white);
    padding: 10px 12px;
}

.admin-dashboard-page {
    background:
        linear-gradient(135deg, rgba(255, 30, 30, .12), transparent 32%),
        radial-gradient(circle at top right, rgba(30, 123, 255, .14), transparent 28%),
        var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
}

.admin-sidebar {
    background: linear-gradient(180deg, #101216, #08090b);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    inset: 0 auto 0 0;
    padding: 22px 18px;
    position: fixed;
    width: 270px;
}

.admin-sidebar img {
    height: 58px;
    object-fit: contain;
    width: 58px;
}

.admin-sidebar strong {
    color: var(--white);
    font-weight: 900;
    margin-bottom: 10px;
}

.admin-sidebar a {
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 800;
    padding: 12px;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255, 30, 30, .16);
    border-color: rgba(255, 30, 30, .35);
    color: var(--white);
}

.admin-main {
    margin-left: 270px;
    min-height: 100vh;
}

.admin-topbar {
    align-items: center;
    background: rgba(17, 19, 24, .92);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    min-height: 84px;
    padding: 15px 26px;
}

.admin-topbar h1 {
    margin: 0;
}

.admin-top-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.admin-top-actions span {
    color: var(--muted);
}

.admin-top-actions a,
.account-actions a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    color: var(--white);
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    text-transform: uppercase;
}

.admin-top-actions a:hover,
.account-actions a:hover {
    background: rgba(255, 255, 255, .1);
}

.account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.admin-login-actions {
    justify-content: center;
    margin-bottom: 18px;
}

.admin-panel {
    background: linear-gradient(180deg, rgba(32, 36, 45, .96), rgba(20, 22, 28, .96));
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .22);
    margin: 24px;
    padding: 22px;
}

.shop-footer {
    background:
        linear-gradient(90deg, rgba(255, 30, 30, .1), transparent 48%, rgba(30, 123, 255, .1)),
        #050607;
    border-top: 1px solid rgba(255, 30, 30, .34);
    color: var(--muted);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1740px;
    padding: 34px clamp(18px, 4vw, 72px);
}

.shop-footer h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 14px;
}

.shop-footer a,
.shop-footer span {
    color: var(--muted);
    display: block;
    font-size: .88rem;
    margin-bottom: 10px;
}

.shop-footer a:hover {
    color: var(--white);
}

.footer-brand img {
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 30, 30, .32));
    height: 82px;
    margin-bottom: 10px;
    object-fit: contain;
    width: 82px;
}

.footer-brand strong {
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: .88rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .78rem;
    padding: 14px;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .follow-us {
        margin-left: 0;
    }

    .nav-shell {
        grid-template-columns: 1fr;
        justify-items: center;
        padding-bottom: 18px;
    }

    .brand img {
        height: 96px;
        margin-bottom: 0;
        width: 126px;
    }

    .nav-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-panel {
        margin-left: 68px;
    }

    .benefit-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .safety-strip,
    .footer-grid,
    .checkout-grid,
    .auth-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .utility-inner,
    .main-nav,
    .nav-actions,
    .hero-actions,
    .cart-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .main-nav {
        gap: 4px;
        width: 100%;
    }

    .main-nav a {
        text-align: center;
    }

    .site-search {
        display: grid;
        grid-template-columns: 1fr auto;
        width: 100%;
    }

    .site-search input {
        width: 100%;
    }

    .hero-section {
        min-height: 560px;
    }

    .hero-panel {
        margin-left: 0;
        padding: 78px 28px 38px;
        text-align: center;
    }

    .hero-logo-mark {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-dots {
        margin-left: auto;
        margin-right: auto;
    }

    .slider-arrow {
        display: none;
    }

    .benefit-strip,
    .safety-strip,
    .footer-grid,
    .checkout-grid,
    .auth-grid,
    .auth-grid.single,
    .admin-order-row {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        width: 100%;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-row {
        grid-template-columns: 90px 1fr;
    }

    .cart-row input,
    .cart-row strong,
    .cart-row button {
        grid-column: 1 / -1;
    }

    .button-link,
    button {
        width: 100%;
    }
}

/* JB logo-match theme polish: keeps the catalog view-only logic untouched. */
:root {
    --jb-black: #020304;
    --jb-armor: #0b0d11;
    --jb-panel: #151922;
    --jb-panel-2: #202632;
    --jb-silver: #dfe3e8;
    --jb-red: #ff1f1f;
    --jb-blue: #1683ff;
    --jb-bronze: #c0934f;
    --jb-gold: #f1c06c;
}

body {
    background:
        radial-gradient(circle at 10% 18%, rgba(255, 31, 31, .28), transparent 22%),
        radial-gradient(circle at 90% 18%, rgba(22, 131, 255, .26), transparent 23%),
        linear-gradient(135deg, rgba(255, 31, 31, .09) 0 12%, transparent 12% 44%, rgba(22, 131, 255, .08) 44% 56%, transparent 56% 100%),
        linear-gradient(180deg, #000 0%, #07080b 48%, #000 100%);
}

body::before {
    background:
        linear-gradient(30deg, rgba(255,255,255,.025) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.025) 87.5%, rgba(255,255,255,.025)),
        linear-gradient(150deg, rgba(255,255,255,.025) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.025) 87.5%, rgba(255,255,255,.025)),
        linear-gradient(90deg, rgba(255, 31, 31, .14), transparent 34%, rgba(22, 131, 255, .14));
    background-size: 46px 80px, 46px 80px, auto;
    opacity: .42;
}

.utility-bar,
.nav-shell,
.shop-footer {
    border-image: linear-gradient(90deg, var(--jb-red), var(--jb-bronze), var(--jb-blue)) 1;
}

.nav-shell {
    background:
        linear-gradient(90deg, rgba(255, 31, 31, .18), rgba(3, 4, 6, .98) 35%, rgba(22, 131, 255, .18)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 11px);
}

.brand img,
.hero-logo-mark,
.footer-brand img {
    filter:
        drop-shadow(0 0 12px rgba(255, 31, 31, .6))
        drop-shadow(0 0 14px rgba(22, 131, 255, .45))
        drop-shadow(0 8px 18px rgba(0, 0, 0, .8));
}

.hero-section {
    background:
        linear-gradient(90deg, rgba(255, 31, 31, .2), transparent 28%, rgba(22, 131, 255, .18)),
        radial-gradient(circle at 28% 32%, rgba(192, 147, 79, .2), transparent 18%),
        linear-gradient(180deg, #030405, #080a0f 72%, #020304);
    border-bottom: 1px solid rgba(22, 131, 255, .45);
    box-shadow: inset 0 -1px 0 rgba(255, 31, 31, .42), 0 24px 54px rgba(0,0,0,.5);
}

.hero-panel h1,
.section-title h2,
.featured-title,
.card h3,
.featured-card h3 {
    color: var(--jb-silver);
    text-shadow:
        0 0 10px rgba(255, 31, 31, .32),
        0 0 14px rgba(22, 131, 255, .28);
}

.hero-panel > strong,
.price,
.stock.in-stock,
.product-category {
    color: var(--jb-gold);
}

.featured-card,
.card,
.admin-panel,
.auth-card,
.cart-summary,
.checkout-form {
    background:
        linear-gradient(145deg, rgba(255, 31, 31, .08), transparent 28%, rgba(22, 131, 255, .08)),
        linear-gradient(180deg, rgba(31, 37, 48, .96), rgba(9, 11, 16, .98));
    border: 1px solid rgba(223, 227, 232, .12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 0 0 1px rgba(255, 31, 31, .08),
        0 20px 42px rgba(0, 0, 0, .45);
}

.featured-card:hover,
.card:hover {
    border-color: rgba(22, 131, 255, .62);
    box-shadow:
        0 0 18px rgba(255, 31, 31, .22),
        0 0 24px rgba(22, 131, 255, .2),
        0 24px 48px rgba(0, 0, 0, .55);
}

.product-image,
.featured-card img {
    background: #f7f7f7;
    border-bottom: 1px solid rgba(255, 31, 31, .28);
}

.button-link,
button,
.site-search button,
.view-all {
    background: linear-gradient(180deg, #ff3c3c, #b50810);
    border-color: rgba(255, 31, 31, .84);
    box-shadow: 0 0 14px rgba(255, 31, 31, .42), inset 0 1px 0 rgba(255,255,255,.18);
}

.secondary,
button.secondary,
.category-tabs a {
    background: linear-gradient(180deg, rgba(22, 131, 255, .24), #07111f);
    border-color: rgba(22, 131, 255, .82);
    box-shadow: 0 0 14px rgba(22, 131, 255, .38), inset 0 1px 0 rgba(255,255,255,.12);
}

.status-badge.low-stock,
.product-badge.low-stock {
    background: rgba(192, 147, 79, .18);
    border-color: rgba(241, 192, 108, .72);
    color: var(--jb-gold);
}

.status-badge.sold-out,
.product-badge.sold-out,
button:disabled {
    background: rgba(255, 31, 31, .12);
    border-color: rgba(255, 31, 31, .44);
    color: #ff9a9a;
}

/* Keep the logo sharp over the tactical background. */
.brand img {
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at center, rgba(0, 0, 0, .96) 0 58%, rgba(0, 0, 0, .72) 66%, transparent 76%);
    border-radius: 50%;
    height: auto;
    image-rendering: auto;
    margin-bottom: -44px;
    max-height: 148px;
    opacity: 1;
    padding: 3px;
    transform: translateZ(0);
    width: clamp(118px, 9.5vw, 148px);
}

.hero-logo-mark,
.footer-brand img {
    background: radial-gradient(circle at center, rgba(0, 0, 0, .95) 0 58%, transparent 76%);
    border-radius: 50%;
    image-rendering: auto;
    opacity: 1;
    padding: 2px;
}

.brand img,
.hero-logo-mark {
    filter:
        drop-shadow(0 0 7px rgba(255, 31, 31, .5))
        drop-shadow(0 0 8px rgba(22, 131, 255, .42))
        drop-shadow(0 8px 16px rgba(0, 0, 0, .78));
}

/* Final logo clarity pass for every public website logo placement. */
.brand img,
.hero-logo-mark,
.footer-brand img {
    backface-visibility: hidden;
    filter:
        drop-shadow(0 0 5px rgba(255, 31, 31, .42))
        drop-shadow(0 0 6px rgba(22, 131, 255, .34))
        drop-shadow(0 7px 14px rgba(0, 0, 0, .84)) !important;
    image-rendering: -webkit-optimize-contrast;
    object-fit: contain !important;
    opacity: 1 !important;
    transform: translateZ(0);
}

.brand img {
    height: clamp(118px, 9.5vw, 148px) !important;
    width: clamp(118px, 9.5vw, 148px) !important;
}

.hero-logo-mark {
    height: 86px !important;
    width: 86px !important;
}

.footer-brand img {
    height: 92px !important;
    width: 92px !important;
}

/* Website header logo should stay crisp like the POS logo. */
.nav-shell {
    align-items: center;
    grid-template-columns: 190px 1fr auto;
    min-height: 112px;
}

.brand {
    align-items: center;
    justify-content: center;
}

.brand img {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter:
        drop-shadow(0 0 7px rgba(255, 31, 31, .42))
        drop-shadow(0 0 7px rgba(22, 131, 255, .34))
        drop-shadow(0 8px 14px rgba(0, 0, 0, .82)) !important;
    height: 138px !important;
    margin-bottom: -34px !important;
    object-fit: contain !important;
    padding: 0 !important;
    width: 138px !important;
}

.hero-logo-mark {
    display: none !important;
}
