:root {
    --background: #0d0d0d;
    --background-soft: #141414;
    --surface: #1c1c1c;
    --surface-light: #242424;
    --border: #333333;
    --text: #f5f5f5;
    --muted: #aaaaaa;
    --accent: #d96b1f;
    --accent-hover: #ee7c28;
    --success: #234d2d;
    --max-width: 1400px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
  background:
    radial-gradient(
        circle at top right,
        rgba(217, 107, 31, 0.05),
        transparent 30%
    ),
    radial-gradient(
        circle at bottom left,
        rgba(217, 107, 31, 0.04),
        transparent 35%
    ),
    linear-gradient(
        180deg,
        #161616 0%,
        #101010 45%,
        #0c0c0c 100%
    );
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.site-header {
    background: #000000;
    border-bottom: 2px solid var(--accent);
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 100px;
    padding: 14px max(24px, calc((100vw - var(--max-width)) / 2));
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid #222222;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    min-width: 260px;
    flex-shrink: 0;
}

.site-logo {
    display: block;
    width: 260px;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    color: #dddddd;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-button,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.nav-button,
.primary-button {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.nav-button:hover,
.primary-button:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
}

.secondary-button {
    border: 1px solid #666666;
    background: rgba(15, 15, 15, 0.78);
    color: #ffffff;
}

.secondary-button:hover {
    border-color: #ffffff;
    transform: translateY(-1px);
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 35%, rgba(217, 107, 31, 0.18), transparent 32%),
        linear-gradient(115deg, #050505 0%, #111111 58%, #050505 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(135deg, transparent 48%, #222222 49%, #222222 51%, transparent 52%);
    background-size: 44px 44px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.55)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 86px 0;
}

.eyebrow,
.section-eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.hero-subtitle {
    max-width: 720px;
    margin: 24px 0 0;
    color: #d0d0d0;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    margin-top: 54px;
    border: 1px solid #343434;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(16, 16, 16, 0.78);
}

.hero-highlights div {
    padding: 20px;
    border-right: 1px solid #343434;
}

.hero-highlights div:last-child {
    border-right: 0;
}

.hero-highlights strong,
.hero-highlights span {
    display: block;
}

.hero-highlights strong {
    color: var(--accent);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.hero-highlights span {
    margin-top: 4px;
    color: #c3c3c3;
    font-size: 0.9rem;
}

main {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
}

.category-section,
.inventory-section,
.contact-section {
    padding: 76px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.inventory-heading h2,
.contact-section h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.section-heading > p:last-child,
.contact-section > div > p:last-child,
.inventory-note {
    color: var(--muted);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    min-height: 180px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(145deg, var(--surface), #161616);
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    background: linear-gradient(145deg, #222222, #171717);
}

.category-icon {
    display: inline-flex;
    min-width: 46px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
}

.category-card strong,
.category-card small {
    display: block;
}

.category-card strong {
    font-size: 1.2rem;
}

.category-card small {
    margin-top: 5px;
    color: var(--muted);
}

.inventory-section {
    border-top: 1px solid #242424;
}

.inventory-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.inventory-note {
    max-width: 430px;
    margin: 0;
    text-align: right;
}

.controls {
    position: static;
    z-index: 15;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.96);
}
.inventory-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.filter-btn {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: #d8d8d8;
    padding: 12px 22px;
    border-radius: 5px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: .25s ease;
}

.filter-btn:hover {
    background: rgba(255,128,0,.12);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(180deg,#ff8a1f,#d96b00);
    color: white;
    border-color: #ff8a1f;
    box-shadow: 0 8px 20px rgba(255,128,0,.25);
}
.search-control {
    max-width: 820px;
}

.search-control label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

#searchInput {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #3b3b3b;
    border-radius: 6px;
    outline: none;
    background: #252525;
    color: #ffffff;
}

#searchInput:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 107, 31, 0.14);
}

#inventoryCount {
    margin: 0;
    color: #c8c8c8;
    white-space: nowrap;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.inventory-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.inventory-card:hover {
    transform: translateY(-5px);
    border-color: #555555;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.product-image-wrapper {
    display: flex;
    height: 245px;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

.product-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inventory-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.manufacturer {
    margin-bottom: 6px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.inventory-card h2 {
    min-height: 2.5em;
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.25;
}

.product-price {
    margin-top: 14px;
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 900;
}

.inventory-details {
    display: grid;
    gap: 5px;
    margin: 20px 0;
    padding: 0;
    color: #c7c7c7;
    list-style: none;
    font-size: 0.92rem;
}

.inventory-details strong {
    color: #ffffff;
}

.availability {
    align-self: flex-start;
    margin-top: auto;
    padding: 8px 11px;
    border-radius: 5px;
    background: var(--success);
    color: #d7f4dd;
    font-size: 0.82rem;
    font-weight: 800;
}

#loadMoreButton {
    display: block;
    min-width: 220px;
    margin: 42px auto 0;
    padding: 15px 25px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    background: var(--accent);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
}

#loadMoreButton:hover {
    background: var(--accent-hover);
}

#loadMoreButton[hidden] {
    display: none;
}

.empty-message {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--muted);
    text-align: center;
}

.contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 76px;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background:
        linear-gradient(120deg, rgba(217, 107, 31, 0.12), transparent 42%),
        var(--surface);
}

.contact-section > div:first-child {
    max-width: 720px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

footer {
    padding: 34px 24px;
    border-top: 1px solid #242424;
    background: #080808;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    color: #989898;
    font-size: 0.85rem;
}

.footer-content strong {
    color: #ffffff;
    text-transform: uppercase;
}

.footer-content p {
    margin: 4px 0 0;
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }
    
    .site-logo {
        width: 200px;
    }

.brand-link {
    min-width: 200px;
}
    .category-grid,
    .inventory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .top-nav {
        gap: 16px;
    }
    .nav-button {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-highlights div {
        border-right: 0;
        border-bottom: 1px solid #343434;
    }

    .hero-highlights div:last-child {
        border-bottom: 0;
    }

    .category-grid,
    .inventory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inventory-heading,
    .contact-section {
        align-items: stretch;
        flex-direction: column;
    }

    .inventory-heading {
        display: flex;
    }

    .inventory-note {
        max-width: none;
        text-align: left;
    }

    .controls {
        position: static;
        grid-template-columns: 1fr;
    }

    .contact-section {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    main,
    .hero-content {
        width: min(100% - 28px, var(--max-width));
    }

    .top-nav {
        min-height: 90px;
        padding: 12px 24px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .category-grid,
    .inventory-grid {
        grid-template-columns: 1fr;
    }

    .product-image-wrapper {
        height: 270px;
    }

    .category-section,
    .inventory-section,
    .contact-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .contact-section {
        padding: 28px;
    }
}

/* Product details modal */

.product-modal[hidden] {
    display: none;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
}

.product-modal-panel {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #151515;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65);
}

.modal-close-button {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 1px solid #444444;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.9);
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.modal-close-button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.modal-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.modal-image-section {
    flex-direction: column;
    gap: 16px;
    display: flex;
    min-height: 540px;
    align-items: center;
    justify-content: center;
    padding: 42px;
    background: #ffffff;
}

.modal-product-image {
    display: block;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.modal-product-content {
    padding: 54px 44px 42px;
}

.modal-manufacturer {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.modal-product-content h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.modal-price {
    margin: 20px 0 0;
    color: var(--accent);
    font-size: 2rem;
    font-weight: 900;
}

.modal-availability {
    display: inline-flex;
    margin-top: 20px;
    padding: 9px 12px;
    border-radius: 5px;
    background: var(--success);
    color: #dcf6e2;
    font-size: 0.85rem;
    font-weight: 800;
}

.modal-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 0;
}

.modal-details div {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #1d1d1d;
}

.modal-details dt {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modal-details dd {
    margin: 0;
    color: #ffffff;
    overflow-wrap: anywhere;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.modal-legal-note {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.inventory-card {
    cursor: pointer;
}

.inventory-card:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 820px) {
    .product-modal {
        padding: 12px;
    }

    .product-modal-panel {
        max-height: calc(100vh - 24px);
    }

    .modal-product-layout {
        grid-template-columns: 1fr;
    }

    .modal-image-section {
        min-height: 330px;
        padding: 28px;
    }

    .modal-product-image {
        max-height: 300px;
    }

    .modal-product-content {
        padding: 38px 24px 28px;
    }
}

@media (max-width: 520px) {
    .modal-details {
        grid-template-columns: 1fr;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions a {
        width: 100%;
    }
}

.category-card.active-category {
    border-color: var(--accent);
    background:
        linear-gradient(
            145deg,
            rgba(217, 107, 31, 0.18),
            #171717
        );
    box-shadow:
        0 0 0 1px
        rgba(217, 107, 31, 0.25);
}

.category-card.active-category .category-icon {
    background: var(--accent);
    color: #ffffff;
}

.copy-link-button {
    cursor: pointer;
}

.copy-link-button.copied {
    border-color: var(--success);
    background: var(--success);
    color: #ffffff;
}

/* Store contact information */

.contact-section {
    display: block;
}

.contact-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.contact-heading p:last-child {
    color: var(--muted);
}

.store-information {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.store-info-card {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 13px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(15, 15, 15, 0.65);
    color: var(--text);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

a.store-info-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    background: rgba(217, 107, 31, 0.08);
}

.store-info-icon {
    display: flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
    font-size: 1.15rem;
}

.store-info-card span:last-child {
    min-width: 0;
}

.store-info-card strong,
.store-info-card small {
    display: block;
}

.store-info-card strong {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 0.95rem;
}

.store-info-card small {
    color: var(--muted);
    font-size: 0.83rem;
    overflow-wrap: anywhere;
}

.contact-section .contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

@media (max-width: 1000px) {
    .store-information {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .store-information {
        grid-template-columns: 1fr;
    }

    .contact-section .contact-actions {
        flex-direction: column;
    }

    .contact-section .contact-actions a {
        width: 100%;
    }
}

/* Featured firearms section */

.featured-section {
    padding: 76px 0;
    border-top: 1px solid #242424;
}

.featured-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.featured-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.featured-heading p:last-child {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.featured-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #444444;
    border-radius: 9px;
    background: var(--surface);
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.featured-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 4px;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-card .product-image-wrapper {
    height: 280px;
}

.featured-card .inventory-card-content {
    padding: 24px;
}

.featured-card h2 {
    min-height: 2.4em;
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
}

.featured-card .product-price {
    font-size: 1.55rem;
}

.featured-loading {
    grid-column: 1 / -1;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1100px) {
    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .featured-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-heading .secondary-button {
        width: 100%;
    }
}

/* Professional two-column hero */

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--accent);
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 72px;
    padding: 90px 0;
}

.hero-content {
    max-width: 760px;
}

.hero-content h1 {
    max-width: 720px;
    margin: 12px 0 24px;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.hero-subtitle {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero-highlights {
    max-width: 720px;
    margin-top: 42px;
}

.hero-store-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.hero-store-card h2 {
    margin: 6px 0 26px;
    font-size: 2rem;
}

.hero-store-details {
    display: grid;
    gap: 18px;
}

.hero-store-details > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-store-details > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.hero-store-details span {
    display: flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
}

.hero-store-details p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.hero-store-details strong {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
}

.hero-store-details a {
    color: #ffffff;
}

.hero-store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 46px;
        padding: 72px 0;
    }

    .hero-content {
        max-width: none;
    }

    .hero-store-card {
        max-width: 700px;
    }
}

@media (max-width: 620px) {
    .hero-inner {
        width: min(100% - 30px, 1320px);
        padding: 56px 0;
    }

    .hero-content h1 {
        font-size: clamp(3.2rem, 17vw, 5rem);
    }

    .hero-actions,
    .hero-store-actions {
        flex-direction: column;
    }

    .hero-actions a,
    .hero-store-actions a {
        width: 100%;
        text-align: center;
    }

    .hero-store-card {
        padding: 24px;
    }
}

.hero {
    min-height: 560px;
}



.featured-section {
    margin-bottom: 48px;
}

.contact-section {
    border: 1px solid rgba(217, 107, 31, 0.22);
    background:
        linear-gradient(
            145deg,
            rgba(217, 107, 31, 0.08),
            rgba(255, 255, 255, 0.025)
        );
}

/* =========================================================
   GUNBROKER ACCESSORY MARKETPLACE
========================================================= */

.accessory-market-section {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 76px 0;
    border-top: 1px solid #242424;
}

.accessory-market-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.accessory-market-heading > div {
    max-width: 760px;
}

.accessory-market-heading h2 {
    margin: 0 0 12px;
    font-size: 2.8rem;
    line-height: 1.05;
}

.accessory-market-heading p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.accessory-market-toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid #2f2f2f;
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.82);
}

.accessory-market-toolbar input {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid #3a3a3a;
    border-radius: 5px;
    background: #090909;
    color: var(--text);
    outline: none;
}

.accessory-market-toolbar input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 107, 31, 0.14);
}

.accessory-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.accessory-category-filters button {
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid #3a3a3a;
    border-radius: 5px;
    background: #121212;
    color: #dddddd;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.accessory-category-filters button:hover,
.accessory-category-filters button.active {
    border-color: var(--accent);
    background: rgba(217, 107, 31, 0.16);
    color: #ffffff;
}

.accessory-market-count {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.accessory-market-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.accessory-listing-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #303030;
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.92);
    text-decoration: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.accessory-listing-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.34),
        0 0 20px rgba(217, 107, 31, 0.1);
}

.accessory-listing-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background:
        linear-gradient(145deg, #0a0a0a, #1a1a1a);
}

.accessory-listing-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.accessory-listing-image.has-placeholder img {
    object-fit: cover;
    opacity: 0.42;
    filter: grayscale(1);
}

.accessory-category-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 6px 8px;
    overflow: hidden;
    border: 1px solid rgba(217, 107, 31, 0.62);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.82);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.accessory-listing-content {
    display: flex;
    min-height: 246px;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
}

.accessory-listing-content h3 {
    display: -webkit-box;
    min-height: 4.35em;
    margin: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.accessory-listing-price {
    display: grid;
    gap: 2px;
}

.accessory-listing-price span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.accessory-listing-price strong {
    color: var(--accent);
    font-size: 1.2rem;
}

.accessory-listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.accessory-listing-meta span {
    padding: 5px 7px;
    border: 1px solid #303030;
    border-radius: 5px;
    color: #cccccc;
    font-size: 0.75rem;
    font-weight: 700;
}

.accessory-listing-action {
    margin-top: auto;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.accessory-listing-card:hover .accessory-listing-action {
    color: var(--accent);
}

.accessory-load-more-button {
    display: flex;
    width: fit-content;
    margin: 24px auto 0;
}

@media (max-width: 1120px) {
    .accessory-market-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .accessory-market-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .accessory-market-heading h2 {
        font-size: 2.25rem;
    }

    .accessory-market-toolbar {
        grid-template-columns: 1fr;
    }

    .accessory-market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .accessory-market-section {
        width: min(100% - 30px, var(--max-width));
        padding: 56px 0;
    }

    .accessory-market-heading h2 {
        font-size: 1.9rem;
    }

    .accessory-market-toolbar {
        padding: 14px;
    }

    .accessory-category-filters {
        max-height: 178px;
        overflow: auto;
    }

    .accessory-market-grid {
        grid-template-columns: 1fr;
    }

    .accessory-listing-content {
        min-height: 220px;
    }
}

/* =========================================================
   ONLINE MARKETPLACE SECTION
========================================================= */

.marketplace-section {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 76px 0;
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
}

.marketplace-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.marketplace-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.marketplace-heading > p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.marketplace-card {
    position: relative;
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #3a3a3a;
    border-radius: 10px;
    background:
        linear-gradient(
            145deg,
            rgba(217, 107, 31, 0.08),
            rgba(255, 255, 255, 0.025)
        );
    text-decoration: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.marketplace-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(217, 107, 31, 0.18),
            transparent 70%
        );
    pointer-events: none;
}

.marketplace-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    background:
        linear-gradient(
            145deg,
            rgba(217, 107, 31, 0.14),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(217, 107, 31, 0.12);
}

.marketplace-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.marketplace-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.external-link-icon {
    color: var(--muted);
    font-size: 1.35rem;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.marketplace-card:hover .external-link-icon {
    color: var(--accent);
    transform: translate(3px, -3px);
}

.marketplace-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.75rem;
}

.marketplace-card p {
    max-width: 520px;
    margin: 0 0 28px;
    color: var(--muted);
    line-height: 1.7;
}

.marketplace-link-text {
    margin-top: auto;
    color: var(--accent);
    font-weight: 800;
}

@media (max-width: 760px) {
    .marketplace-section {
        width: min(100% - 30px, var(--max-width));
        padding: 56px 0;
    }

    .marketplace-grid {
        grid-template-columns: 1fr;
    }

    .marketplace-card {
        min-height: 250px;
        padding: 26px;
    }
}

/* =========================================================
   DUAL-BRAND HEADER
========================================================= */

.brand-group {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}

.brand-logo-box {
    display: flex;
    width: 250px;
    height: 72px;
    align-items: center;
    justify-content: center;
}

.site-logo,
.suppressors-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-divider{
    width:1px;
    height:56px;
    background:rgba(255,255,255,.12);
}

/* =========================================================
   GLOSSY CARBON-FIBER HERO BACKGROUND
========================================================= */

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 0;
    background: #080808 !important;
}

/* Carbon-fiber weave */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background-image:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.035) 25%,
            transparent 25%,
            transparent 75%,
            rgba(255, 255, 255, 0.035) 75%
        ),
        linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.025) 25%,
            transparent 25%,
            transparent 75%,
            rgba(255, 255, 255, 0.025) 75%
        ),
        linear-gradient(
            45deg,
            transparent 48%,
            rgba(0, 0, 0, 0.5) 49%,
            rgba(0, 0, 0, 0.5) 51%,
            transparent 52%
        );

    background-size:
        18px 18px,
        18px 18px,
        36px 36px;

    background-position:
        0 0,
        9px 9px,
        0 0;

    opacity: 0.95;
}

