:root {
    /* Palette */
    --cl-bg: #FDFCF7;
    --cl-surface: #FFFFFF;
    --cl-surface-muted: #F5EFEB;
    --cl-ink: #241A14;
    --cl-text: #4B4038;
    --cl-muted: #5F6A5D;
    --cl-accent: #C5A059;
    --cl-success: #4A5D4E;
    --cl-danger: #B94A3C;
    --cl-white: #FFFFFF;

    /* Shape */
    --cl-radius-sm: 12px;
    --cl-radius-md: 20px;
    --cl-radius-xl: 40px;

    /* Effects */
    --cl-glass: rgba(255, 255, 255, 0.70);
    --cl-glass-strong: rgba(255, 255, 255, 0.86);
    --cl-glass-border: rgba(255, 255, 255, 0.54);
    --cl-shadow-sm: 0 4px 20px rgba(36, 26, 20, 0.04);
    --cl-shadow-md: 0 18px 48px rgba(36, 26, 20, 0.08);
    --cl-shadow-lg: 0 30px 70px rgba(36, 26, 20, 0.12);


    /* font-weight  */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 600;
    --fw-bolder: 700;
}




/* Announcement ticker */
.cl-ticker {
    background: var(--cl-ink);
    color: var(--cl-bg);
    overflow-x: clip;
    overflow-y: visible;
    padding: 13px 0;
    position: relative;
    z-index: 2100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cl-ticker-track {
    display: flex;
    gap: 60px;
    animation: cl-infinite-scroll-track 45s linear infinite;
    width: max-content;
}

.cl-ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cl-ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cl-accent);
}

@keyframes cl-infinite-scroll-track {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
    }
}

/* Home hero */
.cl-hero {
    position: relative;
    height: calc(100vh - 36px);
    min-height: 640px;
    /* margin-bottom: clamp(36px, 5vw, 72px); */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
    z-index: 2500;
    isolation: isolate;
    background-size: cover;
    background-position: center;
}

.cl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(253, 252, 247, 0.98) 0%, rgba(253, 252, 247, 0.9) 34%, rgba(253, 252, 247, 0.34) 62%, rgba(253, 252, 247, 0.05) 100%),
        linear-gradient(180deg, rgba(253, 252, 247, 0.12) 0%, rgba(253, 252, 247, 0) 55%, rgba(253, 252, 247, 0.86) 100%);
}

.cl-hero-inner {
    /* max-width: 1560px; */
    margin: 0 auto;
    /* padding: 0 60px; */
    display: grid;
    grid-template-columns: minmax(640px, 0.64fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    width: 100%;
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    position: relative;
    z-index: 2;
    padding-bottom: 72px;

}

/* Home hero content */
.cl-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 80;
    width: min(100%, 860px);
}

.cl-overline {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cl-muted);
    margin-bottom: 8px;
}

.cl-overline-line {
    width: 40px;
    height: 1px;
    background: var(--cl-muted);
}

.cl-headline {
    font-size: clamp(34px, 3.35vw, 48px);
    font-weight: 400;
    color: var(--cl-ink);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
    max-width: 760px;
}

.cl-headline-italic {
    display: block;
    font-weight: 600;
    color: var(--cl-accent);
    margin-top: 6px;
    letter-spacing: -0.01em;
}

.cl-subheadline {
    font-size: 14px;
    line-height: 1.5;
    color: var(--cl-text);
    max-width: 760px;
    margin: 0 0 14px 0;
    font-weight: 400;
}

/* CALL TO ACTIONS */
.cl-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.cl-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--cl-ink);
    color: var(--cl-surface) !important;
    font-size: 13px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: var(--cl-radius-xl);
    text-decoration: none !important;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(36, 26, 20, 0.15);
    letter-spacing: 0.02em;
}

.cl-cta-main:hover {
    transform: translateY(-3px);
    background: var(--cl-accent);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
}

.cl-cta-main svg {
    transition: transform 300ms ease;
}

.cl-cta-main:hover svg {
    transform: translateX(5px);
}

.cl-cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 26px;
    border: 1px solid var(--cl-glass-border);
    border-radius: var(--cl-radius-xl);
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-ink) !important;
    text-decoration: none !important;
    transition: all 300ms ease;
    background: transparent;
    letter-spacing: 0.02em;
}

.cl-cta-outline:hover {
    border-color: var(--cl-ink);
    background: rgba(36, 26, 20, 0.02);
    transform: translateY(-2px);
}

/* PREMIUM SEARCH INTEGRATION ARCHITECTURE */
.cl-search-card {
    background: var(--cl-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--cl-glass-border);
    padding: 12px;
    border-radius: var(--cl-radius-md);
    width: 100%;
    max-width: 720px;
    box-shadow: var(--cl-shadow-lg);
    position: relative;
    z-index: 2200;
    overflow: visible;
}

.cl-hero+.section,
.cl-hero+.home-section-spacing,
.cl-hero~.section,
.cl-hero~.home-section-spacing {
    position: relative;
    z-index: 1;
    /* margin-top: clamp(36px, 5vw, 72px); */
}

.cl-search-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.cl-search-card-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cl-muted);
    display: inline-block;
}

.cl-search-card-title {
    font-size: 11px;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cl-ink);
    margin: 0;
    opacity: 0.6;
}

.cl-search-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.cl-filter-label {
    font-size: 12px;
    color: var(--cl-muted);
    font-weight: 500;
    margin-right: 4px;
}

.cl-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 26, 20, 0.04);
    border: 1px solid transparent;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--cl-ink);
    cursor: pointer;
    text-decoration: none !important;
    transition: all 250ms ease;
}

.cl-filter-chip:hover {
    background: rgba(36, 26, 20, 0.08);
}

.cl-filter-chip.active {
    background: var(--cl-surface);
    border-color: rgba(36, 26, 20, 0.15);
    box-shadow: var(--cl-shadow-sm);
    font-weight: 600;
}

/* Home hero visual */
.cl-hero-visual {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100%;
    margin-left: calc(50% - 50vw);
    display: block;
    isolation: isolate;
    z-index: 1;
    pointer-events: none;
}


.cl-molecule-svg-overlay {
    position: absolute;
    inset: 4% 2% 0 42%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.55;
}

.cl-main-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    z-index: 3;
    box-shadow: none;
    background: transparent;
    border: 0;
}

.cl-scene-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
    display: block;
    filter: none;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cl-main-scene:hover .cl-scene-img {
    transform: scale(1.04);
}

.cl-scene-shimmer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 38%, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(90deg, rgba(253, 252, 247, 0.72) 0%, rgba(253, 252, 247, 0.18) 44%, rgba(253, 252, 247, 0) 100%);
    pointer-events: none;
    z-index: 4;
}

/* FLOATING WIDGETS */
.cl-widget {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(36, 26, 20, 0.06);
    border-radius: var(--cl-radius-sm);
    padding: 13px 16px;
    box-shadow: 0 18px 38px rgba(36, 26, 20, 0.10);
    z-index: 10;
    transition: transform 400ms ease, box-shadow 400ms ease;
}

.cl-widget:hover {
    transform: translateY(-4px);
    box-shadow: var(--cl-shadow-lg);
    border-color: rgba(143, 158, 139, 0.4);
}

.cl-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 22px;
}

/* Widget 1 Specs */
.cl-widget-verdict {
    top: 12%;
    right: clamp(28px, 7vw, 118px);
    left: auto;
    width: 220px;
}

