.lkm-tinting-wrapper {
    margin: 10px 0;
}

.tinting-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.tinting-colors-block h4 {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #555;
}

.tinting-colors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    justify-content:center;
}

.color-tile-mini {
    width: 35px;
    height: 25px;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.2);
    background-size: cover;
    background-position: center;
    transition: all 0.15s ease;
}

.color-tile-mini:hover {
    transform: scale(1.3);
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    border: 2px solid #333;
}

.color-tile-mini.selected {
    border: 2px solid #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
    transform: scale(1.15);
}

.tinting-preview-block {
    margin-top: 15px;
    padding: 12px;
    background: #f0f8f0;
    border: 1px solid #4CAF50;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

.selected-color-info {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tinting-cost-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #4CAF50;
    color: white;
    font-size: 13px;
    font-weight: 700;
}

.reset-color-btn {
    padding: 6px 12px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.reset-color-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

.tinting-color-image-wrapper {
    text-align: center;
}

.tinting-color-image {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .color-tile-mini {
        width: 20px;
        height: 20px;
    }
    .preview-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .reset-color-btn {
        width: 100%;
    }
}