/* Gloss, orange reflections, vignette and fade */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            115deg,
            transparent 0%,
            transparent 28%,
            rgba(255, 255, 255, 0.035) 40%,
            rgba(255, 255, 255, 0.09) 48%,
            rgba(255, 255, 255, 0.025) 56%,
            transparent 68%,
            transparent 100%
        ),
        radial-gradient(
            circle at 86% 16%,
            rgba(217, 107, 31, 0.2),
            rgba(217, 107, 31, 0.07) 24%,
            transparent 48%
        ),
        radial-gradient(
            circle at 8% 90%,
            rgba(217, 107, 31, 0.11),
            transparent 38%
        ),
        radial-gradient(
            ellipse at center,
            transparent 38%,
            rgba(0, 0, 0, 0.38) 74%,
            rgba(0, 0, 0, 0.78) 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0%,
            transparent 76%,
            rgba(8, 8, 8, 0.45) 89%,
            #0d0d0d 100%
        );

    box-shadow:
        inset 0 0 180px rgba(0, 0, 0, 0.55);

    animation: carbonGlossSweep 18s ease-in-out infinite;
}

/* Keep content above the background */
.hero-inner,
.hero-content,
.hero-store-card,
.hero-overlay {
    position: relative;
    z-index: 2;
}

/* Remove old overlay patterns */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent !important;
    pointer-events: none;
}

/* Slow glossy reflection movement */
@keyframes carbonGlossSweep {
    0%,
    100% {
        transform: translateX(-10%);
        opacity: 0.72;
    }

    50% {
        transform: translateX(10%);
        opacity: 1;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero::after {
        animation: none;
    }
}

/* Mobile adjustment */
@media (max-width: 700px) {
    .hero::before {
        background-size:
            14px 14px,
            14px 14px,
            28px 28px;

        background-position:
            0 0,
            7px 7px,
            0 0;
    }

    .hero::after {
        animation-duration: 24s;
    }
}

/* =========================================================
   HERO BRAND LOGO
========================================================= */

.hero-brand-logo {
    display: block;
    width: 240px;
    max-width: 100%;
    height: auto;
    margin: 0 0 32px;
    object-fit: contain;
    object-position: left center;
    filter:
        drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 14px rgba(217, 107, 31, 0.08));
}

@media (max-width: 700px) {
    .hero-brand-logo {
        width: 180px;
        margin-bottom: 24px;
    }
}

/* =========================================================
   PREMIUM PRODUCT IMAGE AREA
========================================================= */

.inventory-card img,
.featured-card img,
.product-image {
    display: block;
    width: 100%;
    height: 220px;
    padding: 18px;
    object-fit: contain;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.05),
            transparent 65%
        ),
        #101010;
}

.inventory-card,
.featured-card {
    overflow: hidden;
}

/* =========================================================
   REMOVE WHITE PRODUCT IMAGE FRAMES
========================================================= */

.inventory-card .product-image-wrapper,
.featured-card .product-image-wrapper,
.inventory-card .card-image,
.featured-card .card-image {
    background: #101010 !important;
    padding: 0 !important;
}

.inventory-card img,
.featured-card img,
.product-image {
    display: block;
    width: 100%;
    height: 220px;
    padding: 18px;
    object-fit: contain;
    background: #101010 !important;
    border: 0;
}

/* =========================================================
   CONSISTENT PRODUCT CARD LAYOUT
========================================================= */

.inventory-card,
.featured-card {
    display: flex;
    flex-direction: column;
}

.inventory-card .card-content,
.featured-card .card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.inventory-card .availability-badge,
.featured-card .availability-badge {
    margin-top: auto;
}

/* =========================================================
   TIGHTER PRODUCT CARD CONTENT
========================================================= */

.inventory-card .card-content,
.featured-card .card-content {
    padding: 22px;
}

.inventory-card h3,
.featured-card h3 {
    margin: 6px 0 18px;
    line-height: 1.15;
}

.inventory-card .product-price,
.featured-card .product-price {
    margin: 8px 0 16px;
}

.inventory-card .product-details,
.featured-card .product-details {
    margin-top: 0;
}

.inventory-card .availability-badge,
.featured-card .availability-badge {
    margin-top: auto;
}

.inventory-card,
.featured-card {
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.inventory-card:hover,
.featured-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217,107,31,.45);
    box-shadow:
        0 20px 40px rgba(0,0,0,.45),
        0 0 0 1px rgba(217,107,31,.15);
}

.inventory-card::before,
.featured-card::before{
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:inherit;
    background:
        radial-gradient(circle at top,
        rgba(217,107,31,.10),
        transparent 65%);
    opacity:0;
    transition:.3s;
    pointer-events:none;
}

.inventory-card:hover::before,
.featured-card:hover::before{
    opacity:1;
}

.inventory-card img,
.featured-card img{
    transition:transform .35s ease;
}

.inventory-card:hover img,
.featured-card:hover img{
    transform:scale(1.04);
}

/* =========================================================
   PREMIUM SORT CONTROL
========================================================= */

.sort-control {
    position: relative;
    min-width: 240px;
}

.sort-control label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sort-control select {
    width: 100%;
    min-height: 52px;
    padding: 0 48px 0 18px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;

    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            #292929 0%,
            #202020 100%
        );

    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;

    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 24px rgba(0, 0, 0, 0.22);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.sort-control::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 21px;

    width: 8px;
    height: 8px;

    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);

    transform: rotate(45deg);
    pointer-events: none;
}

.sort-control select:hover {
    border-color: rgba(217, 107, 31, 0.7);
    transform: translateY(-1px);
}

.sort-control select:focus {
    border-color: var(--accent);
    box-shadow:
        0 0 0 3px rgba(217, 107, 31, 0.14),
        0 14px 30px rgba(0, 0, 0, 0.32);
}

.sort-control select option {
    color: #ffffff;
    background: #1f1f1f;
}

/* =========================================================
   PREMIUM INVENTORY SEARCH BAR — CLEAN LUXURY STYLE
========================================================= */

.search-control {
    position: relative;
    min-width: 0;
}

.search-control label {
    display: block;
    margin-bottom: 10px;

    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.search-control input {
    display: block;
    width: 100%;
    height: 60px;

    padding: 0 54px 0 20px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;

    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            rgba(45, 45, 45, 0.96) 0%,
            rgba(31, 31, 31, 0.96) 100%
        );

    font: inherit;
    font-size: 0.96rem;
    font-weight: 500;

    outline: none;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 12px 30px rgba(0, 0, 0, 0.28);

    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease,
        background 0.22s ease;
}

.search-control input::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.search-control input:hover {
    border-color: rgba(217, 107, 31, 0.52);
    transform: translateY(-1px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 16px 34px rgba(0, 0, 0, 0.32);
}

.search-control input:focus {
    border-color: var(--accent);

    background:
        linear-gradient(
            180deg,
            rgba(48, 48, 48, 0.98) 0%,
            rgba(33, 33, 33, 0.98) 100%
        );

    box-shadow:
        0 0 0 3px rgba(217, 107, 31, 0.15),
        0 0 28px rgba(217, 107, 31, 0.12),
        0 18px 38px rgba(0, 0, 0, 0.38);
}

/* Premium clear button inside search field */
.search-control input::-webkit-search-cancel-button {
    width: 18px;
    height: 18px;

    cursor: pointer;
    opacity: 0.65;

    filter:
        invert(64%)
        sepia(66%)
        saturate(1376%)
        hue-rotate(345deg)
        brightness(95%)
        contrast(91%);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.search-control input::-webkit-search-cancel-button:hover {
    opacity: 1;
    transform: scale(1.08);
}

.search-control input::-webkit-search-decoration {
    display: none;
}

@media (max-width: 620px) {
    .search-control input {
        height: 56px;
        padding: 0 48px 0 18px;
        border-radius: 10px;
    }
}

/* =========================================================
   PREMIUM PRODUCT IMAGE FRAME
========================================================= */

.inventory-card .product-image-wrapper,
.featured-card .product-image-wrapper,
.inventory-card .card-image,
.featured-card .card-image {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 260px;
    padding: 24px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(217, 107, 31, 0.11),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #151515 0%,
            #0c0c0c 55%,
            #17110e 100%
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

/* Subtle premium lighting */
.inventory-card .product-image-wrapper::before,
.featured-card .product-image-wrapper::before,
.inventory-card .card-image::before,
.featured-card .card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            115deg,
            transparent 20%,
            rgba(255, 255, 255, 0.035) 42%,
            transparent 62%
        );

    transform: translateX(-100%);
    transition: transform 0.65s ease;
}

/* Soft vignette */
.inventory-card .product-image-wrapper::after,
.featured-card .product-image-wrapper::after,
.inventory-card .card-image::after,
.featured-card .card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    box-shadow:
        inset 0 0 45px rgba(0, 0, 0, 0.55),
        inset 0 -24px 32px rgba(0, 0, 0, 0.35);
}

/* Product or placeholder image */
.inventory-card img,
.featured-card img,
.product-image {
    position: relative;
    z-index: 1;

    display: block;
    width: auto;
    max-width: 88%;
    height: 210px;

    padding: 0;
    object-fit: contain;

    background: transparent !important;

    filter:
        drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

/* Premium hover movement */
.inventory-card:hover .product-image-wrapper::before,
.featured-card:hover .product-image-wrapper::before,
.inventory-card:hover .card-image::before,
.featured-card:hover .card-image::before {
    transform: translateX(100%);
}

.inventory-card:hover img,
.featured-card:hover img {
    transform: scale(1.035);
    filter:
        drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 16px rgba(217, 107, 31, 0.08));
}

@media (max-width: 700px) {
    .inventory-card .product-image-wrapper,
    .featured-card .product-image-wrapper,
    .inventory-card .card-image,
    .featured-card .card-image {
        min-height: 225px;
        padding: 18px;
    }

    .inventory-card img,
    .featured-card img,
    .product-image {
        height: 180px;
    }
}

/* =========================================================
   PREMIUM PAGE BACKGROUND
========================================================= */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;
    z-index: -1;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,.018),
            transparent 45%
        ),

        radial-gradient(
            circle at 85% 75%,
            rgba(217,107,31,.04),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            rgba(255,255,255,.015),
            transparent 35%,
            rgba(255,255,255,.01) 60%,
            transparent
        );

    opacity: .9;
}

/* =========================================================
   MINI STICKY INVENTORY TOOLBAR
========================================================= */

.mini-inventory-toolbar {
    position: fixed;
    top: 96px;
    left: 50%;
    z-index: 50;

    display: flex;
    align-items: center;
    gap: 8px;

    width: min(1120px, calc(100% - 32px));
    padding: 8px;

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;

    background: rgba(15, 15, 15, 0.86);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 12px 34px rgba(0, 0, 0, 0.48),
        0 0 22px rgba(217, 107, 31, 0.05);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate(-50%, -16px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.mini-inventory-toolbar.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mini-inventory-toolbar input,
.mini-inventory-toolbar select {
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: #ffffff;
    background: #252525;
    font: inherit;
    outline: none;
}

.mini-inventory-toolbar input {
    flex: 1;
    min-width: 260px;
    padding: 0 16px;
}

.mini-inventory-toolbar input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.mini-inventory-toolbar select {
    min-width: 260px;
    padding: 0 42px 0 16px;
    cursor: pointer;
}

.mini-filter-buttons {
    display: flex;
    gap: 8px;
}

.mini-filter-buttons button {
    height: 44px;
    padding: 0 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;

    color: #ffffff;
    background: #222222;

    font: inherit;
    font-size: 0.86rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.mini-filter-buttons button:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.mini-filter-buttons button.active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(217, 107, 31, 0.25);
}

/* =========================================================
   SOCIAL MEDIA SECTION
========================================================= */

.social-section {
    padding: 76px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.social-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.social-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.social-heading > p:last-child {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.social-grid {
    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(320px, 1fr)
        );

    gap: 22px;
}

.social-card {
    position: relative;
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 48%),
        #171717;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.social-card::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    opacity: 0.22;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-card-facebook::before {
    background: radial-gradient(circle, #1877f2, transparent 68%);
}

.social-card-youtube::before {
    background: radial-gradient(circle, #ff0033, transparent 68%);
}
.social-card-x::before {
    background:
        radial-gradient(
            circle,
            #ffffff,
            transparent 68%
        );
}
.social-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 107, 31, 0.72);
    box-shadow:
        0 26px 58px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(217, 107, 31, 0.09);
}

.social-card:hover::before {
    opacity: 0.34;
    transform: scale(1.08);
}

.social-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: #1877f2;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.social-icon-youtube {
    background: #ff0033;
    font-size: 1.15rem;
    padding-left: 3px;
}
.social-icon-x {
    background: #ffffff;
    color: #000000;

    font-size: 1.4rem;
    font-weight: 900;
}

.social-platform {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.social-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.08;
}

.social-card > p:not(.social-platform) {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 0 26px;
    color: var(--muted);
    line-height: 1.7;
}

.social-link-text {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: var(--accent);
    font-weight: 900;
}

.social-card:hover .external-link-icon {
    color: var(--accent);
    transform: translate(3px, -3px);
}

@media (max-width: 760px) {
    .social-section {
        padding: 56px 0;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-card {
        min-height: 280px;
        padding: 26px;
    }
}

/* =========================================================
   PREMIUM PRODUCT MODAL REDESIGN
========================================================= */

.product-modal {
    padding: 28px;
}

.product-modal-backdrop {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.product-modal-panel {
    width: min(1100px, 100%);
    max-height: min(820px, calc(100vh - 56px));
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;

    background: #111111;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(217, 107, 31, 0.08);
}

.modal-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    min-height: 680px;
}

/* LEFT IMAGE SIDE */

.modal-image-section {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 680px;
    padding: 54px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(217, 107, 31, 0.09),
            transparent 46%
        ),
        linear-gradient(
            145deg,
            #121212,
            #080808
        );

    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-image-section::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.22;

    background-image:
        linear-gradient(
            135deg,
            transparent 48%,
            rgba(255, 255, 255, 0.035) 49%,
            rgba(255, 255, 255, 0.035) 51%,
            transparent 52%
        );

    background-size: 34px 34px;

    pointer-events: none;
}

.modal-product-image {
    position: relative;
    z-index: 1;

    display: block;

    width: min(100%, 540px);
    max-height: 540px;

    object-fit: contain;

    border-radius: 10px;

    filter:
        drop-shadow(0 22px 35px rgba(0, 0, 0, 0.55));
}

/* RIGHT PRODUCT DETAILS SIDE */

.modal-product-content {
    max-height: min(820px, calc(100vh - 56px));
    overflow-y: auto;

    padding: 56px 46px 42px;

    background:
        radial-gradient(
            circle at top right,
            rgba(217, 107, 31, 0.08),
            transparent 35%
        ),
        #151515;
}

.modal-product-content::-webkit-scrollbar {
    width: 8px;
}

.modal-product-content::-webkit-scrollbar-track {
    background: #111111;
}

.modal-product-content::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #484848;
}

