/* Certificates of Analysis — flat product-line cards rendered by [shrum_coa] */
.coa-wrap {
    padding: 1.5rem 0;
    font-family: Montserrat, system-ui, sans-serif;
    color: #1C1C24;
}

.coa-wrap .product-group {
    padding: 1.25rem 0 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.coa-wrap .product-group:last-child {
    border-bottom: none;
}

.coa-wrap .group-header,
.coa-wrap .group-header:hover,
.coa-wrap .group-header:focus,
.coa-wrap .group-header:active {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0;
    margin: 0 0 0.75rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    translate: none;
    top: auto;
    position: static;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    line-height: inherit;
    transition: color 0.15s ease;
}
.coa-wrap .group-header:hover .group-title {
    color: #f22f8b;
}
.coa-wrap .group-header:hover .chevron {
    color: #1C1C24;
}
.coa-wrap .group-header:focus-visible {
    outline: 2px solid #f22f8b;
    outline-offset: 4px;
    border-radius: 4px;
}

.coa-wrap .group-badge {
    display: inline-block;
    min-width: 120px;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 20px;
    line-height: 1.5;
    text-align: center;
    background: #eee;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
}

.coa-wrap .group-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
}
.coa-wrap .group-title-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.coa-wrap .group-title {
    font-size: 20px;
    font-weight: 700;
    color: #1C1C24;
}
.coa-wrap .group-meta {
    font-size: 16px;
    color: #6b6b72;
}

.coa-wrap .chevron {
    font-size: 10px;
    display: inline-block;
    transition: transform 0.2s ease;
    line-height: 1;
}
.coa-wrap .chevron.open {
    transform: rotate(180deg);
}

.coa-wrap .group-body {
    display: none;
    margin-top: 0.75rem;
}
.coa-wrap .group-body.open {
    display: block;
}

.coa-wrap .group-sizes {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.coa-wrap .sizes-list {
    font-size: 14px;
    font-weight: 500;
    color: #1C1C24;
}
.coa-wrap .flavor-count {
    font-size: 12px;
    color: #6b6b72;
    font-weight: 400;
}

.coa-wrap .flavor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    align-items: center;
    margin-top: 25px;
}
.coa-wrap .flavor-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    transition: color 0.15s ease;
}
.coa-wrap .flavor-chip:hover {
    color: #f22f8b;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.coa-wrap .flavor-chip--pending {
    color: #aaa;
    cursor: not-allowed;
}
.coa-wrap .flavor-chip--pending:hover {
    color: #aaa;
    text-decoration: none;
}
.coa-wrap .dl-icon {
    font-size: 12px;
    color: inherit;
    line-height: 1;
}

@media (max-width: 640px) {
    .coa-wrap .flavor-list {
        gap: 14px 20px;
    }
    .coa-wrap .group-sizes {
        gap: 10px;
    }
}