.cl-badge-success {
    font-size: 10px;
    font-weight: var(--fw-bold);
    background: rgba(143, 158, 139, 0.15);
    color: var(--cl-success);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cl-widget-time {
    font-size: 11px;
    color: var(--cl-muted);
}

.cl-product-title {
    font-size: 13px;
    font-weight: var(--fw-bold);
    color: var(--cl-ink);
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cl-gauge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.cl-mini-progress {
    flex-grow: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.cl-mini-progress-bar {
    height: 100%;
    background: var(--cl-success);
    border-radius: 2px;
}

.cl-gauge-score {
    font-size: 12px;
    font-weight: var(--fw-bold);
    color: var(--cl-success);
}

.cl-widget-note {
    font-size: 11px;
    color: var(--cl-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cl-dot-green {
    width: 6px;
    height: 6px;
    background: var(--cl-success);
    border-radius: 50%;
}

/* Widget 2 Specs */
.cl-widget-alert {
    bottom: 30%;
    right: clamp(28px, 7vw, 118px);
    width: 226px;
    border-left: 3px solid var(--cl-danger);
}

.cl-badge-danger {
    font-size: 10px;
    font-weight: var(--fw-bold);
    background: rgba(201, 125, 96, 0.15);
    color: var(--cl-danger);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cl-alert-pulse {
    width: 6px;
    height: 6px;
    background: var(--cl-danger);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(201, 125, 96, 0.7);
    animation: cl-pulse-effect 1.6s infinite;
}

@keyframes cl-pulse-effect {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 125, 96, 0.5);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(201, 125, 96, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 125, 96, 0);
    }
}

.cl-alert-main-text {
    font-size: 13px;
    font-weight: var(--fw-bold);
    color: var(--cl-ink);
    margin: 0 0 2px 0;
}

.cl-alert-sub-text {
    font-size: 12px;
    color: var(--cl-text);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.cl-widget-action-link {
    font-size: 11px;
    font-weight: var(--fw-bold);
    color: var(--cl-danger) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity 200ms ease;
}

.cl-widget-action-link:hover {
    opacity: 0.8;
}

/* Widget 3 Specs */
.cl-widget-counter {
    bottom: 16%;
    right: clamp(20px, 6vw, 90px);
    left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    border-radius: var(--cl-radius-sm);
}

.oeko-btn-ghost {
    background: transparent;
    border: 1px solid rgba(36, 26, 20, 0.06);
    padding: 6px 14px;
    border-radius: var(--cl-radius-sm);
    font-size: 11px;
    font-weight: 500;
    color: var(--cl-ink) !important;
    text-decoration: none !important;
    transition: all 250ms ease;
}

.oeko-btn-ghost:hover {
    background: rgba(36, 26, 20, 0.04);
    border-color: rgba(36, 26, 20, 0.15);
    box-shadow: var(--cl-shadow-sm);
}

.cl-counter-item-mini {
    display: flex;
    flex-direction: column;
}

.cl-counter-accent {
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--cl-ink);
    line-height: 1.1;
}

.cl-counter-lbl-mini {
    font-size: 10px;
    color: var(--cl-muted);
    font-weight: 500;
}

.cl-counter-sep-mini {
    width: 1px;
    height: 24px;
    background: rgba(36, 26, 20, 0.1);
}


/* Home stats ribbon */
.cl-stats-ribbon {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 5;
}

.cl-stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(36, 26, 20, 0.06);
    border-radius: var(--cl-radius-md);
    padding: 16px 30px;
    box-shadow: 0 18px 48px rgba(36, 26, 20, 0.10);
    gap: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cl-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.cl-stat-item:first-child {
    justify-content: flex-start;
}

.cl-stat-item:last-child {
    justify-content: flex-end;
}

.cl-stat-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: var(--cl-radius-sm);
    background: var(--cl-bg);
    border: 1px solid rgba(36, 26, 20, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-muted);
}

.cl-stat-meta {
    display: block;
    min-width: 0;
}

.cl-stat-num {
    display: inline-block;
    font-size: 22px;
    font-weight: var(--fw-bold);
    color: var(--cl-ink);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.cl-stat-suffix {
    display: inline-block;
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--cl-ink);
    line-height: 1.1;
    vertical-align: baseline;
}

.cl-stat-lbl {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: var(--cl-muted);
    margin-top: 4px;
    line-height: 1.35;
}

.cl-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(36, 26, 20, 0.06);
    margin: 0;
    flex: 0 0 auto;
}

/* Custom Structural Shims for Live Ads Component */
.animate-ad {
    transition: opacity 0.4s ease;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Responsive home hero */
@media (max-width: 1280px) {
    .cl-hero-inner {
        grid-template-columns: minmax(600px, 0.62fr) minmax(0, 1fr);
        gap: 24px;
        padding: 0 40px 72px;
    }

    .cl-hero-content {
        width: min(100%, 820px);
    }

    .cl-search-card {
        max-width: 700px;
    }

    .cl-stats-ribbon {
        padding: 0 40px;
    }

    .cl-stats-inner {
        padding: 16px 24px;
    }

    .cl-stat-item {
        gap: 12px;
    }
}

@media (max-width: 1100px) {
    .cl-hero {
        height: auto;
        min-height: 100vh;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .cl-hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        height: auto;
        padding-bottom: 0;
    }

    .cl-hero-content {
        align-items: center;
    }

    .cl-subheadline {
        max-width: 100%;
    }

    .cl-cta-row {
        justify-content: center;
    }

    .cl-search-card {
        max-width: 100%;
    }

    .cl-hero-visual {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: 760px;
        height: 620px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: var(--cl-radius-md);
    }

    .cl-widget-counter {
        right: 24px;
        bottom: 24px;
    }

    .cl-stats-ribbon {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 40px;
    }

    .cl-stats-inner {
        flex-wrap: wrap;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .cl-stat-sep {
        display: none;
    }

    .cl-stat-item,
    .cl-stat-item:first-child,
    .cl-stat-item:last-child {
        justify-content: flex-start;
        padding: 10px;
    }
}

@media (max-width: 768px) {

    .cl-hero+.section,
    .cl-hero+.home-section-spacing,
    .cl-hero~.section,
    .cl-hero~.home-section-spacing {
        margin-top: 12px;
    }

    .mobile-nav-language {
        margin-top: 4px;
    }

    .mobile-nav-language .languages.drop-down {
        width: 100%;
        margin-bottom: 0;
    }

    .mobile-nav-language .languages.drop-down .drop-down-btn {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 44px;
        padding: 10px 8px;
        border-radius: 8px;
        color: var(--text_color);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
    }

    .mobile-nav-language .languages.drop-down .drop-down-btn:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .mobile-nav-language .languages.drop-down .language-img {
        margin-right: 10px;
    }

    .mobile-nav-language .languages.drop-down .language-img img {
        width: 28px;
        height: 28px;
    }

    .mobile-nav-language .languages.drop-down .drop-down-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin-top: 4px;
        padding: 6px;
        background: #fafafa;
        border: 0;
        border-radius: 10px;
        box-shadow: none;
        transform: none;
    }

    .mobile-nav-language .languages.drop-down.active .drop-down-menu {
        display: block;
    }

    .mobile-nav-language .languages.drop-down .drop-down-menu .drop-down-item {
        min-height: 40px;
        padding: 8px 10px;
        border-radius: 8px;
        color: var(--text_color);
        font-size: 14px;
    }

    .cl-hero {
        min-height: auto;
        padding-top: 28px;
        padding-bottom: 24px;
        margin-bottom: 36px;
        background-position: 62% center;
    }

    .cl-hero::before {
        background:
            linear-gradient(180deg, rgba(253, 252, 247, 0.98) 0%, rgba(253, 252, 247, 0.94) 42%, rgba(253, 252, 247, 0.46) 78%, rgba(253, 252, 247, 0.88) 100%);
    }

    .cl-hero-inner {
        padding: 0 24px;
        gap: 24px;
    }

    .cl-headline {
        font-size: 34px;
    }

    .cl-subheadline {
        font-size: 14px;
    }

    .cl-cta-row {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        gap: 10px;
    }

    .cl-cta-main,
    .cl-btn-outline {
        min-height: 44px;
        width: auto;
        min-width: 0;
        justify-content: center;
        padding: 11px 14px;
        font-size: 11px;
        line-height: 1;
        white-space: nowrap;
    }

    .cl-cta-main {
        flex: 1.08 1 0;
        gap: 8px;
    }

    .cl-btn-outline {
        flex: 0.92 1 0;
        justify-content: center;
    }

    .cl-search-card {
        padding: 10px;
        border-radius: 16px;
    }

    .cl-search-filters {
        gap: 8px;
    }

    .cl-filter-label {
        flex: 0 0 100%;
        text-align: left;
    }

    .cl-filter-chip {
        font-size: 11px;
        padding: 5px 10px;
    }

    .cl-hero-visual {
        height: clamp(170px, 44vw, 260px);
        max-width: 100%;
    }

    .cl-widget-counter {
        right: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
        gap: 10px;
        padding: 9px 12px;
    }

    .cl-counter-item-mini {
        min-width: 0;
    }

    .cl-counter-lbl-mini {
        line-height: 1.2;
    }

    .cl-main-scene {
        width: 100%;
        height: 100%;
    }

    .cl-widget-verdict {
        left: 2%;
        right: auto;
        top: 4%;
    }

    .cl-widget-alert {
        right: 2%;
        left: auto;
        bottom: 4%;
    }

    .cl-stats-ribbon {
        padding: 0 24px;
        margin-top: 40px;
    }

    .cl-stats-inner {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .cl-hero {
        padding-top: 22px;
        padding-bottom: 14px;
        margin-bottom: 32px;
    }

    .cl-hero-inner {
        padding: 0 16px;
        gap: 18px;
    }

    .cl-overline {
        font-size: 10px;
        gap: 10px;
        margin-bottom: 6px;
    }

    .cl-overline-line {
        width: 24px;
    }

    .cl-headline {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .cl-subheadline {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 12px;
    }

    .cl-cta-row {
        gap: 10px;
        margin-bottom: 12px;
    }

    .cl-cta-main,
    .cl-btn-outline {
        min-height: 40px;
        padding: 10px 10px;
        font-size: 10px;
    }

    .cl-stats-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cl-hero-visual {
        display: none;
    }

    .cl-widget {
        padding: 12px;
        width: min(200px, calc(100% - 24px));
    }

    .cl-widget-counter {
        width: auto;
        right: 10px;
        bottom: 10px;
        gap: 8px;
        padding: 8px 10px;
    }

    .cl-counter-accent {
        font-size: 15px;
    }

    .cl-counter-lbl-mini {
        font-size: 9px;
    }

    .cl-widget-verdict {
        top: 2%;
        left: 0;
        right: auto;
    }

    .cl-widget-alert {
        bottom: 2%;
        right: 0;
        left: auto;
    }

    .cl-product-title,
    .cl-alert-main-text {
        font-size: 12px;
    }

    .cl-stat-num {
        font-size: 24px;
    }
}

/* Premium footer */
.cl-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(197, 160, 89, 0.08), transparent 40%),
        radial-gradient(circle at 92% 86%, rgba(95, 106, 93, 0.10), transparent 40%),
        linear-gradient(145deg, #1a1712 0%, #14120e 100%);
    color: var(--cl-white);
    border-top: 1px solid rgba(197, 160, 89, 0.22);
}

.cl-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.38;
}

.cl-footer-wrap {
    position: relative;
    z-index: 1;
    padding-top: clamp(54px, 7vw, 92px);
    padding-bottom: 26px;
}

.cl-footer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
    margin-bottom: 42px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cl-footer-brand,
.cl-footer-newsletter,
.cl-footer-panel,
.cl-footer-links,
.cl-footer-contact {
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.cl-footer-brand,
.cl-footer-newsletter {
    border-radius: 0;
}

.cl-footer-brand {
    padding: 0;
}

.cl-footer-overline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.cl-footer-overline::before {
    content: '';
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: var(--cl-accent);
}

.cl-footer-title {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--cl-white);
    font-size: clamp(2.5rem, 5vw, 2.7rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
}

.cl-footer-title span {
    display: block;
    color: var(--cl-accent);
    font-weight: var(--fw-bold);
}

.cl-footer-desc {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.7;
}

.cl-footer-newsletter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    max-width: 430px;
    margin-left: auto;
}

.cl-footer-newsletter-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.cl-footer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cl-accent);
    box-shadow: 0 0 0 6px rgba(197, 160, 89, 0.14);
}

.cl-footer-newsletter-head p,
.cl-footer-newsletter h3,
.cl-footer-newsletter p {
    margin: 0;
}

.cl-footer-newsletter-head p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cl-footer-newsletter h3 {
    color: var(--cl-white);
    font-size: 1.45rem;
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: 10px;
}

.cl-footer-newsletter>p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin-bottom: 18px;
}

div[wire\:snapshot]:has(> .footer-subscribe) {
    width: 100%;
}

.cl-footer-newsletter .footer-subscribe {
    margin: 0 !important;
    padding: 0 !important;
}

.cl-footer-newsletter .footer-subscribe>h3,
.cl-footer-newsletter .footer-subscribe>p {
    display: none;
}

.cl-footer-newsletter .input-group-absolute input {
    padding-right: 150px !important;
    border-radius: 999px !important;
}

.cl-footer-newsletter .input-group-absolute .btn {
    right: 5px;
    border-radius: 999px !important;
}

.cl-footer-newsletter .form-control,
.cl-footer-newsletter input[type="email"],
.cl-footer-newsletter input[type="text"] {
    min-height: 52px;
    color: var(--cl-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.cl-footer-newsletter .form-control::placeholder,
.cl-footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.cl-footer-newsletter .btn,
.cl-footer-newsletter button {
    min-height: 52px;
    border-radius: 999px;
    background: var(--cl-accent);
    border-color: var(--cl-accent);
    color: var(--cl-ink);
    font-weight: var(--fw-bold);
}

.cl-footer-grid {
    display: grid;
    grid-template-columns: minmax(190px, 1.2fr) repeat(3, minmax(150px, 1fr));
    gap: clamp(24px, 4vw, 54px);
    margin-bottom: 34px;
}

.cl-footer-panel,
.cl-footer-links,
.cl-footer-contact {
    min-height: 0;
    padding: 0;
    border-radius: 0;
}

.cl-footer-proof {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cl-footer-proof-num {
    color: var(--cl-accent);
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: var(--fw-bolder);
    line-height: 0.9;
}

.cl-footer-proof-text,
.cl-footer-contact p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cl-footer-links h3,
.cl-footer-contact h3 {
    margin: 0 0 16px;
    color: var(--cl-white);
    font-size: 0.78rem;
    font-weight: var(--fw-bolder);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cl-footer-links a,
.cl-footer-contact a {
    display: flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    font-weight: var(--fw-medium);
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.cl-footer-links a:not(:last-child),
.cl-footer-contact a:not(:last-child) {
    margin-bottom: 10px;
}

.cl-footer-links a:hover,
.cl-footer-contact a:hover {
    color: var(--cl-accent);
    transform: translateX(4px);
}

.cl-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cl-footer-mark {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cl-footer-mark span {
    color: var(--cl-white);
    font-size: 1.1rem;
    font-weight: var(--fw-bolder);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cl-footer-logo {
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
    /* filter: brightness(0) invert(1); */
}

.cl-footer-mark small,
.cl-footer-bottom p {
    color: #f1f1f1f1;
    font-size: 0.86rem;
}

.cl-footer-bottom p {
    margin: 0;
    text-align: center;
}



.cl-footer-dev {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.cl-footer-dev::before,
.cl-footer-dev::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    opacity: 0.5;
    transition: width 0.38s cubic-bezier(0.23, 1, 0.32, 1),
        height 0.38s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.3s ease,
        opacity 0.3s ease;
}

.cl-footer-dev::before {
    top: 0;
    left: 0;
    border-top: 2px solid rgba(255, 255, 255, 0.55);
    border-left: 2px solid rgba(255, 255, 255, 0.55);
}

.cl-footer-dev::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.55);
    border-right: 2px solid rgba(255, 255, 255, 0.55);
}

.cl-footer-dev__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--cl-accent);
    font-size: 13px;
    flex-shrink: 0;
    transition: background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.cl-footer-dev__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1;
}

.cl-footer-dev__by {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f1f1f1f1;
    transition: color 0.3s ease;
}

.cl-footer-dev__text img {
    display: block;
    height: 65px;
    width: auto;
    /* opacity: 0.75; */
    transition: opacity 0.3s ease, filter 0.3s ease;
    /* filter: brightness(0) invert(1); */
}

.cl-footer-dev:hover::before,
.cl-footer-dev:hover::after {
    width: 100%;
    height: 100%;
    border-color: var(--cl-accent);
    opacity: 1;
}

.cl-footer-dev:hover .cl-footer-dev__icon {
    background: rgba(197, 160, 89, 0.22);
    border-color: rgba(197, 160, 89, 0.55);
    color: var(--cl-accent);
    transform: rotate(-8deg) scale(1.08);
}

.cl-footer-dev:hover .cl-footer-dev__by {
    color: rgba(197, 160, 89, 0.8);
}

.cl-footer-dev:hover .cl-footer-dev__text img {
    opacity: 1;
    filter: brightness(0) invert(69%) sepia(50%) saturate(497%) hue-rotate(5deg) brightness(92%) contrast(89%);
}

@media (max-width: 991.98px) {

    .cl-footer-hero,
    .cl-footer-bottom {
        grid-template-columns: 1fr;
    }

    .cl-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cl-footer-brand,
    .cl-footer-newsletter,
    .cl-footer-bottom {
        text-align: center;
    }

    .cl-footer-logo {
        margin-inline: auto;
    }

    .cl-footer-newsletter {
        max-width: 560px;
        margin-inline: auto;
    }

    .cl-footer-overline {
        justify-content: center;
    }

    .cl-footer-links a,
    .cl-footer-contact a {
        width: auto;
        justify-content: center;
    }

    .cl-footer-dev {
        justify-self: center;
    }
}

@media (max-width: 575.98px) {
    .cl-footer-wrap {
        padding-top: 42px;
    }

    .cl-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .cl-footer-brand,
    .cl-footer-newsletter,
    .cl-footer-panel,
    .cl-footer-links,
    .cl-footer-contact {
        padding: 0;
        border-radius: 0;
    }

    .cl-footer-proof {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .cl-footer-contact {
        grid-column: 1 / -1;
    }

    .cl-footer-links,
    .cl-footer-contact {
        position: relative;
        padding-top: 24px;
        border-top: 0;
        width: max-content;
        max-width: 100%;
        margin-inline: auto;
        text-align: start;
    }

    .cl-footer-links {
        width: fit-content;
    }

    .cl-footer-links::before,
    .cl-footer-contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: calc(100vw - 48px);
        max-width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(-50%);
    }

    .cl-footer-links h3,
    .cl-footer-contact h3,
    .cl-footer-contact p {
        text-align: start;
    }

    .cl-footer-links a,
    .cl-footer-contact a {
        justify-content: flex-start;
    }

    .cl-footer-newsletter,
    .cl-footer-newsletter-head {
        align-items: flex-start;
        text-align: start;
    }

    .cl-footer-newsletter {
        width: 100%;
        max-width: 100%;
    }

    .cl-footer-newsletter .footer-subscribe,
    .cl-footer-newsletter .footer-subscribe>form,
    .cl-footer-newsletter .footer-subscribe>div {
        display: block;
        width: 100% !important;
        max-width: none !important;
    }

    .cl-footer-newsletter h3,
    .cl-footer-newsletter>p {
        text-align: start;
    }

    .cl-footer-newsletter .input-group-absolute {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        width: 100% !important;
        max-width: none !important;
    }

    .cl-footer-newsletter .input-group-absolute input {
        display: block;
        flex: 0 0 auto;
        width: 100% !important;
        max-width: none !important;
        padding-right: 1rem !important;
    }

    .cl-footer-newsletter .input-group-absolute .btn {
        display: flex;
        justify-content: center;
        position: static;
        flex: 0 0 auto;
        width: 100% !important;
        max-width: none !important;
    }
}

/* Trust section */
.cl-trust-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(197, 160, 89, 0.12), transparent 32%),
        radial-gradient(circle at 92% 78%, rgba(95, 106, 93, 0.14), transparent 36%),
        linear-gradient(135deg, var(--cl-bg) 0%, var(--cl-surface-muted) 100%);
}

.cl-trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(95, 106, 93, 0.12) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    opacity: 0.55;
}

