/* CC Product Accordions */
.cc-product-accordions {
    margin-top: 15px;
}

.cc-accordion {
    margin: 0;
}

.cc-accordion--border-bottom {
    border-bottom: 1px solid #e5e5e5;
}



.cc-accordion__details summary {
    list-style: none;
    cursor: pointer;
}

.cc-accordion__details summary::-webkit-details-marker {
    display: none;
}

.cc-accordion__summary {
    padding: 14px 0;
}

.cc-accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cc-accordion__title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222;
}

.cc-accordion__toggle {
    display: flex;
    align-items: center;
    color: #222;
    transition: transform 0.3s ease;
}

/* When open, hide the vertical line (plus becomes minus) */
.cc-accordion__details[open] .cc-accordion__toggle .v-line {
    display: none;
}

.cc-accordion__panel {
    padding: 0 0 16px 0;
}

.cc-accordion__content {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
}

.cc-accordion__content p {
    margin-bottom: 8px;
}

.cc-accordion__content ul {
    padding-left: 20px;
    margin-bottom: 8px;
}
