:root {
    --ccn-black: #070809;
    --ccn-bg: #0b0c0e;
    --ccn-bg-soft: #101214;
    --ccn-graphite: #15181a;
    --ccn-graphite-2: #1b1e21;
    --ccn-panel: #121416;
    --ccn-panel-light: #1a1d20;
    --ccn-line: #2d3134;
    --ccn-line-soft: #24272a;
    --ccn-text: #f6f6f3;
    --ccn-muted: #a3a5a6;
    --ccn-muted-2: #777b7e;
    --ccn-orange: #ff7100;
    --ccn-orange-soft: #ff923b;
    --ccn-orange-dark: #c94e00;
    --ccn-green: #68a83f;
    --ccn-shadow: 0 26px 80px rgba(0, 0, 0, .48);
    --ccn-max: 1320px;
    --ccn-header-height: 88px;
}

html.ccn-html {
    margin-top: 0 !important;
    padding-top: 0 !important;
    scroll-behavior: smooth;
    background: var(--ccn-black);
}

body.ccn-site-body {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--ccn-bg) !important;
    color: var(--ccn-text) !important;
    overflow-x: hidden;
}

body.ccn-site-body.admin-bar {
    padding-top: 32px !important;
}

body.ccn-site-body.admin-bar .ccn-header {
    top: 32px;
}

body.ccn-site-body #wpadminbar {
    position: fixed !important;
}

.ccn-app,
.ccn-app * {
    box-sizing: border-box;
}

.ccn-app {
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--ccn-bg);
    color: var(--ccn-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.ccn-app a {
    color: inherit;
    text-decoration: none;
}

.ccn-app button,
.ccn-app input,
.ccn-app select,
.ccn-app textarea {
    font: inherit;
}

.ccn-app button {
    cursor: pointer;
}

.ccn-app img {
    display: block;
    max-width: 100%;
}

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

.ccn-container {
    width: min(var(--ccn-max), calc(100% - 48px));
    margin-inline: auto;
}

.ccn-svg {
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.ccn-topbar {
    position: relative;
    z-index: 72;
    background: #060707;
    border-bottom: 1px solid #242628;
    color: #bebfc0;
    font-size: 12px;
}

.ccn-topbar .ccn-container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ccn-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.ccn-topbar .ccn-svg {
    width: 17px;
    height: 17px;
    color: var(--ccn-orange);
}

.ccn-topbar b {
    color: #f0f0ef;
    font-weight: 750;
}

.ccn-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(7, 8, 9, .94);
    border-bottom: 1px solid #26292c;
    backdrop-filter: blur(16px);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ccn-header.is-scrolled {
    background: rgba(7, 8, 9, .985);
    border-color: #35383b;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .32);
}

.ccn-nav {
    min-height: var(--ccn-header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: min-height .25s ease;
}

.ccn-header.is-scrolled .ccn-nav {
    min-height: 72px;
}

.ccn-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.ccn-brand img {
    width: 250px;
    height: 72px;
    object-fit: contain;
    object-position: left center;
    transition: width .25s ease, height .25s ease;
}

.ccn-header.is-scrolled .ccn-brand img {
    width: 220px;
    height: 60px;
}

.ccn-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 29px;
    margin-left: auto;
}

.ccn-links a {
    position: relative;
    padding: 32px 0 29px;
    color: #e5e5e3;
    font-size: 12px;
    font-weight: 820;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition: color .2s ease, padding .25s ease;
}

.ccn-header.is-scrolled .ccn-links a {
    padding-top: 24px;
    padding-bottom: 23px;
}

.ccn-links a::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 17px;
    left: 0;
    height: 2px;
    background: var(--ccn-orange);
    transition: right .25s ease;
}

.ccn-header.is-scrolled .ccn-links a::after {
    bottom: 12px;
}

.ccn-links a:hover,
.ccn-links a.is-active {
    color: #fff;
}

.ccn-links a:hover::after,
.ccn-links a.is-active::after {
    right: 0;
}

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

.ccn-icon-button {
    position: relative;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #f1f1ef;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.ccn-icon-button .ccn-svg {
    width: 21px;
    height: 21px;
}

.ccn-icon-button:hover {
    color: var(--ccn-orange);
    background: #17191b;
    border-color: #414447;
    transform: translateY(-1px);
}

.ccn-cart-count {
    position: absolute;
    top: -3px;
    right: -2px;
    min-width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    padding-inline: 5px;
    color: #fff;
    background: var(--ccn-orange);
    border: 2px solid #08090a;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    transition: transform .2s ease;
}

.ccn-cart-count.is-bumping {
    animation: ccn-cart-bump .34s ease;
}

.ccn-menu-button {
    display: none;
}

.ccn-eyebrow {
    color: var(--ccn-orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .155em;
    text-transform: uppercase;
}

.ccn-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 22px;
    color: #fff;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .025em;
    line-height: 1.15;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ccn-button .ccn-svg {
    width: 19px;
    height: 19px;
    transition: transform .2s ease;
}

.ccn-button:hover {
    transform: translateY(-2px);
}

.ccn-button:hover .ccn-svg {
    transform: translateX(4px);
}

.ccn-button:active {
    transform: translateY(0) scale(.985);
}

.ccn-button-primary {
    background: linear-gradient(90deg, #ef6200, #ff8100);
    box-shadow: 0 14px 34px rgba(255, 104, 0, .22);
}

.ccn-button-primary:hover {
    background: linear-gradient(90deg, #ff7800, #ff8f20);
    box-shadow: 0 18px 40px rgba(255, 104, 0, .29);
}

.ccn-button-ghost {
    color: #fff;
    background: rgba(13, 15, 16, .52);
    border-color: #55595c;
}

.ccn-button-ghost:hover,
.ccn-button-outline:hover {
    border-color: var(--ccn-orange);
    background: rgba(255, 113, 0, .08);
}

.ccn-button-outline {
    color: #fff;
    border-color: #4a4e51;
}

/* Landing hero */
.ccn-hero {
    position: relative;
    overflow: hidden;
    min-height: 670px;
    background:
        radial-gradient(circle at 74% 50%, rgba(255, 102, 0, .17), transparent 28%),
        linear-gradient(108deg, #070809 0%, #0a0c0d 49%, #15100c 100%);
    border-bottom: 1px solid #292c2e;
}

.ccn-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.25) 67%, transparent 100%);
    pointer-events: none;
}

.ccn-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 670px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 54px;
}

.ccn-hero-copy h1 {
    max-width: 690px;
    margin: 17px 0 24px;
    font-size: clamp(48px, 5.8vw, 79px);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: .98;
    text-transform: uppercase;
}

.ccn-hero-copy p {
    max-width: 620px;
    margin-bottom: 0;
    color: #b8b9b8;
    font-size: 18px;
}

.ccn-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.ccn-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 31px;
    color: #cecfce;
    font-size: 13px;
}

