/* Frontend CSS - Ürün Özellikleri Görüntüleme - Sade Kutu Versiyon */

.product-specs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    padding: 0;
}

/* Özellik öğeleri */
.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    min-width: 200px;
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

/* İkon alanı */
.spec-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

/* İçerik alanı */
.spec-content {
    flex: 1;
    min-width: 0;
}

.spec-value {
    font-size: 21px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
    line-height: 1.2;
}

.spec-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .product-specs-container {
        flex-direction: column;
        gap: 10px;
        margin: 20px 0;
    }
    
    .spec-item {
        min-width: auto;
        flex: none;
        padding: 12px;
    }
    
    .spec-item img {
        width: 36px;
        height: 36px;
    }
    
    .spec-value {
        font-size: 15px;
    }
    
    .spec-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .spec-item {
        padding: 10px;
        gap: 10px;
    }
    
    .spec-item img {
        width: 32px;
        height: 32px;
    }
    
    .spec-value {
        font-size: 14px;
    }
}

/* Stil varyasyonları */
.product-specs-container.style-minimal .spec-item {
    border: 1px solid #eee;
    background: #fafafa;
}

.product-specs-container.style-cards .spec-item {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 18px;
}

/* Print stili */
@media print {
    .product-specs-container {
        break-inside: avoid;
    }
    
    .spec-item {
        border: 1px solid #000;
        background: white;
    }
}