.cl-trust-wrap {
    position: relative;
    z-index: 1;
}

.cl-trust-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 54px;
    align-items: center;
}

.cl-trust-content {
    max-width: 520px;
}

.cl-trust-overline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cl-trust-overline::before {
    content: '';
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: var(--cl-muted);
}

.cl-trust-title {
    margin: 0 0 18px;
    color: var(--cl-ink);
    font-size: clamp(2.6rem, 5vw, 2.2rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.cl-trust-title span {
    display: block;
    color: var(--cl-accent);
    font-weight: var(--fw-bold);
}

.cl-trust-desc {
    max-width: 560px;
    margin: 0 0 26px;
    color: var(--cl-text);
    font-size: 1rem;
    line-height: 1.65;
}

.cl-trust-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cl-trust-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    color: var(--cl-white);
    background: var(--cl-ink);
    border-radius: var(--cl-radius-xl);
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cl-trust-btn:hover {
    color: var(--cl-white);
    background: var(--cl-text);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-2px);
}

.cl-trust-btn svg {
    transition: transform 0.25s ease;
}

.cl-trust-btn:hover svg {
    transform: translateX(4px);
}

.cl-trust-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cl-trust-card {
    position: relative;
    min-height: 330px;
    padding: 28px;
    overflow: hidden;
    background: var(--cl-glass);
    border: 1px solid var(--cl-glass-border);
    border-radius: 18px;
    box-shadow: var(--cl-shadow-md);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.cl-trust-card:hover {
    background: var(--cl-glass-strong);
    border-color: rgba(197, 160, 89, 0.42);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-6px);
}

.cl-trust-card-featured {
    background: linear-gradient(145deg, rgba(36, 26, 20, 0.94), rgba(75, 64, 56, 0.9));
    border-color: rgba(197, 160, 89, 0.26);
    box-shadow: var(--cl-shadow-lg);
}

.cl-trust-card-featured:hover {
    background: linear-gradient(145deg, rgba(36, 26, 20, 0.96), rgba(75, 64, 56, 0.94));
    border-color: rgba(197, 160, 89, 0.42);
}

.cl-trust-card::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.14), transparent 68%);
    pointer-events: none;
}

.cl-trust-icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--cl-accent);
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 16px;
    font-size: 1.35rem;
}

.cl-trust-card-featured .cl-trust-icon {
    color: var(--cl-white);
    background: rgba(197, 160, 89, 0.2);
    border-color: rgba(255, 255, 255, 0.18);
}

.cl-trust-card-kicker {
    margin: 0 0 12px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cl-trust-card-title {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--cl-ink);
    font-size: 1.35rem;
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

.cl-trust-card-text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--cl-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.cl-trust-card-featured .cl-trust-card-kicker,
.cl-trust-card-featured .cl-trust-card-text {
    color: rgba(255, 255, 255, 0.76);
}

.cl-trust-card-featured .cl-trust-card-title {
    color: var(--cl-white);
}

@media (max-width: 991.98px) {
    .cl-trust-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cl-trust-content {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .cl-trust-overline,
    .cl-trust-actions {
        justify-content: center;
    }

    .cl-trust-cards {
        max-width: 760px;
        margin-inline: auto;
    }
}

@media (max-width: 767.98px) {
    .cl-trust-cards {
        grid-template-columns: 1fr;
    }

    .cl-trust-card {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .cl-trust-title {
        font-size: 2.1rem;
    }

    .cl-trust-btn {
        width: 100%;
    }
}

/* Process / banners section */
.cl-process-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 16%, rgba(212, 175, 55, 0.14), transparent 34%),
        radial-gradient(circle at 8% 82%, rgba(143, 158, 139, 0.16), transparent 38%),
        linear-gradient(135deg, var(--cl-bg) 0%, var(--cl-surface-muted) 100%);
}

.cl-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(253, 252, 247, 0.88), rgba(253, 252, 247, 0.38));
}

.cl-process-wrap {
    position: relative;
    z-index: 1;
}

.cl-process-header {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.cl-process-overline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cl-process-overline::before {
    content: '';
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: var(--cl-muted);
}

.cl-process-overline::after {
    content: '';
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: var(--cl-muted);
}

.cl-process-title {
    margin: 0 0 14px;
    color: var(--cl-ink);
    font-size: clamp(2.6rem, 5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.cl-process-title span {
    display: block;
    color: var(--cl-accent);
    font-weight: var(--fw-bold);
}

.cl-process-desc {
    max-width: 680px;
    margin: 0 auto;
    color: var(--cl-text);
    font-size: 1rem;
    line-height: 1.6;
}

.cl-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.cl-process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 28px;
    overflow: hidden;
    background: var(--cl-glass);
    border: 1px solid var(--cl-glass-border);
    border-radius: 18px;
    box-shadow: var(--cl-shadow-md);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cl-process-card:hover {
    border-color: rgba(212, 175, 55, 0.42);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-6px);
}

.cl-process-card::after {
    content: attr(data-step);
    position: absolute;
    right: 20px;
    bottom: -20px;
    color: rgba(197, 160, 89, 0.12);
    font-size: 7.5rem;
    font-weight: var(--fw-bolder);
    line-height: 1;
}

.cl-process-icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--cl-accent);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    font-size: 1.35rem;
}

.cl-process-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cl-process-step::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cl-accent);
}

.cl-process-card-title {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: var(--cl-ink);
    font-size: 1.35rem;
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

.cl-process-card-desc {
    position: relative;
    z-index: 1;
    margin: 0 0 24px;
    color: var(--cl-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.cl-process-proof {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(143, 158, 139, 0.2);
    color: var(--cl-text);
    font-size: 0.82rem;
    font-weight: var(--fw-bold);
}

.cl-process-proof span {
    color: var(--cl-accent);
    font-size: 1.3rem;
    font-weight: var(--fw-bolder);
    line-height: 1;
}

.cl-process-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 34px;
    align-items: center;
    margin-top: 46px;
    padding: 34px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(253, 252, 247, 0.94) 0%, rgba(253, 252, 247, 0.72) 48%, rgba(245, 239, 235, 0.18) 100%),
        var(--cl-process-cta-bg);
    background-size: cover;
    background-position: center right;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(36, 26, 20, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cl-process-cta::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 68%);
    pointer-events: none;
}

.cl-process-cta-content,
.cl-process-cta-visual {
    position: relative;
    z-index: 1;
}

.cl-process-cta-title {
    margin: 0 0 14px;
    color: var(--cl-ink);
    font-size: clamp(2rem, 3.6vw, 2.4rem);
    font-weight: 500;
    line-height: 1.12;
}

.cl-process-cta-title span {
    display: block;
    color: var(--cl-accent);
    font-weight: var(--fw-bold);
}

.cl-process-cta-desc {
    max-width: 620px;
    margin: 0 0 24px;
    color: var(--cl-text);
    font-size: 1rem;
    line-height: 1.65;
}

.cl-process-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.cl-process-btn,
.cl-process-btn-outline {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cl-process-btn {
    gap: 12px;
    padding: 14px 28px;
    color: var(--cl-white);
    background: var(--cl-ink);
}

.cl-process-btn:hover {
    color: var(--cl-white);
    background: var(--cl-text);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-2px);
}

.cl-process-btn svg {
    transition: transform 0.25s ease;
}

.cl-process-btn:hover svg {
    transform: translateX(4px);
}

.cl-process-btn-outline {
    padding: 13px 26px;
    color: var(--cl-ink);
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(197, 160, 89, 0.34);
}

.cl-process-btn-outline:hover {
    color: var(--cl-ink);
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(197, 160, 89, 0.58);
    transform: translateY(-2px);
}

.cl-process-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cl-process-perk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cl-muted);
    font-size: 0.85rem;
    font-weight: var(--fw-bold);
}

.cl-process-perk::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cl-accent);
}

.cl-process-cta-visual {
    display: flex;
    justify-content: center;
}

.cl-process-image {
    width: min(100%, 420px);
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cl-process-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(18px 24px 34px rgba(36, 26, 20, 0.16));
}

@media (max-width: 991.98px) {
    .cl-process-header {
        margin-inline: auto;
        text-align: center;
    }

    .cl-process-overline {
        justify-content: center;
    }

    .cl-process-grid,
    .cl-process-cta {
        grid-template-columns: 1fr;
    }

    .cl-process-cta {
        text-align: center;
    }

    .cl-process-actions,
    .cl-process-perks {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .cl-process-title {
        font-size: 2.1rem;
    }

    .cl-process-card,
    .cl-process-cta {
        padding: 22px;
    }

    .cl-process-btn,
    .cl-process-btn-outline {
        width: 100%;
    }
}

/* Ingredients section */
.ingredients-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(253, 252, 247, 0.9) 0%, rgba(245, 239, 235, 0.94) 100%),
        var(--cl-bg);
}

