/** Shopify CDN: Minification failed

Line 33:18 Expected identifier but found whitespace
Line 33:19 Unexpected "1.2rem"

**/
/* ============================================
   CUSTOM ACCORDION SECTION - Primal Glow
   ============================================ */

.custom-accordion-section {
    width: 100%;
}

.custom-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.custom-accordion-heading {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* Container met roze rand */
.custom-accordion-list {
    border: 1.5px solid #c8dcc0;  /* was #f2c4c4 */
}

    border-radius: 1.2rem;
    overflow: hidden;
    background: #fff;
}

/* Enkel item */
.custom-accordion-item {
   border-bottom: 1.5px solid #c8dcc0;  /* was #f2c4c4 */
}

.custom-accordion-item:last-child {
    border-bottom: none;
}

/* Trigger knop */
.custom-accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.custom-accordion-trigger-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
    font-family: inherit;
}

/* Plus/min icoon */
.custom-accordion-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    line-height: 1;
}

.custom-accordion-item.is-open .custom-accordion-icon {
    transform: rotate(45deg);
}

/* Content */
.custom-accordion-content {
    display: none;
    padding: 0 2rem 1.8rem 2rem;
}

.custom-accordion-item.is-open .custom-accordion-content {
    display: block;
}

.custom-accordion-content p,
.custom-accordion-content div,
.custom-accordion-content ul,
.custom-accordion-content ol {
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.65);
    margin: 0 0 0.8rem 0;
}

.custom-accordion-content p:last-child,
.custom-accordion-content div:last-child {
    margin-bottom: 0;
}

/* Animatie */
@keyframes accordionOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.custom-accordion-item.is-open .custom-accordion-content {
    animation: accordionOpen 0.25s ease forwards;
}

/* Mobiel */
@media only screen and (max-width: 989px) {
    .custom-accordion-wrapper {
        padding: 0 1.6rem;
    }

    .custom-accordion-trigger {
        padding: 1.6rem 1.6rem;
    }

    .custom-accordion-content {
        padding: 0 1.6rem 1.6rem 1.6rem;
    }

    .custom-accordion-trigger-title {
        font-size: 1.45rem;
    }
}