.specs-list {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    align-items: stretch;
    border: 1px solid #e3e8ed;
    border-radius: 6px;
    margin-top: 0.5em;
}

.specs-item {
    display: flex;
    gap: 0;
    background: white;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
}

.specs-item:last-child {
    border-bottom: none;
}

.specs-item:nth-child(even) {
    background: #fafbfc;
}

.specs-item-name {
    font-weight: 500;
    color: #666;
    width: 40%;
    padding: 0.75em 1em;
    display: flex;
    align-items: center;
}

.specs-item-val {
    display: flex;
    align-items: center;
    gap: 0.25em;
    width: 60%;
    padding: 0.75em 1em;
	border-left: 1px solid #e3e8ed;
    color: #25212b;
}

.specs-item-val svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.specs-true {
    color: #00a99d;
    font-weight: 500;
}

.specs-false {
    color: #c7003c;
    font-weight: 500;
}

/* Fade effect for collapsed state */
.specs-list.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    z-index: 1;
}

.specs-list-wrapper {
    position: relative;
}

/* Mobile responsiveness */
@media screen and (max-width: 600px) {
    .specs-list {
        font-size: 13px;
    }
    
    .specs-item-name {
        width: 45%;
        padding: 0.6em 0.8em;
    }
    
    .specs-item-val {
        width: 55%;
        padding: 0.6em 0.8em;
    }
    
    .specs-item-val svg {
        width: 14px;
        height: 14px;
    }
}

@media screen and (max-width: 440px) {
    .specs-list {
        font-size: 12px;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
    
    .specs-item-name {
        padding: 0.5em 0.6em;
        font-size: 11px;
    }
    
    .specs-item-val {
        padding: 0.5em 0.6em;
    }
}

@media screen and (max-width: 350px) {
    .specs-item-name {
        width: 50%;
    }
    
    .specs-item-val {
        width: 50%;
    }
}