.ccn-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ccn-hero-points .ccn-svg {
    width: 17px;
    height: 17px;
    color: var(--ccn-orange);
}

.ccn-hero-visual {
    position: relative;
    min-height: 575px;
    display: grid;
    place-items: center;
}

.ccn-hero-visual::before {
    content: "";
    position: absolute;
    inset: 7% 3% 5%;
    background: linear-gradient(145deg, #202326, #0d0f10);
    border: 1px solid #323538;
    box-shadow: var(--ccn-shadow);
}

.ccn-hero-visual::after {
    content: "";
    position: absolute;
    right: 7%;
    bottom: 4%;
    left: 7%;
    height: 34%;
    background: linear-gradient(transparent, rgba(0,0,0,.72));
    pointer-events: none;
}

.ccn-hero-visual > img {
    position: relative;
    z-index: 2;
    width: min(590px, 93%);
    max-height: 570px;
    object-fit: contain;
    filter: drop-shadow(0 28px 35px rgba(0, 0, 0, .68));
}

.ccn-fire-glow {
    position: absolute;
    z-index: 1;
    width: 370px;
    height: 370px;
    background: radial-gradient(circle, rgba(255, 117, 0, .44), rgba(255, 94, 0, .08) 51%, transparent 72%);
    border-radius: 50%;
    filter: blur(20px);
    animation: ccn-fire-breathe 4.5s ease-in-out infinite;
}

.ccn-hero-card {
    position: absolute;
    right: -2px;
    bottom: 54px;
    z-index: 4;
    min-width: 220px;
    padding: 16px 18px;
    background: rgba(14, 16, 18, .94);
    border: 1px solid #404448;
    border-left: 3px solid var(--ccn-orange);
    box-shadow: var(--ccn-shadow);
}

.ccn-hero-card span {
    display: block;
    color: #8e9193;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ccn-hero-card strong {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    text-transform: uppercase;
}

/* Shared benefit strip */
.ccn-value-strip {
    background: linear-gradient(90deg, #121416, #191c1f 50%, #111315);
    border-top: 1px solid #292c2f;
    border-bottom: 1px solid #2b2e31;
}

.ccn-value-strip .ccn-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ccn-value-strip article {
    min-height: 108px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    border-right: 1px solid #303337;
}

.ccn-value-strip article:last-child {
    border-right: 0;
}

.ccn-value-strip article > .ccn-svg {
    width: 38px;
    height: 38px;
    padding: 7px;
    color: var(--ccn-orange);
    border: 1px solid #5a5e62;
    border-radius: 50%;
}

.ccn-value-strip strong,
.ccn-value-strip small {
    display: block;
}

.ccn-value-strip strong {
    color: #f1f1ef;
    font-size: 11px;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.ccn-value-strip small {
    margin-top: 3px;
    color: #929496;
    font-size: 11px;
}

/* Section hierarchy */
.ccn-section {
    padding: 92px 0;
}

.ccn-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 36px;
}

.ccn-section-heading h2,
.ccn-quality-copy h2,
.ccn-contact-cta h2 {
    max-width: 750px;
    margin: 10px 0 0;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1;
    text-transform: uppercase;
}

.ccn-section-heading > p {
    max-width: 520px;
    margin-bottom: 1px;
    color: var(--ccn-muted);
}

.ccn-categories {
    background:
        radial-gradient(circle at 84% 12%, rgba(255, 113, 0, .075), transparent 28%),
        #181b1e;
}

.ccn-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ccn-category-card {
    position: relative;
    overflow: hidden;
    min-height: 365px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 27px;
    color: #fff;
    background: #101214;
    border: 1px solid #363a3e;
    box-shadow: 0 18px 50px rgba(0,0,0,.16);
    isolation: isolate;
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.ccn-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7,8,9,.03) 20%, rgba(7,8,9,.2) 48%, rgba(7,8,9,.95) 88%);
}

.ccn-category-card::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 0;
    left: 0;
    z-index: 3;
    height: 3px;
    background: var(--ccn-orange);
    transition: right .34s ease;
}

.ccn-category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    transform: scale(1.02);
    filter: saturate(.86) contrast(1.05);
    transition: transform .55s ease, filter .55s ease;
}

