:root {
    --bg: #06070d;
    --bg-2: #0a0d15;
    --surface: #0b0d14;
    --surface-2: #0f121a;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.12);
    --text: #f4f6fa;
    --muted: #9aa2b8;
    --accent: #8f40ff;
    --accent-2: #b860ff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(120, 37, 255, 0.08), transparent 90px),
        linear-gradient(180deg, #090b11 0%, #06070d 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.topbar {
    padding: 9px 16px;
    text-align: center;
    font-size: 11px;
    letter-spacing: .12em;
    color: #c7ccda;
    border-bottom: 1px solid rgba(143, 64, 255, 0.22);
    background: linear-gradient(90deg, rgba(31, 16, 58, 0.96), rgba(12, 10, 20, 0.98));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(8, 10, 15, 0.92);
    border-bottom: 1px solid var(--line);
}

.nav-shell,
.page,
.footer-shell,
.admin-wrap {
    width: min(1136px, calc(100% - 28px));
    margin: 0 auto;
}

.nav-shell {
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}

.brand-image {
    display: block;
    width: auto;
    height: 39px;
    object-fit: contain;
}

.footer-logo .brand-image {
    height: 45px;
}

.brand span,
.footer-logo span {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: .02em;
}

.brand small,
.footer-logo small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .34em;
}

.main-nav,
.nav-actions,
.hero-actions,
.section-head,
.usp-item,
.social-proof,
.avatar-stack,
.price-row,
.review-author,
.review-band,
.admin-top,
.admin-actions,
.admin-inline-actions,
.checkout-bar {
    display: flex;
    align-items: center;
}

.main-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding: 12px 0 4px;
    gap: 28px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.main-nav.is-open {
    display: grid;
    gap: 8px;
}

.nav-switchers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.nav-switchers a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: #d2d7e4;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.nav-switchers a.active {
    border-color: rgba(143, 64, 255, 0.55);
    color: #fff;
    background: rgba(143, 64, 255, 0.18);
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    color: #d2d7e4;
    opacity: .92;
}

.nav-link:hover,
.section-link:hover { color: #fff; }

.with-caret::after {
    content: "v";
    font-size: 8px;
    margin-left: 6px;
    color: #7d869d;
}

.nav-actions { gap: 6px; justify-content: flex-end; }

.icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #eef3ff;
    background: rgba(255, 255, 255, 0.015);
    transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.icon-link:hover {
    color: #fff;
    border-color: rgba(157, 77, 255, 0.36);
    background: rgba(143, 64, 255, 0.1);
    box-shadow: 0 0 24px rgba(143, 64, 255, 0.18);
    transform: translateY(-1px);
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    cursor: pointer;
}

.menu-toggle span {
    width: 17px;
    height: 2px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.icon-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-counter {
    position: absolute;
    top: -2px;
    right: -1px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 0 0 2px #080a10, 0 8px 16px rgba(143, 64, 255, 0.28);
}

.cart-link.cart-added {
    animation: cartPulse .7s ease;
}

.cart-link.cart-added svg {
    animation: cartNudge .7s ease;
}

.btn.is-loading {
    opacity: .72;
}

.btn.is-added {
    border-color: rgba(0, 196, 106, 0.42);
    background: rgba(0, 196, 106, 0.18);
    color: #d7ffe9;
    box-shadow: 0 16px 34px rgba(0, 196, 106, 0.16);
}

.btn.is-error {
    border-color: rgba(255, 95, 122, 0.46);
    background: rgba(255, 95, 122, 0.16);
    color: #ffd1da;
}

@keyframes cartPulse {
    0% { box-shadow: 0 0 0 0 rgba(143, 64, 255, 0.0); transform: translateY(0) scale(1); }
    38% { box-shadow: 0 0 0 10px rgba(143, 64, 255, 0.18); transform: translateY(-2px) scale(1.08); }
    100% { box-shadow: 0 0 0 0 rgba(143, 64, 255, 0); transform: translateY(0) scale(1); }
}

@keyframes cartNudge {
    0%, 100% { transform: translateX(0); }
    30% { transform: translateX(2px) rotate(-4deg); }
    58% { transform: translateX(-1px) rotate(3deg); }
}

.page { padding: 18px 0 0; }
.page.narrow { width: min(960px, calc(100% - 28px)); padding-bottom: 64px; }

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 0;
    min-height: 620px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(9, 11, 17, 0.98), rgba(7, 8, 13, 0.96));
    overflow: hidden;
}