.modal-manufacturer {
    margin-bottom: 10px;

    color: var(--accent);

    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.modal-product-content h2 {
    margin: 0;

    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.025em;
}

.modal-price {
    margin-top: 22px;

    font-size: 2.25rem;
    line-height: 1;
}

.modal-availability {
    margin-top: 22px;
    padding: 10px 14px;

    border: 1px solid rgba(111, 210, 132, 0.18);
    border-radius: 7px;

    box-shadow:
        0 8px 20px rgba(35, 77, 45, 0.25);
}

/* PRODUCT SPECIFICATION BOXES */

.modal-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    margin-top: 30px;
}

.modal-details div {
    min-height: 82px;
    padding: 16px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.modal-details div:hover {
    border-color: rgba(217, 107, 31, 0.5);
    background: rgba(217, 107, 31, 0.055);
}

.modal-details dt {
    margin-bottom: 8px;

    color: #a7a7a7;

    font-size: 0.72rem;
    letter-spacing: 0.14em;
}

.modal-details dd {
    font-size: 0.95rem;
    line-height: 1.3;
}

/* MODAL BUTTONS */

.modal-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;

    margin-top: 28px;
}

.modal-actions .primary-button,
.modal-actions .secondary-button,
.modal-actions button {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
}

.copy-link-button {
    grid-column: 1 / -1;
}

.modal-legal-note {
    margin-top: 24px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    font-size: 0.76rem;
    line-height: 1.55;
}

/* CLOSE BUTTON */

.modal-close-button {
    top: 18px;
    right: 18px;

    width: 44px;
    height: 44px;

    border-color: rgba(255, 255, 255, 0.16);

    background: rgba(10, 10, 10, 0.92);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.modal-close-button:hover {
    transform: rotate(90deg);
}

/* TABLET */

@media (max-width: 900px) {
    .product-modal {
        padding: 14px;
    }

    .product-modal-panel {
        max-height: calc(100vh - 28px);
        overflow-y: auto;
    }

    .modal-product-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .modal-image-section {
        min-height: 390px;
        padding: 40px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .modal-product-image {
        max-height: 350px;
    }

    .modal-product-content {
        max-height: none;
        overflow: visible;
        padding: 42px 30px 32px;
    }
}

/* PHONE */

@media (max-width: 560px) {
    .product-modal {
        padding: 8px;
    }

    .product-modal-panel {
        border-radius: 12px;
    }

    .modal-image-section {
        min-height: 300px;
        padding: 32px 22px;
    }

    .modal-product-image {
        max-height: 260px;
    }

    .modal-product-content {
        padding: 34px 20px 24px;
    }

    .modal-product-content h2 {
        padding-right: 36px;
        font-size: 2.25rem;
    }

    .modal-price {
        font-size: 1.85rem;
    }

    .modal-details {
        grid-template-columns: 1fr 1fr;
    }

    .modal-actions {
        grid-template-columns: 1fr;
    }

    .copy-link-button {
        grid-column: auto;
    }
}

/* =========================================================
   CUSTOMER AUTHENTICATION
========================================================= */

.auth-page {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top,
            rgba(217, 107, 31, 0.12),
            transparent 35%
        ),
        #090909;

    color: #ffffff;
}

.auth-shell {
    display: grid;
    place-items: center;

    min-height: 100vh;
    padding: 32px 18px;
}

.auth-card {
    width: min(520px, 100%);
    padding: 42px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        ),
        #141414;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 35px rgba(217, 107, 31, 0.08);
}

.auth-back-link {
    display: inline-block;
    margin-bottom: 32px;

    color: #b8b8b8;
}

.auth-back-link:hover {
    color: var(--accent);
}

.auth-card h1 {
    margin: 8px 0 12px;

    font-size: clamp(2.2rem, 7vw, 3.5rem);
    line-height: 1;
}

.auth-description {
    margin: 0 0 30px;

    color: #b8b8b8;
}

.auth-form {
    display: grid;
    gap: 10px;
}

.auth-form label {
    margin-top: 10px;

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.auth-form input {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;

    background: #222222;
    color: #ffffff;

    font: inherit;
    outline: none;
}

.auth-form input:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(217, 107, 31, 0.14);
}

.auth-name-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.auth-name-grid > div {
    display: grid;
    gap: 10px;
}

.auth-help-text {
    color: #8f8f8f;
}

.auth-submit-button {
    width: 100%;
    margin-top: 22px;
}

.auth-submit-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.auth-message {
    min-height: 24px;
    margin: 8px 0 0;

    font-size: 0.9rem;
}

.auth-message-error {
    color: #ff8f8f;
}

.auth-message-success {
    color: #78d68a;
}

.auth-message-warning {
    color: #ffb86b;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    gap: 18px;

    margin-top: 24px;
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);

    color: #a7a7a7;
}

.auth-links a {
    color: var(--accent);
    font-weight: 800;
}

@media (max-width: 560px) {
    .auth-card {
        padding: 30px 22px;
    }

    .auth-name-grid {
        grid-template-columns: 1fr;
    }

    .auth-links {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   CUSTOMER ACCOUNT DASHBOARD
========================================================= */

.account-page {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top right,
            rgba(217, 107, 31, 0.12),
            transparent 34%
        ),
        #090909;

    color: #ffffff;
}

.account-header {
    position: sticky;
    top: 0;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding:
        18px
        max(24px, calc((100vw - 1400px) / 2));

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);

    background: rgba(5, 5, 5, 0.9);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.account-brand {
    color: #ffffff;

    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.account-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-shell {
    width: min(1400px, calc(100% - 36px));
    margin: 0 auto;
    padding: 72px 0;
}

.account-welcome {
    max-width: 760px;
    margin-bottom: 42px;
}

.account-welcome h1 {
    margin: 8px 0 14px;

    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.account-welcome > p:last-child {
    color: #b4b4b4;
    font-size: 1.05rem;
}

.account-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.account-panel {
    padding: 30px;

    border:
        1px solid rgba(255, 255, 255, 0.11);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.015)
        ),
        #141414;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28);
}

.account-profile-panel {
    grid-row: span 2;
}

.account-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 24px;
}

.account-panel-heading h2 {
    margin: 6px 0 0;

    font-size: 1.7rem;
}

.account-count {
    display: grid;
    place-items: center;

    min-width: 42px;
    height: 42px;
    padding: 0 12px;

    border:
        1px solid rgba(217, 107, 31, 0.45);

    border-radius: 999px;

    color: var(--accent);
    font-weight: 900;
}

.account-profile-form {
    display: grid;
    gap: 10px;
}

.account-profile-form label {
    margin-top: 10px;

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.account-profile-form input {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: 8px;

    background: #222222;
    color: #ffffff;

    font: inherit;
    outline: none;
}

.account-profile-form input:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(217, 107, 31, 0.14);
}

.account-profile-form input:disabled {
    color: #9b9b9b;
    cursor: not-allowed;
}

.account-profile-form .primary-button {
    width: 100%;
    margin-top: 18px;
}

.account-item-list {
    display: grid;
    gap: 10px;
}

.account-empty-message {
    margin: 0;
    padding: 24px;

    border:
        1px dashed rgba(255, 255, 255, 0.13);

    border-radius: 9px;

    color: #999999;
    text-align: center;
}

.account-product-item {
    display: grid;
    grid-template-columns:
        64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;

    padding: 10px;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 9px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.account-product-item:hover {
    transform: translateY(-2px);

    border-color:
        rgba(217, 107, 31, 0.55);

    background:
        rgba(217, 107, 31, 0.055);
}

.account-product-item img {
    width: 64px;
    height: 64px;

    border-radius: 7px;

    background: #090909;

    object-fit: contain;
}

.account-product-copy {
    display: grid;
    gap: 3px;
}

.account-product-copy span {
    color: var(--accent);

    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.account-product-copy strong {
    color: #ffffff;
}

.account-product-copy small {
    color: #b3b3b3;
}

.account-product-arrow {
    color: var(--accent);
    font-size: 1.2rem;
}

.account-panel-button {
    display: inline-flex;
    margin-top: 20px;
}

.account-security-panel > p {
    color: #a9a9a9;
}

.account-disclaimer {
    margin: 28px 0 0;

    color: #858585;

    font-size: 0.82rem;
    text-align: center;
}

@media (max-width: 900px) {
    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-profile-panel {
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .account-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-header-actions {
        width: 100%;
    }

    .account-header-actions > * {
        flex: 1;
    }

    .account-shell {
        padding: 48px 0;
    }

    .account-panel {
        padding: 24px 18px;
    }
}

/* =========================================================
   HEADER CUSTOMER ACCOUNT NAVIGATION
========================================================= */

.header-auth-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-auth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 20px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;

    background: rgba(255, 255, 255, 0.035);
    color: #ffffff;

    font: inherit;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.025em;
    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.header-auth-button:hover {
    transform: translateY(-2px);

    border-color: rgba(217, 107, 31, 0.8);

    background: rgba(217, 107, 31, 0.1);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(217, 107, 31, 0.08);
}

.header-account-button {
    border-color: rgba(217, 107, 31, 0.55);

    background:
        linear-gradient(
            145deg,
            rgba(217, 107, 31, 0.15),
            rgba(217, 107, 31, 0.055)
        );
}

.header-logout-button {
    appearance: none;
}

.header-auth-button:disabled {
    cursor: wait;
    opacity: 0.6;
    transform: none;
}

.header-auth-button[hidden] {
    display: none !important;
}

@media (max-width: 1050px) {
    .header-auth-button {
        min-height: 44px;
        padding: 0 15px;

        font-size: 0.8rem;
    }
}

@media (max-width: 800px) {
    .header-auth-nav {
        width: 100%;
    }

    .header-auth-button {
        flex: 1;
    }
}

@media (max-width: 520px) {
    .header-auth-nav {
        flex-wrap: wrap;
    }

    .header-auth-button {
        min-width: calc(50% - 5px);
    }
}

/* =========================================================
   HEADER ACCOUNT BUTTON POLISH
========================================================= */

.header-auth-button {
    min-height: 56px;
    padding: 0 20px;

    border-radius: 10px;

    white-space: nowrap;
}

.header-account-button {
    gap: 9px;

    min-width: 138px;

    border-color: rgba(217, 107, 31, 0.65);

    background:
        linear-gradient(
            145deg,
            rgba(217, 107, 31, 0.16),
            rgba(217, 107, 31, 0.055)
        );
}

.header-account-icon {
    display: inline-block;

    width: 9px;
    height: 9px;

    overflow: hidden;

    border-radius: 50%;

    background: var(--accent);
    color: transparent;

    box-shadow:
        0 0 12px rgba(217, 107, 31, 0.55);
}

.header-logout-button:hover {
    border-color: var(--accent);
    color: var(--accent);

    background:
        rgba(217, 107, 31, 0.08);
}

.header-auth-button,
.nav-button {
    align-self: stretch;
}

@media (max-width: 1200px) {
    .header-auth-button {
        min-height: 50px;
        padding: 0 15px;
    }

    .header-account-button {
        min-width: auto;
    }
}

/* =========================================================
   COMPACT HEADER ACCOUNT CONTROLS
========================================================= */

.header-auth-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-auth-button {
    min-height: 44px;
    padding: 0 16px;

    border-radius: 8px;

    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
}

.header-account-button {
    min-width: auto;

    border-color: rgba(217, 107, 31, 0.52);

    background:
        rgba(217, 107, 31, 0.07);
}

.header-logout-button {
    min-width: auto;

    border-color: rgba(255, 255, 255, 0.15);

    background:
        rgba(255, 255, 255, 0.025);
}

.header-account-icon {
    display: none;
}

.header-account-button:hover,
.header-logout-button:hover {
    border-color: var(--accent);
    color: #ffffff;

    background:
        rgba(217, 107, 31, 0.11);
}

.nav-button {
    min-height: 52px;
    padding-inline: 22px;
}

@media (max-width: 1250px) {
    .top-nav {
        gap: 14px;
    }

    .nav-links {
        gap: 20px;
    }

    .header-auth-button {
        min-height: 42px;
        padding: 0 13px;
        font-size: 0.75rem;
    }

    .nav-button {
        padding-inline: 18px;
    }
}

/* =========================================================
   FIXED CUSTOMER ACCOUNT DROPDOWN
========================================================= */

.header-account-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.header-account-menu[hidden] {
    display: none !important;
}

.header-account-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 9999;

    display: grid;
    width: 260px;
    padding: 10px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        ),
        #151515;

    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.72),
        0 0 28px rgba(217, 107, 31, 0.09);

    overflow: hidden;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-account-dropdown[hidden] {
    display: none !important;
}

.header-account-dropdown::before {
    content: "";

    position: absolute;
    top: -6px;
    right: 25px;

    width: 12px;
    height: 12px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);

    background: #151515;

    transform: rotate(45deg);
}