.ccn-category-card > span,
.ccn-category-card > small,
.ccn-category-card > i {
    position: relative;
    z-index: 2;
}

.ccn-category-card > span {
    padding-right: 60px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.ccn-category-card > small {
    max-width: 78%;
    margin-top: 5px;
    color: #b5b6b5;
}

.ccn-category-card > i {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--ccn-orange);
    border: 1px solid #62666a;
    font-style: normal;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.ccn-category-card > i .ccn-svg {
    width: 19px;
    height: 19px;
}

.ccn-category-card:hover {
    z-index: 2;
    border-color: #555a5e;
    box-shadow: 0 28px 70px rgba(0,0,0,.32);
    transform: translateY(-7px);
}

.ccn-category-card:hover::after {
    right: 0;
}

.ccn-category-card:hover img {
    transform: scale(1.075);
    filter: saturate(1) contrast(1.08);
}

.ccn-category-card:hover > i {
    color: #fff;
    background: var(--ccn-orange);
    border-color: var(--ccn-orange);
    transform: translateX(3px);
}

.ccn-quality {
    background:
        radial-gradient(circle at 18% 50%, rgba(255, 108, 0, .12), transparent 26%),
        #0d0f11;
    border-top: 1px solid #202326;
    border-bottom: 1px solid #24272a;
}

.ccn-quality-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 66px;
}

.ccn-quality-image {
    position: relative;
    min-height: 565px;
    overflow: hidden;
    background: #111315;
    border: 1px solid #34383b;
    box-shadow: var(--ccn-shadow);
}

.ccn-quality-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.65));
    pointer-events: none;
}

.ccn-quality-image > img {
    width: 100%;
    height: 100%;
    min-height: 565px;
    object-fit: cover;
    transition: transform .7s ease;
}

.ccn-quality-image:hover > img {
    transform: scale(1.035);
}

.ccn-quality-seal {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    min-width: 210px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    background: rgba(8,9,10,.92);
    border: 1px solid #464a4d;
    border-left: 3px solid var(--ccn-orange);
}

.ccn-quality-seal > .ccn-svg {
    width: 36px;
    height: 36px;
    color: var(--ccn-orange);
}

.ccn-quality-seal span,
.ccn-quality-seal b {
    display: block;
}

.ccn-quality-seal span {
    color: #bbb;
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.ccn-quality-seal b {
    color: #fff;
    font-size: 13px;
}

.ccn-quality-copy > p {
    margin: 22px 0 0;
    color: #acaead;
    font-size: 17px;
}

.ccn-quality-list {
    margin: 30px 0;
    border-top: 1px solid #303438;
}

.ccn-quality-list article {
    display: flex;
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid #303438;
}

.ccn-quality-list article > .ccn-svg {
    width: 28px;
    height: 28px;
    color: var(--ccn-orange);
}

.ccn-quality-list strong,
.ccn-quality-list small {
    display: block;
}

.ccn-quality-list strong {
    font-size: 13px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.ccn-quality-list small {
    margin-top: 3px;
    color: #888b8d;
}

.ccn-process {
    background:
        linear-gradient(180deg, rgba(255,255,255,.012), transparent 20%),
        #171a1d;
}

.ccn-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ccn-process-card {
    position: relative;
    min-height: 275px;
    padding: 27px 24px;
    background: linear-gradient(145deg, #1d2023, #121416);
    border: 1px solid #34383c;
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
}

.ccn-process-card > span {
    position: absolute;
    top: 21px;
    right: 22px;
    color: #575b5e;
    font-size: 14px;
    font-weight: 900;
}

.ccn-process-card > .ccn-svg {
    width: 42px;
    height: 42px;
    margin: 18px 0 31px;
    color: var(--ccn-orange);
}

.ccn-process-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
    letter-spacing: -.015em;
    text-transform: uppercase;
}

.ccn-process-card p {
    margin-bottom: 0;
    color: #949799;
    font-size: 14px;
}

.ccn-process-card:hover {
    background: linear-gradient(145deg, #24282b, #151719);
    border-color: #565b5f;
    transform: translateY(-5px);
}

.ccn-contact-cta {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    display: grid;
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(6,7,8,.97) 0%, rgba(7,8,9,.90) 43%, rgba(7,8,9,.45) 75%, rgba(7,8,9,.72) 100%),
        var(--ccn-cta-image);
    background-position: center, 78% 53%;
    background-size: cover;
    border-top: 1px solid #303438;
    border-bottom: 1px solid #303438;
}

.ccn-contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 53%, rgba(255, 104, 0, .17), transparent 29%);
}

.ccn-contact-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 50px;
    padding-block: 74px;
}

.ccn-contact-cta p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #b3b5b4;
}

.ccn-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: flex-end;
}

/* Catalog page hero */
.ccn-catalog-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(5,6,7,.98) 0%, rgba(6,7,8,.93) 43%, rgba(6,7,8,.46) 76%, rgba(6,7,8,.68) 100%),
        var(--ccn-catalog-hero);
    background-position: center, 77% 47%;
    background-size: cover;
    border-bottom: 1px solid #303337;
}

.ccn-catalog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 50%, rgba(255, 108, 0, .18), transparent 25%);
}

.ccn-catalog-hero-inner {
    position: relative;
    z-index: 2;
    padding-block: 60px;
}

.ccn-breadcrumb {
    display: flex;
    gap: 11px;
    align-items: center;
    margin-bottom: 42px;
    color: #8c8f91;
    font-size: 12px;
}