.hero-copy {
    padding: 72px 54px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #9d4dff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1, h2, h3, h4 { margin: 0; }
h1, h2, h3, .btn, .stat-card strong, .main-nav { font-family: "Montserrat", sans-serif; }

.hero h1 {
    font-size: clamp(3rem, 5.4vw, 4.65rem);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.hero h1 span,
.review-section h2 span {
    color: #9d4dff;
}

.hero-copy > p {
    margin: 18px 0 0;
    max-width: 420px;
    color: #d9dce6;
    font-size: 17px;
    line-height: 1.55;
}

.hero-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature strong,
.usp-item strong,
.product-body h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
}

.hero-feature small,
.usp-item small,
.product-meta,
.review-author small,
.freebie-note,
.site-footer p,
.footer-col a,
.footer-col p {
    color: var(--muted);
}

.feature-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(151, 85, 255, 0.45);
    border-radius: 999px;
    color: #ae76ff;
    font-size: 11px;
    font-weight: 800;
}

.hero-actions {
    gap: 12px;
    margin: 28px 0 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: linear-gradient(135deg, #7b2cff, #a844ff);
    color: #fff;
    box-shadow: 0 16px 34px rgba(123, 44, 255, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.btn-danger {
    color: #fff;
    background: rgba(255, 95, 122, 0.18);
    border-color: rgba(255, 95, 122, 0.36);
}

.btn-play {
    gap: 10px;
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 10px;
}

.btn-block { width: 100%; }

.social-proof {
    gap: 12px;
    margin-top: 8px;
    color: #d8dceb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
}

.avatar-stack img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 999px;
    border: 2px solid #0b0d14;
    margin-left: -8px;
}

.avatar-stack img:first-child { margin-left: 0; }

.hero-visual {
    position: relative;
    min-height: 620px;
}

.before-after,
.mini-compare {
    --compare-position: 50%;
    position: relative;
    overflow: hidden;
    cursor: ew-resize;
    touch-action: none;
    user-select: none;
}

.before-after {
    position: absolute;
    inset: 0;
}

.before-after img,
.mini-compare img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-after > img:first-child {
    filter: brightness(.48) saturate(.9);
}

.compare-overlay {
    clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-position);
    width: 2px;
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(-50%);
    pointer-events: none;
}

.compare-range {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    appearance: none;
    -webkit-appearance: none;
}

.slider-handle,
.mini-handle {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: var(--compare-position);
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #15171e;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.slider-handle svg,
.mini-handle svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.slider-label,
.mini-label {
    position: absolute;
    bottom: 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    pointer-events: none;
}

.slider-left,
.mini-left { left: 24px; }
.slider-right,
.mini-right { right: 24px; }

.usp-bar,
.section,
.cta-banner,
.product-detail,
.checkout-grid,
.stats-grid,
.admin-grid {
    margin-top: 16px;
}

.usp-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: #0a0c12;
}

.usp-item {
    gap: 12px;
    padding: 16px 18px;
    border-right: 1px solid var(--line);
}

.usp-item:last-child { border-right: 0; }

.usp-item > span {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
}

.section { padding: 8px 0 0; }

.section-head {
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.section-head h2,
.review-section h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -.03em;
}

.section-head-center {
    justify-content: center;
    margin-bottom: 14px;
}

.section-link {
    color: #a96cff;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-grid,
.results-grid,
.review-grid,
.stats-grid,
.admin-grid,
.checkout-grid,
.compatibility-grid,
.footer-shell {
    display: grid;
    gap: 12px;
}

.product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.results-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
.checkout-grid { grid-template-columns: 1.12fr .88fr; }
.compatibility-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.footer-shell { grid-template-columns: 1.4fr repeat(4, 1fr); }

.product-card,
.review-card,
.panel,
.admin-product,
.stat-card,
.result-card,
.compatibility-item {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(16, 19, 28, 0.96), rgba(10, 12, 19, 0.98));
}

.product-card,
.result-card {
    overflow: hidden;
}

.product-image {
    position: relative;
    display: block;
    aspect-ratio: 0.82 / 1;
}

.product-image img,
.result-card img,
.product-detail-image img,
.cart-item img,
.admin-product-head img,
.review-author img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 6px 9px;
    background: linear-gradient(135deg, #8b35ff, #c157ff);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-body,
.review-card,
.panel,
.stat-card,
.admin-product,
.download-item {
    padding: 15px;
}

.card-apps {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.card-app {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 18, 26, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #eaf0ff;
    font-size: 10px;
    font-weight: 800;
}

.product-body h3 {
    min-height: 48px;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-meta {
    margin: 8px 0 0;
    font-size: 11px;
}

.price-row {
    gap: 8px;
    margin: 14px 0 12px;
}

.price-row strong {
    color: #9f51ff;
    font-size: 25px;
    font-weight: 800;
}

.price-row span {
    color: #80889d;
    font-size: 16px;
    text-decoration: line-through;
}

.btn-product {
    min-height: 38px;
    width: 100%;
    background: rgba(143, 64, 255, 0.1);
    border-color: rgba(143, 64, 255, 0.35);
    color: #cfb4ff;
}

.compatibility-section { padding-top: 6px; }

.compatibility-item {
    padding: 14px 10px;
    text-align: center;
}

.compatibility-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: #dfe6f8;
}

.compatibility-item small {
    display: block;
    color: #cbd3e5;
    font-size: 12px;
}

.result-compare {
    background: #0a0c12;
}

.featured-extra-section {
    padding-top: 8px;
}

.extra-product-card {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 0;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(16, 19, 28, 0.96), rgba(10, 12, 19, 0.98));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.extra-product-grid {
    display: grid;
    gap: 14px;
}

.video-frame,
.resource-preview {
    position: relative;
    min-height: 360px;
    background: #080a10;
}

.video-frame iframe,
.resource-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.extra-product-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.extra-product-body h3 {
    font-size: clamp(1.6rem, 2.2vw, 2.35rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.extra-product-body p {
    color: var(--muted);
    line-height: 1.65;
}

.mini-compare {
    aspect-ratio: .78 / 1;
}

.product-card-compare {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}

.product-detail-compare.before-after {
    position: relative;
    inset: auto;
    aspect-ratio: 1 / 1.06;
    min-height: 520px;
}

.mini-handle {
    width: 30px;
    height: 30px;
}

.mini-handle svg {
    width: 16px;
    height: 16px;
}

.mini-label {
    bottom: 10px;
    font-size: 9px;
}

.results-action {
    margin-top: 14px;
    text-align: center;
}

.btn-results {
    min-width: 210px;
}

.review-section {
    padding: 34px 24px 20px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(55, 18, 95, 0.14), transparent 35%),
        linear-gradient(180deg, #090b12 0%, #0a0c13 100%);
}

.review-band {
    justify-content: space-between;
    gap: 12px;
}

.review-grid {
    flex: 1;
}

.review-card {
    min-height: 190px;
}

.stars {
    color: #ffcf44;
    font-size: 14px;
    letter-spacing: .08em;
}

.review-card p {
    margin: 14px 0 16px;
    color: #d6d9e3;
    line-height: 1.65;
}

.review-author {
    gap: 12px;
}

.review-author img {
    width: 40px;
    height: 40px;
    border-radius: 999px;
}

.carousel-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    font-size: 20px;
    cursor: default;
}

.review-dots {
    margin-top: 12px;
    text-align: center;
}

.review-dots span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.review-dots .active {
    width: 16px;
    background: #8f40ff;
}

.cta-banner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    padding: 28px 26px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 8% 50%, rgba(143, 64, 255, 0.28), transparent 34%),
        linear-gradient(180deg, rgba(15, 17, 26, 0.98), rgba(10, 12, 19, 0.98));
}

.freebie-packshots {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 12px;
    min-height: 220px;
}

.pack-box {
    width: 118px;
    height: 164px;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(167, 102, 255, 0.34);
    background:
        linear-gradient(180deg, rgba(155, 70, 255, 0.36), rgba(10, 11, 17, 0.98) 44%),
        linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,0));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 34px rgba(0, 0, 0, .34);
    color: #fff;
}

