/**
 * Specifications Block Styles
 */

.specifications-block {
    margin: 24px 0;
    font-family: 'Manrope', sans-serif;
}

.specs-container {
    background: #ffffff;
    border-radius: 25px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.specs-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.specs-title {
    margin: 0 0 16px 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #34363D;
}

/* Content Layout */
.specs-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left Column: Table */
.specs-table-wrapper {
    flex: 1 1 400px;
}

.specs-table {
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    overflow: hidden;
}

.specs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
}

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

.specs-row--alt {
    background: #f9fafb;
}

.specs-label {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #34363D;
}

.specs-value {
    color: #1f2937;
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
}

.specs-value--highlight {
    color: #5DB24C
}

/* Right Column: Features */
.specs-features-wrapper {
    flex: 1 1 300px;
}

.specs-features-title {
    margin: 0 0 16px 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: #34363D;
}

.specs-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specs-feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #5DB24C;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.specs-feature-icon {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .specs-container {
        padding: 16px;
    }
}
@media (max-width: 768px) {
    .specs-container {
        padding: 20px;
        border-radius: 16px;
    }
    
    .specs-title {
        font-size: 28px;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .specs-content {
        gap: 24px;
    }
    
    .specs-table-wrapper,
    .specs-features-wrapper {
        flex: 1 1 100%;
    }
    
    .specs-row {
        padding: 12px 16px;
    }
    
    .specs-label,
    .specs-value {
        font-size: 14px;
    }
    
    .specs-feature-tag {
        font-size: 14px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .specs-container {
        padding: 16px;
        border-radius: 12px;
    }
    
    .specs-title {
        font-size: 24px;
    }
    
    .specs-row {
        padding: 10px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .specs-value {
        text-align: left;
    }
    
    .specs-features-title {
        font-size: 14px;
    }
    
    .specs-feature-tag {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Editor Preview Styles */
.specifications-editor .specs-preview {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}