.ccn-breadcrumb a:hover {
    color: #fff;
}

.ccn-breadcrumb b {
    color: var(--ccn-orange);
}

.ccn-catalog-hero h1 {
    margin: 9px 0 12px;
    font-size: clamp(48px, 6vw, 74px);
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: 1;
    text-transform: uppercase;
}

.ccn-catalog-hero p {
    max-width: 600px;
    margin-bottom: 0;
    color: #b8baba;
    font-size: 17px;
}

.ccn-catalog-shell {
    background: #101214;
    border-bottom: 1px solid #292c2f;
}

.ccn-catalog-layout {
    display: grid;
    grid-template-columns: 268px minmax(0, 1fr);
    align-items: start;
}

.ccn-filter-sidebar {
    position: sticky;
    top: 92px;
    min-height: calc(100vh - 92px);
    padding: 32px 28px 44px 0;
    border-right: 1px solid #2d3033;
}

body.admin-bar .ccn-filter-sidebar {
    top: 124px;
}

.ccn-filter-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 21px;
    border-bottom: 1px solid #303337;
}

.ccn-filter-sidebar-head h2 {
    margin: 0;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ccn-filter-sidebar-head button {
    display: none;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    background: #17191b;
    border: 1px solid #3c4043;
}

.ccn-filter-group {
    padding: 25px 0;
    border-bottom: 1px solid #2d3033;
}

.ccn-filter-group h3 {
    margin-bottom: 16px;
    color: #f0f0ef;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ccn-filter-group label {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    align-items: center;
    gap: 9px;
    min-height: 31px;
    color: #b5b7b7;
    font-size: 12px;
    cursor: pointer;
}

.ccn-filter-group label:hover {
    color: #fff;
}

.ccn-filter-group input[type="checkbox"],
.ccn-filter-group input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--ccn-orange);
}

.ccn-filter-group label b {
    color: #777a7c;
    font-size: 11px;
    font-weight: 600;
}

.ccn-price-filter input[type="range"] {
    width: 100%;
    accent-color: var(--ccn-orange);
}

.ccn-price-filter > div {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #a4a6a7;
    font-size: 11px;
}

.ccn-clear-filters {
    width: 100%;
    min-height: 43px;
    margin-top: 24px;
    color: #fff;
    background: transparent;
    border: 1px solid var(--ccn-orange-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: background .2s ease, border-color .2s ease;
}

.ccn-clear-filters:hover {
    background: rgba(255, 113, 0, .08);
    border-color: var(--ccn-orange);
}

.ccn-catalog-content {
    min-width: 0;
    padding: 31px 0 56px 31px;
}

.ccn-catalog-toolbar {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.ccn-catalog-toolbar > p {
    margin: 0;
    color: #898c8e;
    font-size: 12px;
}

.ccn-catalog-toolbar > p b {
    color: #bfc1c0;
}

.ccn-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.ccn-toolbar-actions > label:last-child {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #85888a;
    font-size: 11px;
    white-space: nowrap;
}

.ccn-search-field {
    min-width: 225px;
    height: 45px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    color: #777a7d;
    background: #151719;
    border: 1px solid #373a3d;
}

.ccn-search-field .ccn-svg {
    width: 18px;
    height: 18px;
}

.ccn-search-field input {
    width: 100%;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 12px;
}

.ccn-search-field input::placeholder {
    color: #737679;
}

.ccn-toolbar-actions select {
    min-width: 148px;
    height: 45px;
    padding: 0 38px 0 13px;
    color: #fff;
    background: #151719;
    border: 1px solid #373a3d;
    font-size: 12px;
}

.ccn-mobile-filter-button {
    display: none;
    align-items: center;
    gap: 9px;
    min-height: 43px;
    padding: 0 14px;
    color: #fff;
    background: #181a1c;
    border: 1px solid #45494c;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.ccn-mobile-filter-button .ccn-svg {
    width: 18px;
    height: 18px;
    color: var(--ccn-orange);
}

/* Product cards */
.ccn-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ccn-product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #17191b;
    border: 1px solid #303337;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.ccn-product-card:hover {
    z-index: 2;
    border-color: #555a5e;
    box-shadow: 0 22px 48px rgba(0,0,0,.32);
    transform: translateY(-5px);
}

.ccn-product-image {
    position: relative;
    width: 100%;
    height: 245px;
    display: grid;
    place-items: center;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 48%, rgba(255, 113, 0, .08), transparent 40%),
        linear-gradient(145deg, #292c2f, #141618);
    border: 0;
}

.ccn-product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,.12));
}

.ccn-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    filter: drop-shadow(0 18px 20px rgba(0,0,0,.55));
    transition: transform .48s ease;
}

.ccn-product-card:hover .ccn-product-image img {
    transform: scale(1.055);
}

.ccn-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 9px;
    color: #fff;
    background: var(--ccn-orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.ccn-product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 16px 17px;
}