.pack-box span {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.pack-box small {
    margin-top: 4px;
    color: #d0c6f5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

.front { height: 186px; }
.tilt-left { transform: rotate(-7deg) translateY(8px); }
.tilt-right { transform: rotate(7deg) translateY(8px); }

.freebie-copy h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
}

.freebie-copy p {
    margin: 10px 0 18px;
    color: #d3d7e6;
}

.freebie-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.freebie-form input,
input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.freebie-note {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 14px;
    font-size: 12px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
}

.product-detail-image img {
    aspect-ratio: 1 / 1.06;
    object-fit: cover;
}

.lead { font-size: 20px; }

.panel,
.product-detail-image img,
.product-card,
.review-card,
.result-card,
.cta-banner,
.hero,
.admin-product,
.compatibility-item,
.stat-card {
    box-shadow: var(--shadow);
}

.panel p,
.product-detail-copy p,
.cart-item p {
    color: var(--muted);
}

.detail-price { margin: 22px 0; }

.cart-list,
.download-list,
.admin-list { display: grid; gap: 18px; }

.cart-item,
.download-item {
    display: grid;
    gap: 18px;
    align-items: center;
    grid-template-columns: 120px 1fr auto;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item:last-child { border-bottom: 0; }

.cart-item img,
.admin-product-head img {
    border-radius: 16px;
}

.checkout-form,
.product-form,
.edit-form { display: grid; gap: 16px; }

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

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

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.summary-total { border-bottom: 0; padding-bottom: 0; }

.summary-total strong,
.stat-card strong {
    display: block;
    font-size: 24px;
}

.checkout-bar,
.admin-top { justify-content: space-between; }

.notice {
    margin: 16px 0;
    padding: 14px 16px;
    border: 1px solid rgba(0, 196, 106, 0.24);
    background: rgba(0, 196, 106, 0.12);
    color: #d7ffe9;
}

.site-footer {
    margin-top: 26px;
    padding: 28px 0 34px;
    border-top: 1px solid var(--line);
    background: #080a10;
}

.footer-brand p {
    max-width: 260px;
    margin: 12px 0 18px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #dbe3f3;
    font-size: 11px;
    text-transform: uppercase;
}

.footer-col h4 {
    margin-bottom: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a,
.payment-line {
    font-size: 14px;
}

.admin-body { background: linear-gradient(180deg, #070811, #0a0d18); }
.admin-wrap { padding: 30px 0 70px; }
.admin-login { max-width: 460px; margin: 8vh auto 0; }
.admin-hint { font-size: 13px; }
.stat-card span,
.orders-table th { color: var(--muted); }
.admin-top { margin-bottom: 24px; }

.admin-section-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px;
    margin: 0 0 18px;
    border: 1px solid var(--line);
    background: rgba(8, 10, 16, 0.94);
    backdrop-filter: blur(16px);
}

.admin-section-tab {
    flex: 0 0 auto;
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    padding: 11px 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
}

.admin-section-tab:hover,
.admin-section-tab.is-active {
    border-color: rgba(148, 58, 255, 0.62);
    background: rgba(148, 58, 255, 0.16);
    color: #fff;
}

.admin-section {
    display: none;
}

.admin-section.is-active {
    display: block;
}

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

.full { grid-column: 1 / -1; }

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.checkbox input {
    width: 18px;
    height: 18px;
}

.admin-product-head {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.admin-product-head img { width: 90px; height: 90px; }
.admin-product-head span { color: var(--muted); }

.orders-table-wrap { overflow-x: auto; }

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 14px 10px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

.admin-list-panel {
    margin-top: 18px;
}

.admin-comparison-group + .admin-comparison-group {
    margin-top: 22px;
}

.admin-list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-group-head {
    margin-bottom: 14px;
}

.admin-group-head h3 {
    font-size: 18px;
    font-weight: 800;
}

.admin-group-head small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.admin-products-table td {
    vertical-align: top;
}

.admin-comparisons-table td {
    vertical-align: top;
}

.admin-table-thumb {
    width: 74px;
    height: 88px;
    border-radius: 14px;
    object-fit: cover;
}

.admin-product-thumbs {
    display: flex;
    gap: 8px;
}

.admin-compare-thumb {
    width: 120px;
    height: 88px;
    border-radius: 14px;
    object-fit: cover;
}

.admin-row-meta {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
}

.admin-row-copy {
    margin-top: 8px;
    color: #d8ddeb;
    font-size: 13px;
    line-height: 1.45;
}

.admin-link-inline {
    color: #cfb4ff;
    font-weight: 700;
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #d7deef;
    font-size: 12px;
    font-weight: 700;
}

.admin-pill.is-active {
    background: rgba(143, 64, 255, 0.18);
    color: #ead7ff;
}

.admin-table-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-modal[hidden] {
    display: none;
}

.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 6, 10, 0.82);
    backdrop-filter: blur(8px);
}

.admin-modal-card {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(18, 20, 29, 0.98), rgba(10, 12, 19, 0.99));
    box-shadow: var(--shadow);
}

.admin-modal-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.admin-close-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.admin-upload-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-dual-upload-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.admin-upload-preview {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.admin-upload-preview img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.admin-upload-card {
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.admin-compare-upload .admin-upload-preview {
    margin-bottom: 14px;
}

.admin-upload-label {
    display: grid;
    gap: 10px;
}

.admin-upload-help {
    margin: 12px 0 0;
    color: var(--muted);
}

.admin-upload-status,
.admin-upload-url {
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: #d9dfef;
    font-size: 13px;
    word-break: break-all;
}

.admin-upload-status.is-error {
    border-color: rgba(255, 95, 122, 0.35);
    color: #ffd1da;
}

.admin-upload-status.is-success {
    border-color: rgba(0, 196, 106, 0.28);
    color: #d7ffe9;
}

.admin-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.catalog-section {
    gap: 24px;
}

.section-copy {
    margin: 12px 0 0;
    max-width: 720px;
    color: var(--muted);
}

.catalog-grid {
    margin-top: 26px;
}

.empty-state-panel {
    display: grid;
    gap: 14px;
}

.admin-status-stack {
    display: grid;
    gap: 8px;
}

.admin-checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
}

.admin-payment-note,
.admin-payment-info,
.payment-summary-card,
.checkout-note,
.success-actions {
    margin-top: 18px;
}

.admin-payment-note,
.admin-payment-info,
.checkout-note {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: #d9dfef;
}

.admin-payment-note span,
.payment-summary-card small {
    color: var(--muted);
}

.admin-settings-block {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.admin-settings-block:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.subscriber-inline-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.payment-summary-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.payment-brand-line {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.payment-flow-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00a9ff, #0f5cff 48%, #5c24ff);
    color: #fff;
    box-shadow: 0 12px 26px rgba(25, 106, 255, 0.24);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn[disabled] {
    opacity: 0.58;
    cursor: not-allowed;
    pointer-events: none;
}

body.modal-open {
    overflow: hidden;
}

.welcome-popup[hidden] {
    display: none;
}

.welcome-popup {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 20px;
}

.welcome-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 4, 9, 0.78);
    backdrop-filter: blur(10px);
}

.welcome-popup-card {
    position: relative;
    z-index: 1;
    width: min(540px, 100%);
    padding: 34px;
    border: 1px solid rgba(143, 64, 255, 0.28);
    background:
        linear-gradient(180deg, rgba(20, 22, 34, 0.98), rgba(7, 9, 15, 0.99)),
        radial-gradient(circle at top left, rgba(143, 64, 255, .22), transparent 38%);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .54);
}

.welcome-popup-card h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-transform: uppercase;
}

.welcome-popup-card p {
    color: #d8ddeb;
    line-height: 1.65;
}

.welcome-popup-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 20px;
}

