.galosom-product-faqs .galosom-product-section-inner,
.galosom-homepage-faqs .galosom-container {
    max-width: 1120px;
}

.galosom-homepage-faqs {
    background: #ffffff;
}

.galosom-homepage-faqs h2 {
    margin-top: 0;
    margin-bottom: 26px;
}

.galosom-faq-section.is-collapsed .galosom-faq-content {
    position: relative;
    overflow: hidden;
}

.galosom-product-faqs.is-collapsed .galosom-faq-item:nth-child(n+11) {
    display: none;
}

.galosom-homepage-faqs.is-collapsed .galosom-faq-item:nth-child(n+21) {
    display: none;
}

.galosom-faq-section.is-collapsed .galosom-faq-content::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 78%);
    content: "";
    pointer-events: none;
}

.galosom-faq-section.is-expanded .galosom-faq-content {
    max-height: none;
    overflow: visible;
}

.galosom-faq-section.is-expanded .galosom-faq-content::after {
    display: none;
}

.galosom-faq-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding: 0;
    color: #b18a3a;
    background: transparent;
    border: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
}

.galosom-faq-read-more:hover,
.galosom-faq-read-more:focus-visible {
    color: #111111;
    text-decoration: underline;
}

.galosom-faq-read-more-arrow {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.galosom-faq-group + .galosom-faq-group {
    margin-top: 34px;
}

.galosom-faq-group h3 {
    margin: 0 0 14px;
    color: #111111;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.25;
    letter-spacing: 0;
}

.galosom-faq-accordion {
    display: grid;
    gap: 12px;
}

.galosom-faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.galosom-faq-item:hover {
    transform: translateY(-2px);
    border-color: #dedede;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.065);
}

.galosom-faq-question {
    display: flex;
    width: 100%;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    color: #111111;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.galosom-faq-question:focus-visible {
    outline: 2px solid #b9944b;
    outline-offset: 3px;
}

.galosom-faq-icon {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border: 1px solid #dedede;
    border-radius: 999px;
}

.galosom-faq-icon::before,
.galosom-faq-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: #111111;
    border-radius: 999px;
    content: "";
    transform: translate(-50%, -50%);
    transition: opacity 160ms ease, transform 160ms ease;
}

.galosom-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.galosom-faq-item.is-open .galosom-faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.galosom-faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #56514c;
    font-size: 16px;
    line-height: 1.72;
    transition: max-height 260ms ease;
}

.galosom-faq-answer-inner {
    padding: 0 22px 22px;
}

.galosom-faq-answer p {
    margin: 0 0 12px;
}

.galosom-faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .galosom-product-faqs .galosom-product-section-inner,
    .galosom-homepage-faqs .galosom-container {
        max-width: none;
        padding-right: 18px;
        padding-left: 18px;
    }

    .galosom-homepage-faqs h2 {
        margin-bottom: 20px;
        font-size: 26px;
    }

    .galosom-faq-group + .galosom-faq-group {
        margin-top: 26px;
    }

    .galosom-faq-group h3 {
        font-size: 19px;
    }

    .galosom-faq-item {
        border-radius: 16px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
    }

    .galosom-faq-item:hover {
        transform: none;
    }

    .galosom-faq-question {
        min-height: 58px;
        padding: 16px 18px;
        font-size: 15px;
    }

    .galosom-faq-answer {
        font-size: 15px;
        line-height: 1.68;
    }

    .galosom-faq-answer-inner {
        padding: 0 18px 18px;
    }
}