.ccn-product-category {
    color: var(--ccn-orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.ccn-product-info h3 {
    margin: 6px 0 7px;
    color: #f2f2ef;
    font-size: 14px;
    line-height: 1.25;
    text-transform: uppercase;
}

.ccn-product-info p {
    margin-bottom: 15px;
    color: #989a9b;
    font-size: 12px;
}

.ccn-product-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.ccn-product-footer small,
.ccn-product-footer strong {
    display: block;
}

.ccn-product-footer small {
    color: #747779;
    font-size: 10px;
}

.ccn-product-footer strong {
    margin-top: 2px;
    color: var(--ccn-orange);
    font-size: 18px;
}

.ccn-product-footer button {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 1px solid #4a4e52;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.ccn-product-footer button .ccn-svg {
    width: 19px;
    height: 19px;
}

.ccn-product-footer button:hover {
    background: var(--ccn-orange);
    border-color: var(--ccn-orange);
    transform: translateY(-2px);
}

.ccn-empty-products {
    padding: 55px 20px;
    color: #898c8e;
    text-align: center;
    border: 1px dashed #45494c;
}

.ccn-pagination {
    min-height: 45px;
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 29px;
}

.ccn-pagination button {
    min-width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    padding: 0 10px;
    color: #c4c5c4;
    background: #151719;
    border: 1px solid #3a3e41;
    font-size: 12px;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.ccn-pagination button:hover,
.ccn-pagination button.is-active {
    color: #fff;
    background: var(--ccn-orange);
    border-color: var(--ccn-orange);
}

.ccn-pagination button:disabled {
    opacity: .35;
    cursor: default;
}

.ccn-catalog-benefits {
    background: #141719;
}

.ccn-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 178;
    visibility: hidden;
    opacity: 0;
    background: rgba(0,0,0,.7);
    transition: opacity .25s ease, visibility .25s ease;
}

.ccn-filter-backdrop.is-visible {
    visibility: visible;
    opacity: 1;
}

/* Footer */
.ccn-footer {
    padding: 64px 0 24px;
    background: #08090a;
}

.ccn-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, .7fr);
    gap: 42px;
}

.ccn-footer .ccn-brand img {
    width: 235px;
    height: auto;
}

.ccn-footer-brand p {
    max-width: 360px;
    margin: 20px 0 0;
    color: #8e9192;
    font-size: 13px;
}

.ccn-footer h3 {
    margin: 0 0 16px;
    color: #efefec;
    font-size: 11px;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.ccn-footer a:not(.ccn-brand) {
    display: block;
    margin: 7px 0;
    color: #8e9192;
    font-size: 12px;
    transition: color .2s ease;
}

.ccn-footer a:not(.ccn-brand):hover {
    color: #fff;
}

.ccn-footer p {
    color: #8e9192;
}

.ccn-footer-grid > div:last-child p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 9px 0;
    font-size: 12px;
}

.ccn-footer-grid > div:last-child .ccn-svg {
    width: 18px;
    height: 18px;
    color: var(--ccn-orange);
}

.ccn-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    padding-top: 22px;
    color: #666a6c;
    border-top: 1px solid #26292b;
    font-size: 11px;
}

/* Cart, modal and checkout */
.ccn-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    background: rgba(0,0,0,.76);
    backdrop-filter: blur(3px);
    transition: opacity .25s ease, visibility .25s ease;
}

.ccn-overlay.is-visible {
    visibility: visible;
    opacity: 1;
}

.ccn-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 210;
    width: min(470px, 100%);
    display: flex;
    flex-direction: column;
    background: #101214;
    border-left: 1px solid #363a3d;
    box-shadow: -24px 0 70px rgba(0,0,0,.35);
    transform: translateX(102%);
    transition: transform .32s cubic-bezier(.2,.8,.2,1);
}

.ccn-cart-drawer.is-visible {
    transform: translateX(0);
}

.ccn-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px;
    border-bottom: 1px solid #303438;
}

.ccn-drawer-head span {
    display: block;
    color: var(--ccn-orange);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ccn-drawer-head strong {
    display: block;
    margin-top: 2px;
    font-size: 20px;
}

.ccn-drawer-head button,
.ccn-modal-close,
.ccn-checkout-header button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: #fff;
    background: #171a1c;
    border: 1px solid #43474a;
}

.ccn-drawer-head button .ccn-svg,
.ccn-modal-close .ccn-svg,
.ccn-checkout-header button .ccn-svg {
    width: 20px;
    height: 20px;
}

.ccn-cart-items {
    flex: 1;
    overflow: auto;
    padding: 18px 21px;
}

.ccn-cart-empty {
    padding: 75px 18px;
    color: #85888a;
    text-align: center;
}

.ccn-cart-empty .ccn-svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    color: #55595c;
}

.ccn-cart-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 13px;
    padding: 16px 0;
    border-bottom: 1px solid #2c3033;
}

.ccn-cart-item img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    background: #1a1d20;
}

.ccn-cart-item h3 {
    margin: 0 0 5px;
    font-size: 13px;
    text-transform: uppercase;
}

.ccn-cart-item-price {
    color: var(--ccn-orange);
    font-weight: 900;
}

.ccn-qty {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 9px;
}

.ccn-qty button,
.ccn-cart-remove {
    display: grid;
    place-items: center;
    padding: 0;
}

.ccn-qty button {
    width: 29px;
    height: 29px;
    color: #fff;
    background: #181b1d;
    border: 1px solid #3c4043;
}

.ccn-qty button .ccn-svg {
    width: 15px;
    height: 15px;
}

.ccn-cart-remove {
    width: 34px;
    height: 34px;
    color: #777b7d;
    background: transparent;
    border: 0;
}

.ccn-cart-remove:hover {
    color: #e66551;
}

.ccn-cart-remove .ccn-svg {
    width: 18px;
    height: 18px;
}

.ccn-cart-footer {
    padding: 21px;
    background: #0d0f11;
    border-top: 1px solid #303438;
}

.ccn-cart-footer > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 19px;
}

.ccn-cart-footer .ccn-button {
    width: 100%;
}