.welcome-popup-status {
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 196, 106, 0.28);
    background: rgba(0, 196, 106, 0.12);
    color: #d7ffe9;
}

.welcome-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media (min-width: 801px) {
    .nav-shell {
        display: flex;
        min-height: 64px;
        padding: 0;
        gap: 18px;
    }

    .main-nav {
        grid-column: auto;
        display: flex;
        width: auto;
        padding: 0;
        align-items: center;
        gap: 28px;
    }

    .nav-link {
        display: inline-flex;
        min-height: auto;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .menu-toggle {
        display: none;
    }

    .nav-switchers {
        display: flex;
        gap: 6px;
    }

    .nav-switchers a {
        min-height: 28px;
        padding: 0 8px;
    }

    .nav-actions {
        order: 3;
    }
}

@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .compatibility-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .hero,
    .cta-banner,
    .checkout-grid,
    .product-detail,
    .admin-grid,
    .extra-product-card { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .review-grid { grid-template-columns: 1fr; }
    .footer-shell { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-upload-grid { grid-template-columns: 1fr; }
    .admin-dual-upload-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
    .nav-shell,
    .admin-top,
    .admin-actions,
    .checkout-bar,
    .review-band {
        flex-direction: column;
        align-items: stretch;
    }

    .brand-image {
        height: 33px;
    }

    .footer-logo .brand-image {
        height: 42px;
    }

    .hero-copy {
        padding: 34px 22px 28px;
    }

    .hero,
    .hero-visual {
        min-height: auto;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-feature-row,
    .usp-bar,
    .product-grid,
    .results-grid,
    .compatibility-grid,
    .stats-grid,
    .form-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .freebie-form,
    .freebie-note,
    .welcome-popup-form {
        grid-template-columns: 1fr;
        display: grid;
    }

    .admin-section-nav {
        top: 0;
        gap: 6px;
        padding: 10px;
        margin-bottom: 14px;
    }

    .admin-section-tab {
        padding: 10px 12px;
        font-size: 11px;
    }

    .welcome-popup-card {
        padding: 26px 18px;
    }

    .usp-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .usp-item:last-child { border-bottom: 0; }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-list-toolbar,
    .admin-modal-actions,
    .admin-table-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-checkbox-grid,
    .payment-summary-card,
    .success-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-item,
    .download-item {
        grid-template-columns: 1fr;
    }

    .cart-item img {
        width: 100%;
        height: 220px;
    }
}