.header-account-summary {
    display: grid;
    gap: 4px;

    padding: 14px 15px 16px;
    margin-bottom: 6px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header-account-label {
    color: #8f8f8f;

    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-account-summary strong {
    color: #ffffff;

    font-size: 1rem;
}

.header-account-dropdown > a,
.header-dropdown-logout {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 44px;
    padding: 0 14px;

    border: 0;
    border-radius: 7px;

    background: transparent;
    color: #dddddd;

    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.header-account-dropdown > a:hover,
.header-dropdown-logout:hover {
    transform: translateX(3px);

    background: rgba(217, 107, 31, 0.11);
    color: #ffffff;
}

.header-dropdown-logout {
    margin-top: 7px;

    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0 0 7px 7px;

    color: #ff9c73;
}

.header-dropdown-logout:disabled {
    cursor: wait;
    opacity: 0.6;
}

.header-account-button {
    min-height: 44px;
    padding: 0 17px;

    white-space: nowrap;
}

/* =========================================================
   SAVE PRODUCT BUTTON
========================================================= */

.save-product-button {
    position: relative;
}

.save-product-button.is-saved {
    border-color: rgba(78, 180, 100, 0.75);

    background:
        linear-gradient(
            145deg,
            rgba(57, 154, 78, 0.22),
            rgba(57, 154, 78, 0.08)
        );

    color: #a9f0b7;

    box-shadow:
        0 0 20px rgba(57, 154, 78, 0.1);
}

.save-product-button.is-saved:hover {
    border-color: rgba(217, 107, 31, 0.8);

    background:
        rgba(217, 107, 31, 0.1);

    color: #ffffff;
}

.save-product-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

/* =========================================================
   CINEMATIC HERO SLIDESHOW
========================================================= */

.hero {
    position: relative;
    isolation: isolate;
    min-height: 700px;
    background: #080808;
}

/*
   Remove the older animated carbon-fiber layers from the hero.
   The slideshow now provides the visual background.
*/
.hero::before,
.hero::after {
    display: none !important;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;

    overflow: hidden;

    background: #080808;
}

.hero-slide {
    position: absolute;
    inset: -3%;

    opacity: 0;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    transform: scale(1.04);

    transition:
        opacity 1.5s ease,
        transform 9s ease;

    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.11);
}

/*
   Dark cinematic overlay:
   stronger behind the logo and text,
   slightly lighter behind the store card.
*/
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.79) 38%,
            rgba(0, 0, 0, 0.49) 67%,
            rgba(0, 0, 0, 0.64) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.30) 0%,
            rgba(0, 0, 0, 0.06) 45%,
            rgba(0, 0, 0, 0.82) 100%
        ),
        radial-gradient(
            circle at 76% 42%,
            rgba(217, 107, 31, 0.10),
            transparent 35%
        ) !important;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-content,
.hero-store-card {
    position: relative;
    z-index: 3;
}

/* Improves text readability over photographs */
.hero-brand-logo {
    filter:
        drop-shadow(0 12px 24px rgba(0, 0, 0, 0.75))
        drop-shadow(0 0 12px rgba(0, 0, 0, 0.55));
}

.hero .eyebrow,
.hero-subtitle {
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.95),
        0 0 18px rgba(0, 0, 0, 0.78);
}

.hero-store-card {
    background:
        linear-gradient(
            145deg,
            rgba(28, 25, 23, 0.94),
            rgba(15, 15, 15, 0.90)
        );

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.58),
        0 0 34px rgba(217, 107, 31, 0.07);
}

/* Slideshow navigation dots */
.hero-slide-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    transform: translateX(-50%);
}

.hero-slide-dot {
    width: 9px;
    height: 9px;
    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.18);

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-slide-dot:hover {
    border-color: var(--accent);
    background: rgba(217, 107, 31, 0.45);
}

.hero-slide-dot.is-active {
    width: 28px;

    border-color: var(--accent);
    background: var(--accent);

    box-shadow:
        0 0 14px rgba(217, 107, 31, 0.42);
}

/* Tablet */
@media (max-width: 1000px) {
    .hero {
        min-height: auto;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.78) 0%,
                rgba(0, 0, 0, 0.61) 42%,
                rgba(0, 0, 0, 0.90) 100%
            ) !important;
    }
}

/* Phone */
@media (max-width: 700px) {
    .hero-slide {
        inset: 0;

        background-position: center;
    }

    .hero-slide-dots {
        bottom: 13px;
    }

    .hero-slide-dot {
        width: 8px;
        height: 8px;
    }

    .hero-slide-dot.is-active {
        width: 22px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: opacity 0.3s ease;
        transform: none;
    }

    .hero-slide.is-active {
        transform: none;
    }
}

/* Cleaner product image presentation */

.product-image-wrapper {
    display: flex;
    height: 245px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 58%),
        linear-gradient(180deg, #262626 0%, #171717 100%);
    border-bottom: 1px solid var(--border);
}

.product-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.modal-image-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 540px;
    align-items: center;
    justify-content: center;
    padding: 34px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.09), transparent 60%),
        linear-gradient(180deg, #272727 0%, #151515 100%);
    border-right: 1px solid var(--border);
}

.modal-product-image {
    display: block;
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
}

.modal-image-gallery[hidden] {
    display: none;
}

.modal-image-gallery {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    max-width: 540px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.modal-gallery-button {
    width: 64px;
    height: 64px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
}

.modal-gallery-button:hover,
.modal-gallery-button[aria-current="true"] {
    border-color: var(--accent);
}

.modal-gallery-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 560px) {
    .product-image-wrapper {
        height: 260px;
        padding: 14px;
    }
}

@media (max-width: 820px) {
    .modal-image-section {
        min-height: 330px;
        padding: 24px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .modal-product-image {
        max-height: 300px;
    }

    .modal-gallery-button {
        width: 54px;
        height: 54px;
    }
}

/* Used & Pre-Owned homepage section
   Paste this near the bottom of style.css so it overrides older rules. */

.used-section {
    position: relative;
    padding: 76px 0;
    border-top: 1px solid #242424;
}

.used-section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 84px;
    height: 2px;
    background: var(--accent, #d96b1f);
}

.used-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.used-heading > div {
    max-width: 760px;
}

.used-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.used-heading > div > p:last-child {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--muted, #a8a8a8);
}

.used-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.used-grid > p,
.used-grid > .used-loading,
.used-grid > .featured-loading {
    grid-column: 1 / -1;
}

.used-grid .inventory-card {
    position: relative;
    height: 100%;
    border-color: rgba(217, 107, 31, 0.24);
    background:
        linear-gradient(
            180deg,
            rgba(217, 107, 31, 0.06),
            rgba(22, 22, 22, 0) 34%
        ),
        var(--surface, #171717);
}

.used-grid .inventory-card:hover {
    border-color: rgba(217, 107, 31, 0.72);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.38);
}

.used-grid .used-badge,
.used-grid .featured-badge {
    display: none;
}

.used-grid .product-image-wrapper {
    height: 230px;
}

@media (max-width: 980px) {
    .used-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .used-heading {
        align-items: stretch;
        flex-direction: column;
    }

    #viewAllUsedButton {
        align-self: flex-start;
    }
}

@media (max-width: 560px) {
    .used-section {
        padding: 56px 0;
    }

    .used-grid {
        grid-template-columns: 1fr;
    }

    #viewAllUsedButton {
        align-self: stretch;
    }

    .used-grid .product-image-wrapper {
        height: 260px;
    }
}

.pre-owned-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;

    padding: 7px 10px;

    border: 1px solid rgba(217, 107, 31, 0.55);
    border-radius: 999px;

    background: rgba(8, 8, 8, 0.92);
    color: var(--accent);

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;

    text-transform: uppercase;

    pointer-events: none;
}

.featured-card .featured-badge,
.featured-card .pre-owned-badge {
    z-index: 6;
}

.featured-card .pre-owned-badge {
    top: 50px;
}

/* Admin-managed product content */

.product-card-description {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 16px;
    color: #cfcfcf;
    font-size: 0.92rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.modal-description-block {
    margin: 20px 0 22px;
    padding: 18px 20px;
    border: 1px solid rgba(217, 107, 31, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.modal-description-block[hidden] {
    display: none !important;
}

.modal-description-block h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modal-description-block p {
    margin: 0;
    color: #dddddd;
    line-height: 1.65;
    white-space: pre-line;
}

/* Admin product manager */

.admin-page {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at top left,
            rgba(217, 107, 31, 0.07),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #111111 0%,
            #090909 100%
        );
}

.admin-shell[hidden],
.admin-gate[hidden] {
    display: none !important;
}

.admin-shell {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 46px 0 72px;
}

.admin-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.admin-heading h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
}

.admin-heading .auth-message {
    min-width: min(100%, 360px);
    margin: 0;
}

.admin-tabs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 22px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.015)
        ),
        #101010;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.admin-tab-button {
    min-height: 42px;
    min-width: 136px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: #cfcfcf;
    cursor: pointer;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.admin-tab-button:hover,
.admin-tab-button:focus-visible {
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    outline: none;
}

.admin-tab-button.is-active {
    border-color: rgba(217, 107, 31, 0.62);
    background:
        linear-gradient(
            180deg,
            rgba(230, 111, 30, 0.98),
            rgba(184, 78, 18, 0.98)
        );
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(217, 107, 31, 0.2);
}

.admin-tab-panel {
    display: grid;
    gap: 22px;
}

.admin-tab-panel[hidden] {
    display: none !important;
}

.admin-workspace {
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.admin-panel {
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: rgba(21, 21, 21, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.admin-inventory-panel {
    position: sticky;
    top: 18px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 36px);
    padding: 22px;
}

.admin-search-label,
.admin-field-group label {
    display: block;
    margin-bottom: 8px;
    color: #f1f1f1;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-search-input,
.admin-field-group input[type="file"],
.admin-field-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: #0b0b0b;
    color: #ffffff;
}

.admin-search-input {
    min-height: 48px;
    padding: 0 15px;
}

.admin-field-group input[type="file"] {
    padding: 14px;
}

.admin-field-group textarea {
    min-height: 220px;
    padding: 14px 16px;
    line-height: 1.55;
    resize: vertical;
}

.admin-search-input:focus,
.admin-field-group textarea:focus {
    border-color: rgba(217, 107, 31, 0.78);
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 107, 31, 0.16);
}

.admin-inventory-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    overflow: auto;
    padding-right: 4px;
}

.admin-inventory-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    width: 100%;
    min-height: 88px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #101010;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.admin-inventory-row:hover,
.admin-inventory-row.active {
    border-color: rgba(217, 107, 31, 0.68);
    background: #171717;
}

.admin-inventory-row.is-located {
    border-color: rgba(255, 180, 82, 0.95);
    background:
        linear-gradient(
            90deg,
            rgba(217, 107, 31, 0.24),
            rgba(23, 23, 23, 0.98)
        );
    box-shadow:
        0 0 0 2px rgba(217, 107, 31, 0.18),
        0 12px 26px rgba(0, 0, 0, 0.34);
}

.admin-inventory-row img {
    width: 72px;
    height: 64px;
    border-radius: 6px;
    background: #050505;
    object-fit: contain;
}

.admin-inventory-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.admin-inventory-copy strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 0.94rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-inventory-copy small {
    overflow: hidden;
    color: #a7a7a7;
    font-size: 0.77rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-inventory-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.admin-price-chip,
.admin-stock-chip {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #eeeeee;
    font-size: 0.69rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.admin-price-chip {
    border-color: rgba(217, 107, 31, 0.34);
    color: var(--accent);
}

.admin-price-chip-missing {
    border-color: rgba(220, 72, 72, 0.36);
    color: #ff8d8d;
}

.admin-stock-chip {
    border-color: rgba(88, 166, 114, 0.28);
    color: #9fd1ad;
}

.admin-row-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-self: start;
    gap: 6px;
}

.admin-needed-badge {
    padding: 5px 8px;
    border: 1px solid rgba(220, 72, 72, 0.4);
    border-radius: 999px;
    color: #ff9b9b;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-edited-badge {
    padding: 5px 8px;
    border: 1px solid rgba(217, 107, 31, 0.42);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-condition-badge {
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-condition-badge-new {
    border-color: rgba(88, 166, 114, 0.4);
    color: #9fd1ad;
}

.admin-condition-badge-used {
    border-color: rgba(217, 107, 31, 0.42);
    color: var(--accent);
}

.admin-editor-panel {
    padding: 28px;
}

.admin-editor-header {
    margin-bottom: 22px;
}

.admin-editor-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 18px;
    align-items: end;
}

.admin-editor-title > :not(.admin-editor-actions) {
    grid-column: 1;
}

.admin-editor-title h2 {
    margin: 6px 0 18px;
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1.1;
}

.admin-editor-title .admin-editor-actions {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
}

.admin-public-link {
    width: fit-content;
}

.admin-public-link.is-disabled {
    border-color: rgba(220, 72, 72, 0.32);
    color: #ffadad;
}

.admin-customer-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.admin-summary-card {
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );
}

.admin-summary-card span {
    display: block;
    margin-bottom: 8px;
    color: #9b9b9b;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-summary-card strong {
    display: block;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.18;
}

.admin-summary-price strong {
    color: var(--accent);
    font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.admin-summary-card strong.is-missing,
.admin-summary-card strong.is-hidden-online {
    color: #ff9b9b;
}

.admin-product-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 24px;
}

.admin-product-meta div {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.18);
}

.admin-product-meta dt {
    margin-bottom: 5px;
    color: #8d8d8d;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-product-meta dd {
    overflow-wrap: anywhere;
    margin: 0;
    color: #f2f2f2;
    font-size: 0.88rem;
    line-height: 1.35;
}

.admin-copy-row {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 10px;
}

.admin-upc-value,
.admin-serial-value {
    overflow: hidden;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-copy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.admin-copy-button:hover:not(:disabled) {
    border-color: rgba(217, 107, 31, 0.72);
    background: rgba(217, 107, 31, 0.16);
}

.admin-copy-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.admin-product-meta .admin-meta-upc,
.admin-product-meta .admin-meta-serial {
    grid-column: span 2;
}

.admin-product-meta .admin-meta-wide {
    grid-column: span 2;
}

.admin-images-panel {
    margin: 0 0 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
}

.admin-images-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.admin-images-panel-header h3 {
    margin: 0;
    color: #f4f4f4;
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-images-count {
    padding: 6px 10px;
    border: 1px solid rgba(217, 107, 31, 0.34);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-images-workbench {
    display: grid;
    grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
}

.admin-upload-column {
    display: grid;
    align-content: start;
    gap: 14px;
}

.admin-upload-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    min-height: 224px;
    padding: 20px;
    border: 2px dotted rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.052),
            rgba(0, 0, 0, 0.24)
        );
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        transform 180ms ease;
}

.admin-upload-tile:hover,
.admin-upload-tile:focus-visible,
.admin-upload-tile.is-dragging {
    border-color: rgba(217, 107, 31, 0.9);
    background:
        linear-gradient(
            180deg,
            rgba(217, 107, 31, 0.16),
            rgba(0, 0, 0, 0.28)
        );
    outline: none;
    transform: translateY(-1px);
}

.admin-upload-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.admin-upload-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 52px;
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.28),
            rgba(255, 255, 255, 0.08)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 12px 26px rgba(0, 0, 0, 0.32);
}

.admin-upload-icon::before,
.admin-upload-icon::after {
    position: absolute;
    content: "";
    border-radius: 999px;
    background: inherit;
}

.admin-upload-icon::before {
    width: 34px;
    height: 34px;
    top: -14px;
    left: 12px;
}

.admin-upload-icon::after {
    width: 42px;
    height: 42px;
    top: -20px;
    right: 7px;
}

.admin-upload-plus {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 950;
    line-height: 1;
}

.admin-upload-help,
.admin-upload-note {
    color: #c8c8c8;
    font-size: 0.84rem;
    line-height: 1.4;
}

.admin-upload-note {
    margin: 0;
}

.admin-image-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.admin-images-stage {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
    gap: 18px;
    min-width: 0;
}