.ccn-product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 220;
    width: min(1060px, calc(100% - 34px));
    max-height: 90vh;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    background: #111315;
    border: 1px solid #373b3e;
    box-shadow: var(--ccn-shadow);
    transform: translate(-50%, -46%) scale(.975);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.ccn-product-modal.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.ccn-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
}

.ccn-product-modal-grid {
    display: grid;
    grid-template-columns: 1.07fr .93fr;
}

.ccn-modal-image {
    position: relative;
    min-height: 590px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(255, 111, 0, .12), transparent 42%),
        #1a1d1f;
}

.ccn-modal-image img {
    position: relative;
    z-index: 2;
    width: 93%;
    max-height: 545px;
    object-fit: contain;
    filter: drop-shadow(0 25px 30px rgba(0,0,0,.62));
}

.ccn-modal-content {
    padding: 52px 38px;
}

.ccn-modal-content h2 {
    margin: 10px 0 16px;
    font-size: 39px;
    letter-spacing: -.035em;
    line-height: 1;
    text-transform: uppercase;
}

.ccn-modal-price {
    color: var(--ccn-orange);
    font-size: 31px;
    font-weight: 950;
}

.ccn-modal-description {
    margin: 15px 0;
    color: #a7a9a9;
}

.ccn-modal-description p {
    margin-bottom: 10px;
}

.ccn-modal-content ul {
    margin: 19px 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #303438;
}

.ccn-modal-content li {
    padding: 10px 0;
    color: #b6b8b8;
    border-bottom: 1px solid #303438;
}

.ccn-modal-content li::before {
    content: "•";
    margin-right: 9px;
    color: var(--ccn-orange);
}

.ccn-modal-buy-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 11px;
    margin-top: 23px;
}

.ccn-modal-buy-row label {
    color: #919496;
    font-size: 10px;
    text-transform: uppercase;
}

.ccn-modal-buy-row input {
    width: 100%;
    height: 47px;
    display: block;
    margin-top: 5px;
    padding: 0 12px;
    color: #fff;
    background: #181a1c;
    border: 1px solid #3d4144;
}

.ccn-text-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 0;
    color: var(--ccn-orange);
    background: transparent;
    border: 0;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.ccn-text-button .ccn-svg {
    width: 17px;
    height: 17px;
}

.ccn-checkout {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    overflow: auto;
    background: #0d0f10;
}

.ccn-checkout.is-visible {
    display: block;
}

.ccn-checkout-header {
    position: sticky;
    top: 0;
    z-index: 4;
    background: #070809;
    border-bottom: 1px solid #2c3033;
}

.ccn-checkout-header .ccn-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ccn-checkout-header .ccn-brand img {
    width: 230px;
    height: 66px;
}

.ccn-checkout-grid {
    display: grid;
    grid-template-columns: 1.14fr .86fr;
    gap: 29px;
    padding: 42px 0 72px;
}

.ccn-checkout-card,
.ccn-order-summary {
    margin-bottom: 18px;
    padding: 25px;
    background: #151719;
    border: 1px solid #303438;
}

.ccn-checkout-card h2,
.ccn-order-summary h2 {
    margin: 0 0 21px;
    font-size: 16px;
    text-transform: uppercase;
}

.ccn-checkout-card h2 span {
    width: 31px;
    height: 31px;
    display: inline-grid;
    place-items: center;
    margin-right: 9px;
    background: var(--ccn-orange);
    border-radius: 50%;
}

.ccn-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.ccn-form-grid label {
    color: #aaa;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.ccn-form-grid input,
.ccn-form-grid textarea {
    width: 100%;
    display: block;
    margin-top: 6px;
    padding: 12px;
    color: #fff;
    background: #101214;
    border: 1px solid #3c4043;
    outline: none;
}

.ccn-form-grid input:focus,
.ccn-form-grid textarea:focus {
    border-color: var(--ccn-orange);
    box-shadow: 0 0 0 2px rgba(255,113,0,.12);
}

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

.ccn-shipping-options {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.ccn-shipping-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #101214;
    border: 1px solid #3a3e41;
}

.ccn-shipping-option.is-selected {
    border-color: var(--ccn-orange);
}

.ccn-shipping-option input {
    margin-top: 4px;
    accent-color: var(--ccn-orange);
}

.ccn-shipping-option strong,
.ccn-shipping-option small {
    display: block;
}

.ccn-shipping-option small {
    color: #85888a;
}

.ccn-shipping-option b {
    margin-left: auto;
}

.ccn-shipping-note {
    margin-top: 14px;
    color: #85888a;
    font-size: 12px;
}

.ccn-transfer-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--ccn-orange);
}

.ccn-transfer-option i {
    width: 21px;
    height: 21px;
    border: 5px solid var(--ccn-orange);
    border-radius: 50%;
}

.ccn-transfer-option div {
    flex: 1;
}

.ccn-transfer-option strong,
.ccn-transfer-option small {
    display: block;
}

.ccn-transfer-option small {
    color: #898c8e;
}

.ccn-transfer-option > b {
    padding: 4px 6px;
    color: var(--ccn-orange);
    border: 1px solid var(--ccn-orange);
    font-size: 9px;
    text-transform: uppercase;
}

.ccn-order-summary {
    position: sticky;
    top: 98px;
    height: max-content;
}

.ccn-checkout-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 11px 0;
    border-bottom: 1px solid #303438;
}

.ccn-checkout-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #202326;
}

.ccn-checkout-item strong,
.ccn-checkout-item small {
    display: block;
}

.ccn-checkout-item strong {
    font-size: 12px;
    text-transform: uppercase;
}