.ingredients-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(212, 175, 55, 0.16), transparent 34%),
        radial-gradient(circle at 82% 72%, rgba(143, 158, 139, 0.18), transparent 42%);
    pointer-events: none;
}

.ingredients-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-left: var(--home_section_spacing_x);
    padding-right: var(--home_section_spacing_x);
}

.ingredients-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredients-showcase {
    position: relative;
    width: min(100%, 600px);
    height: 560px;
}

.ingredients-product {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(20px 30px 40px rgba(36, 26, 20, 0.15));
    border-radius: 18px;
}

.ingredients-product:hover {
    filter: drop-shadow(24px 36px 48px rgba(36, 26, 20, 0.25));
    transform: translateY(-4px) scale(1.02);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.ingredients-deco-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.ingredients-deco-circle-1 {
    width: 430px;
    height: 430px;
}

.ingredients-deco-circle-2 {
    width: 330px;
    height: 330px;
    border-color: rgba(212, 175, 55, 0.14);
}

.ingredients-bubble {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
    animation: ingredientsFloatBubble 9s infinite ease-in-out;
}

.ingredients-bubble-1 {
    width: 58px;
    height: 58px;
    top: 14%;
    left: 35%;
}

.ingredients-bubble-2 {
    width: 38px;
    height: 38px;
    top: 66%;
    right: 22%;
    animation-delay: 1.5s;
}

.ingredients-bubble-3 {
    width: 76px;
    height: 76px;
    bottom: 12%;
    left: 44%;
    animation-delay: 3s;
}

.ingredients-bubble-4 {
    width: 30px;
    height: 30px;
    top: 30%;
    right: 38%;
    animation-delay: 4.5s;
}

.ingredient-info-card {
    position: absolute;
    z-index: 4;
    width: 230px;
    max-width: min(230px, 72vw);
    padding: 18px 22px;
    background: var(--cl-glass);
    border: 1px solid var(--cl-glass-border);
    border-radius: 16px;
    box-shadow: var(--cl-shadow-md), 0 2px 8px rgba(36, 26, 20, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.ingredient-info-card:hover {
    background: var(--cl-glass-strong);
    box-shadow: 0 16px 48px rgba(36, 26, 20, 0.12);
    transform: translateY(-6px) scale(1.02);
}

.ingredient-card-1 {
    top: 12%;
    left: 4%;
    animation: ingredientsFloatCard 6s ease-in-out infinite;
}

.ingredient-card-2 {
    top: 52%;
    right: 3%;
    animation: ingredientsFloatCard 7s ease-in-out infinite 1s;
}

.ingredient-card-3 {
    bottom: 10%;
    left: 18px;
    animation: ingredientsFloatCard 8s ease-in-out infinite 2s;
}

.ingredient-info-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.ingredient-info-card .badge-value {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.ingredient-info-card-title {
    color: var(--cl-ink);
    font-size: 1rem;
    font-weight: var(--fw-bold);
    letter-spacing: -0.3px;
}

.ingredient-info-card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    font-size: 0.8rem;
    font-weight: var(--fw-bold);
    text-transform: lowercase;
    line-height: 1.2;
    white-space: nowrap;
}

.ingredient-status-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--cl-white);
    font-size: 11px;
    line-height: 1;
}

.ingredient-status-risky {
    color: var(--cl-danger);
}

.ingredient-status-risky .ingredient-status-icon {
    background: var(--cl-danger);
}

.ingredient-status-safe {
    color: var(--cl-success);
}

.ingredient-status-safe .ingredient-status-icon {
    background: var(--cl-success);
}

.ingredient-status-mixed {
    color: var(--cl-accent);
}

.ingredient-status-mixed .ingredient-status-icon {
    background: var(--cl-accent);
}

.ingredient-info-card-divider {
    width: 24px;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 8px;
    background: var(--cl-accent);
    border-radius: 2px;
    opacity: 0.65;
}

.ingredient-info-card-desc {
    margin: 0;
    color: var(--cl-text);
    font-size: 0.82rem;
    line-height: 1.4;
}

.ingredients-content {
    position: relative;
    z-index: 5;
    padding-left: 20px;
}

.ingredients-section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.ingredients-section-label::before {
    content: '';
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: var(--cl-muted);
}

.ingredients-heading {
    margin-bottom: 18px;
    color: var(--cl-ink);
    font-size: clamp(2.7rem, 5vw, 2.45rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.ingredients-heading-highlight {
    display: block;
    color: var(--cl-accent);
    font-weight: var(--fw-bold);
}

.ingredients-heading-highlight::after {
    content: none;
}

.ingredients-description {
    max-width: 640px;
    margin-bottom: 24px;
    color: var(--cl-text);
    font-size: 1rem;
    line-height: 1.55;
}

.ingredients-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.ingredients-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    color: var(--cl-white);
    background: var(--cl-ink);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.ingredients-cta:hover {
    color: var(--cl-white);
    background: var(--cl-text);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-2px);
}

.ingredients-cta svg {
    transition: transform 0.3s ease;
}

.ingredients-cta:hover svg {
    transform: translateX(4px);
}

.ingredients-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 28px;
    color: var(--cl-ink);
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(197, 160, 89, 0.34);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.ingredients-cta-outline:hover {
    color: var(--cl-ink);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(197, 160, 89, 0.58);
    transform: translateY(-2px);
}

.ingredient-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ingredient-badge {
    padding: 24px 20px;
    text-align: center;
    background: var(--cl-glass);
    border: 1px solid var(--cl-glass-border);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.ingredient-badge:hover {
    background: var(--cl-glass-strong);
    box-shadow: 0 12px 40px rgba(36, 26, 20, 0.08);
    transform: translateY(-4px);
}

.badge-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--cl-accent);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 12px;
    font-size: 1.35rem;
}

.badge-label {
    display: block;
    margin-bottom: 6px;
    color: var(--cl-muted);
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.badge-value {
    display: block;
    margin-bottom: 8px;
    color: var(--cl-ink);
    font-size: 0.95rem;
    font-weight: var(--fw-bold);
}

.badge-description {
    margin: 0;
    color: var(--cl-muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.ingredient-report-page {
    padding: clamp(32px, 5vw, 72px) var(--home_section_spacing_x);
    background:
        radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.18), transparent 34%),
        linear-gradient(180deg, #f7f1e6 0%, #f4ede2 48%, #efe6d8 100%);
}

.ingredient-report-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    overflow: hidden;
    background: rgba(255, 252, 246, 0.94);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(36, 26, 20, 0.1);
}

.ingredient-report-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: clamp(22px, 3vw, 34px);
    padding: clamp(28px, 5vw, 58px);
    background:
        linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(242, 232, 213, 0.86)),
        radial-gradient(circle at 88% 12%, rgba(47, 109, 72, 0.12), transparent 30%);
    border-bottom: 1px solid rgba(36, 26, 20, 0.08);
}

.ingredient-report-kicker,
.ingredient-report-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

.ingredient-report-kicker::before,
.ingredient-report-section-label::before {
    content: '';
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--cl-accent);
    border-radius: 50%;
}

.ingredient-report-title-row {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ingredient-report-image {
    display: grid;
    width: 180px;
    justify-items: center;
    align-self: start;
    flex: 0 0 auto;
    margin: 0;
}

.ingredient-report-image img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(36, 26, 20, 0.08);
}

.ingredient-report-image figcaption {
    margin-top: 10px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.35;
    text-align: center;
    overflow-wrap: anywhere;
}

.ingredient-report-title {
    margin: 0;
    color: var(--cl-ink);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 650;
    letter-spacing: 0;
    line-height: 0.98;
}

.ingredient-report-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.ingredient-report-meta span,
.ingredient-report-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    color: var(--cl-text);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(36, 26, 20, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

.ingredient-report-intro {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--cl-text);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.75;
}

.ingredient-report-score {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 86px minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 18px;
    box-shadow: 0 14px 44px rgba(36, 26, 20, 0.06);
}

.ingredient-report-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
}

.ingredient-report-badge-high {
    color: #8d332d;
    background: rgba(201, 88, 78, 0.14);
}

.ingredient-report-badge-moderate {
    color: #8a641c;
    background: rgba(209, 164, 79, 0.18);
}

.ingredient-report-badge-low {
    color: #365c45;
    background: rgba(84, 116, 94, 0.16);
}

.ingredient-report-stamp {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding-right: 18px;
    border-right: 1px solid rgba(36, 26, 20, 0.16);
}

.ingredient-report-stamp img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.ingredient-report-stamp span {
    color: var(--cl-ink);
    font-size: 0.62rem;
    font-weight: var(--fw-bolder);
    letter-spacing: 1px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.ingredient-report-scale {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ingredient-report-scale-edge {
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ingredient-report-scale-list {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.ingredient-report-scale-score {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: #fff;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: var(--fw-bolder);
    line-height: 1;
}

.ingredient-report-scale-score.active {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px currentColor, 0 12px 28px rgba(36, 26, 20, 0.16);
    font-size: 1.2rem;
}

.ingredient-report-scale-score-low {
    background: #16a34a;
}

.ingredient-report-scale-score-moderate {
    background: #ea580c;
}

.ingredient-report-scale-score-high {
    background: #dc2626;
}

.ingredient-report-scale-legend {
    display: grid;
    gap: 8px;
    padding-left: 20px;
    border-left: 1px solid rgba(36, 26, 20, 0.16);
}

.ingredient-report-scale-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cl-ink);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.25;
}

.ingredient-report-dot-low,
.ingredient-report-dot-moderate,
.ingredient-report-dot-high {
    display: inline-flex;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin: 0;
}

.ingredient-report-dot-low {
    background: #16a34a;
}

.ingredient-report-dot-moderate {
    background: #ea580c;
}

.ingredient-report-dot-high {
    background: #dc2626;
}

.ingredient-report-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: clamp(28px, 4vw, 54px);
    padding: clamp(28px, 5vw, 58px);
}

.ingredient-report-main {
    min-width: 0;
}

.ingredient-report-section {
    padding: 0 0 clamp(28px, 4vw, 42px);
    margin-bottom: clamp(28px, 4vw, 42px);
    border-bottom: 1px solid rgba(36, 26, 20, 0.1);
}

.ingredient-report-section:last-child {
    border-bottom: 0;
}

.ingredient-report-section h2,
.ingredient-report-panel h2 {
    margin: 0 0 14px;
    color: var(--cl-ink);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 650;
    line-height: 1.18;
}

.ingredient-report-section p,
.ingredient-report-panel p,
.ingredient-report-note p {
    margin: 0;
    color: var(--cl-text);
    font-size: 0.98rem;
    line-height: 1.75;
}

.ingredient-report-chip-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.ingredient-report-chip-label {
    flex: 0 0 100%;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.ingredient-report-highlight {
    padding: 18px 20px;
    margin-bottom: 22px !important;
    color: var(--cl-ink) !important;
    background: rgba(197, 160, 89, 0.12);
    border-radius: 16px;
}

.ingredient-report-concern-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(36, 26, 20, 0.08);
}

.ingredient-report-concern {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(36, 26, 20, 0.08);
    border-radius: 0;
}

.ingredient-report-concern:first-child {
    border-top: 0;
}

.ingredient-report-concern .accordion-button {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr) auto 18px;
    gap: 12px;
    align-items: center;
    padding: 18px 0;
    color: var(--cl-ink);
    background: transparent;
    border: 0;
    border-radius: 0 !important;
    box-shadow: none;
    font-weight: var(--fw-bold);
}

.ingredient-report-concern .accordion-button:focus {
    box-shadow: none;
}

.ingredient-report-concern .accordion-button::after {
    width: 16px;
    height: 16px;
    margin-left: 0;
    background-size: 16px;
    opacity: 0.55;
}

.ingredient-report-concern .accordion-button:not(.collapsed) {
    color: var(--cl-ink);
    background: transparent;
    box-shadow: none;
}

.ingredient-report-concern .accordion-body {
    padding: 0 0 18px 24px;
}

.ingredient-report-concern .accordion-body p {
    margin: 0;
}

.ingredient-report-dot {
    width: 10px;
    height: 10px;
    margin-top: 0;
    border-radius: 50%;
}

.ingredient-report-concern-high .ingredient-report-dot {
    background: #c9584e;
}

.ingredient-report-concern-moderate .ingredient-report-dot {
    background: #d1a44f;
}