.admin-featured-image-card {
    position: relative;
    display: grid;
    align-content: center;
    gap: 10px;
    min-width: 0;
    margin: 0;
    padding: 12px;
    border: 1px dotted rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.07),
            rgba(0, 0, 0, 0.42) 68%
        );
}

.admin-featured-image-card .admin-image-preview {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 0;
    border-radius: 6px;
    background: #070707;
    object-fit: contain;
}

.admin-featured-image-card figcaption {
    color: #9b9b9b;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.admin-image-remove-button,
.admin-image-thumb-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: #093342;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.admin-image-remove-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
}

.admin-image-remove-button:disabled {
    opacity: 0;
    pointer-events: none;
}

.admin-image-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    align-content: start;
    gap: 14px;
    max-height: 364px;
    overflow: auto;
    padding: 3px 8px 3px 3px;
}

.admin-image-thumb {
    position: relative;
    min-width: 0;
}

.admin-image-thumb-preview {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 0;
    border: 1px dotted rgba(255, 255, 255, 0.42);
    border-radius: 4px;
    background: #0a0a0a;
    cursor: pointer;
}

.admin-image-thumb-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-image-thumb.is-selected .admin-image-thumb-preview {
    border-color: rgba(217, 107, 31, 0.92);
    box-shadow: 0 0 0 2px rgba(217, 107, 31, 0.18);
}

.admin-image-thumb-remove {
    position: absolute;
    z-index: 2;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
}

.admin-image-primary-badge {
    position: absolute;
    left: 7px;
    bottom: 7px;
    padding: 4px 6px;
    border: 1px solid rgba(217, 107, 31, 0.38);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: var(--accent);
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.admin-image-empty-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border: 1px dotted rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.018);
    color: rgba(255, 255, 255, 0.34);
    font-size: 2.1rem;
    font-weight: 950;
}

.admin-image-empty-message {
    min-height: 128px;
    padding: 16px;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.admin-field-group {
    margin-top: 20px;
}

.admin-field-group .secondary-button {
    margin-top: 12px;
}

.admin-field-group .secondary-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.admin-incomplete-panel {
    padding: 20px;
}

.admin-panel-note {
    margin: 8px 0 16px;
    color: #b8b8b8;
    font-size: 0.86rem;
    line-height: 1.5;
}

.admin-incomplete-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: min(46vh, 430px);
    overflow: auto;
    padding-right: 4px;
}

.admin-incomplete-list .account-empty-message {
    grid-column: 1 / -1;
}

.admin-inventory-row-compact {
    grid-template-columns: 56px minmax(0, 1fr) auto;
    min-height: 68px;
    padding: 8px;
}

.admin-inventory-row-compact img {
    width: 56px;
    height: 50px;
    background:
        radial-gradient(
            circle at center,
            rgba(220, 72, 72, 0.15),
            #050505 70%
        );
}

/* Age verification */

.age-gate-overlay[hidden] {
    display: none !important;
}

.age-gate-overlay {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: clamp(18px, 4vw, 36px);
    background:
        radial-gradient(circle at 50% 40%, rgba(217, 107, 31, 0.1), transparent 34%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(5, 5, 5, 0.84));
    backdrop-filter: blur(16px) saturate(0.7);
    -webkit-backdrop-filter: blur(16px) saturate(0.7);
}

.age-gate-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, transparent 0 24%, rgba(0, 0, 0, 0.54) 68%);
    background-size:
        72px 72px,
        72px 72px,
        100% 100%;
    pointer-events: none;
}

.age-gate-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.6)),
        radial-gradient(circle at center, transparent 0 42%, rgba(0, 0, 0, 0.52) 78%);
    pointer-events: none;
}

.age-gate-card {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 500px);
    overflow: hidden;
    padding: clamp(26px, 4vw, 36px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.032)),
        rgba(14, 14, 14, 0.72);
    backdrop-filter: blur(24px) saturate(1.08);
    -webkit-backdrop-filter: blur(24px) saturate(1.08);
    color: #ffffff;
    text-align: center;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.76),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.age-gate-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(217, 107, 31, 0.9), transparent);
    pointer-events: none;
}

.age-gate-card::after {
    display: none;
}

.age-gate-visual {
    position: relative;
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding: 0 0 22px;
    border: 0;
    background: transparent;
}

.age-gate-visual::before {
    display: none;
}

.age-gate-logo-frame {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(320px, 76vw);
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.age-gate-logo {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.42));
    image-rendering: auto;
}

.age-gate-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.age-gate-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin: 0 0 12px;
    padding: 6px 12px;
    border: 1px solid rgba(217, 107, 31, 0.42);
    border-radius: 5px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
        rgba(217, 107, 31, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 10px 22px rgba(0, 0, 0, 0.18);
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.age-gate-card h2 {
    width: min(100%, 400px);
    margin: 0 0 14px;
    color: #ffffff;
    font-family: "Arial Black", Impact, Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 6vw, 2.85rem);
    letter-spacing: 0;
    line-height: 0.94;
}

.age-gate-warning {
    width: min(100%, 360px);
    margin: 0 auto 24px;
    color: #d8d8d8;
    font-size: clamp(0.98rem, 2.4vw, 1.05rem);
    font-weight: 700;
    line-height: 1.5;
}

.age-gate-question {
    margin: 0 0 20px;
    color: #bdbdbd;
    font-size: 0.94rem;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.35;
}

.age-gate-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 340px);
    gap: 10px;
}

.age-gate-actions button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.06);
    color: #ffffff;
    appearance: none;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 950;
    letter-spacing: 0;
    white-space: nowrap;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease;
}

.age-gate-actions button:first-child {
    border-color: rgba(217, 107, 31, 0.88);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%),
        linear-gradient(180deg, #f07a22, #c95f19);
    box-shadow:
        0 14px 28px rgba(217, 107, 31, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        inset 0 -1px 0 rgba(0, 0, 0, 0.28);
}

.age-gate-actions button:hover,
.age-gate-actions button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(240, 122, 34, 0.95);
    outline: none;
    color: #ffffff;
}

.age-gate-actions button:not(:first-child):hover,
.age-gate-actions button:not(:first-child):focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.age-gate-card.is-denied .age-gate-warning,
.age-gate-card.is-denied .age-gate-question {
    color: #ffb199;
}

body.age-gate-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .age-gate-overlay {
        align-items: center;
        padding: 16px;
    }

    .age-gate-card {
        width: min(100%, 540px);
        padding: 26px 20px 22px;
        text-align: center;
    }

    .age-gate-visual {
        padding-bottom: 18px;
    }

    .age-gate-logo-frame {
        width: min(290px, 74vw);
    }

    .age-gate-content {
        padding: 0;
    }

    .age-gate-warning {
        margin-right: auto;
        margin-left: auto;
    }

    .age-gate-actions {
        justify-content: center;
    }
}

@media (max-width: 460px) {
    .age-gate-card {
        padding: 24px 18px 20px;
    }

    .age-gate-card h2 {
        font-size: clamp(1.9rem, 11vw, 2.35rem);
    }

    .age-gate-actions {
        flex-direction: column;
        width: 100%;
    }

    .age-gate-actions button {
        width: 100%;
    }
}

/* Cart and checkout */

.cart-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 16px;
    border: 1px solid #555555;
    border-radius: 5px;
    background: rgba(15, 15, 15, 0.9);
    color: #ffffff;
    font: inherit;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.cart-nav-button:hover,
.cart-nav-button.has-items {
    border-color: var(--accent);
    background: rgba(217, 107, 31, 0.16);
    transform: translateY(-1px);
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    min-height: 25px;
    padding: 2px 7px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1;
}

.cart-overlay[hidden],
.cart-checkout-form[hidden] {
    display: none !important;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    justify-content: flex-end;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
}

.cart-drawer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(100%, 660px);
    height: 100%;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(
            180deg,
            #1d1d1d 0%,
            #111111 42%,
            #0a0a0a 100%
        );
    box-shadow:
        -32px 0 90px rgba(0, 0, 0, 0.68),
        inset 1px 0 0 rgba(255, 255, 255, 0.04);
}

.cart-header {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 34px 38px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(
            180deg,
            rgba(29, 29, 29, 0.98) 0%,
            rgba(18, 18, 18, 0.94) 100%
        );
    backdrop-filter: blur(16px);
}

.cart-header h2 {
    margin: 6px 0 0;
    color: #ffffff;
    font-size: 2.35rem;
    line-height: 1;
}

.cart-close-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.32);
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.cart-close-button:hover {
    border-color: var(--accent);
    background: rgba(217, 107, 31, 0.12);
    color: var(--accent);
}

.cart-items {
    display: grid;
    gap: 16px;
    padding: 26px 38px 22px;
}

.cart-empty-message {
    margin: 0;
    padding: 28px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #cfcfcf;
    text-align: center;
}

.cart-item {
    display: grid;
    grid-template-columns: 106px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.055) 0%,
            rgba(255, 255, 255, 0.018) 100%
        );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cart-item img {
    width: 106px;
    height: 98px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: #0d0d0d;
    object-fit: contain;
}

.cart-item-copy {
    display: grid;
    gap: 7px;
    min-width: 0;
    padding-top: 2px;
}

.cart-item-copy span {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-item-copy strong {
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.24;
}

.cart-item-copy small {
    color: #b2b2b2;
    font-size: 0.76rem;
    line-height: 1.35;
}

.cart-item-price {
    justify-self: end;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 900;
    white-space: nowrap;
}

.cart-item-controls {
    grid-column: 2 / 4;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    padding-top: 2px;
}

.cart-item-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.34);
    color: #ffffff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.cart-item-controls button:hover:not(:disabled) {
    border-color: var(--accent);
    background: rgba(217, 107, 31, 0.12);
    color: var(--accent);
}

.cart-item-controls button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.cart-item-controls > span {
    min-width: 34px;
    color: #ffffff;
    font-weight: 900;
    text-align: center;
}

.cart-remove-button {
    padding: 0 15px;
}

.cart-summary {
    display: grid;
    gap: 15px;
    margin: 0 38px;
    padding: 22px;
    border: 1px solid rgba(217, 107, 31, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            rgba(217, 107, 31, 0.16) 0%,
            rgba(217, 107, 31, 0.07) 42%,
            rgba(0, 0, 0, 0.18) 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 44px rgba(0, 0, 0, 0.24);
}

.cart-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cart-tax-state-label {
    color: #f1f1f1;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-summary select,
.cart-summary input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font: inherit;
}

.cart-summary select:focus,
.cart-summary input:focus {
    border-color: rgba(217, 107, 31, 0.78);
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 107, 31, 0.16);
}

.cart-summary .cart-tax-zip-status {
    margin-top: -6px;
    color: #aaa;
    font-size: 0.74rem;
}

.cart-summary span {
    color: #cfcfcf;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-summary strong {
    color: #ffffff;
    font-size: 1.32rem;
    font-family: "Roboto Slab", serif;
    text-align: right;
    white-space: nowrap;
}

.cart-summary .cart-total-row {
    margin-top: 4px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.cart-summary .cart-total-row strong {
    color: var(--accent);
    font-size: 1.78rem;
}

.cart-summary p {
    margin: 0;
    color: #cfcfcf;
    font-size: 0.78rem;
    line-height: 1.45;
}

.ffl-locator {
    display: grid;
    gap: 16px;
    margin: 24px 38px 0;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.045) 0%,
            rgba(0, 0, 0, 0.18) 100%
        );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ffl-locator-heading h3 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1.12;
}

.ffl-locator-note {
    margin: 0;
    color: #cfcfcf;
    font-size: 0.84rem;
    line-height: 1.45;
}

.ffl-locator-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.ffl-locator-controls label,
.ffl-manual-label {
    color: #f1f1f1;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ffl-locator-controls label[for="fflStateSelect"] {
    grid-column: 1;
    grid-row: 1;
}

.ffl-locator-controls label[for="fflSearchInput"] {
    grid-column: 2;
    grid-row: 1;
}

#fflStateSelect {
    grid-column: 1;
    grid-row: 2;
}

#fflSearchInput {
    grid-column: 2;
    grid-row: 2;
}

#fflMapSearchButton {
    grid-column: 1 / -1;
}

.ffl-locator-controls select,
.ffl-locator-controls input,
.ffl-manual-input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.48);
    color: #ffffff;
    font: inherit;
}

.ffl-locator-controls select,
.ffl-locator-controls input,
.ffl-manual-input {
    padding: 0 12px;
}

.ffl-locator-controls select:focus,
.ffl-locator-controls input:focus,
.ffl-manual-input:focus {
    border-color: rgba(217, 107, 31, 0.78);
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 107, 31, 0.16);
}

.ffl-locator-controls .secondary-button {
    width: 100%;
    min-height: 48px;
    align-self: end;
}

.ffl-map-shell {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    min-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #080808;
}

.ffl-map-shell iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.ffl-locator-results {
    display: grid;
    gap: 10px;
    max-height: 380px;
    overflow: auto;
    padding-right: 4px;
}

.ffl-source-message {
    margin: 0;
    padding: 13px;
    border: 1px dashed rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: #cfcfcf;
    font-size: 0.78rem;
    line-height: 1.5;
}

.ffl-source-message a {
    color: var(--accent);
    font-weight: 900;
}

.ffl-result-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.ffl-result-card div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.ffl-result-card strong {
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.25;
}

.ffl-result-card span,
.ffl-result-card small {
    color: #a9a9a9;
    font-size: 0.72rem;
    line-height: 1.35;
}

.ffl-result-card .secondary-button {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
}

.cart-checkout-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 26px 38px 38px;
}

.cart-checkout-form label:not(.cart-acknowledgement) {
    color: #f1f1f1;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-checkout-form label[for="checkoutName"] {
    grid-column: 1;
    grid-row: 1;
}

.cart-checkout-form label[for="checkoutEmail"] {
    grid-column: 2;
    grid-row: 1;
}

#checkoutName {
    grid-column: 1;
    grid-row: 2;
}

#checkoutEmail {
    grid-column: 2;
    grid-row: 2;
}

.cart-checkout-form label[for="checkoutPhone"] {
    grid-column: 1 / -1;
    grid-row: 3;
}

#checkoutPhone {
    grid-column: 1 / -1;
    grid-row: 4;
}

.cart-checkout-form label[for="checkoutNotes"] {
    grid-column: 1 / -1;
    grid-row: 5;
}

#checkoutNotes {
    grid-column: 1 / -1;
    grid-row: 6;
}

.cart-checkout-form input,
.cart-checkout-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.42);
    color: #ffffff;
    font: inherit;
}

.cart-checkout-form input {
    min-height: 50px;
    padding: 0 14px;
}

.cart-checkout-form textarea {
    grid-column: 1 / -1;
    min-height: 104px;
    padding: 13px 14px;
    line-height: 1.5;
    resize: vertical;
}

.cart-checkout-form input:focus,
.cart-checkout-form textarea:focus {
    border-color: rgba(217, 107, 31, 0.78);
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 107, 31, 0.16);
}

.cart-acknowledgement {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin: 6px 0 8px;
    color: #d4d4d4;
    font-size: 0.8rem;
    line-height: 1.45;
}

.cart-acknowledgement input {
    width: 18px;
    min-height: 18px;
    margin: 2px 0 0;
    accent-color: var(--accent);
}

.secure-card-fields {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin: 2px 0 4px;
    padding: 16px;
    border: 1px solid rgba(217, 107, 31, 0.42);
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.06),
            rgba(217, 107, 31, 0.08)
        ),
        rgba(0, 0, 0, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 16px 34px rgba(0, 0, 0, 0.2);
}

.secure-card-fields[hidden] {
    display: none;
}

