/* Consumer Rights Accordion - migrated from footer.txt */
.ivx-consumer-rights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Top Info */
.ivx-cr-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ivx-cr-top a {
    color: #584642;
    font: normal normal 400 15px/20px Inter;
    text-decoration: unset;
}

.ivx-cr-top a:hover {
    color: #584642;
    opacity: 0.9;
}

.ivx-cr-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #584642;
    opacity: 0.85;
    font: normal normal 400 20px/26px Inter;
}

.ivx-cr-row:hover { opacity: 1; }

.ivx-cr-ico {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: block;
}


.ivx-cr-sep { margin: 0 -4px; }

/* Toggle button */
.ivx-cr-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: max-content;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-align: left;
    color: #584642;
    font: normal normal 500 17px/24px Inter;
}

.ivx-cr-caret {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #735e59;
    transform: translateY(2px);
    transition: transform .2s ease;
    flex: 0 0 auto;
}

.ivx-cr-toggle[aria-expanded="true"] .ivx-cr-caret {
    transform: rotate(180deg) translateY(-2px);
}

/* Panel (slide) */
.ivx-cr-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height .25s ease;
}

.ivx-consumer-rights.is-open .ivx-cr-panel {
    max-height: 200px;
}

/* Footer links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 6px;
    flex-wrap: wrap;
}

.footer-links a {
    font: normal normal 300 14px/26px Inter;
    color: #584642;
    opacity: 0.6;
    text-decoration: none;
}

.footer-links a:hover { opacity: 1; }

/* Non-clickable rows */
a.ivx-cr-row.location,
a.ivx-cr-row.ln {
    pointer-events: none;
}

/* Responsive */
@media (max-width: 640px) {
    .ivx-cr-toggle { font-size: 26px; line-height: 34px; }
    .ivx-cr-row { font-size: 18px; }
    .footer-links { gap: 18px; }
}
