/**
 * Product Specifications Grid - Structured spec display
 * MAX: 70 lines - Icons and grid layout for specs
 */

.product-specifications {
    margin-top: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.specifications-title {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.specifications-title i {
    color: #D4AF37;
    font-size: 20px;
}

.specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.specification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.specification-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.specification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A02C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.specification-icon i {
    color: white;
    font-size: 18px;
}

.specification-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.specification-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.specification-value {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 600;
}