.ccn-checkout-item small {
    color: #838688;
}

.ccn-summary-line,
.ccn-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #303438;
}

.ccn-summary-total {
    font-size: 23px;
    text-transform: uppercase;
}

.ccn-summary-total strong {
    color: var(--ccn-orange);
}

.ccn-order-summary .ccn-button {
    width: 100%;
    margin-top: 18px;
}

.ccn-order-summary > p {
    color: #747779;
    font-size: 11px;
    text-align: center;
}

.ccn-order-success {
    max-width: 720px;
    margin: 70px auto;
    padding: 38px;
    background: #151719;
    border: 1px solid #303438;
    text-align: center;
}

.ccn-success-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    color: #8ad35b;
    background: #1b3823;
    border-radius: 50%;
}

.ccn-success-icon .ccn-svg {
    width: 35px;
    height: 35px;
}

.ccn-order-success h2 {
    margin: 9px 0;
    font-size: 39px;
    text-transform: uppercase;
}

.ccn-bank-card {
    margin: 24px 0;
    padding: 20px;
    background: #101214;
    border: 1px solid #3b3f42;
    text-align: left;
}

.ccn-bank-card h3 {
    margin: 0 0 13px;
    text-transform: uppercase;
}

.ccn-bank-card p {
    margin: 7px 0;
    color: #b4b6b6;
}

.ccn-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 400;
    padding: 12px 17px;
    color: #111;
    background: #fff;
    box-shadow: var(--ccn-shadow);
    font-weight: 800;
    opacity: 0;
    transform: translate(-50%, 90px);
    transition: transform .28s ease, opacity .28s ease;
}

.ccn-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.ccn-lock {
    overflow: hidden !important;
}

/* Motion */
.ccn-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .66s ease var(--ccn-delay, 0s), transform .66s cubic-bezier(.2,.75,.25,1) var(--ccn-delay, 0s);
}

.ccn-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.ccn-hero-enter {
    opacity: 0;
    transform: translateY(22px) scale(.99);
}

.ccn-app.is-ready .ccn-hero-enter {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity .72s ease var(--ccn-delay, 0s), transform .72s cubic-bezier(.2,.75,.25,1) var(--ccn-delay, 0s);
}

@keyframes ccn-fire-breathe {
    0%, 100% { opacity: .68; transform: scale(.96); }
    50% { opacity: 1; transform: scale(1.06); }
}

@keyframes ccn-cart-bump {
    0%, 100% { transform: scale(1); }
    45% { transform: scale(1.32); }
}

/* Tablet */
@media (max-width: 1180px) {
    .ccn-links {
        gap: 20px;
    }

    .ccn-brand img {
        width: 215px;
    }

    .ccn-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ccn-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ccn-catalog-layout {
        grid-template-columns: 245px minmax(0, 1fr);
    }
}

@media (max-width: 1020px) {
    .ccn-container {
        width: min(var(--ccn-max), calc(100% - 36px));
    }

    .ccn-links {
        position: absolute;
        top: calc(100% + 1px);
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 18px;
        background: #101214;
        border: 1px solid #34383b;
        box-shadow: var(--ccn-shadow);
    }

    .ccn-links.is-open {
        display: flex;
    }

    .ccn-links a,
    .ccn-header.is-scrolled .ccn-links a {
        padding: 13px 2px;
        border-bottom: 1px solid #2d3033;
    }

    .ccn-links a:last-child {
        border-bottom: 0;
    }

    .ccn-links a::after {
        bottom: 6px;
    }

    .ccn-menu-button {
        display: grid;
    }

    .ccn-hero-grid,
    .ccn-quality-grid,
    .ccn-contact-cta-inner,
    .ccn-checkout-grid {
        grid-template-columns: 1fr;
    }

    .ccn-hero-grid {
        padding: 60px 0 36px;
    }

    .ccn-hero-visual {
        min-height: 500px;
    }

    .ccn-quality-grid {
        gap: 42px;
    }

    .ccn-category-grid {
        grid-template-columns: 1fr;
    }

    .ccn-category-card {
        min-height: 360px;
    }

    .ccn-value-strip .ccn-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .ccn-value-strip article:nth-child(2) {
        border-right: 0;
    }

    .ccn-value-strip article:nth-child(-n+2) {
        border-bottom: 1px solid #303337;
    }

    .ccn-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ccn-contact-cta-inner {
        align-items: start;
    }

    .ccn-contact-actions {
        justify-content: flex-start;
    }

    .ccn-catalog-layout {
        display: block;
    }

    .ccn-filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 180;
        width: min(340px, 90vw);
        height: 100vh;
        min-height: 0;
        overflow: auto;
        padding: 22px 24px 40px;
        background: #111315;
        border-right: 1px solid #3b3f42;
        box-shadow: 22px 0 70px rgba(0,0,0,.4);
        transform: translateX(-102%);
        transition: transform .3s cubic-bezier(.2,.8,.2,1);
    }

    body.admin-bar .ccn-filter-sidebar {
        top: 0;
    }

    .ccn-filter-sidebar.is-open {
        transform: translateX(0);
    }

    .ccn-filter-sidebar-head button {
        display: grid;
    }

    .ccn-catalog-content {
        padding-left: 0;
    }

    .ccn-mobile-filter-button {
        display: inline-flex;
    }

    .ccn-catalog-toolbar {
        flex-wrap: wrap;
    }

    .ccn-catalog-toolbar > p {
        order: 2;
        width: 100%;
    }

    .ccn-toolbar-actions {
        margin-left: auto;
    }

    .ccn-product-modal-grid {
        grid-template-columns: 1fr;
    }

    .ccn-modal-image {
        min-height: 420px;
    }

    .ccn-order-summary {
        position: static;
    }
}

