/* Frontend Spec Styles */
.aligo-specifications-section {
    margin: 40px 0;
}
.aligo-specifications-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
.aligo-spec-accordion {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
}
.aligo-spec-card {
    border-bottom: 1px solid #e1e1e1;
}
.aligo-spec-card:last-child {
    border-bottom: none;
}
.aligo-spec-card-title {
    margin: 0;
    padding: 15px 20px;
    background: #f9f9f9;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.aligo-spec-card-title:hover {
    background: #f1f1f1;
}
.aligo-spec-toggle {
    font-size: 20px;
    font-weight: normal;
    color: #666;
}
.aligo-spec-card.active .aligo-spec-toggle {
    transform: rotate(45deg);
}
.aligo-spec-card-content {
    display: none;
    padding: 20px;
    background: #fff;
}
.aligo-spec-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}
.aligo-spec-row:last-child {
    border-bottom: none;
}
.aligo-spec-label {
    flex: 0 0 40%;
    font-weight: 500;
    color: #555;
}
.aligo-spec-value {
    flex: 1;
    color: #333;
}
.aligo-customization-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.aligo-customization-list li {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
}
.aligo-secondary-stone {
    padding: 8px;
    background: #fafafa;
    border: 1px solid #eee;
    margin-bottom: 8px;
    border-radius: 4px;
}
