/* GOA Product Accordion — minimal editorial styling */
.goa-product-accordion {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    border-top: 1px solid rgba(10, 10, 10, 0.16);
    color: #0A0A0A;
}

.goa-product-accordion__item {
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.16);
    background: transparent;
}

.goa-product-accordion__item > summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 22px 4px;
    list-style: none;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-tap-highlight-color: transparent;
}

.goa-product-accordion__item > summary::-webkit-details-marker {
    display: none;
}

.goa-product-accordion__item > summary::marker {
    content: "";
}

.goa-product-accordion__title {
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #0A0A0A;
}

.goa-product-accordion__icon {
    position: relative;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

.goa-product-accordion__icon::before,
.goa-product-accordion__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: opacity 180ms ease, transform 180ms ease;
}

.goa-product-accordion__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.goa-product-accordion__item[open] .goa-product-accordion__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.goa-product-accordion__panel {
    padding: 2px 4px 34px;
}

.goa-product-accordion__copy,
.goa-product-accordion__copy p,
.goa-product-accordion__copy li,
.goa-product-accordion__details-list {
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #1A1A1A;
}

.goa-product-accordion__copy {
    max-width: 920px;
}

.goa-product-accordion__copy > :first-child {
    margin-top: 0;
}

.goa-product-accordion__copy > :last-child {
    margin-bottom: 0;
}

.goa-product-accordion__details-list {
    margin: 0;
    padding: 0;
}

.goa-product-accordion__detail-row {
    display: grid;
    grid-template-columns: minmax(130px, 190px) 1fr;
    gap: 28px;
    padding: 9px 0;
}

.goa-product-accordion__detail-row dt,
.goa-product-accordion__detail-row dd {
    margin: 0;
}

.goa-product-accordion__detail-row dt {
    font-weight: 500;
}

.goa-product-accordion__policy-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Preserve the existing GOA Product Page Helper story design inside the accordion. */
.goa-product-accordion__making .pdp-story,
.goa-product-accordion__making .goa-product-story {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.goa-product-accordion__making img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .goa-product-accordion__item > summary {
        padding: 19px 0;
    }

    .goa-product-accordion__panel {
        padding: 2px 0 28px;
    }

    .goa-product-accordion__detail-row {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 8px 0 12px;
    }
}
