.car-model-accordion {
	display: block;

    margin-bottom: 10px;
	
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fafafa;

	text-align: start;

	overflow: hidden;
}

.accordion-toggle > span:first-child {
	flex: 1 1;
}

.accordion-toggle {
	display: flex;
	align-items: center;

    padding: 12px;

    width: 100%;

    background: #fcfcfc;
    border: none;

    font-size: 14px;
    font-weight: bold;
    text-align: left;

    cursor: pointer;
}

.accordion-toggle:hover {
    background: #eee;
}

.accordion-content {
    padding: 10px;
    background: #fff;
}
/* ===== LOGO ANIMOWANE ===== */
.mh-logo svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: var(--secondary-5);
    transition: fill 0.35s ease;
    animation: mh-fadein 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.mh-logo:hover svg {
    fill: var(--secondary-2);
}

.mh-logo svg path {
    fill: inherit;
    animation:
        mh-fadein 0.8s cubic-bezier(0.4, 0, 0.2, 1) both,
        mh-shimmer 2.4s 0.9s ease-in-out 1;
}

@keyframes mh-fadein {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes mh-shimmer {
    0%   { filter: brightness(1); }
    30%  { filter: brightness(1.4) drop-shadow(0 0 5px rgba(44,44,44,0.3)); }
    60%  { filter: brightness(1); }
    100% { filter: brightness(1); }
}
