/* ==========================================================================
   Fringe Producers Accordion — used by [fringe_producers]
   Mirrors the horeca-wine-accordion look from horeca-flipbox.css so the two
   shortcode families feel like the same product on the front end.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;600;700;900&display=swap');

.fringe-producers-accordion {
    font-family: "Montserrat", sans-serif;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.fringe-producer-section {
    width: 100%;
    margin: 0;
    border-radius: 0;
}
.fringe-producer-section + .fringe-producer-section {
    border-top: 1px solid #e2e8f0;
}

.fringe-producer-heading {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0f172a;
    margin: 0;
    padding: 18px 24px;
    background: #f8fafc;
    user-select: none;
}
.fringe-producer-heading::-webkit-details-marker { display: none; }
.fringe-producer-heading::marker { content: ""; }

.fringe-producer-heading::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid #806792;
    border-bottom: 2px solid #806792;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-left: auto;
    flex-shrink: 0;
}
.fringe-producer-section[open] > .fringe-producer-heading::after {
    transform: rotate(-135deg);
}

.fringe-producer-body {
    padding: 0;
    background: #ffffff;
}

@media (max-width: 768px) {
    .fringe-producer-heading {
        font-size: 15px;
        padding: 14px 16px;
    }
}
