/* Repex Minimal Accordion */

.woocommerce-product-details__short-description details {
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
    padding: 0;
}

.woocommerce-product-details__short-description details:last-child {
    border-bottom: none;
}

.woocommerce-product-details__short-description summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    transition: color .2s ease;
}

.woocommerce-product-details__short-description summary::-webkit-details-marker {
    display: none;
}

.woocommerce-product-details__short-description summary::after {
    content: "+";
    font-size: 18px;
    font-weight: 300;
    color: #888;
    transition: transform .25s ease;
}

.woocommerce-product-details__short-description details[open] summary::after {
    content: "−";
}

.woocommerce-product-details__short-description details[open] summary {
    color: #000;
}

.woocommerce-product-details__short-description details > *:not(summary) {
    padding: 0 0 18px;
}

.woocommerce-product-details__short-description p,
.woocommerce-product-details__short-description ul {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

.woocommerce-product-details__short-description ul {
    padding-left: 18px;
}






/* Smooth accordion content animation */

.woocommerce-product-details__short-description details > *:not(summary) {
    animation: accordionFade .25s ease;
}

@keyframes accordionFade {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth icon rotation */
.woocommerce-product-details__short-description summary::after {
    transition: transform .25s ease, color .25s ease;
}

.woocommerce-product-details__short-description details[open] summary::after {
    transform: rotate(180deg);
}