.ingredient-report-concern-low .ingredient-report-dot {
    background: #54745e;
}

.ingredient-report-concern-title {
    min-width: 0;
    font-size: 1rem;
    line-height: 1.35;
}

.ingredient-report-concern-level {
    flex: 0 0 auto;
    padding: 4px 9px;
    color: var(--cl-muted);
    background: rgba(36, 26, 20, 0.06);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ingredient-report-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ingredient-report-note,
.ingredient-report-panel {
    padding: 20px;
    background: rgba(247, 241, 230, 0.72);
    border-radius: 18px;
}

.ingredient-report-note span {
    display: block;
    margin-bottom: 8px;
    color: var(--cl-accent);
    font-size: 0.84rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ingredient-report-sidebar-notes {
    display: grid;
    gap: 10px;
}

.ingredient-report-sidebar-notes .ingredient-report-note {
    padding: 14px;
    border-radius: 14px;
}

.ingredient-report-sidebar {
    display: grid;
    align-content: start;
    gap: 18px;
}

.ingredient-report-panel {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(36, 26, 20, 0.08);
}

.ingredient-report-panel-accent {
    margin-bottom: 18px;
    background: linear-gradient(145deg, rgba(247, 241, 230, 0.92), rgba(255, 252, 246, 0.9));
    border-color: rgba(197, 160, 89, 0.2);
}

.ingredient-report-facts {
    display: grid;
    gap: 0;
    margin: 0;
}

.ingredient-report-facts div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(36, 26, 20, 0.08);
}

.ingredient-report-facts div:last-child {
    border-bottom: 0;
}

.ingredient-report-facts dt {
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.ingredient-report-facts dd {
    max-width: 55%;
    margin: 0;
    color: var(--cl-ink);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.35;
    text-align: right;
    overflow-wrap: anywhere;
}

.ingredient-report-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.ingredient-report-actions .cl-btn,
.ingredient-report-actions .cl-btn-outline {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    padding: 9px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
}

.ingredient-report-function-list {
    display: grid;
    gap: 8px;
}

.ingredient-report-function-list span {
    display: flex;
    width: 100%;
    align-items: center;
    min-height: 38px;
    padding: 9px 12px;
    color: var(--cl-ink);
    background: #f1f1f1f1;
    border: 1px solid rgba(36, 26, 20, 0.08);
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.3;
}

.ingredient-report-products {
    display: grid;
    gap: 0;
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(36, 26, 20, 0.08);
    border-radius: 18px;
    overflow: hidden;
}

.ingredient-report-products .lux-product-row {
    padding-left: 18px;
    padding-right: 86px;
}

.ingredient-report-products .lux-product-row:first-child {
    border-top: 0;
}

.ingredient-report-usage {
    width: min(1180px, 100%);
    margin: clamp(24px, 4vw, 42px) auto 0;
    padding: clamp(24px, 4vw, 38px);
    background: rgba(255, 252, 246, 0.94);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 24px;
    box-shadow: 0 22px 70px rgba(36, 26, 20, 0.08);
}

.ingredient-report-usage.ingredient-report-section {
    border-bottom: 0;
}

.ingredient-report-usage h2 {
    max-width: 720px;
}

.ingredient-report-usage>p:not(.ingredient-report-section-label) {
    max-width: 720px;
    color: var(--cl-text);
}

.ingredient-report-usage .ingredient-report-products {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.72);
}

.product-report-page {
    padding: clamp(28px, 5vw, 70px) var(--home_section_spacing_x);
    background: radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.16), transparent 34%), linear-gradient(180deg, #f7f1e6 0%, #f2eadc 100%);
}

.product-report-shell,
.product-report-info-card {
    background: rgba(255, 252, 246, 0.95);
    border: 1px solid rgba(197, 160, 89, 0.18);
    box-shadow: 0 30px 90px rgba(36, 26, 20, 0.1);
}

.product-report-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 28px;
}

.product-report-hero {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: clamp(28px, 4vw, 54px);
    padding: clamp(28px, 5vw, 56px);
    background: linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(242, 232, 213, 0.86));
    border-bottom: 1px solid rgba(36, 26, 20, 0.08);
}

.product-report-image {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 24px;
    box-shadow: 0 18px 54px rgba(36, 26, 20, 0.08);
}

.product-report-image img {
    max-height: 310px;
    object-fit: cover;
    padding: 24px;
}

.product-report-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.product-report-thumb,
.product-report-more {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(36, 26, 20, 0.1);
    border-radius: 12px;
    color: var(--cl-ink);
    font-weight: 700;
}

.product-report-thumb.active {
    border-color: var(--cl-accent);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.18);
}

.product-report-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.product-report-kicker,
.product-report-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-report-kicker::before,
.product-report-section-label::before {
    content: '';
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--cl-accent);
    border-radius: 50%;
}

.product-report-title {
    margin: 0;
    color: var(--cl-ink);
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1;
}

.product-report-meta,
.product-report-chip-row,
.product-report-mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-report-meta {
    margin-top: 16px;
}

.product-report-meta span,
.product-report-chip,
.product-report-mini-list span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    color: var(--cl-text);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(36, 26, 20, 0.08);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 650;
}

.product-report-intro {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--cl-text);
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    line-height: 1.75;
}

.product-report-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.product-report-summary div,
.product-report-panel,
.product-report-note {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(36, 26, 20, 0.08);
    border-radius: 18px;
}

.product-report-summary div {
    padding: 16px;
}

.product-report-summary span,
.product-report-facts dt {
    display: block;
    color: var(--cl-muted);
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.product-report-summary strong,
.product-report-facts dd {
    display: block;
    margin: 6px 0 0;
    color: var(--cl-ink);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.product-report-hazard {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: center;
    margin: 0 clamp(28px, 5vw, 56px) clamp(26px, 4vw, 42px);
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 18px;
}

.product-report-stamp {
    display: grid;
    justify-items: center;
    gap: 5px;
    padding-right: 18px;
    border-right: 1px solid rgba(36, 26, 20, 0.16);
}

.product-report-stamp img {
    width: 42px;
}

.product-report-stamp span {
    color: var(--cl-ink);
    font-size: 0.62rem;
    font-weight: var(--fw-bolder);
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.product-report-scale {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.product-report-scale>span {
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
}

.product-report-scale-list {
    display: flex;
    align-items: center;
    gap: 7px;
}

.product-report-scale-score {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: #fff;
    border-radius: 50%;
    font-weight: var(--fw-bolder);
}

.product-report-scale-score.active {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px currentColor, 0 12px 28px rgba(36, 26, 20, 0.16);
}

.product-report-scale-score-low,
.product-report-dot-low {
    background: #16a34a;
}

.product-report-scale-score-moderate,
.product-report-dot-moderate {
    background: #ea580c;
}

.product-report-scale-score-high,
.product-report-dot-high {
    background: #dc2626;
}

.product-report-scale-legend {
    display: grid;
    gap: 8px;
    padding-left: 20px;
    border-left: 1px solid rgba(36, 26, 20, 0.16);
}

.product-report-scale-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cl-ink);
    font-size: 0.8rem;
    font-weight: 600;
}

.product-report-dot {
    display: inline-flex;
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
}

.product-report-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(28px, 4vw, 54px);
    padding: 0 clamp(28px, 5vw, 56px) clamp(32px, 5vw, 56px);
}

.product-report-section {
    padding-bottom: clamp(28px, 4vw, 42px);
    margin-bottom: clamp(28px, 4vw, 42px);
    /* border-bottom: 1px solid rgba(36, 26, 20, 0.1); */
}

.product-report-tabs {
    display: flex;
    gap: 34px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(36, 26, 20, 0.14);
}

.product-report-tab {
    position: relative;
    padding: 0 0 13px;
    color: var(--cl-ink);
    background: transparent;
    border: 0;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.7px;
    line-height: 1;
    text-transform: uppercase;
}

.product-report-tab::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: transparent;
}

.product-report-tab.active::after {
    background: var(--cl-ink);
}

.product-report-tab-panel {
    display: none;
}

.product-report-tab-panel.active {
    display: block;
}

.product-report-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.product-report-section h2,
.product-report-panel h2,
.product-report-info-card h2 {
    margin: 0 0 14px;
    color: var(--cl-ink);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 650;
    line-height: 1.18;
}

.product-report-section p,
.product-report-panel p,
.product-report-info-card p {
    margin: 0;
    color: var(--cl-text);
    line-height: 1.75;
}

.product-report-chip-row {
    margin-bottom: 18px;
}

.product-report-chip-high {
    color: #8d332d;
    background: rgba(201, 88, 78, 0.14);
}

.product-report-chip-moderate,
.product-report-chip-caution {
    color: #8a641c;
    background: rgba(209, 164, 79, 0.18);
}

.product-report-chip-low {
    color: #365c45;
    background: rgba(84, 116, 94, 0.16);
}



.product-report-acc-item {
    border-bottom: 1px solid rgba(36, 26, 20, 0.08);
}

.product-report-acc-trigger {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    gap: 12px;
    width: 100%;
    align-items: center;
    padding: 17px 0;
    color: var(--cl-ink);
    background: transparent;
    border: 0;
    text-align: left;
    font-weight: 700;
}

.product-report-acc-trigger em {
    padding: 4px 9px;
    color: var(--cl-muted);
    background: rgba(36, 26, 20, 0.06);
    border-radius: 999px;
    font-size: 0.68rem;
    font-style: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-report-acc-body {
    display: none;
    padding: 0 0 18px 22px;
}

.product-report-acc-body.open {
    display: grid;
    gap: 12px;
}

.product-report-acc-subheading {
    margin: 4px 0 0;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1.4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-report-concern-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
    gap: 8px;
    align-items: start;
}

.product-report-concern-name,
.product-report-concern-copy {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.product-report-concern-name {
    color: var(--cl-ink);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.product-report-concern-copy p {
    margin: 0;
}

.product-report-concern-copy span {
    display: inline-flex;
    margin-top: 6px;
    color: var(--cl-muted);
    font-size: 0.7rem;
    font-weight: 600;
}

@media (max-width: 576px) {
    .product-report-concern-row {
        grid-template-columns: 1fr;
    }
}

.product-report-acc-body a {
    color: var(--cl-accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.product-report-sidebar {
    display: grid;
    align-content: start;
    gap: 18px;
}

.product-report-panel {
    padding: 20px;
}

.product-report-panel-accent {
    background: linear-gradient(145deg, rgba(247, 241, 230, 0.92), rgba(255, 252, 246, 0.9));
    border-color: rgba(197, 160, 89, 0.2);
}

.product-report-facts {
    display: grid;
    gap: 0;
    margin: 0;
}

.product-report-facts div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(36, 26, 20, 0.08);
}

.product-report-facts-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
}

.product-report-facts div:last-child {
    border-bottom: 0;
}

.product-report-facts dd {
    max-width: 55%;
    margin: 0;
    text-align: right;
    overflow-wrap: anywhere;
}

.product-report-facts-2 dd {
    max-width: none;
}

.product-report-note {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    background: rgba(247, 241, 230, 0.72);
}

.product-report-note img {
    width: 150px;
    flex: 0 0 84px;
    color: var(--cl-accent);
    font-size: 2rem;
}

.product-report-note i {
    width: 84px;
    flex: 0 0 84px;
    color: var(--cl-accent);
    font-size: 2rem;
}

.product-report-note p {
    margin: 0;
}

.product-report-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.product-report-actions .cl-btn,
.product-report-actions .cl-btn-outline {
    min-height: 38px;
    justify-content: center;
    padding: 9px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
}

.product-report-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(1180px, 100%);
    margin: 24px auto 0;
}

.product-report-info-scale {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(36, 26, 20, 0.08);
}

.product-report-info-scale .product-report-scale-list {
    flex-wrap: wrap;
    gap: 6px;
}

.product-report-info-scale .product-report-scale-score {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 0.78rem;
}

.product-report-info-scale .product-report-scale-score.active {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
}

.product-report-info-verification {
    display: flex;
    align-items: center;
    gap: 18px;
}

.product-report-info-verification img {
    width: 96px;
    flex: 0 0 96px;
}

.product-report-info-verification p {
    margin: 0;
}

.product-report-related {
    width: min(1180px, 100%);
    margin: 24px auto 0;
    padding: 0;
}

.product-report-related .featured-luxe-inner {
    padding: 28px 30px;
    background: rgba(255, 252, 246, 0.95);
    border-color: rgba(197, 160, 89, 0.18);
    border-radius: 24px;
    box-shadow: 0 22px 70px rgba(36, 26, 20, 0.08);
}

.product-report-related .featured-luxe-header {
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(36, 26, 20, 0.08);
}

.product-report-related .featured-luxe-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-report-related .featured-luxe-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    background: var(--cl-accent);
    border-radius: 50%;
}

.product-report-related .featured-luxe-title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.05;
}