.secure-card-heading,
.secure-card-fields label[for="cardNumber"],
#cardNumber {
    grid-column: 1 / -1;
}

.secure-card-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 2px;
}

.secure-card-heading span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.secure-card-heading small {
    color: #bdbdbd;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.secure-card-fields input {
    background: rgba(0, 0, 0, 0.62);
}

.secure-card-fields input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.cart-checkout-form .auth-message {
    margin: 0;
}

.cart-checkout-form .primary-button {
    grid-column: 1 / -1;
    min-height: 54px;
}

.cart-secure-payment-note {
    grid-column: 1 / -1;
    margin: -2px 0 0;
    color: #bdbdbd;
    font-size: 0.78rem;
    line-height: 1.45;
}

.cart-checkout-status {
    margin: 0 38px 32px;
}

body.cart-open {
    overflow: hidden;
}

.add-to-cart-button.is-added,
.modal-actions .primary-button.is-added {
    border-color: #2f7d3d;
    background: #2f7d3d;
}

.primary-button:disabled,
.secondary-button:disabled {
    cursor: not-allowed;
    opacity: 0.52;
    transform: none;
}

.account-checkout-list {
    gap: 12px;
}

.account-checkout-item {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.account-checkout-item div {
    display: grid;
    gap: 5px;
}

.account-checkout-item span {
    width: fit-content;
    padding: 5px 8px;
    border: 1px solid rgba(217, 107, 31, 0.42);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-checkout-item strong {
    color: #ffffff;
    font-size: 1rem;
}

.account-checkout-item small {
    color: #aaaaaa;
    font-size: 0.82rem;
}

.admin-checkout-panel {
    margin-top: 24px;
    padding: 26px;
}

.admin-checkout-panel .auth-message {
    margin: 14px 0 0;
}

.admin-checkout-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.admin-checkout-request {
    display: grid;
    gap: 15px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
}

.admin-checkout-request-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.admin-checkout-request-header h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 1.12rem;
}

.admin-checkout-request-header span {
    color: #9f9f9f;
    font-size: 0.78rem;
}

.admin-checkout-status-badge {
    flex-shrink: 0;
    padding: 6px 9px;
    border: 1px solid rgba(217, 107, 31, 0.42);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-checkout-details {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.admin-checkout-details span {
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #dddddd;
    font-size: 0.82rem;
}

.admin-checkout-items {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 18px;
    color: #d8d8d8;
    font-size: 0.88rem;
}

.admin-checkout-notes {
    margin: 0;
    padding: 12px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 255, 255, 0.035);
    color: #d8d8d8;
    font-size: 0.88rem;
    line-height: 1.5;
    white-space: pre-line;
}

.admin-checkout-ffl {
    margin: 0;
    padding: 12px;
    border-left: 3px solid #6f9cff;
    background: rgba(111, 156, 255, 0.08);
    color: #d8d8d8;
    font-size: 0.88rem;
    line-height: 1.5;
}

.admin-checkout-estimate {
    margin: 0;
    padding: 12px;
    border-left: 3px solid var(--accent);
    background: rgba(217, 107, 31, 0.08);
    color: #d8d8d8;
    font-size: 0.88rem;
    line-height: 1.5;
}

.admin-checkout-payment {
    margin: 0;
    padding: 12px;
    border-left: 3px solid #45b66c;
    background: rgba(69, 182, 108, 0.08);
    color: #d8d8d8;
    font-size: 0.88rem;
    line-height: 1.5;
}

.admin-checkout-payment.is-warning {
    border-left-color: #ffb86b;
    background: rgba(255, 184, 107, 0.08);
    color: #ffd2a3;
}

.admin-checkout-payment-error {
    margin: 0;
    padding: 12px;
    border-left: 3px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.08);
    color: #ffb3b3;
    font-size: 0.88rem;
    line-height: 1.5;
}

.admin-checkout-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.admin-checkout-actions label {
    color: #f1f1f1;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-checkout-actions select {
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: #0b0b0b;
    color: #ffffff;
    font: inherit;
}

.admin-sales-panel {
    margin-top: 0;
    padding: 26px;
}

.admin-sales-panel .auth-message {
    margin: 14px 0 0;
}

.admin-sales-toolbar {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(260px, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.admin-sales-toolbar label {
    display: grid;
    gap: 8px;
    color: #f1f1f1;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-sales-toolbar select,
.admin-sales-toolbar input {
    min-height: 48px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.48);
    color: #ffffff;
    font: inherit;
    letter-spacing: 0;
    text-transform: none;
}

.admin-sales-toolbar select {
    padding: 0 42px 0 14px;
}

.admin-sales-toolbar input {
    padding: 0 14px;
}

.admin-sales-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.admin-sales-metric {
    min-height: 92px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
}

.admin-sales-metric span {
    display: block;
    margin-bottom: 12px;
    color: #aaaaaa;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-sales-metric strong {
    color: #ffffff;
    font-size: clamp(1.2rem, 2.3vw, 2rem);
}

.admin-sales-metric small {
    display: block;
    margin-top: 8px;
    color: #a7a7a7;
    font-size: 0.76rem;
    line-height: 1.35;
}

.admin-sales-metric.is-lifetime {
    border-color: rgba(234, 112, 24, 0.35);
    background:
        linear-gradient(
            145deg,
            rgba(234, 112, 24, 0.13),
            rgba(255, 255, 255, 0.018)
        );
}

.admin-sales-metric.is-profit strong {
    color: #5fe18a;
}

.admin-sales-metric.is-warning strong {
    color: #ffb064;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.admin-sales-list {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

.admin-sale-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(0, 0, 0, 0.26)
        );
}

.admin-sale-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.admin-sale-card-header h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 1.2rem;
}

.admin-sale-card-header span {
    color: #9f9f9f;
    font-size: 0.78rem;
}

.admin-sale-details {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.admin-sale-details span {
    min-width: 0;
    padding: 10px 11px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #dddddd;
    font-size: 0.84rem;
    overflow-wrap: anywhere;
}

.admin-sale-details strong {
    display: block;
    margin-bottom: 4px;
    color: #949494;
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-sale-items {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.admin-sale-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
}

.admin-sale-item strong {
    min-width: 0;
    color: #ffffff;
    overflow-wrap: anywhere;
}

.admin-sale-item span {
    color: var(--accent);
    font-weight: 900;
    white-space: nowrap;
}

.admin-sale-item small {
    grid-column: 1 / -1;
    color: #aaaaaa;
    font-size: 0.78rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.admin-sale-info-block {
    margin: 0;
    padding: 13px 14px;
    border-left: 3px solid rgba(255, 255, 255, 0.25);
    border-radius: 0 8px 8px 0;
    background: rgba(255, 255, 255, 0.035);
}

.admin-sale-info-block h4 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-sale-info-block p {
    margin: 4px 0 0;
    color: #d8d8d8;
    font-size: 0.88rem;
    line-height: 1.45;
}

.admin-sale-ffl {
    border-left-color: #6f9cff;
    background: rgba(111, 156, 255, 0.08);
}

.admin-sale-totals {
    border-left-color: var(--accent);
    background: rgba(217, 107, 31, 0.08);
}

.admin-sale-payment {
    border-left-color: #45b66c;
    background: rgba(69, 182, 108, 0.08);
}

.admin-sale-payment.is-warning {
    border-left-color: #ffb86b;
    background: rgba(255, 184, 107, 0.08);
}

.admin-sale-notes {
    margin: 0;
    padding: 13px 14px;
    border-left: 3px solid rgba(255, 255, 255, 0.32);
    border-radius: 0 8px 8px 0;
    background: rgba(255, 255, 255, 0.035);
    color: #d8d8d8;
    font-size: 0.88rem;
    line-height: 1.5;
    white-space: pre-line;
}

@media (max-width: 760px) {
    .cart-drawer {
        width: 100%;
    }

    .cart-header,
    .cart-items,
    .cart-checkout-form {
        padding-left: 18px;
        padding-right: 18px;
    }

    .cart-header {
        padding-top: 24px;
    }

    .cart-header h2 {
        font-size: 2rem;
    }

    .cart-item {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .cart-item img {
        width: 84px;
        height: 78px;
    }

    .cart-item-price {
        grid-column: 2;
        justify-self: start;
    }

    .cart-item-controls {
        grid-column: 1 / -1;
    }

    .cart-summary {
        margin-left: 18px;
        margin-right: 18px;
        padding: 18px;
    }

    .ffl-locator {
        margin-left: 18px;
        margin-right: 18px;
        padding: 14px;
    }

    .ffl-locator-controls,
    .cart-checkout-form {
        grid-template-columns: 1fr;
    }

    .ffl-locator-controls label,
    .ffl-locator-controls select,
    .ffl-locator-controls input,
    #fflMapSearchButton,
    .cart-checkout-form label,
    .cart-checkout-form input,
    .secure-card-fields,
    .secure-card-heading,
    .cart-checkout-form textarea,
    .cart-acknowledgement,
    .cart-checkout-form .primary-button {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    .secure-card-fields {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .secure-card-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .ffl-map-shell {
        aspect-ratio: 16 / 10;
        min-height: 210px;
    }

    .ffl-result-card {
        grid-template-columns: 1fr;
    }

    .ffl-result-card .secondary-button {
        width: 100%;
    }

    .cart-checkout-status {
        margin-left: 18px;
        margin-right: 18px;
    }

    .admin-checkout-panel,
    .admin-sales-panel {
        padding: 18px;
    }

    .admin-checkout-request-header,
    .admin-sale-card-header,
    .admin-checkout-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-checkout-actions select {
        width: 100%;
    }

    .admin-sales-toolbar,
    .admin-sales-summary,
    .admin-sale-details {
        grid-template-columns: 1fr;
    }

    .admin-sale-item {
        grid-template-columns: 1fr;
    }

    .admin-sale-item span {
        white-space: normal;
    }
}

.admin-editor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 0;
}

.admin-editor-actions .primary-button {
    min-width: 168px;
}

@media (max-width: 1040px) {
    .admin-workspace {
        grid-template-columns: 1fr;
    }

    .admin-inventory-panel {
        position: static;
        max-height: none;
    }
}

@media (max-width: 760px) {
    .admin-shell {
        width: min(100% - 28px, var(--max-width));
        padding: 34px 0 56px;
    }

    .admin-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .admin-tab-button {
        min-width: 0;
    }

    .admin-editor-header,
    .admin-customer-summary,
    .admin-product-meta {
        grid-template-columns: 1fr;
    }

    .admin-editor-title,
    .admin-images-workbench,
    .admin-images-stage {
        grid-template-columns: 1fr;
    }

    .admin-editor-title .admin-editor-actions {
        grid-column: auto;
        grid-row: auto;
        align-self: start;
    }

    .admin-product-meta .admin-meta-upc,
    .admin-product-meta .admin-meta-wide {
        grid-column: auto;
    }

    .admin-images-workbench {
        gap: 18px;
        padding: 14px;
    }

    .admin-upload-tile {
        min-height: 170px;
    }

    .admin-image-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .admin-incomplete-list {
        grid-template-columns: 1fr;
        max-height: 420px;
    }

    .admin-inventory-row-compact {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .admin-editor-panel,
    .admin-inventory-panel {
        padding: 18px;
    }

    .admin-inventory-row {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .admin-row-badges {
        grid-column: 2;
        justify-self: start;
        justify-content: flex-start;
    }

    .admin-inventory-copy small {
        white-space: normal;
    }
}

/* =========================================================
   PREMIUM RESPONSIVE SITE PASS
========================================================= */

:root {
    --page-gutter: 24px;
    --premium-panel: rgba(22, 22, 22, 0.92);
    --premium-panel-strong: #191919;
    --premium-border: rgba(255, 255, 255, 0.12);
    --premium-border-soft: rgba(255, 255, 255, 0.075);
    --premium-line: rgba(217, 107, 31, 0.38);
    --premium-text-soft: #d8d8d8;
    --premium-green: #2f6f45;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background:
        linear-gradient(180deg, #121212 0%, #0d0d0d 38%, #090909 100%);
    color: #f4f1ec;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea,
.eyebrow,
.nav-links a,
.section-eyebrow,
.manufacturer,
.filter-btn,
.featured-badge,
.pre-owned-badge,
.accessory-category-badge,
.availability,
.marketplace-link-text,
.social-link-text,
.cart-nav-button {
    letter-spacing: 0;
}

main,
.hero-inner,
.accessory-market-section,
.marketplace-section {
    width: min(var(--max-width), calc(100% - (var(--page-gutter) * 2)));
}

.site-header {
    border-bottom: 1px solid rgba(217, 107, 31, 0.45);
    background: #050505;
}

.top-nav {
    min-height: 92px;
    padding: 12px max(var(--page-gutter), calc((100vw - var(--max-width)) / 2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 5, 0.94);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.brand-group {
    min-width: 0;
    gap: 18px;
}

.brand-logo-box {
    width: 220px;
    height: 64px;
}

.brand-divider {
    height: 46px;
    background: rgba(255, 255, 255, 0.16);
}

.nav-links {
    min-width: 0;
    gap: 18px;
}

.nav-links a {
    font-size: 0.84rem;
}

.nav-button,
.primary-button,
.secondary-button,
.cart-nav-button,
.header-auth-button {
    min-height: 46px;
    border-radius: 8px;
}

.primary-button,
.nav-button {
    background: linear-gradient(180deg, #e27928, #bc5619);
    border-color: rgba(255, 145, 70, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 14px 26px rgba(0, 0, 0, 0.28);
}

.secondary-button,
.cart-nav-button,
.header-auth-button {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
        rgba(15, 15, 15, 0.9);
}

.hero {
    min-height: 670px;
    border-bottom: 1px solid rgba(217, 107, 31, 0.34);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.58) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.86) 100%) !important;
}

.hero-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
    gap: 56px;
    padding: 86px 0 78px;
}

.hero-brand-logo {
    width: 300px;
    margin-bottom: 24px;
}

.hero-subtitle {
    max-width: 680px;
    margin: 0 0 28px;
    color: #e4e0d9;
    font-size: 1.08rem;
    line-height: 1.72;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.38);
}

.hero-highlights div {
    min-height: 82px;
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
}

.hero-store-card {
    border-radius: 8px;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
        rgba(16, 16, 16, 0.94);
}

.featured-section,
.used-section,
.inventory-section,
.accessory-market-section,
.marketplace-section,
.social-section,
.contact-section {
    padding-top: 88px;
    padding-bottom: 88px;
}

.featured-section,
.used-section,
.inventory-section,
.accessory-market-section,
.marketplace-section,
.social-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-heading,
.used-heading,
.inventory-heading,
.accessory-market-heading {
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
}

.featured-heading h2,
.used-heading h2,
.inventory-heading h2,
.accessory-market-heading h2,
.marketplace-heading h2,
.social-heading h2,
.contact-heading h2 {
    color: #ffffff;
    font-size: 2.85rem;
    line-height: 1.04;
}

.section-eyebrow,
.manufacturer {
    color: #e2782a;
    font-weight: 900;
}

.featured-heading p:last-child,
.used-heading > div > p:last-child,
.inventory-note,
.accessory-market-heading p:last-child,
.marketplace-heading > p:last-child,
.social-heading > p:last-child,
.contact-heading p:last-child {
    color: var(--premium-text-soft);
    font-size: 1rem;
    line-height: 1.68;
}

.controls,
.accessory-market-toolbar {
    border: 1px solid var(--premium-border);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        rgba(17, 17, 17, 0.94);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 20px 48px rgba(0, 0, 0, 0.24);
}

.controls {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    overflow: hidden;
}

.controls .inventory-filters,
.controls #inventoryCount {
    grid-column: 1 / -1;
}

.controls #inventoryCount {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-top: 2px;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
}

.search-control {
    max-width: none;
}

.search-control input,
.sort-control select,
.accessory-market-toolbar input,
.mini-inventory-toolbar input,
.mini-inventory-toolbar select {
    border-radius: 8px;
    background: #111111;
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.inventory-filters,
.accessory-category-filters,
.mini-filter-buttons {
    gap: 8px;
}

.filter-btn,
.accessory-category-filters button,
.mini-filter-buttons button {
    min-height: 42px;
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.045);
    color: #e8e8e8;
    font-size: 0.86rem;
}

.filter-btn.active,
.accessory-category-filters button.active,
.mini-filter-buttons button.active {
    border-color: rgba(226, 120, 42, 0.95);
    background: #d96b1f;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(217, 107, 31, 0.23);
}

.featured-grid,
.used-grid,
.inventory-grid,
.accessory-market-grid {
    gap: 24px;
}

.featured-grid,
.inventory-grid,
.accessory-market-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.used-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inventory-card,
.featured-card,
.accessory-listing-card,
.marketplace-card,
.social-card,
.store-info-card {
    border-radius: 8px;
    border-color: var(--premium-border-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        var(--premium-panel-strong);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 18px 42px rgba(0, 0, 0, 0.24);
}

.inventory-card:hover,
.featured-card:hover,
.accessory-listing-card:hover,
.marketplace-card:hover,
.social-card:hover,
a.store-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-line);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 54px rgba(0, 0, 0, 0.34);
}

.inventory-card .product-image-wrapper,
.featured-card .product-image-wrapper,
.inventory-card .card-image,
.featured-card .card-image,
.accessory-listing-image {
    min-height: 250px;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(145deg, #161616 0%, #0c0c0c 58%, #171310 100%);
}

.inventory-card img,
.featured-card img,
.product-image {
    max-width: 90%;
    height: 205px;
}

.inventory-card-content,
.featured-card .inventory-card-content,
.accessory-listing-content {
    padding: 22px;
}

.inventory-card h2,
.featured-card h2,
.accessory-listing-content h3 {
    min-height: auto;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.32;
}

.product-price,
.accessory-listing-price strong {
    color: #f07a22;
}

.inventory-details {
    color: #d4d4d4;
    font-size: 0.9rem;
}

.availability {
    background: rgba(47, 111, 69, 0.82);
    color: #e7f8ec;
}

.featured-badge,
.pre-owned-badge,
.accessory-category-badge {
    border-radius: 5px;
}

.accessory-listing-content {
    min-height: 232px;
}

.marketplace-grid,
.social-grid,
.store-information {
    gap: 18px;
}

.social-card {
    min-height: 275px;
}

.social-card::before {
    display: none;
}

.contact-section {
    margin-bottom: 82px;
    border-radius: 8px;
    border-color: rgba(217, 107, 31, 0.22);
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #060606;
}

.mini-inventory-toolbar {
    width: min(1020px, calc(100% - 40px));
    top: 108px;
    border-radius: 8px;
}

.mini-inventory-toolbar input {
    min-width: 220px;
}

.mini-inventory-toolbar select {
    min-width: 210px;
}

@media (max-width: 1250px) {
    .brand-logo-box {
        width: 190px;
        height: 58px;
    }

    .top-nav {
        gap: 12px;
    }

    .nav-links {
        display: none;
    }

    .featured-grid,
    .used-grid,
    .inventory-grid,
    .accessory-market-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    :root {
        --page-gutter: 20px;
    }

    .top-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand-group {
        width: 100%;
        justify-content: center;
    }

    .brand-logo-box {
        width: 210px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 58px 0;
    }

    .hero-content {
        max-width: 740px;
    }

    .hero-store-card {
        width: 100%;
        max-width: none;
    }

    .featured-grid,
    .used-grid,
    .inventory-grid,
    .accessory-market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .controls {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .sort-control {
        min-width: 0;
    }

    #inventoryCount {
        white-space: normal;
    }

    .mini-inventory-toolbar {
        display: none;
    }
}

@media (max-width: 760px) {
    :root {
        --page-gutter: 16px;
    }

    .top-nav {
        gap: 10px;
        min-height: auto;
        padding: 12px var(--page-gutter);
    }

    .brand-group {
        gap: 10px;
    }

    .brand-logo-box {
        width: min(43vw, 165px);
        height: 48px;
    }

    .brand-divider {
        height: 34px;
    }

    .cart-nav-button {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        padding-inline: 12px;
    }

    .header-auth-nav {
        flex: 1 1 calc(50% - 5px);
        width: auto;
        min-width: 0;
    }

    .header-auth-button {
        width: 100%;
        min-width: 0;
    }

    .header-auth-nav .header-auth-button {
        padding-inline: 12px;
    }

    .hero-inner {
        width: min(100% - (var(--page-gutter) * 2), 1320px);
        padding: 44px 0 50px;
    }

    .hero-brand-logo {
        width: 220px;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.62;
    }

    .hero-actions,
    .hero-store-actions,
    .contact-actions {
        flex-direction: column;
    }

    .hero-actions a,
    .hero-store-actions a,
    .contact-actions a,
    .featured-heading .secondary-button,
    .used-heading .secondary-button,
    .accessory-market-heading .secondary-button {
        width: 100%;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-highlights div {
        min-height: 70px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-store-card {
        padding: 22px;
    }

    .featured-section,
    .used-section,
    .inventory-section,
    .accessory-market-section,
    .marketplace-section,
    .social-section,
    .contact-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .featured-heading,
    .used-heading,
    .inventory-heading,
    .accessory-market-heading,
    .contact-heading {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 22px;
    }

    .featured-heading h2,
    .used-heading h2,
    .inventory-heading h2,
    .accessory-market-heading h2,
    .marketplace-heading h2,
    .social-heading h2,
    .contact-heading h2 {
        font-size: 2.15rem;
        line-height: 1.08;
    }

    .inventory-note {
        max-width: none;
        text-align: left;
    }

    .controls,
    .accessory-market-toolbar {
        padding: 14px;
    }

    .inventory-filters,
    .accessory-category-filters {
        flex-wrap: nowrap;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn,
    .accessory-category-filters button {
        flex: 0 0 auto;
        min-height: 44px;
        padding-inline: 15px;
    }

    .featured-grid,
    .used-grid,
    .inventory-grid,
    .accessory-market-grid,
    .marketplace-grid,
    .social-grid,
    .store-information {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .inventory-card .product-image-wrapper,
    .featured-card .product-image-wrapper,
    .inventory-card .card-image,
    .featured-card .card-image,
    .used-grid .product-image-wrapper {
        min-height: 280px;
        height: auto;
    }

    .inventory-card img,
    .featured-card img,
    .product-image {
        height: 225px;
    }

    .accessory-listing-image {
        aspect-ratio: 5 / 4;
        min-height: auto;
    }

    .inventory-card-content,
    .featured-card .inventory-card-content,
    .accessory-listing-content,
    .social-card,
    .marketplace-card {
        padding: 20px;
    }

    .accessory-listing-content {
        min-height: 0;
    }

    .contact-section {
        margin-bottom: 58px;
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 420px) {
    .brand-logo-box {
        width: min(42vw, 142px);
        height: 42px;
    }

    .cart-nav-button,
    .header-auth-button {
        font-size: 0.82rem;
    }

    .hero-brand-logo {
        width: 195px;
    }

    .featured-heading h2,
    .used-heading h2,
    .inventory-heading h2,
    .accessory-market-heading h2,
    .marketplace-heading h2,
    .social-heading h2,
    .contact-heading h2 {
        font-size: 1.9rem;
    }

    .inventory-card .product-image-wrapper,
    .featured-card .product-image-wrapper,
    .inventory-card .card-image,
    .featured-card .card-image,
    .used-grid .product-image-wrapper {
        min-height: 245px;
    }

    .inventory-card img,
    .featured-card img,
    .product-image {
        height: 198px;
    }
}

/* =========================================================
   ANIMATED TACTICAL BACKGROUND
========================================================= */

body {
    position: relative;
    min-height: 100vh;
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

body::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(217, 107, 31, 0.16), transparent 18%, transparent 82%, rgba(217, 107, 31, 0.13)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%, transparent 78%, rgba(217, 107, 31, 0.075)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.085) 0 1px, transparent 1px 112px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.058) 0 1px, transparent 1px 112px),
        repeating-linear-gradient(135deg, rgba(217, 107, 31, 0.09) 0 1px, transparent 1px 34px);
    background-size:
        auto,
        auto,
        112px 112px,
        112px 112px,
        34px 34px;
    opacity: 0.82;
    animation: tacticalBackgroundDrift 8s linear infinite;
    will-change: background-position, opacity;
}

body::after {
    inset: -22%;
    background:
        linear-gradient(
            112deg,
            transparent 0%,
            transparent 30%,
            rgba(217, 107, 31, 0.0) 35%,
            rgba(217, 107, 31, 0.26) 43%,
            rgba(255, 255, 255, 0.12) 48%,
            rgba(217, 107, 31, 0.24) 53%,
            rgba(217, 107, 31, 0.0) 61%,
            transparent 100%
        ),
        linear-gradient(
            88deg,
            transparent 0%,
            transparent 46%,
            rgba(217, 107, 31, 0.18) 49%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(217, 107, 31, 0.18) 51%,
            transparent 55%,
            transparent 100%
        ),
        repeating-linear-gradient(180deg, transparent 0 34px, rgba(217, 107, 31, 0.07) 34px 35px, transparent 35px 84px);
    mix-blend-mode: screen;
    opacity: 0.72;
    transform: translate3d(-56%, 0, 0) skewX(-8deg);
    animation: tacticalLightSweep 5.6s ease-in-out infinite;
    will-change: transform, opacity;
}

.site-header,
main,
footer {
    position: relative;
    z-index: 1;
}

@keyframes tacticalBackgroundDrift {
    0% {
        background-position:
            0 0,
            0 0,
            0 0,
            0 0,
            0 0;
        opacity: 0.72;
    }

    50% {
        opacity: 0.92;
    }

    100% {
        background-position:
            0 0,
            0 0,
            224px 0,
            0 224px,
            68px 68px;
        opacity: 0.72;
    }
}

@keyframes tacticalLightSweep {
    0%,
    100% {
        transform: translate3d(-68%, 0, 0) skewX(-8deg);
        opacity: 0.18;
    }

    16% {
        opacity: 0.86;
    }

    52% {
        transform: translate3d(18%, 0, 0) skewX(-8deg);
        opacity: 0.72;
    }

    82% {
        transform: translate3d(66%, 0, 0) skewX(-8deg);
        opacity: 0.24;
    }
}

@media (max-width: 760px) {
    body::before {
        opacity: 0.68;
        animation-duration: 11s;
    }

    body::after {
        opacity: 0.48;
        animation-duration: 7s;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::before,
    body::after {
        animation: none;
    }
}

/* Canvas-driven motion layer. This makes the background visibly animated. */

body::before {
    opacity: 0.16;
    animation: none;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.012), transparent 36%),
        radial-gradient(circle at 82% 38%, rgba(217, 107, 31, 0.038), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 32%, rgba(217, 107, 31, 0.018));
}

body::after {
    display: none;
}

.tactical-background-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: 0.56;
    mix-blend-mode: screen;
}

@media (max-width: 760px) {
    .tactical-background-canvas {
        opacity: 0.44;
    }
}

/* Final product photo treatment: catalog photos keep a clean white stage;
   GunBroker/Guns.com photos stay on a centered dark premium stage. */

.product-image-wrapper,
.modal-image-section {
    isolation: isolate;
}

.inventory-card .product-image-wrapper,
.featured-card .product-image-wrapper,
.used-grid .product-image-wrapper,
.accessory-listing-image {
    display: flex;
    height: 250px;
    min-height: 250px;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    overflow: hidden;
}

.inventory-card .product-image-wrapper.has-catalog-product-image,
.featured-card .product-image-wrapper.has-catalog-product-image,
.used-grid .product-image-wrapper.has-catalog-product-image,
.modal-image-section.has-catalog-product-image {
    background: #f6f5f1 !important;
}

.inventory-card .product-image-wrapper.has-marketplace-product-image,
.featured-card .product-image-wrapper.has-marketplace-product-image,
.used-grid .product-image-wrapper.has-marketplace-product-image,
.accessory-listing-image:not(.has-placeholder),
.modal-image-section.has-marketplace-product-image {
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.12), transparent 38%),
        radial-gradient(circle at 62% 102%, rgba(217, 107, 31, 0.14), transparent 46%),
        linear-gradient(145deg, #171717 0%, #0c0c0c 58%, #15110f 100%) !important;
}

.inventory-card .product-image-wrapper.has-placeholder-product-image,
.featured-card .product-image-wrapper.has-placeholder-product-image,
.used-grid .product-image-wrapper.has-placeholder-product-image,
.accessory-listing-image.has-placeholder {
    background: #101010 !important;
}

.inventory-card .product-image-wrapper::before,
.inventory-card .product-image-wrapper::after,
.featured-card .product-image-wrapper::before,
.featured-card .product-image-wrapper::after,
.used-grid .product-image-wrapper::before,
.used-grid .product-image-wrapper::after {
    display: none;
}

.inventory-card .product-image-wrapper .product-image,
.featured-card .product-image-wrapper .product-image,
.used-grid .product-image-wrapper .product-image,
.accessory-listing-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    box-sizing: border-box;
    object-position: center;
}

.inventory-card .product-image-wrapper.has-catalog-product-image .product-image,
.featured-card .product-image-wrapper.has-catalog-product-image .product-image,
.used-grid .product-image-wrapper.has-catalog-product-image .product-image {
    padding: clamp(12px, 1.4vw, 22px);
    object-fit: contain;
    background: #f6f5f1 !important;
    filter:
        contrast(1.03)
        brightness(1.01)
        drop-shadow(0 10px 12px rgba(0, 0, 0, 0.16));
}

.inventory-card .product-image-wrapper.has-marketplace-product-image .product-image,
.featured-card .product-image-wrapper.has-marketplace-product-image .product-image,
.used-grid .product-image-wrapper.has-marketplace-product-image .product-image,
.accessory-listing-image:not(.has-placeholder) img {
    padding: 0;
    object-fit: cover;
    background: #101010 !important;
    filter:
        contrast(1.04)
        brightness(0.98)
        saturate(1.04);
}

.modal-image-section.has-catalog-product-image .modal-product-image {
    width: min(100%, 560px) !important;
    height: auto !important;
    max-height: 500px;
    padding: clamp(14px, 1.6vw, 26px);
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
    background: #f6f5f1 !important;
    filter:
        contrast(1.03)
        brightness(1.01)
        drop-shadow(0 16px 18px rgba(0, 0, 0, 0.18));
}

.modal-image-section.has-marketplace-product-image .modal-product-image {
    width: min(100%, 620px) !important;
    height: auto !important;
    max-height: 500px;
    padding: 0;
    object-fit: contain;
    object-position: center;
    background: transparent !important;
    filter:
        contrast(1.04)
        brightness(0.99)
        saturate(1.04)
        drop-shadow(0 18px 24px rgba(0, 0, 0, 0.5));
}

.inventory-card .product-image-wrapper.has-placeholder-product-image .product-image,
.featured-card .product-image-wrapper.has-placeholder-product-image .product-image,
.used-grid .product-image-wrapper.has-placeholder-product-image .product-image,
.accessory-listing-image.has-placeholder img {
    background: #101010 !important;
    padding: clamp(14px, 1.4vw, 24px);
    object-fit: contain;
    filter: none;
}

.modal-image-section.has-placeholder-product-image .modal-product-image {
    width: min(100%, 540px) !important;
    height: auto !important;
    max-height: 500px;
    padding: clamp(18px, 2vw, 32px);
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
    background: #101010 !important;
    filter: none;
}

@media (max-width: 760px) {
    .inventory-card .product-image-wrapper,
    .featured-card .product-image-wrapper,
    .used-grid .product-image-wrapper,
    .accessory-listing-image {
        height: 230px;
        min-height: 230px;
    }
}

/* =========================================================
   POLISHED STORE HEADER
========================================================= */

.site-header {
    border-bottom: 1px solid rgba(217, 107, 31, 0.32);
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(4, 4, 4, 0.96));
}

.site-header .top-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto minmax(370px, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 92px;
    padding: 12px max(24px, calc((100vw - var(--max-width)) / 2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(4, 4, 4, 0.94));
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.5),
        inset 0 -1px 0 rgba(217, 107, 31, 0.18);
    backdrop-filter: blur(16px);
}

.top-nav .brand-group {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.top-nav .brand-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    min-width: 0;
}

.top-nav .brand-logo-box:first-child {
    width: 178px;
}

.top-nav .brand-logo-box:last-child {
    width: 188px;
}

.top-nav .site-logo,
.top-nav .suppressors-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 8px 12px rgba(0, 0, 0, 0.45))
        saturate(1.04);
}

.top-nav .brand-divider {
    width: 1px;
    height: 44px;
    flex: 0 0 auto;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.24),
            transparent
        );
}