/* Mobile */
@media (max-width: 782px) {
    body.ccn-site-body.admin-bar {
        padding-top: 46px !important;
    }

    body.ccn-site-body.admin-bar .ccn-header {
        top: 46px;
    }
}

@media (max-width: 720px) {
    :root {
        --ccn-header-height: 72px;
    }

    .ccn-container {
        width: calc(100% - 28px);
    }

    .ccn-topbar .ccn-container {
        justify-content: center;
    }

    .ccn-topbar span:nth-child(n+2) {
        display: none;
    }

    .ccn-topbar span {
        white-space: normal;
        text-align: center;
    }

    .ccn-brand img,
    .ccn-header.is-scrolled .ccn-brand img {
        width: 165px;
        height: 54px;
    }

    .ccn-nav {
        gap: 8px;
    }

    .ccn-nav-actions {
        gap: 0;
    }

    .ccn-icon-button {
        width: 39px;
        height: 39px;
    }

    .ccn-icon-button .ccn-svg {
        width: 19px;
        height: 19px;
    }

    .ccn-hero,
    .ccn-hero-grid {
        min-height: auto;
    }

    .ccn-hero-grid {
        gap: 28px;
        padding: 48px 0 30px;
    }

    .ccn-hero-copy h1 {
        font-size: 43px;
    }

    .ccn-hero-copy p {
        font-size: 16px;
    }

    .ccn-hero-points {
        display: grid;
        gap: 10px;
    }

    .ccn-hero-visual {
        min-height: 365px;
    }

    .ccn-hero-visual::before {
        inset: 4% 0 4%;
    }

    .ccn-hero-visual > img {
        width: 100%;
        max-height: 380px;
    }

    .ccn-hero-card {
        right: 7px;
        bottom: 26px;
        min-width: 190px;
    }

    .ccn-value-strip .ccn-container {
        grid-template-columns: 1fr;
    }

    .ccn-value-strip article,
    .ccn-value-strip article:nth-child(2) {
        min-height: 92px;
        border-right: 0;
        border-bottom: 1px solid #303337;
    }

    .ccn-value-strip article:last-child {
        border-bottom: 0;
    }

    .ccn-section {
        padding: 64px 0;
    }

    .ccn-section-heading {
        display: block;
        margin-bottom: 28px;
    }

    .ccn-section-heading > p {
        margin-top: 14px;
    }

    .ccn-section-heading h2,
    .ccn-quality-copy h2,
    .ccn-contact-cta h2 {
        font-size: 38px;
    }

    .ccn-category-card {
        min-height: 330px;
        padding: 22px;
    }

    .ccn-category-card > span {
        font-size: 20px;
    }

    .ccn-quality-image,
    .ccn-quality-image > img {
        min-height: 410px;
    }

    .ccn-quality-seal {
        right: 15px;
        bottom: 15px;
        min-width: 190px;
    }

    .ccn-process-grid {
        grid-template-columns: 1fr;
    }

    .ccn-process-card {
        min-height: 230px;
    }

    .ccn-contact-cta {
        background-position: center, 62% 50%;
    }

    .ccn-contact-cta-inner {
        gap: 30px;
        padding-block: 60px;
    }

    .ccn-contact-actions,
    .ccn-hero-actions {
        display: grid;
    }

    .ccn-button {
        width: 100%;
    }

    .ccn-catalog-hero {
        min-height: 315px;
        background-position: center, 66% 50%;
    }

    .ccn-breadcrumb {
        margin-bottom: 34px;
    }

    .ccn-catalog-hero h1 {
        font-size: 51px;
    }

    .ccn-catalog-content {
        padding-block: 24px 46px;
    }

    .ccn-catalog-toolbar {
        align-items: stretch;
    }

    .ccn-mobile-filter-button {
        justify-content: center;
    }

    .ccn-toolbar-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        margin: 0;
    }

    .ccn-toolbar-actions > label:last-child {
        justify-content: space-between;
    }

    .ccn-search-field {
        min-width: 0;
        width: 100%;
    }

    .ccn-toolbar-actions select {
        flex: 1;
        min-width: 0;
    }

    .ccn-product-grid {
        grid-template-columns: 1fr;
    }

    .ccn-product-image {
        height: 310px;
    }

    .ccn-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ccn-footer-bottom {
        display: block;
    }

    .ccn-footer-bottom span {
        display: block;
        margin-top: 5px;
    }

    .ccn-modal-content {
        padding: 34px 21px;
    }

    .ccn-modal-content h2 {
        font-size: 30px;
    }

    .ccn-modal-image {
        min-height: 340px;
    }

    .ccn-modal-buy-row,
    .ccn-form-grid {
        grid-template-columns: 1fr;
    }

    .ccn-full {
        grid-column: auto;
    }

    .ccn-checkout-grid {
        padding-top: 20px;
    }

    .ccn-checkout-card,
    .ccn-order-summary {
        padding: 18px;
    }

    .ccn-order-success {
        margin: 20px 14px;
        padding: 26px 18px;
    }

    .ccn-order-success h2 {
        font-size: 29px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html.ccn-html {
        scroll-behavior: auto;
    }

    .ccn-app *,
    .ccn-app *::before,
    .ccn-app *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .ccn-reveal,
    .ccn-hero-enter {
        opacity: 1 !important;
        transform: none !important;
    }
}
