.nutri-fixing-points {
    --nfp-brand: #56aa9d;
    --nfp-brand-soft: #e6f5f1;
    --nfp-brand-soft-2: #f1fbf8;
    --nfp-brand-deep: #2b6f67;
    --nfp-text: #000;
    --nfp-muted: #46504d;
    --nfp-line: rgba(86, 170, 157, 0.18);
    --nfp-shadow: 0 18px 38px rgba(43, 111, 103, 0.10);
    --nfp-radius: 22px;
    margin: 1.25rem 0 1.75rem;
    color: var(--nfp-text);
}

.nutri-fixing-points__trust {
    display: grid;
    gap: 0.85rem;
}

.nutri-fixing-points__trust-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border: 1px solid var(--nfp-line);
    border-radius: var(--nfp-radius);
    background:
        radial-gradient(circle at top right, rgba(86, 170, 157, 0.22), transparent 42%),
        linear-gradient(145deg, #ffffff 0%, var(--nfp-brand-soft-2) 48%, var(--nfp-brand-soft) 100%);
}

.nutri-fixing-points__icon,
.nutri-fixing-points__slide-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #fff;
    color: var(--nfp-brand-deep);
    border: 1px solid rgba(86, 170, 157, 0.22);
}

.nutri-fixing-points__icon svg,
.nutri-fixing-points__slide-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nutri-fixing-points__trust-copy h3,
.nutri-fixing-points__slide h4,
.nutri-fixing-points__header h3 {
    margin: 0;
    color: #000;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.nutri-fixing-points__eyebrow {
    margin: 0 0 0.15rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--nfp-brand-deep);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nutri-fixing-points__trust-copy p:last-child,
.nutri-fixing-points__header p,
.nutri-fixing-points__slide p {
    margin: 0.28rem 0 0;
    color: var(--nfp-muted);
    font-size: 0.94rem;
    line-height: 1.45;
}

.nutri-fixing-points__carousel {
    margin-top: 1.35rem;
}

.nutri-fixing-points__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.nutri-fixing-points__header h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.nutri-fixing-points__header p {
    max-width: 42ch;
}

.nutri-fixing-points__nav {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.nutri-fixing-points__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(86, 170, 157, 0.18);
    background: #fff;
    color: #000;
    display: grid;
    place-items: center;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.nutri-fixing-points__nav-btn.is-next {
    background: var(--nfp-brand);
    color: #fff;
}

.nutri-fixing-points__nav-btn:hover:not(:disabled),
.nutri-fixing-points__nav-btn:focus-visible:not(:disabled) {
    transform: translateY(-1px);
}

.nutri-fixing-points__nav-btn:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
}

.nutri-fixing-points__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 72%);
    gap: 0.9rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.nutri-fixing-points__track::-webkit-scrollbar {
    display: none;
}

.nutri-fixing-points__slide {
    position: relative;
    min-height: 220px;
    padding: 1.15rem;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(86, 170, 157, 0.18);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 249, 246, 0.98) 44%, rgba(221, 242, 238, 0.96) 100%);
    scroll-snap-align: start;
}

.nutri-fixing-points__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.08)),
        repeating-linear-gradient(145deg, rgba(86, 170, 157, 0.10) 0 2px, transparent 2px 8px);
    opacity: 0.95;
    pointer-events: none;
}

.nutri-fixing-points__slide > * {
    position: relative;
    z-index: 1;
}

.nutri-fixing-points__slide-icon {
    margin-bottom: 1rem;
}

.nutri-fixing-points__slide h4 {
    font-size: 1.08rem;
}

.nutri-fixing-points__slide p {
    max-width: 25ch;
}

.nutri-fixing-points__track:focus-visible,
.nutri-fixing-points__nav-btn:focus-visible {
    outline: 2px solid var(--nfp-brand-deep);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nutri-fixing-points__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .nutri-fixing-points__nav {
        align-self: flex-end;
    }

    .nutri-fixing-points__track {
        grid-auto-columns: minmax(240px, 84%);
    }
}

@media (min-width: 1024px) {
    .nutri-fixing-points__track {
        grid-auto-columns: minmax(250px, 54%);
    }
}
