.spice-faq {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 42px 46px;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    box-shadow: 0 7px 26px rgba(0, 0, 0, .025);
    font-family: inherit;
    overflow: hidden;
}

.spice-faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 46px;
    width: 58px;
    height: 3px;
    background: #333333;
}

.spice-faq__eyebrow {
    display: block;
    margin: 0 0 12px;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: #9b9d9f;
}

.spice-faq__title {
    display: block;
    margin: 0;
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -.04em;
    color: #303030;
}

.spice-faq__intro {
    max-width: 760px;
    margin: 15px 0 0;
    font-size: 14px;
    line-height: 1.75;
    color: #858789;
}

.spice-faq__items {
    margin-top: 30px;
    border-top: 1px solid #dedede;
}

.spice-faq__item {
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #dedede;
    background: transparent;
}

.spice-faq__question {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 28px;
    gap: 13px;
    align-items: center;
    min-height: 70px;
    padding: 16px 4px;
    cursor: pointer;
    list-style: none;
    color: #333333;
}

.spice-faq__question::-webkit-details-marker {
    display: none;
}

.spice-faq__question::marker {
    display: none;
    content: "";
}

.spice-faq__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    background: #f7f7f7;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .08em;
    color: #858789;
}

.spice-faq__question-text {
    min-width: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #353535;
}

.spice-faq__toggle {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    border: 1px solid #dadada;
    border-radius: 50%;
    background: #fafafa;
}

.spice-faq__toggle::before,
.spice-faq__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: #555555;
    transform: translate(-50%, -50%);
    transition: transform .18s ease, opacity .18s ease;
}

.spice-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.spice-faq__item[open] .spice-faq__toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.spice-faq__answer {
    max-width: 840px;
    padding: 0 45px 23px 55px;
    font-size: 14px;
    line-height: 1.75;
    color: #77797b;
}

.spice-faq__answer a {
    color: #3d3d3d;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
    .spice-faq__question:hover .spice-faq__question-text {
        color: #111111;
    }

    .spice-faq__question:hover .spice-faq__toggle {
        background: #f2f2f2;
    }
}

.spice-faq__question:focus-visible {
    outline: 2px solid #777777;
    outline-offset: 3px;
    border-radius: 6px;
}

@media (max-width: 580px) {
    .spice-faq {
        padding: 35px 25px;
        border-radius: 14px;
    }

    .spice-faq::before {
        left: 25px;
    }

    .spice-faq__title {
        font-size: 27px;
    }

    .spice-faq__items {
        margin-top: 24px;
    }

    .spice-faq__question {
        grid-template-columns: 31px minmax(0, 1fr) 26px;
        gap: 10px;
        min-height: 64px;
        padding: 14px 0;
    }

    .spice-faq__number {
        width: 29px;
        height: 29px;
    }

    .spice-faq__question-text {
        font-size: 14px;
    }

    .spice-faq__answer {
        padding: 0 36px 20px 41px;
        font-size: 13px;
    }
}