.top-nav .nav-links {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    min-width: 0;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.025);
}

.top-nav .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    color: rgba(244, 241, 236, 0.86);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.top-nav .nav-links a:hover {
    color: #ffffff;
    background: rgba(217, 107, 31, 0.16);
    box-shadow: inset 0 0 0 1px rgba(217, 107, 31, 0.18);
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.nav-actions .nav-button,
.nav-actions .cart-nav-button,
.nav-actions .header-auth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

.nav-actions .nav-button {
    min-width: 166px;
    padding: 0 21px;
    border-color: rgba(255, 139, 63, 0.72);
    background:
        linear-gradient(180deg, #ef7a22 0%, #c95b17 100%);
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 14px 26px rgba(217, 107, 31, 0.18);
}

.nav-actions .cart-nav-button,
.nav-actions .header-auth-button {
    border-color: rgba(255, 255, 255, 0.15);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
        rgba(13, 13, 13, 0.92);
    color: #ffffff;
}

.nav-actions .cart-nav-button {
    min-width: 108px;
    gap: 8px;
    padding: 0 16px;
    border-color: rgba(217, 107, 31, 0.62);
}

.nav-actions .header-auth-nav {
    display: flex;
    align-items: center;
    min-width: 0;
}

.nav-actions .header-auth-button {
    min-width: 138px;
    padding: 0 17px;
}

.nav-actions .header-account-button {
    gap: 8px;
}

.nav-actions .nav-button:hover,
.nav-actions .cart-nav-button:hover,
.nav-actions .header-auth-button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 139, 63, 0.82);
    background:
        linear-gradient(180deg, rgba(239, 122, 34, 0.2), rgba(217, 107, 31, 0.08)),
        rgba(17, 17, 17, 0.95);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.38),
        0 0 24px rgba(217, 107, 31, 0.11);
}

