/* Product Features Toggle Styling */
.product-features ul {
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease, margin 0.3s ease;
}

.product-features.expanded ul {
    height: auto;
    margin-bottom: 10px;
    visibility: visible;
    opacity: 1;
}

.show-more {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin: 5px 0;
    transition: all 0.2s ease;
}

.show-more:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-features.expanded ul {
        margin-bottom: 8px;
    }
    
    .show-more {
        font-size: 11px;
    }
}