.product-report-related .featured-luxe-btn {
    min-height: 42px;
    padding: 11px 22px;
    font-size: 0.82rem;
}

.product-report-related .featured-luxe-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.product-report-related .featured-luxe-grid .col {
    display: block;
}

.product-report-related .lux-product-row {
    min-height: 112px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.product-report-info-card {
    padding: 26px;
    border-radius: 22px;
}

.product-report-reviews {
    width: min(1180px, 100%);
    margin: 24px auto 0;
}

.product-report-modal {
    display: none;
}

.product-report-modal.open {
    display: flex;
}

.product-report-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
}

.product-report-modal-img {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    background: #fff;
    border-radius: 12px;
}

.product-report-modal-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-report-locked {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f1e6;
}

@media (max-width: 991.98px) {

    .product-report-hero,
    .product-report-body,
    .product-report-info-grid,
    .product-report-facts-2 {
        grid-template-columns: 1fr;
    }

    .product-report-hazard {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .product-report-scale-legend {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-top: 14px;
        padding-left: 0;
        border-top: 1px solid rgba(36, 26, 20, 0.12);
        border-left: 0;
    }
}

@media (max-width: 640px) {
    .product-report-page {
        padding: 18px 0 34px;
    }

    .product-report-shell {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .product-report-hero,
    .product-report-body {
        padding: 24px 16px;
    }

    .product-report-summary,
    .product-report-hazard {
        grid-template-columns: 1fr;
    }

    .product-report-hazard {
        margin: 0 16px 28px;
        padding: 16px;
        overflow: hidden;
    }

    .product-report-stamp {
        display: flex;
        justify-content: center;
        padding-right: 0;
        padding-bottom: 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(36, 26, 20, 0.12);
    }

    .product-report-scale {
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .product-report-scale-list {
        flex: 0 0 auto;
    }

    .product-report-scale-score {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .product-report-scale-score.active {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .product-report-info-scale {
        overflow-x: visible;
    }

    .product-report-info-scale .product-report-scale-list {
        flex: 1 1 auto;
    }

    .product-report-info-verification {
        align-items: flex-start;
    }

    .product-report-info-verification img {
        width: 82px;
        flex-basis: 82px;
    }

    .product-report-scale-legend,
    .product-report-actions {
        grid-template-columns: 1fr;
    }

    .product-report-facts div {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .product-report-facts dd {
        max-width: 100%;
        text-align: left;
    }

    .product-report-acc-trigger {
        grid-template-columns: 10px minmax(0, 1fr);
    }

    .product-report-acc-trigger em {
        grid-column: 2;
        justify-self: start;
    }

    .product-report-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-report-tabs {
        gap: 24px;
        overflow-x: auto;
        padding-bottom: 0;
    }

    .product-report-tab {
        flex: 0 0 auto;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .product-report-related {
        width: calc(100% - 32px);
    }

    .product-report-related .featured-luxe-inner {
        padding: 22px 16px;
        border-radius: 20px;
    }

    .product-report-related .featured-luxe-header {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
        text-align: left;
    }

    .product-report-related .featured-luxe-title {
        font-size: 2rem;
    }

    .product-report-related .featured-luxe-btn {
        width: 100%;
    }
}

@media (max-width: 991.98px) {

    .ingredient-report-hero,
    .ingredient-report-body,
    .ingredient-report-split {
        grid-template-columns: 1fr;
    }

    .ingredient-report-score {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 16px;
        max-width: 100%;
    }

    .ingredient-report-scale-legend {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-top: 14px;
        padding-left: 0;
        border-top: 1px solid rgba(36, 26, 20, 0.12);
        border-left: 0;
    }
}

@media (max-width: 640px) {
    .ingredient-report-page {
        padding: 18px 0 34px;
    }

    .ingredient-report-shell {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .ingredient-report-hero,
    .ingredient-report-body {
        padding: 24px 16px;
    }

    .ingredient-report-title-row {
        align-items: flex-start;
        gap: 14px;
    }

    .ingredient-report-image {
        width: 100%;
        max-width: 150px;
        justify-self: start;
    }

    .ingredient-report-image img {
        width: 150px;
        height: 150px;
        border-radius: 16px;
    }

    .ingredient-report-image figcaption {
        text-align: left;
    }

    .ingredient-report-title {
        font-size: clamp(2rem, 13vw, 2.7rem);
    }

    .ingredient-report-meta span,
    .ingredient-report-chip {
        min-height: 28px;
        font-size: 0.72rem;
    }

    .ingredient-report-score {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
        border-radius: 18px;
        overflow: hidden;
    }

    .ingredient-report-stamp {
        display: flex;
        justify-content: center;
        padding-right: 0;
        padding-bottom: 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(36, 26, 20, 0.12);
    }

    .ingredient-report-scale {
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .ingredient-report-scale-list {
        flex: 0 0 auto;
    }

    .ingredient-report-scale-score {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .ingredient-report-scale-score.active {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .ingredient-report-scale-legend {
        grid-template-columns: 1fr;
        gap: 7px;
        padding-top: 12px;
    }

    .ingredient-report-concern .accordion-button {
        grid-template-columns: 10px minmax(0, 1fr) 16px;
        gap: 10px;
        padding: 16px 0;
    }

    .ingredient-report-concern-level {
        grid-column: 2;
        justify-self: start;
        margin-top: 4px;
    }

    .ingredient-report-concern .accordion-button::after {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .ingredient-report-facts div {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .ingredient-report-facts dd {
        max-width: 100%;
        text-align: left;
    }

    .ingredient-report-actions {
        grid-template-columns: 1fr;
    }

    .ingredient-report-products .lux-product-row {
        padding-left: 14px;
        padding-right: 58px;
    }

    .ingredient-report-usage {
        width: calc(100% - 32px);
        padding: 22px 16px;
        border-radius: 20px;
    }
}

@keyframes ingredientsFloatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes ingredientsFloatBubble {

    0%,
    100% {
        opacity: 0.7;
        transform: translate(0, 0) scale(1);
    }

    33% {
        opacity: 0.9;
        transform: translate(15px, -20px) scale(1.1);
    }

    66% {
        opacity: 0.6;
        transform: translate(-10px, -35px) scale(0.9);
    }
}

@media (max-width: 1024px) {
    .ingredients-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ingredients-visual {
        min-height: 400px;
        order: 1;
    }

    .ingredients-showcase {
        height: 400px;
    }

    .ingredients-content {
        order: 2;
        padding-left: 0;
        text-align: center;
    }

    .ingredients-description {
        margin-left: auto;
        margin-right: auto;
    }

    .ingredients-section-label {
        justify-content: center;
    }

    .ingredients-cta-row {
        justify-content: center;
    }

    .ingredients-cta,
    .ingredients-cta-outline {
        margin-left: auto;
        margin-right: auto;
    }

    .ingredient-badges {
        max-width: 680px;
        margin: 0 auto;
    }

    .ingredient-card-1 {
        top: 8%;
        left: 10%;
    }

    .ingredient-card-2 {
        top: 38%;
        right: 10%;
    }

    .ingredient-card-3 {
        bottom: 15%;
        left: 5%;
    }
}

@media (max-width: 640px) {
    .ingredients-section {
        padding-top: 34px;
        padding-bottom: 34px;
        padding-left: 0;
        padding-right: 0;
    }

    .ingredients-section .home-section-container {
        padding-left: 0;
        padding-right: 0;
    }

    .ingredients-container {
        gap: 26px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .ingredients-content {
        order: 1;
        width: 100%;
        padding-left: 0;
    }

    .ingredients-content>.ingredients-section-label,
    .ingredients-content>.cl-title,
    .ingredients-content>.cl-desc,
    .ingredients-content>.ingredient-badges {
        padding-left: 0;
        padding-right: 0;
    }

    .ingredients-section .cl-search-card {
        width: 100%;
        max-width: none;
        padding: 12px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .ingredients-section .cl-search-card form,
    .ingredients-section .input-group-absolute {
        width: 100%;
    }

    .ingredients-section .input-group-absolute {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .ingredients-section .input-group-absolute input {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px !important;
        border-radius: 999px !important;
    }

    .ingredients-section .input-group-absolute .btn {
        position: static;
        width: 100%;
        min-height: 44px;
        border-radius: 999px !important;
    }

    .ingredients-section .cl-search-filters {
        gap: 8px;
    }

    .ingredients-section .cl-filter-label {
        flex: 0 0 100%;
    }

    .ingredients-section .cl-filter-chip {
        flex: 1 1 calc(50% - 8px);
        text-align: center;
    }

    .ingredients-visual {
        order: 2;
        min-height: 260px;
        overflow: hidden;
    }

    .ingredients-product {
        inset: 18px;
    }

    .ingredients-showcase {
        width: 100%;
        max-width: 360px;
        height: 260px;
        margin: 0 auto;
        overflow: hidden;
    }

    .ingredients-deco-circle-1 {
        width: 300px;
        height: 300px;
    }

    .ingredients-deco-circle-2 {
        width: 224px;
        height: 224px;
    }

    .ingredients-bubble {
        display: none;
    }

    .ingredient-info-card {
        min-width: 0;
        width: min(190px, 58vw);
        padding: 11px 12px;
        border-radius: 12px;
    }

    .ingredient-info-card-header {
        gap: 8px;
    }

    .ingredient-info-card .badge-value {
        margin-bottom: 0;
        font-size: 0.78rem;
        line-height: 1.2;
    }

    .ingredient-info-card-divider,
    .ingredient-info-card-desc {
        display: none;
    }

    .ingredient-info-card-status {
        display: inline-flex;
        gap: 4px;
        font-size: 0.68rem;
    }

    .ingredient-status-icon {
        width: 14px;
        height: 14px;
        font-size: 9px;
    }

    .ingredient-card-1 {
        top: 10%;
        left: 3%;
    }

    .ingredient-card-2 {
        top: 36%;
        right: 0;
    }

    .ingredient-card-3 {
        bottom: 8%;
        left: 5%;
    }

    .ingredients-heading {
        font-size: 2rem;
    }

    .ingredients-description {
        font-size: 0.95rem;
    }

    .ingredients-cta-row {
        gap: 12px;
    }

    .ingredients-cta {
        width: 100%;
        justify-content: center;
    }

    .ingredients-cta-outline {
        width: 100%;
    }

    .ingredient-badges {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ingredient-badge {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
        text-align: left;
    }

    .badge-icon {
        flex-shrink: 0;
        margin: 0;
    }
}

/* Featured products */
.featured-luxe-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(253, 252, 247, 0.98) 0%, rgba(245, 239, 235, 0.82) 48%, rgba(253, 252, 247, 0.98) 100%),
        var(--cl-bg);
}

.featured-luxe-section .section-inner {
    position: relative;
    z-index: 1;
}

/* .featured-luxe-shell {
    padding: clamp(24px, 3.2vw, 42px);
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid #f1f1f1f1;
    border-radius: var(--cl-radius-md);
    box-shadow: var(--cl-shadow-md);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
} */

.featured-luxe-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 24px;
}

.featured-luxe-header-main {
    max-width: 780px;
}

.featured-luxe-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.featured-luxe-label::before {
    content: '';
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: var(--cl-muted);
}

.featured-luxe-title {
    margin: 0;
    color: var(--cl-ink);
    font-size: clamp(2.35rem, 4.8vw, 2rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.featured-luxe-title span {
    display: block;
    color: var(--cl-accent);
    font-weight: var(--fw-bold);
}

.featured-luxe-text {
    max-width: 680px;
    margin: 16px 0 0;
    color: var(--cl-text);
    font-size: 1rem;
    line-height: 1.65;
}

.featured-luxe-aside {
    display: flex;
    align-items: center;
    gap: 14px;
}

.featured-luxe-stat {
    min-width: 132px;
    padding: 13px 16px;
    background: var(--cl-glass);
    border: 1px solid var(--cl-glass-border);
    border-radius: var(--cl-radius-sm);
    box-shadow: var(--cl-shadow-sm);
}

.featured-luxe-stat span,
.featured-luxe-stat small {
    display: block;
}

.featured-luxe-stat span {
    color: var(--cl-ink);
    font-size: 1.6rem;
    font-weight: var(--fw-bold);
    line-height: 1;
}

.featured-luxe-stat small {
    margin-top: 5px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.featured-luxe-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    color: var(--cl-white) !important;
    background: var(--cl-ink);
    border: 1px solid var(--cl-ink);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.featured-luxe-btn:hover {
    color: var(--cl-white) !important;
    background: var(--cl-accent);
    border-color: var(--cl-accent);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-2px);
}

.featured-luxe-btn i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.featured-luxe-btn:hover i {
    transform: translateX(4px);
}

.featured-luxe-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.featured-luxe-proof span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 9px 14px;
    color: var(--cl-text);
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: var(--fw-bold);
}

.featured-luxe-proof i {
    color: var(--cl-accent);
    font-size: 0.86rem;
}

.featured-luxe-body {
    position: relative;
}

.featured-luxe-grid {
    align-items: stretch;
}

.featured-luxe-grid .col {
    display: flex;
}

.featured-luxe-section .lux-product-tile.oko-card {
    width: 100%;
}

.featured-luxe-mobile-action {
    display: none;
    justify-content: center;
    margin-top: 28px;
}

@media (max-width: 991.98px) {
    .featured-luxe-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-luxe-header-main {
        margin-inline: auto;
    }

    .featured-luxe-label,
    .featured-luxe-proof,
    .featured-luxe-aside {
        justify-content: center;
    }

    .featured-luxe-aside {
        display: none;
    }

    .featured-luxe-mobile-action {
        display: flex;
    }
}

@media (max-width: 575.98px) {
    /* .featured-luxe-section {
        padding: 44px 0;
    } */

    .featured-luxe-shell {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .featured-luxe-title {
        font-size: 2.05rem;
    }

    .featured-luxe-text {
        font-size: 0.95rem;
    }

    .featured-luxe-proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .featured-luxe-proof span,
    .featured-luxe-btn {
        width: 100%;
    }

}

/* FAQ section */
.cl-faq-section {
    position: relative;
    overflow: hidden;
    /* padding: clamp(58px, 8vw, 104px) 0; */
    background:
        radial-gradient(circle at 10% 18%, rgba(197, 160, 89, 0.14), transparent 34%),
        radial-gradient(circle at 92% 82%, rgba(95, 106, 93, 0.16), transparent 38%),
        linear-gradient(135deg, var(--cl-bg) 0%, var(--cl-surface-muted) 100%);
}

.cl-faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(95, 106, 93, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.42;
}

.cl-faq-wrap {
    position: relative;
    z-index: 1;
}

.cl-faq-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
}

.cl-faq-content {
    align-self: center;
    max-width: 560px;
}

.cl-faq-overline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 18px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cl-faq-overline::before {
    content: '';
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: var(--cl-muted);
}

.cl-faq-title {
    margin: 0 0 18px;
    color: var(--cl-ink);
    font-size: clamp(2.35rem, 4.8vw, 3.25rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.cl-faq-title span {
    display: block;
    color: var(--cl-accent);
    font-weight: var(--fw-bold);
}

.cl-faq-desc {
    max-width: 540px;
    margin: 0 0 26px;
    color: var(--cl-text);
    font-size: 1rem;
    line-height: 1.65;
}

.cl-faq-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
}

.cl-faq-proof-card {
    display: flex;
    min-height: 92px;
    align-items: center;
    gap: 14px;
    padding: 18px;
    color: var(--cl-text);
    background: var(--cl-glass);
    border: 1px solid var(--cl-glass-border);
    border-radius: 16px;
    box-shadow: var(--cl-shadow-sm);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cl-faq-proof-card i {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    color: var(--cl-accent);
    background: rgba(197, 160, 89, 0.13);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 14px;
    font-size: 1rem;
}

.cl-faq-proof-card span {
    color: var(--cl-ink);
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    line-height: 1.35;
}

.cl-faq-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    color: var(--cl-white) !important;
    background: var(--cl-ink);
    border: 1px solid var(--cl-ink);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cl-faq-btn:hover {
    color: var(--cl-white) !important;
    background: var(--cl-accent);
    border-color: var(--cl-accent);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-2px);
}

.cl-faq-btn i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.cl-faq-btn:hover i {
    transform: translateX(4px);
}

.cl-faq-panel {
    padding: clamp(18px, 2.5vw, 28px);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 24px;
    box-shadow: var(--cl-shadow-lg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cl-faq-panel-head {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(36, 26, 20, 0.08);
}

.cl-faq-panel-head span {
    color: var(--cl-accent);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: var(--fw-bolder);
    line-height: 0.95;
}

.cl-faq-panel-head p {
    /* max-width: 240px; */
    margin: 0;
    color: var(--cl-muted);
    font-size: 0.82rem;
    font-weight: var(--fw-bold);
    line-height: 1.4;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cl-faq-accordion {
    counter-reset: cl-faq-counter;
}

.cl-faq-item-wrap {
    counter-increment: cl-faq-counter;
}

.cl-faq-item-wrap:not(:last-child) {
    margin-bottom: 12px;
}

.cl-faq-accordion .accordion-item {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(36, 26, 20, 0.07);
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(36, 26, 20, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.cl-faq-accordion .accordion-item:hover,
.cl-faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(197, 160, 89, 0.34);
    box-shadow: var(--cl-shadow-md);
    transform: translateY(-2px);
}

.cl-faq-accordion .accordion-header {
    margin: 0;
}

.cl-faq-accordion .accordion-button {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 72px;
    padding: 18px 20px;
    color: var(--cl-ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 1rem;
    font-weight: var(--fw-bold);
    line-height: 1.35;
}

.cl-faq-accordion .accordion-button::before {
    content: counter(cl-faq-counter, decimal-leading-zero);
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: var(--cl-accent);
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: var(--fw-bolder);
    letter-spacing: 0.08em;
}

.cl-faq-accordion .accordion-button::after {
    display: none;
}

.cl-faq-accordion .accordion-button span {
    min-width: 0;
}

.cl-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--cl-ink);
}

.cl-faq-accordion .accordion-button-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: var(--cl-muted);
    background: rgba(36, 26, 20, 0.04);
    border-radius: 50%;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.cl-faq-accordion .accordion-button:not(.collapsed) .accordion-button-icon {
    color: var(--cl-white);
    background: var(--cl-ink);
    transform: rotate(180deg);
}

.cl-faq-accordion .accordion-collapse {
    border: 0;
}

.cl-faq-accordion .accordion-body {
    padding: 0 20px 22px 72px;
    color: var(--cl-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

.accordion-body p {
    margin-top: 10px;
}

.cl-faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .cl-faq-layout {
        grid-template-columns: 1fr;
    }

    .cl-faq-content {
        position: static;
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .cl-faq-overline {
        justify-content: center;
    }

    .cl-faq-proof {
        max-width: 620px;
        margin-inline: auto;
    }

    .cl-faq-panel {
        max-width: 860px;
        margin-inline: auto;
    }
}

@media (max-width: 575.98px) {
    .cl-faq-section {
        padding: 44px 0;
    }

    .cl-faq-title {
        font-size: 2.05rem;
    }

    .cl-faq-proof {
        grid-template-columns: 1fr;
    }

    .cl-faq-btn {
        width: 100%;
    }

    .cl-faq-panel {
        padding: 16px;
        border-radius: 18px;
    }

    .cl-faq-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .cl-faq-panel-head p {
        text-align: left;
    }

    .cl-faq-accordion .accordion-button {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        min-height: 66px;
        padding: 16px;
        font-size: 0.95rem;
    }

    .cl-faq-accordion .accordion-button::before {
        display: none;
    }

    .cl-faq-accordion .accordion-body {
        padding: 0 16px 18px;
        font-size: 0.9rem;
    }
}

/* Blog / journal section */
.cl-blog-section {
    position: relative;
    overflow: hidden;
    /* padding: clamp(58px, 8vw, 104px) 0; */
    background:
        linear-gradient(180deg, rgba(253, 252, 247, 0.98) 0%, rgba(245, 239, 235, 0.78) 54%, rgba(253, 252, 247, 0.98) 100%),
        var(--cl-bg);
}

.cl-blog-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(197, 160, 89, 0.14), transparent 34%),
        radial-gradient(circle at 86% 78%, rgba(95, 106, 93, 0.16), transparent 38%);
}

.cl-blog-wrap {
    position: relative;
    z-index: 1;
}

.cl-blog-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: clamp(26px, 4vw, 42px);
}

.cl-blog-header-main {
    max-width: 780px;
}

.cl-blog-overline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 16px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cl-blog-overline::before {
    content: '';
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: var(--cl-muted);
}

.cl-blog-title {
    margin: 0;
    color: var(--cl-ink);
    font-size: clamp(2.35rem, 4.8vw, 3.2rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.cl-blog-title span {
    display: block;
    color: var(--cl-accent);
    font-weight: var(--fw-bold);
}

.cl-blog-desc {
    max-width: 690px;
    margin: 16px 0 0;
    color: var(--cl-text);
    font-size: 1rem;
    line-height: 1.65;
}

.cl-blog-header-aside {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cl-blog-count {
    min-width: 132px;
    padding: 13px 16px;
    background: var(--cl-glass);
    border: 1px solid var(--cl-glass-border);
    border-radius: var(--cl-radius-sm);
    box-shadow: var(--cl-shadow-sm);
}

.cl-blog-count span,
.cl-blog-count small {
    display: block;
}

.cl-blog-count span {
    color: var(--cl-ink);
    font-size: 1.6rem;
    font-weight: var(--fw-bolder);
    line-height: 1;
}

.cl-blog-count small {
    margin-top: 5px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cl-blog-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    color: var(--cl-white) !important;
    background: var(--cl-ink);
    border: 1px solid var(--cl-ink);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cl-blog-btn:hover {
    color: var(--cl-white) !important;
    background: var(--cl-accent);
    border-color: var(--cl-accent);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-2px);
}

.cl-blog-btn i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.cl-blog-btn:hover i {
    transform: translateX(4px);
}

.cl-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cl-blog-card {
    min-width: 0;
}

.cl-blog-section .blog-post {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(36, 26, 20, 0.07);
    border-radius: 20px;
    box-shadow: var(--cl-shadow-md);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.cl-blog-section .blog-post:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(197, 160, 89, 0.34);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-6px);
}

.cl-blog-section .blog-post-header {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 20px 20px 0 0;
}

.cl-blog-section .blog-post-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(36, 26, 20, 0) 20%, rgba(36, 26, 20, 0.34) 100%);
    pointer-events: none;
}

.cl-blog-section .blog-post-header>a {
    display: block;
}

.cl-blog-section .blog-post-img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.42s ease, filter 0.42s ease;
}

.cl-blog-section .blog-post:hover .blog-post-img {
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.07);
}

.cl-blog-section .blog-post-body {
    padding: 22px;
}

.cl-blog-section .blog-post-meta {
    margin-bottom: 14px;
}

.cl-blog-section .blog-post-meta .text-muted {
    color: var(--cl-muted) !important;
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
}

.cl-blog-section .blog-post-meta i {
    color: var(--cl-accent);
}

.cl-blog-section .blog-post-category {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    color: var(--cl-ink) !important;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: var(--fw-regular);
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cl-blog-section .blog-post-title {
    margin: 0 0 12px;
    font-size: 1.16rem;
    font-weight: var(--fw-regular);
    line-height: 1.28;
    letter-spacing: 0;
}

.cl-blog-section .blog-post-title a {
    color: var(--cl-ink) !important;
    text-decoration: none !important;
    transition: color 0.22s ease;
}

.cl-blog-section .blog-post-title a:hover {
    color: var(--cl-accent) !important;
}

.cl-blog-section .blog-post-text {
    color: var(--cl-text);
    font-size: 0.93rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cl-blog-section .blog-post-text a {
    color: var(--cl-accent) !important;
    font-weight: var(--fw-regular);
    text-decoration: none !important;
}

.cl-blog-mobile-action {
    display: none;
    justify-content: center;
    margin-top: 28px;
}

@media (max-width: 991.98px) {
    .cl-blog-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cl-blog-header-main {
        margin-inline: auto;
    }

    .cl-blog-overline,
    .cl-blog-header-aside {
        justify-content: center;
    }

    .cl-blog-header-aside {
        display: none;
    }

    .cl-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cl-blog-section .blog-post-img {
        height: 260px;
    }

    .cl-blog-mobile-action {
        display: flex;
    }
}

@media (max-width: 575.98px) {
    .cl-blog-section {
        padding: 44px 0;
    }

    .cl-blog-title {
        font-size: 2.05rem;
    }

    .cl-blog-section .blog-post {
        border-radius: 18px;
    }

    .cl-blog-section .blog-post-header {
        border-radius: 18px 18px 0 0;
    }

    .cl-blog-section .blog-post-img {
        height: 230px;
    }

    .cl-blog-section .blog-post-body {
        padding: 20px;
    }

    .cl-blog-section .blog-post-title {
        font-size: 1.16rem;
        line-height: 1.28;
    }

    .cl-blog-btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .cl-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Categories section */
.section.cl-categories-section,
.cl-hero~.cl-categories-section {
    position: relative;
    z-index: 2300 !important;
    overflow: visible !important;
    min-height: auto;
    padding: clamp(34px, 5vw, 64px) 0;
    background:
        radial-gradient(circle at 12% 22%, rgba(250, 248, 240, 0.9), transparent 34%),
        radial-gradient(circle at 88% 76%, rgba(229, 221, 207, 0.5), transparent 38%),
        linear-gradient(135deg, #fbfaf6 0%, #f0eadf 100%);
}

.cl-categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(95, 106, 93, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.42;
}

.cl-categories-wrap {
    position: relative;
    z-index: 2300 !important;
    display: flex;
    min-height: 0;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible !important;
}

.cl-categories-section .section-inner,
.cl-categories-section .home-section-container {
    position: relative;
    z-index: 2300 !important;
    overflow: visible !important;
}

.cl-categories-header {
    max-width: 820px;
    margin: 0 auto clamp(18px, 3vh, 28px);
    text-align: center;
}

.cl-categories-overline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 0 10px;
    color: var(--cl-muted);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 2.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cl-categories-overline::before,
.cl-categories-overline::after {
    content: '';
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: var(--cl-muted);
}

.cl-title {
    font-size: clamp(34px, 3.35vw, 48px);
    font-weight: var(--fw-regular);
    color: var(--cl-ink);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
    max-width: 760px;
}

.cl-title span {
    display: block;
    font-weight: var(--fw-bold);
    color: var(--cl-accent);
    margin-top: 6px;
    letter-spacing: -0.01em;
}

.cl-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--cl-text);
    max-width: 680px;
    margin: 0 0 18px 0;
    font-weight: var(--fw-regular);
}

.cl-categories-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.cl-categories-meta span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    color: var(--cl-text);
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
}

.cl-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    row-gap: clamp(16px, 3vh, 26px);
    column-gap: 28px;
    overflow: visible;
}

.cl-category-card {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: clamp(120px, 18vh, 136px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: visible;
    padding: 0 8px;
    color: var(--cl-ink);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.28s ease;
}

.cl-category-card:hover,
.cl-category-card:focus-within {
    z-index: 2400 !important;
}

.cl-category-card::after {
    content: none;
}

.cl-category-card:hover {
    color: var(--cl-ink);
    transform: translateY(-4px);
}

.cl-category-main {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: clamp(120px, 18vh, 136px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--cl-ink);
    text-align: center;
    text-decoration: none !important;
}

.cl-category-main:hover {
    color: var(--cl-ink);
}

.cl-category-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: clamp(92px, 9vw, 108px);
    height: clamp(78px, 8vw, 90px);
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.28s ease;
}

.cl-category-card:hover .cl-category-icon {
    transform: scale(1.06) translateY(-2px);
}

.cl-category-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(36, 26, 20, 0.1));
}

.cl-category-name {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    min-height: 38px;
    color: var(--cl-ink);
    font-size: 0.98rem;
    font-weight: var(--fw-bold);
    line-height: 1.22;
    letter-spacing: 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cl-category-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2500 !important;
    width: min(260px, calc(100vw - 32px));
    min-height: 48px;
    overflow: visible !important;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 0;
    border-radius: 16px;
    box-shadow: var(--cl-shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cl-category-card:hover .cl-category-dropdown,
.cl-category-card:focus-within .cl-category-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.cl-category-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 32px;
    padding: 6px 10px;
    color: var(--cl-text);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: var(--fw-regular);
    line-height: 1.25;
    text-align: left;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cl-category-dropdown a:hover {
    color: var(--cl-ink);
    background: rgba(197, 160, 89, 0.12);
    transform: translateX(2px);
}

.cl-category-empty {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    color: var(--cl-muted);
    background: rgba(36, 26, 20, 0.04);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: var(--fw-regular);
    line-height: 1.25;
    text-align: center;
}

.cl-category-more {
    color: var(--cl-accent) !important;
}

.cl-categories-page {
    position: relative;
    overflow: visible;
    padding: clamp(18px, 3vw, 34px) 0 clamp(26px, 4vw, 46px);
}

.cl-categories-index-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 34px;
    column-gap: 28px;
    margin-top: 34px;
}

.cl-category-index-card {
    min-height: 252px;
    overflow: visible;
    padding: 24px 18px 66px;
    background:
        radial-gradient(circle at 50% 22%, rgba(197, 160, 89, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 241, 0.76));
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(36, 26, 20, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.cl-category-index-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 44%);
    pointer-events: none;
}

.cl-category-index-card::after {
    content: '';
    position: absolute;
    right: 22px;
    bottom: 56px;
    left: 22px;
    z-index: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.38), transparent);
}

.cl-category-index-card:hover,
.cl-category-index-card:focus-within {
    border-color: rgba(197, 160, 89, 0.44);
    box-shadow: 0 26px 62px rgba(36, 26, 20, 0.12);
}

.cl-category-index-card .cl-category-main {
    min-height: 158px;
    gap: 10px;
}

.cl-category-index-card .cl-category-icon {
    width: clamp(104px, 8vw, 122px);
    height: clamp(86px, 7vw, 102px);
    margin-bottom: 4px;
}

.cl-category-index-card .cl-category-icon::before {
    content: '';
    position: absolute;
    inset: 8px;
    z-index: -1;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(197, 160, 89, 0.16);
    border-radius: 50%;
    box-shadow: 0 18px 34px rgba(36, 26, 20, 0.08);
}

.cl-category-index-card .cl-category-icon img {
    filter: drop-shadow(0 18px 24px rgba(36, 26, 20, 0.14));
}

.cl-category-index-card .cl-category-name {
    min-height: 40px;
    color: var(--cl-ink);
    font-size: 1.04rem;
    font-weight: var(--fw-bolder);
}

.cl-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 12px;
    color: var(--cl-text);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(95, 106, 93, 0.18);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    box-shadow: 0 8px 22px rgba(36, 26, 20, 0.05);
}

.cl-category-products-link {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--cl-ink) !important;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: var(--fw-bold);
    line-height: 1;
    text-decoration: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cl-category-products-link:hover {
    color: var(--cl-white) !important;
    background: var(--cl-ink);
    border-color: var(--cl-ink);
    box-shadow: 0 16px 34px rgba(36, 26, 20, 0.16);
    transform: translateY(-2px);
}

.cl-category-products-link i {
    font-size: 0.72rem;
}

.cl-categories-action {
    display: flex;
    justify-content: center;
    margin-top: clamp(16px, 3vh, 24px);
}

.cl-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    color: var(--cl-white) !important;
    background: var(--cl-ink);
    border: 1px solid var(--cl-ink);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
    line-height: 1;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cl-btn:hover {
    color: var(--cl-white) !important;
    background: var(--cl-accent);
    border-color: var(--cl-accent);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-2px);
}

.cl-categories-btn i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.cl-categories-btn:hover i {
    transform: translateX(4px);
}

.cl-btn-outline {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    color: var(--cl-ink) !important;
    background: transparent;
    border: 1px solid var(--cl-ink);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: var(--fw-medium);
    line-height: 1;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cl-btn-outline:hover {
    color: var(--cl-white) !important;
    background: var(--cl-ink);
    border-color: var(--cl-ink);
    box-shadow: var(--cl-shadow-lg);
    transform: translateY(-2px);
}


@media (max-width: 1199.98px) {

    .section.cl-categories-section,
    .cl-hero~.cl-categories-section {
        min-height: auto;
    }

    .cl-categories-wrap {
        min-height: auto;
    }

    .cl-categories-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .cl-categories-index-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .cl-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 28px;
        column-gap: 18px;
    }

    .cl-category-card {
        min-height: 124px;
    }

    .cl-categories-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cl-category-index-card {
        min-height: 0;
        padding-bottom: 14px;
    }

    .cl-category-products-link {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    .cl-category-dropdown {
        display: none;
    }

    .cl-category-card:hover .cl-category-dropdown,
    .cl-category-card:focus-within .cl-category-dropdown {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .cl-categories-section {
        padding: 44px 0;
    }

    .cl-categories-title {
        font-size: 2.05rem;
    }

    .cl-categories-overline {
        gap: 10px;
        letter-spacing: 1.8px;
    }

    .cl-categories-overline::before,
    .cl-categories-overline::after {
        width: 24px;
        flex-basis: 24px;
    }

    .cl-category-card {
        min-height: 124px;
        padding: 0 6px;
        border-radius: 0;
    }

    .cl-category-index-card {
        min-height: 0;
        padding: 14px 10px;
        border-radius: 16px;
    }

    .cl-category-icon {
        width: 88px;
        height: 78px;
        border-radius: 0;
    }

    .cl-category-name {
        font-size: 0.86rem;
    }

    .cl-categories-btn {
        width: 100%;
    }
}

/* Shared section heading */
.cl-title,
.mag-title,
.cl-trust-title,
.cl-process-title,
.ingredients-heading,
.featured-luxe-title,
.cl-faq-title,
.cl-blog-title {
    max-width: 760px;
    margin: 0 0 12px 0;
    color: var(--cl-ink);
    font-size: clamp(34px, 3.35vw, 48px);
    font-weight: var(--fw-regular);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.cl-title span,
.mag-title span,
.cl-trust-title span,
.cl-process-title span,
.ingredients-heading span,
.ingredients-heading-highlight,
.featured-luxe-title span,
.cl-faq-title span,
.cl-blog-title span {
    display: block;
    margin-top: 6px;
    color: var(--cl-accent);
    font-weight: var(--fw-bold);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .cl-hero {
        padding-bottom: 34px;
    }

    .cl-hero .cl-headline {
        margin-bottom: 16px;
    }

    .cl-hero .cl-subheadline {
        margin-bottom: 24px;
    }

    .cl-hero .cl-cta-row {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        gap: 10px;
        margin-bottom: 26px;
    }

    .cl-hero .cl-search-card {
        margin-top: 4px;
    }

    .cl-hero .cl-cta-main,
    .cl-hero .cl-btn-outline {
        min-height: 44px;
        width: auto;
        min-width: 0;
        justify-content: center;
        padding: 11px 14px;
        font-size: 11px;
        line-height: 1;
        white-space: nowrap;
    }

    .cl-hero .cl-cta-main {
        flex: 1.08 1 0;
        gap: 8px;
    }

    .cl-hero .cl-btn-outline {
        flex: 0.92 1 0;
    }
}

@media (max-width: 480px) {
    .cl-hero {
        padding-bottom: 10px;
    }

    .cl-hero .cl-overline {
        margin-bottom: 10px;
    }

    .cl-hero .cl-headline {
        margin-bottom: 14px;
    }

    .cl-hero .cl-subheadline {
        margin-bottom: 22px;
    }

    .cl-hero .cl-cta-row {
        margin-bottom: 26px;
    }

    .cl-hero .cl-cta-main,
    .cl-hero .cl-btn-outline {
        min-height: 40px;
        padding: 10px;
        font-size: 10px;
    }
}