.nav-actions .nav-button:hover {
    background:
        linear-gradient(180deg, #ff872a 0%, #d6631a 100%);
}

.nav-actions .cart-count {
    min-width: 23px;
    min-height: 23px;
    padding: 2px 7px;
    background: #ef7a22;
    box-shadow: 0 0 16px rgba(217, 107, 31, 0.28);
}

.header-account-menu {
    position: relative;
}

.header-account-dropdown {
    right: 0;
}

@media (max-width: 1380px) {
    .site-header .top-nav {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand actions"
            "links links";
        row-gap: 10px;
        min-height: 118px;
    }

    .top-nav .brand-group {
        grid-area: brand;
    }

    .top-nav .nav-links {
        grid-area: links;
        justify-self: stretch;
        justify-content: center;
    }

    .nav-actions {
        grid-area: actions;
    }
}

@media (max-width: 980px) {
    .site-header .top-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        min-height: auto;
    }

    .top-nav .brand-group {
        width: 100%;
        justify-content: center;
    }

    .nav-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 820px) {
    .top-nav .nav-links {
        display: none;
    }

    .top-nav .brand-logo-box:first-child {
        width: min(43vw, 166px);
    }

    .top-nav .brand-logo-box:last-child {
        width: min(43vw, 176px);
    }

    .nav-actions {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 10px;
    }

    .nav-actions .nav-button {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
    }

    .nav-actions .cart-nav-button,
    .nav-actions .header-auth-nav,
    .nav-actions .header-auth-button,
    .nav-actions .header-account-menu,
    .nav-actions .header-account-button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .site-header .top-nav {
        padding: 11px 14px;
    }

    .top-nav .brand-group {
        justify-content: center;
        gap: 10px;
    }

    .top-nav .brand-logo-box {
        height: 50px;
    }

    .top-nav .brand-logo-box:first-child {
        width: min(70vw, 210px);
    }

    .top-nav .brand-divider,
    .top-nav .brand-logo-box:last-child {
        display: none;
    }

    .nav-actions {
        grid-template-columns: 1fr 1fr;
    }

    .nav-actions .nav-button,
    .nav-actions .cart-nav-button,
    .nav-actions .header-auth-button {
        min-height: 48px;
    }
}

@media (max-width: 360px) {
    .nav-actions {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   MOBILE DESKTOP-STYLE STOREFRONT POLISH
========================================================= */

@media (max-width: 760px) {
    body {
        overflow-x: hidden;
    }

    main,
    .hero-inner,
    .featured-section,
    .used-section,
    .inventory-section,
    .accessory-market-section,
    .marketplace-section,
    .social-section,
    .contact-section {
        width: min(100% - 24px, var(--max-width));
    }

    .site-header .top-nav {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: none;
        gap: 9px;
        padding: 10px 12px 12px;
    }

    .top-nav .brand-group {
        display: grid;
        grid-area: auto;
        grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
        gap: 8px;
        width: 100%;
        align-items: center;
        justify-self: stretch;
    }

    .top-nav .brand-logo-box,
    .top-nav .brand-logo-box:first-child,
    .top-nav .brand-logo-box:last-child {
        display: flex;
        width: 100%;
        height: 44px;
    }

    .top-nav .brand-divider {
        display: block;
        width: 1px;
        height: 34px;
        justify-self: center;
    }

    .nav-actions {
        grid-area: auto;
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(78px, 0.75fr) minmax(0, 1fr);
        gap: 8px;
        width: 100%;
        justify-self: stretch;
    }

    .nav-actions .nav-button,
    .nav-actions .cart-nav-button,
    .nav-actions .header-auth-nav,
    .nav-actions .header-auth-button,
    .nav-actions .header-account-menu,
    .nav-actions .header-account-button {
        grid-column: auto;
        width: 100%;
        min-width: 0;
    }

    .nav-actions .nav-button,
    .nav-actions .cart-nav-button,
    .nav-actions .header-auth-button {
        min-height: 44px;
        padding-inline: 9px;
        font-size: 0.72rem;
    }

    .nav-actions .cart-nav-button {
        gap: 6px;
    }

    .nav-actions .cart-count {
        min-width: 20px;
        min-height: 20px;
        padding: 1px 6px;
        font-size: 0.68rem;
    }

    .top-nav .nav-links {
        grid-area: auto;
        display: flex;
        order: 3;
        width: 100%;
        justify-self: stretch;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 4px;
        border-radius: 8px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .top-nav .nav-links::-webkit-scrollbar {
        display: none;
    }

    .top-nav .nav-links a {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 0 11px;
        font-size: 0.68rem;
    }

    .hero-inner {
        gap: 18px;
        padding: 36px 0 40px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-brand-logo {
        width: min(74vw, 255px);
        margin-bottom: 18px;
    }

    .hero-subtitle {
        max-width: 620px;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .hero-actions,
    .hero-store-actions,
    .contact-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-actions a,
    .hero-store-actions a,
    .contact-actions a,
    .featured-heading .secondary-button,
    .used-heading .secondary-button,
    .accessory-market-heading .secondary-button {
        width: 100%;
        min-height: 44px;
        padding-inline: 10px;
        font-size: 0.78rem;
    }

    .hero-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-highlights div {
        min-height: 68px;
        padding: 13px 10px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 0;
    }

    .hero-highlights div:last-child {
        border-right: 0;
    }

    .hero-highlights strong {
        font-size: 0.96rem;
    }

    .hero-highlights span {
        font-size: 0.66rem;
        line-height: 1.2;
    }

    .hero-store-card {
        padding: 18px;
    }

    .featured-section,
    .used-section,
    .inventory-section,
    .accessory-market-section,
    .marketplace-section,
    .social-section,
    .contact-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .featured-heading,
    .used-heading,
    .inventory-heading,
    .accessory-market-heading,
    .contact-heading {
        gap: 14px;
        margin-bottom: 20px;
    }

    .featured-heading h2,
    .used-heading h2,
    .inventory-heading h2,
    .accessory-market-heading h2,
    .marketplace-heading h2,
    .social-heading h2,
    .contact-heading h2 {
        font-size: clamp(1.8rem, 8vw, 2.35rem);
    }

    .controls {
        grid-template-columns: minmax(0, 1fr) minmax(118px, 0.58fr);
        gap: 10px;
        padding: 12px;
    }

    .controls .inventory-filters,
    .controls #inventoryCount {
        grid-column: 1 / -1;
    }

    .sort-control select,
    .search-control input,
    .accessory-market-toolbar input {
        min-height: 45px;
        font-size: 0.88rem;
    }

    .inventory-filters,
    .accessory-category-filters {
        gap: 7px;
    }

    .filter-btn,
    .accessory-category-filters button {
        min-height: 38px;
        padding-inline: 12px;
        font-size: 0.72rem;
    }

    .featured-grid,
    .used-grid,
    .inventory-grid,
    .accessory-market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .featured-grid > .featured-loading,
    .used-grid > .featured-loading {
        grid-column: 1 / -1;
    }

    .marketplace-grid,
    .social-grid,
    .store-information {
        grid-template-columns: 1fr;
    }

    .inventory-card,
    .featured-card,
    .accessory-listing-card {
        min-width: 0;
        overflow: hidden;
    }

    .inventory-card .product-image-wrapper,
    .featured-card .product-image-wrapper,
    .inventory-card .card-image,
    .featured-card .card-image,
    .used-grid .product-image-wrapper,
    .accessory-listing-image {
        height: clamp(148px, 40vw, 202px);
        min-height: clamp(148px, 40vw, 202px);
    }

    .inventory-card img,
    .featured-card img,
    .product-image,
    .accessory-listing-image img {
        height: clamp(124px, 34vw, 174px);
        max-width: 96%;
    }

    .inventory-card-content,
    .featured-card .inventory-card-content,
    .accessory-listing-content {
        padding: 14px;
    }

    .manufacturer,
    .section-eyebrow,
    .featured-badge,
    .pre-owned-badge,
    .accessory-category-badge {
        font-size: 0.65rem;
    }

    .inventory-card h2,
    .featured-card h2,
    .accessory-listing-content h3 {
        display: -webkit-box;
        min-height: 0;
        overflow: hidden;
        color: #ffffff;
        font-size: 0.9rem;
        line-height: 1.28;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .product-price,
    .accessory-listing-price strong {
        font-size: 1.2rem;
        line-height: 1.1;
    }

    .inventory-details,
    .accessory-listing-meta,
    .accessory-listing-content p {
        font-size: 0.75rem;
        line-height: 1.42;
    }

    .availability,
    .add-to-cart-button,
    .accessory-listing-link {
        min-height: 34px;
        padding: 8px 10px;
        font-size: 0.72rem;
    }

    .accessory-market-toolbar {
        gap: 10px;
        padding: 12px;
    }

    .accessory-market-count {
        font-size: 0.84rem;
    }
}

@media (min-width: 761px) and (max-width: 820px) {
    .site-header .top-nav {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: none;
        gap: 10px;
        padding: 12px 24px 14px;
    }

    .top-nav .brand-group,
    .nav-actions,
    .top-nav .nav-links {
        grid-area: auto;
        width: 100%;
        justify-self: stretch;
    }

    .top-nav .brand-group {
        justify-content: center;
    }

    .nav-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(104px, 0.32fr) minmax(140px, 0.42fr);
        gap: 10px;
    }

    .nav-actions .nav-button,
    .nav-actions .cart-nav-button,
    .nav-actions .header-auth-nav,
    .nav-actions .header-auth-button,
    .nav-actions .header-account-menu,
    .nav-actions .header-account-button {
        grid-column: auto;
        width: 100%;
        min-width: 0;
    }

    .top-nav .nav-links {
        display: flex;
        justify-content: center;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .top-nav .nav-links::-webkit-scrollbar {
        display: none;
    }

    .controls {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    }

    .controls .inventory-filters,
    .controls #inventoryCount {
        grid-column: 1 / -1;
    }
}

@media (max-width: 420px) {
    main,
    .hero-inner,
    .featured-section,
    .used-section,
    .inventory-section,
    .accessory-market-section,
    .marketplace-section,
    .social-section,
    .contact-section {
        width: min(100% - 20px, var(--max-width));
    }

    .site-header .top-nav {
        padding-inline: 10px;
    }

    .top-nav .brand-group {
        gap: 6px;
    }

    .top-nav .brand-logo-box,
    .top-nav .brand-logo-box:first-child,
    .top-nav .brand-logo-box:last-child {
        height: 38px;
    }

    .nav-actions {
        grid-template-columns: minmax(0, 1.25fr) minmax(72px, 0.72fr) minmax(0, 1fr);
        gap: 7px;
    }

    .nav-actions .nav-button,
    .nav-actions .cart-nav-button,
    .nav-actions .header-auth-button {
        min-height: 42px;
        padding-inline: 7px;
        font-size: 0.66rem;
    }

    .top-nav .nav-links a {
        min-height: 32px;
        padding: 0 10px;
        font-size: 0.64rem;
    }

    .hero-store-actions,
    .contact-actions {
        grid-template-columns: 1fr;
    }

    .featured-grid,
    .used-grid,
    .inventory-grid,
    .accessory-market-grid {
        gap: 12px;
    }

    .inventory-card .product-image-wrapper,
    .featured-card .product-image-wrapper,
    .inventory-card .card-image,
    .featured-card .card-image,
    .used-grid .product-image-wrapper,
    .accessory-listing-image {
        height: 146px;
        min-height: 146px;
    }

    .inventory-card img,
    .featured-card img,
    .product-image,
    .accessory-listing-image img {
        height: 124px;
    }

    .inventory-card-content,
    .featured-card .inventory-card-content,
    .accessory-listing-content {
        padding: 12px;
    }

    .inventory-card h2,
    .featured-card h2,
    .accessory-listing-content h3 {
        font-size: 0.84rem;
    }

    .product-price,
    .accessory-listing-price strong {
        font-size: 1.06rem;
    }

    .inventory-details,
    .accessory-listing-meta,
    .accessory-listing-content p {
        font-size: 0.7rem;
    }
}
